PowerShell to run script bypassing execution policy

PowerShellIn yesterday’s article, I posted a script which can be used to download and delete files from a folder on an FTP site. When I tested it on one computer it worked fine, but on another it failed as the running of PowerShell is restricted. To avoid this error the PowerShell script can be saved to a file with a ps1 extension and then executed using the following (replace the highlighted section with your filename):

powershell -executionpolicy bypass -File "download files.ps1"

This will bypass the execution policy restricting the script from running and allow it to run without issue.

What should we write about next?

If there is a topic which fits the typical ones of this site, which you would like to see me write about, please use the form, below, to submit your idea.

Your Name

Your Email

Suggested Topic

Suggestion Details

2 thoughts on “PowerShell to run script bypassing execution policy

Leave a Reply

Your email address will not be published. Required fields are marked *