ASP.NET Core and Windows Authentication
Just a reminder of how to configure ASP.NET Core and Windows Authentication
1. Configure IIS
2. Go to properties folder, file launchSettings.json and modify
"iisSettings": { "windowsAuthentication": true, "anonymousAuthentication": false, //other data
3. When you compile and run , the Web.Config will be modified for forwardWindowsAuthToken :
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" forwardWindowsAuthToken="true" stdoutLogEnabled="false" />
Leave a Reply