Files
2019-04-28 18:51:33 +01:00

25 lines
516 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