chock是一个很强大的软件包管理工具官方:Chocolatey Software | Installing Chocolatey
使用管理员打开powershell工具:
必须以管理员打开,不然安装失败,提示没有权限
然后输入:
Get-ExecutionPolicy
如果返回:Restricted,说明没问题
如果不是RemoteSigned,输入:
Set-ExecutionPolicy AllSigned
或者
Set-ExecutionPolicy Bypass -Scope Process
然后再执行安装choco命令:
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
如果没有提示错误信息,说明就成功了。
然后重新打开一个窗口,输入choco就可以看到有提示了:
使用choco安装软件的时候,也要使用管理员打开powershell命令:下面是安装openssl
choco install openssl