Re: Windows 7 and registry
You could change the UAC by...
By clicking on Project> <"your project name"> Properties... > View Windows Settings > and change this line
VB.net Code:
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
to
VB.net Code:
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
Good Luck :wave:
Re: Windows 7 and registry
Re: Windows 7 and registry
Re: Windows 7 and registry
If you are writing to HKEY_CURRENT_USER then you should not need admin permissions or need to bother with UAC etc. So you must just be not writing the code correctly that is supposed to create/modify this registry key. Show us the code you are using and I'm sure someone will be able to point out where the problem is.