Does everyone know that there is a new version of PowerShell available for download? The PowerShell team isn't waiting on Server software releases to deliver new features and functionality. They're delivering updates as soon as they are ready.
OneGet is a new way to discover and install software packages from around the web. With OneGet, you can:
· Manage a list of software repositories in which packages can be searched, acquired, and installed
· Search and filter your repositories to find the packages you need
· Seamlessly install and uninstall packages from one or more repositories with a single PowerShell command
This first version of OneGet installs and searches software from Chocolatey repositories. Support of additional repositories will come in subsequent versions. Here are some sample commands to get you started:
Import module:
PS> Import-Module -Name OneGet
Enumerate the list of OneGet commands available:
PS> Get-Command -Module OneGet
CommandType Name ModuleName
----------- ---- ----------
Cmdlet Add-PackageSource OneGet
Cmdlet Find-Package OneGet
Cmdlet Get-Package OneGet
Cmdlet Get-PackageSource OneGet
Cmdlet Install-Package OneGet
Cmdlet Remove-PackageSource OneGet
Cmdlet Uninstall-Package OneGet