I followed the two sets of instructions below to set up a pull server and a test client.
https://msdn.microsoft.com/en-us/powershell/dsc/pullserver
https://msdn.microsoft.com/en-us/powershell/dsc/pullclientconfignames
The test client works fine. I’m able to set the LCM and use an xSQLServer config to create a SQL alias. However, when I tried to add two more clients, I was able to set the LCM but got the following error when running “Update-DscConfiguration -Wait” (I replaced the server name and guid with placeholders).
The attempt to get the action from server
https://mydscserver:8080///PSDSCPullServer.svc/Nodes(AgentId=‘00000000-0000-0000-0000-000000000000’)/GetDscAction
failed because pullserver is not available or there is no registered node with AgentId
00000000-0000-0000-0000-000000000000 on the server.
+ CategoryInfo : ResourceUnavailable: (root/Microsoft/…gurationManager:String) , CimException
+ FullyQualifiedErrorId : WebDownloadManagerGetActionNodeConfigurationNotFound,Microsoft.PowerShell.DesiredStateCo
nfiguration.Commands.GetDscActionCommand
+ PSComputerName : localhost
Any idea why a second client might fail or in general why the above error might occur?