mirror of
https://github.com/PowerShell/PSDscResources
synced 2026-06-21 13:45:29 +00:00
25 lines
516 B
PowerShell
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
|