Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (37 - 39 of 3866)

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Ticket Resolution Summary Owner Reporter
#1498 Fixed #RequireAdmin causes script to not complete/run when UAC is turned off and user has normal privileges trancexx neil.younger@…
Description

Running the following example script on Vista or Win7 machine with UAC turned off as a user with normal privileges never shows the test message box and continues to consume CPU cycles, slowing the PC down. Have to log out of the user account to resolve.

#RequireAdmin
MsgBox(0,"test","Test")

With UAC off using a Admin user then there is no issue. With UAC on using a normal user then there is no issue.

#2197 Duplicate #RequireAdmin creates a critical error, if the user doesn't start it as local admin jmalmgren@…
Description
#RequireAdmin
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Outfile=C:\Temp\CriticalError.exe
#AutoIt3Wrapper_Res_Description=Critical error using #RequireAdmin
#AutoIt3Wrapper_Res_Fileversion=1.0.0.0
#AutoIt3Wrapper_Res_LegalCopyright=© 2012: J. Malmgren, wwww.tryware.dk
#AutoIt3Wrapper_Res_Language=1033
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****

;	***** WARNING: Don't compile and run this script, because it restarts itself thousands of times with new PID's, so you can't stop it again using TaskManager.exe
;	There is only 2 ways to stop it again: Restart your computer, or rename C:\Temp\CriticalError.exe to something else using explorer.exe
;
;	The reason is kind of described in the help file: "As this function launch a new process, some functions as Consolewrite() cannot be captured"
;
;	Yes it certainly launch a new process, launch a new process, launch a new process, launch a new process, launch a new process, launch a new process, launch a new process


	Local $_sMsg = "If #RequireAdmin is used, but the user isn't local administrator, and doesn't rightclick and select 'another user' being local administrator, "
	$_sMsg = $_sMsg & "then the script calls itself thousands of times, no matter what you have below, so the MsgBox function below isn't shown!" & @CRLF & @CRLF
	$_sMsg = $_sMsg & "But if you do nothing else than removing the first line with #RequireAdmin, this script works!"

	MsgBox(16,"Critical error:",$_sMsg)

Exit


#2412 Rejected #include - Question mlipok
Description

in Keyword Reference / #include

Why this document contain this description:

If Opt("TrayIconDebug",1) only 64 include files name can be displayed in the traytooltip. for the other no filename will be displayed.

Of course, you can view the names of these files, but what does this mean for this part of the documentation ?

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Note: See TracQuery for help on using queries.