Posts Tagged: DSC

Sysmon Configuration with DSC

23rd October, 2017

As part of a project I’m working on I was asked to install and configure Sysmon on all servers using DSC (Azure Automation DSC in this case)   After a bit of effort I came up with the following Configuration xSysmon { param ( [string] $SourcePath = “”, [string] $LocalPath = “”, [string] $ConfigFileName = […]

Azure Automation DSC Composite Configurations

18th October, 2017

While working on DSC for a client I came across the need to use Composite Configurations, however it needed to work with Azure Automation.  Microsoft did use to say that Azure Automation DSC does not support partial or composite configurations, however composite ones can actually be wrapped up as a module and imported.  After that […]