Jump to content

Can I use AutoIt in full without installation?


Recommended Posts

I have no admin rights on my office PC, so I cannot run installations/register DLLs, etc. I just downloded the latest beta (132) and extracted to my hard drive. So far (a few weeks) I had no problems, but today I ran into the situation described in this topic.

Is there a way to use a full functionality of AutoIt without a proper installation? If it is, please tell me what the steps are to proceed.

Edited by hukilai
Link to comment
Share on other sites

just extract the Beta compiler and do a command line compile

i'm doing that on my non-AutoIt installed machines

The speed of sound is defined by the distance from door to computer divided by the time interval needed to close the media player and pull up your pants when your mom shouts "OH MY GOD WHAT ARE YOU DOING!!!"

Link to comment
Share on other sites

just extract the Beta compiler and do a command line compile

i'm doing that on my non-AutoIt installed machines

Try this code on that PC. Will it pop up 4 msgboxes or just one?

#include <IE.au3>
$oIE = _IE_Example ("basic")
$oLinks = _IELinkGetCollection ($oIE)
$iNumLinks = @extended
MsgBox(0, "Link Info", $iNumLinks & " links found")
For $oLink In $oLinks
    MsgBox(0, "Link Info", $oLink.href)
Next
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...