14 lines
626 B
Batchfile
14 lines
626 B
Batchfile
@echo off
|
|
|
|
REM ###################################################
|
|
REM # @description: #
|
|
REM # Opens Deploy-FirstBoot.ps1 in powershell with #
|
|
REM # Process ExecutionPolicy set to Unrestricted #
|
|
REM # #
|
|
REM # @project: IMGSystTools #
|
|
REM # @author: Bram Prieshof #
|
|
REM ###################################################
|
|
|
|
echo Starting deployment script...
|
|
PowerShell.exe "Set-ExecutionPolicy -Scope Process Unrestricted -Force; C:\SysTools\DeployTools\Deploy-FirstBoot.ps1"
|