Jump to content

Dirk Diggler

Active Members
  • Posts

    69
  • Joined

  • Last visited

About Dirk Diggler

  • Birthday 12/23/1981

Profile Information

  • Location
    Russia

Dirk Diggler's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. Why i can't run cacls in hidden window? RunWait('cacls "C:\Program Files\Far" /E /G Users:F',@SW_HIDE) all is correct. but there are an annoying window blanking when cacls starts is any ways to run it hidden?
  2. there is some syntax errors in ExcelCom.au3, RAS.au3 that i have downloaded....
  3. I have some workstations in my LAN, and i want to test if some sites is alive. But InetGET doesn't work. I use such script to test it: HttpSetProxy (2, "192.168.100.1:3128" , "avv", "shaolin" ) InetGet("http://www.mozilla.org",'c:\foo.html') MsgBox(262144,'Debug line ~' & @ScriptLineNumber,'Selection:' & @lf & 'InetGet("http://www.mozilla.org","c:\foo.html")' & @lf & @lf & 'Return:' & @lf & InetGet("http://www.mozilla.org",'c:\foo.html') & @lf & @lf & '@Error:' & @lf & @Error) ;### Debug MSGBOX InetGet("http://tega.ru/dirk/download.html") MsgBox(262144,'Debug line ~' & @ScriptLineNumber,'Selection:' & @lf & 'InetGet("http://tega.ru/dirk/download.html")' & @lf & @lf & 'Return:' & @lf & InetGet("http://tega.ru/dirk/download.html") & @lf & @lf & '@Error:' & @lf & @Error) ;### Debug MSGBOX I'm ABSOLUTELY sure that proxy address, port, username and password is correct - proxy is installed and configured by me, and I every day use my credentials to surf the net. But, first MsgBox shows me second: what's a problem? how to test outer hosts?
  4. and another example: Func _HostIsOk($host_) $host = $host_ if StringRegExp($host,"(([0-9]{1,3}\.){3}[0-9]{1,3})",0) = 0 then $host = TCPNameToIP ($host_) MsgBox(0,'',$host) if Ping($host) > 0 Then Return True Return False EndFunc MsgBox(0,'',_HostIsOk('')) UDPStartup() MsgBox(0,'',_HostIsOk('')) as u can see, without TCPStartup(), if run TCPNameToIP first time, it as documented, returns empty string. But if we runs UDPStartup(), it work like TCPStartup() - second time TCPNameToIP returns your own ip
  5. Example Func _HostIsOk($host_) ; test if remote is exists. $host = $host_ TCPStartup() if StringRegExp($host,"(([0-9]{1,3}\.){3}[0-9]{1,3})",0) = 0 then $host = TCPNameToIP ($host_) MsgBox(0,'',$host) TCPShutdown() if Ping($host) > 0 Then Return True Return False EndFunc MsgBox(0,'',_HostIsOk('microsoft.com')) MsgBox(0,'',_HostIsOk('')) as u can see, TCPNameToIp for empty host name returns your own IP. is it normal?
  6. When i make the Windows XP installation disk with unattended setup, it's very usefull to replace standart setup.exe with compiled AutoIt script - to do some actions(copy files, change *.sif, etc, example). But v3 scripts don't works, only scripts compiled with AutoIt v2.64!!! Is it possible use AutoIt 3.2.4? How should I do this?
  7. i know! Try my examples. It returns proper code, but %errorlevel% contains first result. I found, that the cause of this behavior is delayed expansion of environment variable, so, when i use errorlevel, i must ! instead %: @echo off SET PING= ping.au3 SET HOST1=google.com SET DG=192.168.100.12312 %ping% %HOST1% echo ping %HOST1% returns !errorlevel! if "%DG%"=="" ( rem ) ELSE ( %ping% %DG% echo ping %DG% returns !errorlevel! )
  8. When i terminate script with Exit(errorcode), it is not always set %errorlevel% variable to proper value. Example. It is ping.au3: If Ping($cmdline[1],2000) > 0 Then Exit(0) ; if PING success, returns 0 Else Exit(1) EndIf This script is called from following batch file: @echo off SET PING= ping.au3 SET HOST1=google.com SET DG=192.168.100.12312 %ping% %HOST1% echo ping %HOST1% returns %errorlevel% if "%DG%"=="" ( rem ) ELSE ( %ping% %DG% echo ping %DG% returns %errorlevel% ) If %HOST1% exist, it doesn't matter DG exist or no, second %errorlevel% ALWAYS contains 0: The same way, if %HOST1% is not exist, it doesn't matter DG exist or no, second %errorlevel% ALWAYS contains 1. where 192.168.100.1 is my ADSL-router address But, it enough to remove IF statement, and batch works properly: @echo off SET PING= ping.au3 SET HOST1=goowefwegle.com SET DG=192.168.100.1 %ping% %HOST1% echo ping %HOST1% returns %errorlevel% %ping% %DG% echo ping %DG% returns %errorlevel% What is a problem????
  9. Yes! I mean this. What is a secret of creation second tab? Why it's need to use GUICreate("".....? Why this don't used in KodaFormDesigner? When I makin Form, i can see 2 Tab Controls. When i generete code and start it, there is only one Tab Control
  10. oops. sorry. my fault. please kill the topic.
  11. Using autoit 3.2.0.1 run this script with any string - @error is equal 0 even if file not exist!
  12. $TabSheet2 = GUICtrlCreateTabItem("TabSheet2") It must create TabItem in SECOND TAB CONTROL with name $Tab1, isn't it? I want to create TWO DIFFERENT Tab CONTROLS in FORM! With Different TabItems.
×
×
  • Create New...