Search the Community
Showing results for tags 'a3x'.
-
Hello, there was a discussion in the German AutoIt forum about false positive messages from virus scanners for compiled exe files. Therefore we did some tests and found out that a3x files do not trigger a relevant virus message and your AutoIt3.exe is apparently also known to the manufacturers,...
-
Au3toCmd --- Avoid false virus positives Since many virus scanners sometimes prevent a "compiled autoit EXE" from being executed as "false positive", the "*.A3X" format is a suitable format to avoid this problem. See here for more information. In order to simplify this procedure, I wrot...
- 176 replies
-
- a3x
- false positives
-
(and 3 more)
Tagged with:
-
(If translated with a translator, it may be written a little awkwardly. I would be grateful if you could understand my situation) As mentioned in the title, the icon file, which was applied well when compiled with exe, does not apply when compiled with a3x, and is displayed as the default autoi...
-
Local $sAxName Local $oMSComm $sAxName = "MSCOMMLib.MSComm.1" $oMSComm = ObjCreate($sAxName) MsgBox(0, Default, StringFormat("Name: %s, Obj %d, Err %d", $sAxName, IsObj($oMSComm), @error)) I'm talking to serial ports (for Arduino) using the MSComm object. It all runs fine from SciTE or .exe. If I...
-
Hi all, What is A3X output type in compile window ?. What is the speciality of that type ?. I can't find it in help file.
-
A3X Script Extract With newer versions of AutoIT (v3.3.10.0+), the compiled script is no longer appended to files as an overlay, and instead is embedded as a binary resource. This leads my previous AutoIt-script detection UDF lacking. However, since that UDF (>PE File Overlay Extraction) was ta...