Jump to content

UAC is a standard user has control does not work.


radyofon
 Share

Recommended Posts

How to get administrator privileges on each bat #RequireAdmin command,the computer user if there are 2 pieces of these users and 1 standard standard user by the user and the program runs in the reg entries can not be required. This a Windows 7 64 bit platform.

#NoTrayIcon
#RequireAdmin[/size][/font][/color]
_BL_IE_Privacy_Sites("icisleri.gov.tr")
_BL_IE_Privacy_Sites("e-icisleri.gov.tr")

_BL_IE_Allow_Popup_Blocker("*.icisleri.gov.tr")
_BL_IE_Allow_Popup_Blocker("*.e-icisleri.gov.tr")

_BL_IE_Trusted_Sites("gov.trowa.icisleri")
_BL_IE_Trusted_Sites("gov.trowacert.icisleri")
_BL_IE_Trusted_Sites("gov.trwww.e-icisleri")
_BL_IE_Trusted_Sites("gov.trwww.icisleri")

RegWrite('HKCUSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones2', '1A04', "REG_DWORD", 0)
RegWrite('HKCUSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones2', '1609', "REG_DWORD", 0)
RegWrite('HKCUSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones3', '1609', "REG_DWORD", 0)
Func _BL_IE_Privacy_Sites($Sites, $Type = 1)
; 1 Always Allow
; 5 Always Block
RegWrite("HKCUSoftwareMicrosoftWindowsCurrentVersionInternet SettingsP3PHistory" & $Sites, "", "REG_DWORD", $Type)
EndFunc   ;==>_BL_IE_Privacy_Sites
Func _BL_IE_Allow_Popup_Blocker($Sites)
RegWrite("HKCUSoftwareMicrosoftInternet ExplorerNew WindowsAllow", $Sites, "REG_BINARY", "")
EndFunc   ;==>_BL_IE_Allow_Popup_Blocker
Func _BL_IE_Trusted_Sites($Sites)
RegWrite("HKCUSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZoneMapDomains" & $Sites, 'https', 'REG_DWORD', 2)
EndFunc   ;==>_BL_IE_Trusted_Sites
Func _SYSTEMFILEREDIRECT($WOW64NUMBER = "OFF")
If @AutoItX64 = 0 And @OSArch <> "X86" Then
  Local $WOW64_CHECK = DllCall("kernel32.dll", "int", "Wow64DisableWow64FsRedirection", "ptr*", 0)
  If Not @error Then
   If $WOW64NUMBER = "OFF" Then
    If $WOW64_CHECK[1] <> 0 Then DllCall("kernel32.dll", "int", "Wow64EnableWow64FsRedirection", "int", 1) ;Off
   Else
    If $WOW64_CHECK[1] <> 1 Then DllCall("kernel32.dll", "int", "Wow64DisableWow64FsRedirection", "int", 1) ;On
   EndIf
  EndIf
EndIf
EndFunc   ;==>_SYSTEMFILEREDIRECT
Edited by radyofon
Link to comment
Share on other sites

You can't use #RequireAdmin and write to HKCU at the same time, it will write the values to the wrong user's registry hive. Most users, even limited users can write to the HKCU keys, because they are meant for the current user to be able to modify.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

You can't use #RequireAdmin and write to HKCU at the same time, it will write the values to the wrong user's registry hive. Most users, even limited users can write to the HKCU keys, because they are meant for the current user to be able to modify.

I am running the program user has a limited (standard user). The program is running and install exe files. But does not the internet explorer settings. Edited by radyofon
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...