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?
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?
Not directly. You'd have to approach each resource you want to module independently.
For example, if you want to model the existing windows roles and features, you could script out something like
Each resource will be unique in how you want to identify those things you want to control.
If you have a web-server, you can use Desired State Generator to create configurations for your web sites, application pools and IIS components.
Not everything, but it could give you a head start.
There is now something called ReverseDSC which allows you to create DSC configuration files based on an existing system. It still doesn't work for all aspects of the system but supports many common scenarios.
I created a PowerShell module called DscBaseline as I didn't want to create these configurations from scratch. It builds DSC configurations based on the system it is launched from. Available at:
More information available in the README.md with the following excerpt showing the coverage.