Powershell:执行策略解决方案来运行脚本

时间:2018-02-15 18:59:20

标签: windows powershell scripting malware executionpolicy

执行政策是否有解决办法?

PS C:\Users\thufir\Desktop>
PS C:\Users\thufir\Desktop> .\stock.ps1
.\stock.ps1 : File C:\Users\thufir\Desktop\stock.ps1 cannot be loaded because running scripts is disabled on this
system. For more information, see about_Execution_Policies at http://go.microsoft.com/fwlink/?LinkID=135170.
At line:1 char:1
+ .\stock.ps1
+ ~~~~~~~~~~~
    + CategoryInfo          : SecurityError: (:) [], PSSecurityException
    + FullyQualifiedErrorId : UnauthorizedAccess
PS C:\Users\thufir\Desktop>

只是想用脚本查找stock quotes。是的,您可以使用复制/粘贴来排序/运行脚本,但是......是不是有nicer

政策如下:

PS C:\Users\thufir\Desktop>
PS C:\Users\thufir\Desktop> Get-ExecutionPolicy -List

        Scope ExecutionPolicy
        ----- ---------------
MachinePolicy       Undefined
   UserPolicy       Undefined
      Process       Undefined
  CurrentUser       Undefined
 LocalMachine       Undefined


PS C:\Users\thufir\Desktop>

(不是我的机器。)

寻找this问题的倒数。

1 个答案:

答案 0 :(得分:1)

要构建Bill_Stewart的注释,使用以下目标创建一个快捷方式,它将允许您运行powershell脚本:

 C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -executionpolicy bypass -file "\\Server\Path\to\script\script.ps1"

如果要在远程计算机上运行此命令,在创建上述快捷方式并将其存储在远程计算机可以在网络上访问的某个位置之后,您始终可以执行此类操作。

Invoke-Command -computername Computer1 -Scriptblock { Start-process "\\Server\Path\to\shortcut\shortcut.lnk" }