Update StackMonkey.ps1

This commit is contained in:
2025-06-28 19:57:10 -04:00
parent 60d542cc49
commit eb87820b74

View File

@@ -1388,8 +1388,8 @@ function Start-Server {
# Only launch UI if not in silent mode # Only launch UI if not in silent mode
if (-not $SilentInstall) { if (-not $SilentInstall) {
# open browser on whatever port you've set # open browser on whatever port you've set
Start-Process "microsoft-edge:http://localhost:$Port" # Start-Process "microsoft-edge:http://localhost:$Port"
# Start-Process "msedge.exe" -ArgumentList "--app=http://localhost:$Port" Start-Process "msedge.exe" -ArgumentList "--app=http://localhost:$Port"
# now start your server (this will block until you hit Exit in the UI) # now start your server (this will block until you hit Exit in the UI)
Start-Server Start-Server
} }