Advertisement
thesuhu

PowerShell Troubleshoting

Aug 4th, 2021
1,404
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # PowerShell says “execution of scripts is disabled on this system.”
  2. # fix: As an Administrator, you can set the execution policy by typing this into your PowerShell window:
  3. Set-ExecutionPolicy RemoteSigned
  4. # When you are done, you can set the policy back to its default value with:
  5. Set-ExecutionPolicy Restricted
  6.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement