can i remotely edit registry through a script
i need to delete this registry entry from multiple computers and suggestions
HKLM\SYSTEM\controlset001\control\print\environments\windows x64 drivers\version 3\HP Color LAserjet Pro MFP M277 PCL 6"
0
Comments
Found this on Google.
https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/reg-delete
Syntax
Parameters
<keyname1>
\\<computername>\
) as part of the keyname. Omitting\\<computername>\
causes the operation to default to the local computer. The keyname must include a valid root key. Valid root keys for the local computer are: HKLM, HKCU, HKCR, HKU, and HKCC. If a remote computer is specified, valid root keys are: HKLM and HKU. If the registry key name contains a space, enclose the key name in quotes.<Valuename>
I would attempt to delete it on your machine or a test machine using command line or Powershell, then you should be able to add it right into a deployment using CMD or PS step. OR you can make it into a tool in PDQ INV and then use it that way.
Hope this helps. I've dealt with this too.