Files
PowerShell-PSDscResources/Examples/Sample_Environment_CreatePathVariable.ps1
T
2017-02-02 16:28:31 -08:00

27 lines
753 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_xEnvironment_CreatePathVariable
{
param ()
Import-DscResource -ModuleName 'xPSDesiredStateConfiguration'
Node localhost
{
xEnvironment CreatePathEnvironmentVariable
{
Name = 'TestPathEnvironmentVariable'
Value = 'TestValue'
Ensure = 'Present'
Path = $true
Target = @('Process', 'Machine')
}
}
}
Sample_xEnvironment_CreatePathVariable