Running powershell gives execution permission errors
By default Powershell execution policy is set ot restricted. To enable running your own scripts run following command
PS D:\> Set-ExecutionPolicy RemoteSigned
To view current policy
PS D:\> Get-ExecutionPolicy

