Jump to content

stbluesrul

Members
  • Posts

    9
  • Joined

  • Last visited

stbluesrul's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. That link seems to be broken. Is there anyone that can post a link to the commMG.au3 include file?
  2. Does anyone have this commMG.au3 include file? This thread: http://www.autoitscript.com/forum/topic/45842-serial-port-com-port-udf/ Seems to be broken.
  3. I figured it out. If $sysmodelnumber = "HP 8100 Elite SFF" And $BIOS[1][17] = "786H1 v01.05" Then ElseIf $sysmodelnumber = "HP 8100 Elite SFF" And $BIOS[1][17] <> "786H1 v01.05" Then MsgBox(0, "test", "test") EndIf Thanks for the help!
  4. I got this working: If $sysmodelnumber = "HP 8100 Elite SFF" And $BIOS[1][17] = "786H1 v01.07" Then MsgBox(0, "test", "test") ElseIf $sysmodelnumber = "HP 8100 Elite SFF" And $BIOS[1][17] = "" Then MsgBox(0, "BIOS", "BIOS is out of date") EndIf I just don't know what to put in for the $BIOS[1][17] = "" I want it to show that message box if that variable is anything but 786H1 v01.07. Make sense? Thanks a bunch for your help.
  5. I got a question with variables. I'm not even sure what to search for so I'm asking here. I have two variables and I want to say if $var1 = 10 then $var2 should = 20 and if $var2 does not = 20 then do whatever. I'm having trouble with the "should" part... Can someone provide me a hint in the right direction. I just don't even know what to search for in the help file.
  6. That won't work for my application. I need to remotely launch files from a socket or with an exe with a variable from a telnet connection. I won't always be launching the same file.
  7. Ok, after doing a bit of messing with TCPSend / TCPRecv. It seems that TCPRecv can not handle multiple simultaneous connections. Is there a way to enable this? This is a must have for my application, as there will be more then one remote.
  8. I'm very familiar with TeamViewer and use it quite a bit, however, RDP/VNC won't work for the remote program which runs on the iPad. I need to accomplish this through telnet, HTTP GET, or a socket connection of some sort. Hopefully TCP Recv will provide what I need.
  9. I'm looking for a way to remotely launch files on a host machine through a telnet or a socket connection. I just want to launch basic media files like .MP3s, .AVIs, .PNGs, etc... and rely on Windows file type associations to launch files with the correct program (VLC, iTunes, Picture Viewer, Media Player, etc...). I'm wondering if AutoIT has a way to do this? Would it be possible to build a quick .exe that could be ran at the telnet cmdline like: remote.exe c:\media\mediafile.avi This would then launch mediafile.avi on the host machine. I'll be using this on an HTPC for a home automation remote. If so, can someone point me in the right direction on which functions would be able to accomplish this task? Or if anyone has another idea I'm open to suggestions. Any help is much appreciated!
×
×
  • Create New...