Import-Module The specified module OneGet was not loaded because no valid module file was found in any module directory
Windows 10, PowerShell, OneGet, PackageManagement, Chocolatey
You may have tried the command:
Import-Module -Name OneGet
And received this message:
Import-Module : The specified module 'OneGet' was not loaded because no valid module file was found in any module directory.
But that's okay, because OneGet was renamed to PackageManagement. So just run this instead:
Import-Module -Name PackageManagement
And really, you probably don't even need to run that command at all.
Sources:
http://www.fixedbyvonnie.com/2014/11/5-minute-setup-using-oneget-chocolatey-windows-10/
http://blogs.technet.com/b/packagemanagement/archive/2015/05/05/10-things-about-oneget-that-are-completely-different-than-you-think.aspx
You may have tried the command:
Import-Module -Name OneGet
And received this message:
Import-Module : The specified module 'OneGet' was not loaded because no valid module file was found in any module directory.
But that's okay, because OneGet was renamed to PackageManagement. So just run this instead:
Import-Module -Name PackageManagement
And really, you probably don't even need to run that command at all.
Sources:
http://www.fixedbyvonnie.com/2014/11/5-minute-setup-using-oneget-chocolatey-windows-10/
http://blogs.technet.com/b/packagemanagement/archive/2015/05/05/10-things-about-oneget-that-are-completely-different-than-you-think.aspx
Comments