Scripts/install/windows/install.bat: tune

This commit is contained in:
Mark Hillebrand 2017-03-15 20:21:17 +01:00
Родитель 8b15579240
Коммит de9702d2d9
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -6,7 +6,7 @@
setlocal
set allArgs=%*
pushd "%~p0"
pushd "%~dp0"
set psInstall="%~p0\ps\install.ps1"
set PSModulePath=%PSModulePath%;%~dp0\ps\Modules
:loop
@ -22,6 +22,7 @@ if not "%~1"=="" goto loop
powershell -NoProfile -NoLogo -Command unblock-file ps\*.ps1
powershell -NoProfile -NoLogo -Command unblock-file ps\Modules\Download\*.psm1
popd
powershell -NoProfile -NoLogo -ExecutionPolicy RemoteSigned %psInstall% %allArgs%
goto :EOF