Quote:
Originally Posted by sadtango289
|
Did you follow the instructions in
message #2 in this thread? Specifically in section 3 where it says you need to unblock the script?
On recent Windows versions (i.e., when running PowerShell >= 7), you'll have to "unblock" the script to allow it to run. (
Right Click > Tick
Unblock in the bottom-right corner).
That should look like this (before ticking the box):
If you try opening PowerShell and then running the script you would see an error message similar to the following:
Quote:
PS C:\Users\david\downloads> .\install.ps1
.\install.ps1 : File C:\Users\david\downloads\install.ps1 cannot be loaded. The file
C:\Users\david\downloads\install.ps1 is not digitally signed. You cannot run this script on the current system. For more information about running scripts and setting execution policy, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170.
At line:1 char:1
+ .\install.ps1
+ ~~~~~~~~~~~~~
+ CategoryInfo : SecurityError: ( [], PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess
|