UD on IIS, can only start hello world dashboard

Here is my web.config. When I start IIS and open localhost, I only get the “Hello World” dashboard. I cannot get my dashboard.ps1 to run. I have tried a number of iterations to get this to work, but can only ever get the “Hello World” dashboard to load.

indent preformatted text by 4 spaces
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.webServer>
    <handlers>
      <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
    </handlers>
    <aspNetCore processPath="C:\Program Files (x86)\Universal\Universal.Server.exe" arguments="" forwardWindowsAuthToken="true" stdoutLogEnabled="true" stdoutLogFile=".\logs\log" hostingModel="InProcess"/>
  </system.webServer>
</configuration>

Please help. I feel like I have been battling this forever, and dont seem to be making any headway. There is conflicting documentation out there. Some say to put the path to powershell.exe in the process path, and others show the path to universal.server.exe

It sounds like you might be mixing PowerShell Universal and Universal Dashboard.

If you are using the UniversalDashboard PowerShell module, you should follow the documentation here: https://docs.universaldashboard.io

If you are using PowerShell Universal with the dashboard feature, you should use the docs here: https://docs.ironmansoftware.com

Moving forward, PowerShell Universal is what you’ll want to be using as it will be getting all new updates. The Universal Dashboard functionality has been moved into Universal.

Thanks, Ill give it a go