Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wrote a simple batch file as a powershell script, and i am getting errors when they run.

It's in a scripts directory in my path.

Cannot be loaded because the execution of scripts is disabled on this system. 
please see "get-help about-signing".

I looked in the help, but it's less than helpful.

@Matt HAmilton's answer FTW

share|improve this question

4 Answers

up vote 32 down vote accepted

Could be PowerShell's default security level, which (IIRC) will only run signed scripts.

Try typing this:

set-executionpolicy remotesigned

That will tell PowerShell to allow local (that is, on a local drive) unsigned scripts to run.

Then try executing your script again.

share|improve this answer
You have to run Powershell with administrator privileges, at least under Windows 8! – ComFreek Aug 24 '12 at 11:48

also it's worth knowing that you include .\ in front of the script name, for example

.\scriptname.ps1

share|improve this answer

The command set-executionpolicy unrestricted will allow any script you create to run as the logged in user. Just be sure to set the executionpolicy setting back to signed using the set-executionpolicy signed command prior to logging out.

share|improve this answer
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process

Always use above cmd to enable to execute powershell in current session.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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