Custom Query (3927 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (427 - 429 of 3927)

Ticket Resolution Summary Owner Reporter
#428 No Bug avast antivirus blocking autoit as a virus fred.dixon@…
Description

the july-03-08 virus sigs update is now blocking autoit scripts from running by not alowing autoit.exe to run. the scripts blocked are ones that i have authored for simple process kills. so avast is show a false positive in this case. cant seem to get through to avast on this issue.

#429 Rejected shellexecute() new feature lookinmyeyes
Description

I have code that i would use runasset() to change the profile that a program will run under with version 3.10, i used shellexecute() after runasset() to elevate the shellexecute to specifig user privileges. i know i can use ShellExecute("rundll32.exe", "shell32.dll, OpenAs_RunDLL " & $filename, "", "runas")

to get the windows run as box, but this requires to enter username and password after they have been entered into the autoit code to start up the application.

I am suggesting something like shellexecuteas() or something similar to runas() so that we can specify in the code username and password to use.

#430 Duplicate Deleting disabled image controls hard crashes AutoIt koshyjohnuk@…
Description

The summary and the following code should be enough to understand the problem. Please take any image file say "example.jpg" and put it in the same directory as the script - if the file does not exist, the crash won't occur.

Global Const $GUI_DISABLE = 128
Local $msg
Local $tp = @TempDir
Local $ginstall = GUICreate("installer",420,375)

Local $b_yes = GUICtrlCreateButton ("Yes",235,335,80,26)
FileInstall("example.jpg",$tp &"\top",1)
Local $i_img = GUICtrlCreatePic ($tp &"\top",0,52,420,270)
GuiCtrlSetState(-1,$GUI_DISABLE) ;$i_img IS NOW DISABLED
GUISetState()
		
While 1
	$msg = GUIGetMsg ()
	Switch $msg
		Case $b_yes
			GUICtrlDelete($i_img) ;CRASH AT THIS POINT
			GUICtrlDelete($b_yes)
			ExitLoop
	EndSwitch
WEnd

And if it is of any use, here's the information given by Windows:

Problem Event Name: APPCRASH

Application Name: AutoIt3.exe Application Version: 3.2.12.0 Application Timestamp: 482d38b9 Fault Module Name: AutoIt3.exe Fault Module Version: 3.2.12.0 Fault Module Timestamp: 482d38b9 Exception Code: c0000005 Exception Offset: 0003c4e5 OS Version: 6.0.6001.2.1.0.768.3 Locale ID: 1033 Additional Information 1: fd00 Additional Information 2: ea6f5fe8924aaa756324d57f87834160 Additional Information 3: fd00 Additional Information 4: ea6f5fe8924aaa756324d57f87834160

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.