无法安装/运行任何 PowerShell 包

无法安装/运行任何 PowerShell 包

每次我尝试安装 PowerShell 模块时都会收到以下错误。

Install-Module: The 'Install-Module' command was found in the module 'PowerShellGet', but the module could not be loaded. For more information, run 'Import-Module PowerShellGet'.

当我尝试根据收到的错误消息运行 Import-Module PowerShellGet 时。 Import-Module: The required module 'PackageManagement' is not loaded. Load the module or remove the module from 'RequiredModules' in the file

我已经尝试将我的执行策略设置为不受限制,重新安装了 Windows,并将 PowerShell 更改为 TLS 1.2。

PowerShell 版本

5.1.19041.906

任何帮助,将不胜感激。

答案1

以管理员身份从 cmd.exe 运行此程序...

powershell.exe -NoLogo -NoProfile -Command 'Install-Module -Name PackageManagement -Force -MinimumVersion 1.4.6 -Scope CurrentUser -AllowClobber'

...然后再次尝试您想要做的事情。

答案2

在我的电脑上登录第二个帐户后,PowerShellGet 再次开始工作。不知道为什么会这样,但我没什么可抱怨的。

相关内容