Disable User Account Control (UAC) in Windows Vista
You need to open the notepad enter the following lines
C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f
save this file as Disableuac.bat
Command to suppress Prompt For Consent (Consent UI)
You need to open the notepad enter the following lines
C:\Windows\System32\cmd.exe /k %windir%\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v ConsentPromptBehaviorAdmin /t REG_DWORD /d 0 /f
save this file as Consentuioff.bat
Command to turn on Prompt For Consent (Consent UI)
You need to open the notepad enter the following lines
C:\Windows\System32\cmd.exe /k%windir%\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v ConsentPromptBehaviorAdmin /t REG_DWORD /d 2 /f
save this file as Consentuion.bat
After creating aove two files right-click on one of them and choose Run as Administrator.
Does that help?