Files
RomWBW/branches/dgg/FixPowerShell.cmd
2012-10-23 08:37:54 +00:00

10 lines
266 B
Batchfile

@echo off
echo Setting PowerShell ExecutionPolicy = Unrestricted...
echo.
PowerShell Set-ExecutionPolicy Unrestricted
echo PowerShell ExecutionPolicy is now:
PowerShell Get-ExecutionPolicy
echo.
echo The execution policy should be "Unrestricted"
echo.
pause