Examples/SmaVariable.ps1
Configuration RunbookDirectory { Param ( $NodeName ) Import-DscResource -ModuleName 'xSCSMA' Node $NodeName { SmaVariable Example { Name = "Variable" Value = 'Value' WebServiceEndpoint = 'https:\\localhost' Ensure = 'Present' } } } RunbookDirectory -NodeName "localhost" -OutputPath .\SMA Start-DscConfiguration -Path .\SMA -Wait -Force -Verbose |