xHyper-V not in repository?

Met het Powershell commando Install-Package -Name xHyper-V kunnen de functies voor Powershell DSC geïnstalleerd worden. Echter is deze module niet in de standaard repository aanwezig maar staat in de PSGallery.

Install-Module xHyper-V
Module xHyper-V was not found in central repository
At C:\Users\noost\OneDrive\Documenten\WindowsPowerShell\Modules\PsGet\PsGet.psm1:692 char:13
+             throw "Module $Module was not found in central repository ...
+             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OperationStopped: (Module xHyper-V...tral repository:String) [], RuntimeException
    + FullyQualifiedErrorId : Module xHyper-V was not found in central repository

Om de repository te wijzigen naar de PSGallery, gebruik het volgende commando:

Set-PSRepository -Name PSGallery

Hierna kan de module wel gevonden worden.