mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-24 00:26:13 +01:00
14 lines
332 B
Batchfile
14 lines
332 B
Batchfile
|
@ECHO OFF
|
||
|
|
||
|
FOR /f "tokens=*" %%a IN ('powershell Get-ExecutionPolicy -Scope CurrentUser') DO SET PS_POLICY=%%a
|
||
|
|
||
|
IF NOT %PS_POLICY=="Bypass" (
|
||
|
powershell Set-ExecutionPolicy -Scope CurrentUser Bypass
|
||
|
)
|
||
|
|
||
|
powershell %~dp0%installer.ps1
|
||
|
|
||
|
IF NOT %PS_POLICY=="Bypass" (
|
||
|
powershell Set-ExecutionPolicy -Scope CurrentUser %PS_POLICY%
|
||
|
)
|