Jump to content

Sarah2016

Active Members
  • Posts

    41
  • Joined

  • Last visited

Everything posted by Sarah2016

  1. Thanks, but how to make this thing executable? I am thinking of using WinRAR to make SFX file that will run the a3x as command line in autoit.exe Is this the right way? or there are any better methods?
  2. Ops Sorry! you can move it to the right place please.
  3. Hi, I read about a3x and I guess it has advantage to decrease false positive but I couldn't understand how!! I read a lot about it but didn't grasp the concept! In the example demonstrated on the forum, they made 2 script files: one containing the body script (which will be combined to a3x) and another script to call the a3x (which will be combined to exe). In this case, the second file (exe one) will be detected as false positive !! Or is there any other way to run a3x that I am not aware of !?!?!
  4. Hi, If the computer is running on a user with administrative account and the user itself shelled an application, will the application have administrative properties by default?
  5. Thanks, in other words: is it there in all windows 7 and above computers ??
  6. Hi all, I want to copy some files in autoit script; found topics about the "xcopy" and it is great. is "xcopy" built-in windows? or a third-party utility? Thanks
  7. tried it at home (proxy not needed) and got message sent failed #edit: worked! read FAQ in the web, need some special considerations for gmail
  8. In work, we use a local proxy in order to get internet connection (10.1.1.4:80) ... Is there any way I can let the script use this proxy??? Thanks in advance
  9. should I use: $obj.setProxy(1) ??
  10. Hi, I've quick winHTTP question: Does winHTTP by default use the proxy used by IE? If not, how can I make it use it? Thanks
  11. Hi, I am using "WinAPIDiag.au3" my question is: in case the user is running on a proxy (on IE), does the script will automaticallly run on that proxy to connect to the net.. or I have to manually enter the proxy in the script..
  12. I'm beginner... Sorry.. but what does "shell" mean?
  13. dropbox has default directory as you said but: 1) not all pc have dropbox in the default directory 2) even the default directory differs... as not all pc's have the same user account (e.g. some will be c:\user11\dropbox forexample others will hhave c:\user4444\dropbox) so I will need to use @userprofile and not explicit directory so we will get back to the same problem!
  14. didn't understand what you meant well.. the idea is that I have several computers .. i want to know when the computers were turned on and when they were shut down.. all have dropbox in them.. but the directory of dropbox differ.. I will keep this simple script in the dropbox folder of all computers so that I can see the "event log" easily... that's why I want to use @workingdir to locate the dropbox P.S. just knew that there are @workingdir and @scirptdir .. do they diffeR?
  15. The exe file will have different directory! I might run the exe file from my USB Drive ... it will be F:\ for example, or it may be on the desktop etc etc I want to keep the created file with the exe in the same folder
  16. Got the exact problem.. It is because the path is not defined explicitly (as Jos stated, strangely I couldn't figured it out despite he mentioned it from the beginning). "Run by windows" means when I put the file in startup folder, or when I put it in registry in "Run" Did some googling .. some ppl have the same problem http://stackoverflow.com/questions/2700015/why-cant-my-c-sharp-app-create-files-in-windows-7 So, it is not autoit problem! but how to solve it? in case I don't want to use explicit directory
  17. Hi, There is a web page, that I should enter ID and then click "next" then it shows the date of registration... I want to do a script that it automatically enters around 500 IDs and saves the date of registration of each ID in a file... Will that be hard? I'm beginner
  18. any help please
  19. Hi all, I tried a lot to solve the following problem: In the script below, sometimes I get an error on the line lf send($data). This is because the data size may be large with relative to the internet speed or because of interrupted internet connection. This lead to an error that will crash the running of program. Any solution to avoid this error?? #include-once Global Const $HTTP_STATUS_OK = 200 Func HttpPost($sURL, $sData = "") Local $oHTTP = ObjCreate("WinHttp.WinHttpRequest.5.1") $oHTTP.Open("POST", $sURL, False) If (@error) Then Return SetError(1, 0, 0) $oHTTP.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded") $oHTTP.Send($sData) If (@error) Then Return SetError(2, 0, 0) If ($oHTTP.Status <> $HTTP_STATUS_OK) Then Return SetError(3, 0, 0) Return SetError(0, 0, $oHTTP.ResponseText) EndFunc
  20.    if _FindNetwork() = "xavier" Then       $obj.SetProxy(2, "number")    endif I get error for the above code. Any Help? & what does this code exactly do?
  21. Anyone help me to modify the following script so that: 1. It excludes all files starting with $__ 2. It excludes all files in the script directory Local $Folder = _FileListToArrayRec("D:\Documents", "*.doc*", $FLTAR_FILES, $FLTAR_RECUR, $FLTAR_SORT, $FLTAR_FULLPATH) Thanks
  22. thanks, but how? using while loop will result in the problem mentioned in my first post
  23. Oh yes, that's another point! any suggestion? Or we might put an announcement that USB must have only the documents that will be printed??
×
×
  • Create New...