I want to run Powershell scripts on Windows 7 as a regular user. Whenever I try, I get the following error:

File C:\Users\danv\Documents\WindowsPowerShell\profile.ps1 cannot be loaded because the
execution of scripts is disabled on this system. Please see "get-help about_signing" for 
more details.
At line:1 char:2
+ . <<<<  'C:\Users\danv\Documents\WindowsPowerShell\profile.ps1'
    + CategoryInfo          : NotSpecified: (:) [], PSSecurityException  
    + FullyQualifiedErrorId : RuntimeException 

Attempting to solve via Set-ExecutionPolicy Unrestricted fails:

PS C:\Users\danv> Set-ExecutionPolicy Unrestricted
Set-ExecutionPolicy : Access to the registry key     
'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell' 
is denied.
At line:1 char:20
+ Set-ExecutionPolicy <<<<  Unrestricted
    + CategoryInfo          : NotSpecified: (:) [Set-ExecutionPolicy], UnauthorizedAccessException
    + FullyQualifiedErrorId : System.UnauthorizedAccessException,Microsoft.PowerShell.Commands.SetExecutionPolicyCommand 

I can run the Set-ExecutionPolicy Unrestricted command as Administrator, but this doesn't seem to propagate to non-Administrator users.

How can I successfullly run scripts as a non-Administrator?

link|improve this question

feedback

3 Answers

up vote 9 down vote accepted

If you (or a helpful admin) runs Set-ExecutionPolicy as administrator, the policy will be set for all users. (I would suggest "remoteSigned" rather than "unrestricted" as a safety measure).

NB. on a 64bit OS you need to run Set-ExecutionPolicy for 32bit and 64bit PSH separately.

link|improve this answer
I've tried this - setting things to Unrestricted as Administrator doesn't seem to change anything for the non-administrator... – Dan Vinton Jan 10 '11 at 14:06
@DanVinton: Then something else is happening. Suggest setting as admin again, then checking Get-ExecutionPolicy from both admin and normal shells. It is possible Group Policy is overruling your wishes. – Richard Jan 10 '11 at 14:34
In the usual IT fashion, having someone (proverbially) looking over your shoulder has resolved it... thanks! – Dan Vinton Jan 10 '11 at 14:39
feedback
Set-ExecutionPolicy Unrestricted -Scope CurrentUser

This will set the execution policy for the current user (stored in HKEY_CURRENT_USER) rather than the local machine (HKEY_LOCAL_MACHINE).

link|improve this answer
worked for me, thanks! – Lumma Sep 28 '11 at 18:54
feedback

The only way is to use powershell.exe from cmd.exe.

powershell.exe -executionpolicy ByPass testscript.ps1
link|improve this answer
That command line could be incorporated into an Explorer shortcut: no need to run cmd.exe. – Richard Jan 10 '11 at 14:02
3  
Downvoting any answer starting with "The only way to"... :) – Dean K. Nov 2 '11 at 20:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.