Skip to content
⌘ NSIS Forum Archive

Access Hidden Registry Keys?

11 posts

sbabineau#

Access Hidden Registry Keys?

It doesn't appear that I can get access to hidden registry keys using the built-in Registry functions. Is this true? If so, is there another way?

-Steve.
sbabineau#
Thanks for the link! It is helpful. However, I would like to add/remove hidden registry keys with NSIS. Is there a way to access the registry without using WindowsAPI (The System plugin, perhaps?)?
Brummelchen#
Red Wine - plugin cant do this cause it only uses the API
which cannot handle direkt read/write to registry.
Brummelchen#
normally that shit is used for copy protection or avoiding change of serial numbers. i dont use any software with it - in case of it gets kicked immediately.
DimitarSerg#
Give me sample source please

Originally Posted by kichik View Post
Use the System plug-in to call NtCreateKey and friends.
Can anybody shows or shares a sample a part of source how to do this ?
LoRd_MuldeR#
This won't be that easy, because Nt/ZwCreateKey needs a pointer to a OBJECT_ATTRIBUTES structure.

Might be easier to write a simple plug-in for that purpose...
Anders#
Using structs with the system plugin is possible, but anyone can just set a breakpoint on System::Call and watch your calls as plain strings so you are not going to hide anything from people by using NSIS...