mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
6 lines
199 B
Batchfile
6 lines
199 B
Batchfile
|
|
@echo off
|
||
|
|
REM Wrapper to run build-essentials.ps1 from cmd.exe
|
||
|
|
set SCRIPT_DIR=%~dp0
|
||
|
|
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%SCRIPT_DIR%build-essentials.ps1" %*
|
||
|
|
exit /b %ERRORLEVEL%
|