Leaderboard
Popular Content
Showing content with the highest reputation on 10/19/2018 in all areas
-
No! Wear a condom while coding. Seriously what do you believe the answer should be to such question?5 points
-
It was pretty terrible, and did things the most breakable way possible in every facet. So forum questions would not educate as they were about fixing some retarded script that a tool wrote, rather than you learning something about approach and structure by fixing the retarded scripts you will write.2 points
-
Create message if executable is successful/failure
Dragonfighter and one other reacted to JLogan3o13 for a topic
There are a couple of ways to go about this, but it all depends on the install. Is the install executable writing to its own log file, or even the Event Viewer, to determine successful exit code? Does the executable disappear once it is done so you can check for the existence of the process? A little more detail is needed, as not every install is made the same.2 points -
Don't you think this is simply a stupid question? You are asking the mugger whether he's dangerous. So you expect the honest answer here?2 points
-
Version 1.6.3.0
17,292 downloads
Extensive library to control and manipulate Microsoft Active Directory. Threads: Development - General Help & Support - Example Scripts - Wiki Previous downloads: 30467 Known Bugs: (last changed: 2020-10-05) None Things to come: (last changed: 2020-07-21) None BTW: If you like this UDF please click the "I like this" button. This tells me where to next put my development effort1 point -
Is it safe?
FrancescoDiMuro reacted to JLogan3o13 for a topic
You obviously did not read the thread to which I pointed you to, or you would have read the first bullet point about reading and adhering to the forum rules. Read it now, before posting again, and you will see why this thread is locked.1 point -
You are still not answering what you want to automate, only how, which was clear already. So what is the purpose of all of this?1 point
-
Is it safe?
Jeppee reacted to JLogan3o13 for a topic
As mentioned, AU3 Record was removed, mainly because recording mousemoves and mouseclicks is inherently unreliable. There is almost always a better way to do things. First, though, you need to look at this post. As stated therein, we need a detailed description of what you want to do so we can assist; the "well, maybe something like this sorta kinda" doesn't help us help you. Think about a specific task you would like to accomplish, look through the help file, and if you're stuck after trying things on your own, post back here.1 point -
There used to be a tool called AU3Record. This was removed from the package some time ago and if you read the forum rules, you just might figure out the reason - it's a must anyway. Secondly, this forum has a lot of examples of usage. Take a look at the topics in Example Scripts. Finally - after downloading, look at the Help File and especially look at the Tutorials.1 point
-
Don't see what you are going to use it for, or did I miss something?1 point
-
Just watch false flags that will occur due to how some of the binaries are packed. In my usage, if the number of engines that pop isn't double digits, it's probably benign. And we applaud your security mindset, but we also do it in a sarcastic and berating manner. We will apologize for that repeatedly during your stay here1 point
-
You can always up the file to an online tool like VirusTotal, which barring a local AV would be a reasonable step.1 point
-
Ummm, if you have no means to scan binaries against known signatures before installing them, I would certainly recommend doing that first. Not that we are not all trustworthy people, but you are asking users if the product is safe. You might want that attestation from a trusted 3rd party, and not randos on a forum.1 point
-
Is it safe?
Jeppee reacted to Davidowicza for a topic
The download from this website is, yes. But if you are trying to download a random .exe from somewhere else, then maybe? maybe not?1 point -
Is it safe?
Jeppee reacted to Davidowicza for a topic
Is Autoit Safe? is pretty generic... Depends on what you define as "safe". If you are asking if it is 100% secure, then no, no scripting language is. Could you elaborate more on what you mean by safe?1 point -
Copy file from my computer to a remote server
FrancescoDiMuro reacted to AdamUL for a topic
You do not have any error checking your DriveMapAdd and FileCopy. Here's snippet for you to work with. #include <WinAPIDlg.au3> Global $sLocalPath = "C:\Users\user\Desktop\test.zip" Global $sShare = "\\PC-NAME\c$" Global $sSharePath = $sShare & "\Users\user\Desktop\" Global $sDomain = "xxxxxx.com" Global $sMappedDrive = "" Global $sMsg = "" Global $iMsgBoxAnswer = 0 Global $aUser[2] = ["", ""] While True $aUser = _WinAPI_ShellUserAuthenticationDlgEx($sShare & " Share", "Enter your username and password for access.", $aUser[0], $aUser[1]) If @error Then Exit If StringLeft($aUser[0], 3) <> $sDomain & "\" Then $aUser[0] = $sDomain & "\" & $aUser[0] $sMappedDrive = DriveMapAdd("*", $sShare, 0, $aUser[0], $aUser[1]) Switch @error Case 0 $aUser = 0 ExitLoop Case 2 $sMsg = "Access to the remote share was denied." Case 3 $sMsg = "The device is already assigned." Case 6 $sMsg = "Invalid password." Case Else $sMsg = "Error accessing remote share." EndSwitch $iMsgBoxAnswer = MsgBox($MB_YESNO + $MB_ICONERROR, "SHARE ACCESS ERROR" , $sMsg & @CRLF & @CRLF & "Would you like to try to connect again?") Select Case $iMsgBoxAnswer = $IDYES Case $iMsgBoxAnswer = $IDNO Exit EndSelect $aUser[1] = "" WEnd If Not FileCopy($sLocalPath, $sSharePath, $FC_OVERWRITE) Then Exit MsgBox($MB_ICONERROR, "ERROR!", "Error copying file.") DriveMapDel($sMappedDrive) Adam1 point -
Using AutoIt with Windows Task Manger
FrancescoDiMuro reacted to Jos for a topic
Welcome, That will be possible at a later stage when you're status has change from "New Member" to "Member".1 point -
The full SciTE4AutoIt3 package comes with SciTE config (which should be under the Tools menu), it can change various settings including the fonts used1 point
-
preview how is possible see link ??
FrancescoDiMuro reacted to Jos for a topic
sigh ... another begging thread and honestly growing tired of your lack of effort shown so going to put you on hold for a month so you have to sort things out yourself. You are welcome to actively rejoin this community after this month but will need to change your approach as indicated, else don't bother. Jos1 point -
Troubles using VirtualBox and _ScreenCapture - (Locked)
FrancescoDiMuro reacted to water for a topic
Welcome to AutoIt and the forum! Seems you missed to read the forum rules. Especially the part about game automation. Please do so now! Then you will understand why you won't get any help on this subject.1 point -
Hi everyone. I'm new member of AutoITscript I'm developing an IDE, with editor SCI_CreateEditor ( in _Scilexer.au3, it's support syntax highlight). I need position of autocomplete. I see in SCI_Au3Exension.au3 (in Includes foder) : Who can help me ? And for example. SciLexer.dll _SciLexer.au3 SCI_Au3Extension.au3 scintilla.h.au31 point
-
Wouldn't it be nice if there was a screenshot with each example script?1 point
-
AutoIt and Scintilla based Text Editor a.k.a ASciTE Based off of and ' frameborder='0' data-embedContent>text editors! Click their names to see their projects! Tested only on Win XP 32bit. This will not work on 64bit systems! ASciTE script source => ASciTE.rar Previous Downloads: 44 ASciTE Script Source => ASciTE.rar Previous Downloads: 10 ChangeLog Details Other Files Here are some extractions from the script of thing that took conciderable time, I've taken out what I would assume some people would probably want, such as the arrow for the tab switching (Which stopped working in the latest version) and the IPC (inter process communication) through windows messages that was created for this script from code by wolf9228 in this Tab re-ordering indicator (little red arrow) => Tab Reposition.au3 IPC Script Communication => Simple IPC.au3 Feature details *Portable mode is activated when the "AutoIt3" directory is found in the same directory as the script, but if an installed version is detected, it will default to using that one. ** There is a bug present that I could not figure out where double clicking on the title bar to maximize the window will cause the script to forget its initial size causing the script to stay full screen when re-sized in this manner Other information Credits Background The more you know...1 point