-
Posts
1,250 -
Joined
-
Last visited
-
Days Won
4
Exit last won the day on July 22 2022
Exit had the most liked content!
Profile Information
-
Member Title
Exit
Exit's Achievements
-
s.koni reacted to a post in a topic: Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
-
Exit reacted to a post in a topic: I thinks just me, but the _Date functions weren't working f - (Moved)
-
Exit reacted to a post in a topic: AutoIt Snippets
-
Exit reacted to a post in a topic: AutoIt 3.3.16.1 Release Candidate
-
Exit reacted to a post in a topic: What should AutoIT 4 have
-
Musashi reacted to a post in a topic: Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
-
Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
Exit replied to Exit's topic in AutoIt Example Scripts
New version in first post Version: 2022.09.01 - Optimized annual cleaning. When using Au3toCmd it makes no sense to write data to @scriptdir as that is not the directory where the CMD file is located. The CMD file is located in @workingdir. If data is written to @scriptdir, it was deleted during the annual cleanup. With the new version, this data is retained and may have to be deleted manually. In order not to suffer any data loss, ALL *.CMD should be recreated with Au3toCmd.- 176 replies
-
- a3x
- false positives
-
(and 3 more)
Tagged with:
-
Exit reacted to a post in a topic: Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
-
taurus905 reacted to a post in a topic: Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
-
Exit reacted to a post in a topic: Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
-
Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
Exit replied to Exit's topic in AutoIt Example Scripts
Here my directions: ;~ Global $p_Example_Folder = @ScriptDir & "\Example\" Global $p_Example_Folder = @WorkingDir ;~ $p_Ini_File = @ScriptDir & "\" & $s_Program_Name & ".ini" $p_Ini_File = @WorkingDir & "\" & $s_Program_Name & ".ini" Because *.a3x is in the @scriptdir but *.cmd is in the @workingdir And you want the *.ini file in the *.cmd directory. I hope it helps.- 176 replies
-
- a3x
- false positives
-
(and 3 more)
Tagged with:
-
kurtykurtyboy reacted to a post in a topic: Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
-
taurus905 reacted to a post in a topic: Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
-
Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
Exit replied to Exit's topic in AutoIt Example Scripts
Yes Just try it The test.cmd is in the current working directory.- 176 replies
-
- a3x
- false positives
-
(and 3 more)
Tagged with:
-
Exit reacted to a post in a topic: Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
-
Exit reacted to a post in a topic: Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
-
Exit reacted to a post in a topic: You may not have appropriate permissions when running Autoit
-
Zedna reacted to a post in a topic: [solved] How to write a icon handle to a file?
-
AutoBert reacted to a post in a topic: [solved] How to write a icon handle to a file?
-
Exit reacted to a post in a topic: WebDriver UDF - Help & Support (III)
-
Musashi reacted to a post in a topic: Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
-
argumentum reacted to a post in a topic: Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
-
Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
Exit replied to Exit's topic in AutoIt Example Scripts
@MightyWeirdPlease confirm that the bug has been fixed. Is fixed. See next post. New version in first post Version: 2022.07.27 - Support scripts with space in username.- 176 replies
-
- a3x
- false positives
-
(and 3 more)
Tagged with:
-
taurus905 reacted to a post in a topic: Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
-
Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
Exit replied to Exit's topic in AutoIt Example Scripts
New version in first post Version: 2022.07.22 - Support scripts with the same name but different content in different directories.- 176 replies
-
- a3x
- false positives
-
(and 3 more)
Tagged with:
-
Local wifi password viewer and qr generator
Exit replied to Hunter070's topic in AutoIt Example Scripts
Works like a charm in German environment Waiting for results in other languages. -
Local wifi password viewer and qr generator
Exit replied to Hunter070's topic in AutoIt Example Scripts
Works like a charm Waiting for results in other languages. -
Local wifi password viewer and qr generator
Exit replied to Hunter070's topic in AutoIt Example Scripts
since i only have access to the german version, i can't help. But surely someone will pick up the thread and continue spinning it. -
Local wifi password viewer and qr generator
Exit replied to Hunter070's topic in AutoIt Example Scripts
Simply read out the information regardless of the language. Here is a hopefully language-independent solution: #include <Array.au3> #include <string.au3> Global $hDLL = DllOpen("user32.dll") $aSSIDs = _GetSSIDs() For $i = 0 To UBound($aSSIDs) - 1 $key = _GetKeyFromSSID($aSSIDs[$i]) ConsoleWrite(@TAB & $aSSIDs[$i] & @TAB & @TAB & $key & @CRLF) Next Func _GetSSIDs() Local $iPID = Run(@ComSpec & " /c " & 'netsh wlan show profile', @ScriptDir, @SW_HIDE, $STDOUT_CHILD + $STDERR_CHILD) ProcessWaitClose($iPID) Local $sOutput = StdoutRead($iPID) Local $aOutput = DllCall($hDLL, 'Int', 'OemToChar', 'str', $sOutput, 'str', '') $aOutput = _StringExplode($aOutput[2], "-" & @CRLF) $sOutput = $aOutput[UBound($aOutput) - 1] Local $aSSIDs = _StringBetween($sOutput, " : ", @CRLF) Return $aSSIDs EndFunc ;==>_GetSSIDs Func _GetKeyFromSSID($sSSID) ;returns "1" if key is not present Local $iPID = Run(@ComSpec & " /c " & 'netsh wlan show profile name="' & $sSSID & '" key=clear', @ScriptDir, @SW_HIDE, $STDOUT_CHILD + $STDERR_CHILD) ProcessWaitClose($iPID) Local $sOutput = StdoutRead($iPID) Local $aOutput = DllCall($hDLL, 'Int', 'OemToChar', 'str', $sOutput, 'str', '') $aOutput = _StringBetween($aOutput[2], " : ", @CRLF) Return $aOutput[UBound($aOutput) - 6] EndFunc ;==>_GetKeyFromSSID Can the foreign language users please confirm that it works in their language. German OK English No French ? others ? -
Local wifi password viewer and qr generator
Exit replied to Hunter070's topic in AutoIt Example Scripts
Here we have a Babylonian confusion of languages. The Water solution only works with German locale. The Hunter070 solution only works with English locale. This is because the netsh output is parsed with locale constants. e.g. Global Const $sProfile = "All User Profile" Global Const $sProfile = "Profil für alle Benutzer" A language-independent version would be desirable. -
Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
Exit replied to Exit's topic in AutoIt Example Scripts
Oops, there must have been a typo. New version in the first post. Thanks to @argumentum- 176 replies
-
- a3x
- false positives
-
(and 3 more)
Tagged with:
-
Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
Exit replied to Exit's topic in AutoIt Example Scripts
New version in first post Version: 2022.06.23 - Support release candidates. They have the same version number as the final version. - Changed @CrLf to @Lf. Thanks to @obiwanceleri - Refresh Appdata\Au3toCmd\* once in year - Optimized #AutoIt3Wrapper handling. Leading blanks supported.- 176 replies
-
- a3x
- false positives
-
(and 3 more)
Tagged with:
-
Local wifi password viewer and qr generator
Exit replied to Hunter070's topic in AutoIt Example Scripts
A very nice tool. Maybe it would be possible to add a delete button for obsolete items. -
Au3toCmd -- Avoid false virus positives. (Version: 2022.09.01)
Exit replied to Exit's topic in AutoIt Example Scripts
No, since CRLF is the standard in Windows. Edit: Yes. implemented in version 2022.06.22. Thank you for the compliment- 176 replies
-
- a3x
- false positives
-
(and 3 more)
Tagged with:
-
Are my AutoIt exes really infected?
Exit replied to JSThePatriot's topic in AutoIt General Help and Support
@obiwanceleri It is best not to use an EXE file, but a CMD file. This is very easy to do with Au3toCmd. Just look in my signature.