First public release

This commit is contained in:
Yorick Barbanneau 2016-01-19 14:53:28 +01:00
commit 19eaa99a3a
3 changed files with 98 additions and 0 deletions

13
launcher.cmd Executable file
View file

@ -0,0 +1,13 @@
@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