universal-dashboard
                                
                                 universal-dashboard copied to clipboard
                                
                                    universal-dashboard copied to clipboard
                            
                            
                            
                        Can't start a new dashboard
Start-UDDashboard : Cannot process argument transformation on parameter 'Port'. Cannot convert the "80" value of type "System.Int32" to type "System.Management.Automation.ParameterAttribute".
Start-UDDashboard doesn't support the -Dashboard or -Port in the latest install from the gallery
I'm having the same issue. I just installed the module, "defined" a dashboard:
$Dashboard = New-UDDashboard -Title "Technical Entry Form" -Content {}
But when I try to launch the dashboard:
Start-UDDashboard -Port 1000 -Dashboard $Dashboard
This error is shown:
Start-UDDashboard : Cannot process argument transformation on parameter 'Port'. Cannot convert the "1000" value of
type "System.Int32" to type "System.Management.Automation.ParameterAttribute".
wait a sec here, could you post your whole script? then we can figure it out...
$Dashboard = New-UDDashboard -Title "Hello, World!" -Content { New-UDHeading -Text "Hello, World!" -Size 1 } Start-UDDashboard -Dashboard $Dashboard -Port 1000 -AutoReload