If you are receiving error similar to :
[...] cannot be loaded. The file [...] 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
+ vaah cms:t
+ ~~~~
+ CategoryInfo : SecurityError: (:) [], PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess
Simply run following command in the phpstorm
terminal
:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Top comments (0)