PowerShell modules: install from PSGallery with Cerewro
The PowerShell Gallery is the official repository of third-party modules for PowerShell. With Install-Module you can add cmdlets to manage Azure, Active Directory, Exchange, AWS and hundreds more systems.
Install module from PSGallery
Install-Module -Name Az -Repository PSGallery -Force
View installed modules
Get-InstalledModule | Select-Object Name, Version, InstalledDate
Most popular modules
| Module | Purpose |
|---|---|
| Az | Azure resource management |
| ActiveDirectory | AD DS administration |
| ExchangeOnlineManagement | Exchange Online / Microsoft 365 |
| AWSPowerShell | Amazon Web Services |
| SqlServer | SQL Server and Azure SQL |
| Pester | PS script unit testing |