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>