Examples/Resources/IniSettingsFile/1-IniSettingsFile_SetPlainTextEntry_Config.ps1
<#PSScriptInfo
.VERSION 1.0.0 .GUID 389e1516-5961-4b13-b698-62fbfb8c1107 .AUTHOR Daniel Scott-Raynsford .COMPANYNAME .COPYRIGHT (c) 2018 Daniel Scott-Raynsford. All rights reserved. .TAGS DSCConfiguration .LICENSEURI https://github.com/PlagueHO/FileContentDsc/blob/master/LICENSE .PROJECTURI https://github.com/PlagueHO/FileContentDsc .ICONURI .EXTERNALMODULEDEPENDENCIES .REQUIREDSCRIPTS .EXTERNALSCRIPTDEPENDENCIES .RELEASENOTES First version. .PRIVATEDATA 2016-Datacenter,2016-Datacenter-Server-Core #> #Requires -module FileContentDsc <# .DESCRIPTION Set the `Level` entry in the [Logging] section to `Information` in the file `c:\myapp\myapp.ini`. #> Configuration IniSettingsFile_SetPlainTextEntry_Config { Import-DSCResource -ModuleName FileContentDsc Node localhost { IniSettingsFile SetLogging { Path = 'c:\myapp\myapp.ini' Section = 'Logging' Key = 'Level' Text = 'Information' } } } |