I am trying to setup a new DSC pull server in a dev environment.
The VM does not have internet access.
I’m finding that I cant run the “Install-Module -Name xPSDesiredStateConfiguration” command because it returns - WARNING:Unable to download the list of available providers. Check your internet connection.
Is there any way to download and save the module on a computer that has internet access and import it in an offline fashion?
Yes it is possible to download the modules on a computer with internet access and then put it on your pull server. Here are the steps:
Download the module using Install-Module cmdlet on a machine with internet access. Powershell will install the module under $env:ProgramFiles\WindowsPowerShell\Modules
Copy the module on your pull server under $env:ProgramFiles\WindowsPowerShell\Modules folder.
Install-Module is attempting to hit the PowerShell Gallery, so yes, you’d need Internet access. But yes, you can also download the module on any other computer and simply copy its folder.