From 9695db53e08d5ff79d874593497bdc5a3e0c8fb4 Mon Sep 17 00:00:00 2001 From: = Date: Tue, 9 Feb 2016 06:42:02 +0000 Subject: [PATCH] Add extra PS Drives so you can access other parts of the registry --- windows/win_regedit.ps1 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/windows/win_regedit.ps1 b/windows/win_regedit.ps1 index e3b8c9d3b10..fe060e101c6 100644 --- a/windows/win_regedit.ps1 +++ b/windows/win_regedit.ps1 @@ -21,6 +21,10 @@ $ErrorActionPreference = "Stop" # WANT_JSON # POWERSHELL_COMMON +New-PSDrive -PSProvider registry -Root HKEY_CLASSES_ROOT -Name HKCR -ErrorAction SilentlyContinue +New-PSDrive -PSProvider registry -Root HKEY_USERS -Name HKU -ErrorAction SilentlyContinue +New-PSDrive -PSProvider registry -Root HKEY_CURRENT_CONFIG -Name HCCC -ErrorAction SilentlyContinue + $params = Parse-Args $args; $result = New-Object PSObject; Set-Attr $result "changed" $false;