7 lines
219 B
Batchfile
7 lines
219 B
Batchfile
@echo off
|
|
setlocal
|
|
set "PS=%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe"
|
|
if not exist "%PS%" set "PS=powershell"
|
|
"%PS%" -NoProfile -ExecutionPolicy Bypass -File "%~dp0fetch-x.ps1" %*
|
|
exit /b %errorlevel%
|