You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# set this first$WinSetupScript=@"Set-ExecutionPolicy Bypass -Scope Process -Force. '$PWD\windows\WinSetup.ps1'"@
Examples
# running against local scripts instead of remote$env:SNYDER_WIN_SETUP_LOCAL="true"; Invoke-Expression$WinSetupScript
# running a Non-Admin script$env:SNYDER_WIN_SETUP="010-U-NodePackages"; Invoke-Expression$WinSetupScript
# running an Admin script$env:SNYDER_WIN_SETUP="021-S-WinDocker"; Invoke-Expression$WinSetupScript
# using the prompt with remote scriptsInvoke-Expression$WinSetupScript# using the prompt with local scripts$env:SNYDER_WIN_SETUP_LOCAL="true"; Invoke-Expression$WinSetupScript