Accessing regedit without admin rights
c#
Solution
Answer: No, you cannot run regedit.exe without administrative privs.
What you CAN do, is with C#, use the prebuilt libraries that allows you access to the Registry http://msdn.microsoft.com/en-us/library/microsoft.win32.registry.aspx
Mind you though, you only have Read/Write access to HKEY_LOCAL_USER, and READONLY to everything else.
Problem
I was wondering if i could run a program without administrator rights? I am trying to run the program regedit from System32. I have also tried copying it onto a USB and running it from there, and both have not worked. Can someone help me run regedit using C# script?