Delete Registry key denied

0

I would like to create a .cmd file to delete a specific key within registry key 'Run'

I tried to run this codeline but it doesn't work

REG DELETE HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\Adobe Creative Cloud /f

user977007

Posted 2018-12-23T21:51:14.430

Reputation:

1Put keys containing spaces in double quotes REG DELETE "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\Adobe Creative Cloud" /f – LotPings – 2018-12-23T21:54:26.000

It doesn't work, I have pasted this codeline in a .cmd file doesn't do its work reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\Adobe Creative Cloud" /f – None – 2018-12-24T08:20:13.483

1There may be a permissions issue attached to they key. You will have to modify the permissions on the Adobe key using regedit. – Moab – 2018-12-24T17:30:44.623

Is there any error message? If there is an "access is denied" error, we can refer to this case: https://superuser.com/questions/489679/reg-delete-gives-me-access-is-denied-but-regedit-delete-is-ok

– Daisy Zhou – 2018-12-25T10:02:43.060

Answers

0

After years of searching for a way to easily delete registry entries - I discovered RegScanner.

RegScanner by NirSoft is a small free utility that allows you to scan the Registry, find the desired Registry values that match to the specified search criteria, and display them in one list.

One of the best features of RegScanner is the ability to search for a keyword or value and create a REG file from the resulting list.

This comes in handy when you have multiple registry entries that refuse to delete. Many stubborn registry entries will delete when you create a REG file and replace all [HKEY values with [-HKEY before executing

bobkush

Posted 2018-12-23T21:51:14.430

Reputation: 360