Add comment notes to startup command

pull/2/head
ThioJoe 2025-08-06 19:25:07 -07:00
parent 8f13ff67e3
commit 49ca6c6fc5
No known key found for this signature in database
GPG Key ID: 2E328FE64CC3898C
1 changed files with 5 additions and 1 deletions

View File

@ -27,7 +27,11 @@
<!-- Run the powershell script from the mapped folder --> <!-- Run the powershell script from the mapped folder -->
<LogonCommand> <LogonCommand>
<Command>powershell -executionpolicy Bypass -command "start powershell {-file C:\Users\WDAGUtilityAccount\Desktop\HostShared\SandboxStartup.ps1 -launchingSandbox}"</Command> <!-- Run the powershell script from the mapped folder. The seemingly redundant command nesting makes it so the powershell window is visible when running. -->
<Command>powershell -executionpolicy Bypass -command "start powershell {-file C:\Users\WDAGUtilityAccount\Desktop\HostShared\SandboxStartup.ps1 -launchingSandbox};"
<!-- Note: You can add more powershell commands as additional lines because of the way it parses the XML. For example you can uncomment the line below. Comments also obviously work here. -->
<!-- start powershell {Write-Host 'Test'; Read-Host} -->
</Command>
</LogonCommand> </LogonCommand>
</Configuration> </Configuration>