Jump to content

cypher175

Active Members
  • Posts

    473
  • Joined

  • Last visited

cypher175's Achievements

Universalist

Universalist (7/7)

2

Reputation

  1. Is it possible to have multiple autoit processes update text data in different rows/columns in one main listview GUI window..? what functions would I need to use to accomplish this type of task..?
  2. Is there any way to code an Autoit exe to be able to be ran with a parameter? So I can run multiple instances of the same AutoIt.exe but with different parameters that are used as variables inside the AU3 code..?
  3. that runs consecutively doesn't it? I am wanting to run/send all commands all at once simultaneously!!! Is Autoit capable of this type of thing?
  4. I have a lil command-line app that i am wanting to send multiple simultaneous parameters to, is there anyway with autoit to accomplish this..? like if I have all the parameters to be sent to the app in an array, how can I fire them all off at once..?
  5. is there a way to clear the cookies that get cached using these winhttp functions at all..?
  6. If using this WinHTTP Function within multiple .exe's simultaneously, will it flood the DLL call or something..?? Cause I have 200 .exe's all running simultaneously performing some database gathering on a website using my Win7 X64 i7 980X CPU with 12GB Ram PC and I'm noticing some stalling/lagging ever few seconds.. Not sure if its the website lagging or the multiple calls to use the WinHTTP Function from all the multiple processes..? Im also using multiple fast proxies so I can overcome the max connections per IP to the server restriction.. What all can I check for to see what might be causing this Lag..? If I use only 4 processes of my script, I notice no lag at all..? so what do guize..?
  7. _WinHttpSetOption($hRequest, $WINHTTP_OPTION_DISABLE_FEATURE, $WINHTTP_DISABLE_REDIRECTS) Does this Code Enable or Disable Redirects..? I was trying to get a cookie from a website and could only get it by using that code. but when I tried to longin to a website using that same code in my script, I couldn't login..? someone explain me whats going on with both of these Response Headers: HTTP/1.1 200 OK & HTTP/1.1 302 Found...?
  8. is there any native autoit base64 encode/decode functions at all..? or do I have to import a UDF into the include folder..?
  9. can anyone confirm this works for them..? I tried it, but it don't seem to work for me.. what might I be overlooking..?
  10. I searched this forum for SOCKS5 and not much came up for examples on how to connect through SOCKS5 Proxies using AutoIt.. Just some Examples for SOCKS4 Proxies which seems to be outdated.. Anybody know how to use AutoIt to Connect Through a SOCKS5 Proxy using either "TCPConnect" or "WinHttp" or some other AutoIt code..?
  11. Im pretty sure it was the remote server that was closing the "Proxy-Connection: Keep-Alive" setting, because I tried the same proxy in FireFox on the same remote server and the HTTP Headers were the same, the remote server closed the proxy connection after it was established even though firefox's "proxy-keep-alive" settings were set to true.. Is there anyway to use SOCKS5 Proxies with this WinHTTP UDF or are HTTP Proxies only supported..?
  12. OK so I am able to use an HTTP Proxy ok with this UDF, but now i'm having a problem with the "Proxy-Connection: Close" How do I change it to "Proxy-Connection: Keep-Alive"..? I tried setting it in the request headers but that doesn't seem to work for some reason, is there some other way of doing it to keep the proxy connection alive..?
  13. how would you set a USERNAME & PASSWORD for a Proxy using this HTTP UDF..? figured it out.. _WinHttpSetCredentials($hRequest, $WINHTTP_AUTH_TARGET_PROXY, $WINHTTP_AUTH_SCHEME_BASIC, "USER", "PASS")
  14. is there some other way to update just the title of the window bar, or is this the only way like the example i have here..? #include <GuiConstantsEx.au3> #include <WindowsConstants.au3> $Num = 0 Do $Num += 1 GUICreate($Num, 250, 20, 0, 20, $WS_SIZEBOX, $WS_EX_TOOLWINDOW) GUISetState() Until GUIGetMsg() = $GUI_EVENT_CLOSE
×
×
  • Create New...