mirror of
https://github.com/PowerShell/PSDscResources
synced 2026-06-21 13:45:29 +00:00
porting registry
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
If the registry key value MyValue under the key
|
||||
'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Environment' does not exist,
|
||||
creates it with the Binary value 0.
|
||||
|
||||
If the registry key value MyValue under the key
|
||||
'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Environment' already exists,
|
||||
overwrites it with the Binary value 0.
|
||||
#>
|
||||
Configuration Sample_RegistryResource_AddOrModifyValue
|
||||
{
|
||||
Import-DscResource -ModuleName 'PSDscResources'
|
||||
|
||||
Node localhost
|
||||
{
|
||||
Registry Registry1
|
||||
{
|
||||
Key = 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Environment'
|
||||
Ensure = 'Present'
|
||||
ValueName = 'MyValue'
|
||||
ValueType = 'Binary'
|
||||
ValueData = '0x00'
|
||||
Force = $true
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user