Files
PowerShell-PSDscResources/Examples/Sample_Environment_CreatePathVariable.ps1
T
Simon Heather 2a7b5eef2b Revert "Fix example dir BOM files"
This reverts commit 590a77441f.
2019-04-28 18:49:16 +01:00

27 lines
736 B
PowerShell

<#
.SYNOPSIS
Creates the environment variable 'TestPathEnvironmentVariable' and sets the value to 'TestValue'
if it doesn't already exist or appends the value 'TestValue' to the existing path if it does
already exist on the machine and within the process.
#>
Configuration Sample_Environment_CreatePathVariable
{
param ()
Import-DscResource -ModuleName 'PSDscResources'
Node localhost
{
Environment CreatePathEnvironmentVariable
{
Name = 'TestPathEnvironmentVariable'
Value = 'TestValue'
Ensure = 'Present'
Path = $true
Target = @('Process', 'Machine')
}
}
}
Sample_Environment_CreatePathVariable