First we installed the current version 1.5.14 of Powershell Universal by using the MSI File. Everything did run fine at port 5000.
Because the company policy force us to use IIS hosting for any web application we tried to setup the IIS Hosting. We followed the procedure Adam has given in the documentation and the hints of various Topics out of this forum.
In the end we stopped the service Powershell Universal and set his status to deactivated. After a reboot we started Powershell Universal through IIS by Http://localhost:5000
Login Screen appeared and we could login as admin.
Some of our already implemented dashboard wasnât seen anymore. Even more surprising was the fact that we couldnât start any dashboard out of the list.
The application pool owner has Full Control to the unzipped Powershell Universal directory and to the relevant directories beneath ProgrammeData ( default installation ).
The dashboards have all been running without any problem with Powershell Universal service installation.
Any suggestion or hint how to solve this problem ?
@quax
you need first when you unzip the IIS files to also unblock them by using the following command in powershell
gci -path âlocation of unzip filesâ -Recurse | Unblock-File
stop apppool and site
delete powershell universal & universal dashboard folders from c:\programdata
start apppool & site
re import your dashboards files from admin panel
After looking at the log file we found the reason for missing dashboards:
During startup of Powershell Universal there is one script dashboards.ps1 executed. This script starts all defined dashboards by using one line with new-psudashboard -Name âŚ
In case of a corrupt entry ( for example path no longer available ) it throws an execption and doesnât load any further dashboard following this line.
Okay we can easily fix
Now Powershell Universal is running under control of IIS .
I can access login page and login . I see all my dashboards.
But I canât start any dashboard
No entries in event log except special login âdashboard usrâ with all mentioned user rights
I stopped appall and site
delete PowershellUniversal and Universal from Programdata
Restart apppol and site
login as admin OK
List of dashboard empty as expected
import dashboard Okay
Start of dashboard not possible
@quax
how many dashboards you have and have you tried to start a simple dashboard with just hello world for example to verify that dashboard works fine and if it is working then you need to address your code and find out what causes the issue based on logs.
During my last try the list of dashboard was empty ! I used a very simple script from Adam for my dashboard without port specification and with -port 5000
Yes the app pool User has Full Control for all relevant directories and the user has
logon as a service, logon as a batch, adjust memory, replace token as mentioned in the documentation
Yes you can do it that way too. But the script still doesnât start
It is not the problem of the script. The script is running if you are using PowershellUniversal as a service and you cab start and stop from admin UI