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

25 lines
536 B
PowerShell

<#
.SYNOPSIS
Removes the environment variable 'TestEnvironmentVariable' from
both the machine and the process.
#>
Configuration Sample_xEnvironment_Remove
{
param ()
Import-DscResource -ModuleName 'xPSDesiredStateConfiguration'
Node localhost
{
xEnvironment RemoveEnvironmentVariable
{
Name = 'TestEnvironmentVariable'
Ensure = 'Absent'
Path = $false
Target = @('Process', 'Machine')
}
}
}
Sample_xEnvironment_Remove