14 lines
377 B
Batchfile
14 lines
377 B
Batchfile
@echo off
|
|
set check_computername=%COMPUTERNAME%
|
|
echo "Found computer %check_computername%"
|
|
|
|
set PACKAGES="C:\Packages"
|
|
set WPUBLIC="C:\wPublic"
|
|
set WBASE="C:\Scripts\wBase"
|
|
|
|
set POWERSHELL=%SYSTEMROOT%\system32\WindowsPowerShell\v1.0\powershell.exe
|
|
|
|
echo "Speed up Powershell processing"
|
|
set PSFILE="%WBASE%\bin\SpeedUp.ps1"
|
|
%POWERSHELL% -ExecutionPolicy Bypass -File %PSFILE%
|