All Questions
Tagged with dsc powershell-v4.0
4 questions
1
vote
1
answer
1k
views
Manual PowerShell DSC module installation
I am working on servers without access to the Internet. I am uploading DSC modules to the server, E.g. AccessControlDSC.
The modules are being installed in c:\Program Files\WindowsPowerShell\Modules
...
2
votes
1
answer
232
views
Is there a way to generate differences when a server is out of sync with DSC Configuration?
The following command can be used to determine if there has been configuration drift on a system:
Test-DscConfiguration –CimSession $session
The command only returns true or false. Is there a way ...
9
votes
4
answers
4k
views
Can a PowerShell DSC configuration file be created from a current system build?
Is there a way to build a PowerShell desired state configuration (DSC) configuration file from a current system? Opposed of building the entire file from scratch?
3
votes
1
answer
2k
views
How do I debug Powershell Desired State Configuration not generating MOF files?
I'm following the most basic example on MSDN and I'm failing to get it to work. I've got my configuration defined as follows:
Configuration MyWebConfig
{
Param($ComputerName)
Node $...