PowerShell Package Management allows you to find, install, update and uninstall PowerShell Modules and other packages.
PowerShellGallery.com is the default source for PowerShell modules. You can also browse the site for available packages, command and preview the code.
To find a module that ends with DSC
Find-Module -Name *DSC
If for some reason, the default PowerShell module repository PSGallery
gets removed. You will need to create it. This is the command.
Register-PSRepository -Default
Find-Module -Name <Name>
Install-Module -Name <name>
Uninstall-Module -Name <Name> -RequiredVersion <Version>
Update-Module -Name <Name>