Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 221 Bytes

Misc-Windows-Registry.md

File metadata and controls

7 lines (7 loc) · 221 Bytes

Query a for a registry value's data at the given key

$key = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\EventLog\EventForwarding\SubscriptionManager"
$value = "1"
$data = (Get-ItemProperty -path $key).$value
$data