Files
PowerShell-PSDscResources/Examples/Sample_Environment_Remove.ps1
T
2017-02-02 17:40:55 -08:00

25 lines
519 B
PowerShell

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