This repository has been archived on 2024-09-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
unupdate_win10/launcher.cmd
2016-01-19 14:53:28 +01:00

13 lines
320 B
Batchfile
Executable file

@echo off
cd /d "%~dp0"
REM CMD exectition script for remove-kb.ps1
echo Change ps execution policy ...
powershell set-executionpolicy unrestricted
echo .
echo Launch remove-kb script ...
powershell "%~dp0remove-kb.ps1"
echo REstore ps execution policy ...
powershell set-executionpolicy restricted
PAUSE