1 parent 817ccee commit fb94cb4Copy full SHA for fb94cb4
1 file changed
cmd/us-house/windows/US-House-Convenience.cmd
@@ -0,0 +1,9 @@
1
+@echo off
2
+setlocal
3
+set "PS=%~dp0US-House-Convenience.ps1"
4
+if not exist "%PS%" (
5
+ echo ERROR: %PS% not found.
6
+ exit /b 1
7
+)
8
+powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%PS%" %*
9
+exit /b %ERRORLEVEL%
0 commit comments