If you have any problems - unexpected error messages, incorrect report data, etc. - contact us.
To help us resolve your problem, you can submit a log file in which you reproduce the issue.
Locate the appsettings.json file in the root folder of the application. Set the “DebugMode” value to “True” and specify a “DebugPath” for the log files.
... "DebugMode": "True", "DebugPath": "logs" ...
The “DebugPath” can be a relative path (e.g., “logs”) or an absolute path (e.g., “C:\ADGMWeb\logs”).
Restart the IIS web application.
You will find your log files in the specified log folder. If you used a relative path, the logs will be in the application's root directory.
If you see an HTTP 500.19 error with error code 0x8000000d, or if the application fails to start, you may need to install the ASP.NET Core Hosting Bundle.
The application requires the ASP.NET Core Hosting Bundle matching your application's .NET version. You can download the latest version from the Microsoft .NET download page.
After installing the Hosting Bundle, restart your server or the Windows Process Activation Service (WAS).
AD Group Manager Web requires .NET 8.0 or higher. If you see an error message indicating an unsupported runtime, or if the application fails to start, verify your installed .NET version:
dotnet --info
If the required version is not installed, download and install it from the Microsoft .NET download page.
Ensure your application pool is configured correctly:
For the application to function correctly, ensure:
If you're experiencing HTTP 500 errors or modules not loading properly, check that your web.config is correctly configured for ASP.NET Core hosting. The web.config should include the AspNetCoreModule or AspNetCoreModuleV2 handler.
If using Windows Authentication and experiencing login issues: