clearguy Posted June 9, 2006 Posted June 9, 2006 How to make a script which connect to internet and then disconnect? Thanx people! I've never met anyone who codes binary. StringMultiInsert()SOW EncryptFrench autoit forum - forum français
clearguy Posted June 9, 2006 Author Posted June 9, 2006 ¿You have a dial up connection? Hi,I found a solution,the rasdial command is there an equivalent in au3 ? thanx :"> I've never met anyone who codes binary. StringMultiInsert()SOW EncryptFrench autoit forum - forum français
Simucal Posted June 9, 2006 Posted June 9, 2006 Hi,I found a solution,the rasdial command is there an equivalent in au3 ? thanx :">What do you mean, "Is there an equivalent in au3"?Just run the rasdial command within your script. AutoIt Scripts:Aimbot: Proof of Concept - PixelSearching Aimbot with several search/autoshoot/lock-on techniques.Sliding Toolbar - Add a nice Sliding Toolbar to your next script. Click the link to see an animation of it in action!FontInfo UDF - Get list of system fonts, or search to see if a particular font is installed.Get Extended Property UDF - Retrieve a files extended properties (e.g., video/image dimensions, file version, bitrate of song/video, etc)
clearguy Posted June 10, 2006 Author Posted June 10, 2006 Is there an inbuild autoit function for connecting to internet instead using rasdial? I explain:sometimes when I use rasdial /d (to hang up the connection) I can't reconnect to internet because the status of internet connection is on "Deconnecting..." for about 5 minutes Thanx I've never met anyone who codes binary. StringMultiInsert()SOW EncryptFrench autoit forum - forum français
Simucal Posted June 10, 2006 Posted June 10, 2006 Is there an inbuild autoit function for connecting to internet instead using rasdial?I explain:sometimes when I use rasdial /d (to hang up the connection) I can't reconnect to internet because the status of internet connection is on "Deconnecting..." for about 5 minutes ThanxThere is no inbuilt function. Just use rasdial in your script. AutoIt Scripts:Aimbot: Proof of Concept - PixelSearching Aimbot with several search/autoshoot/lock-on techniques.Sliding Toolbar - Add a nice Sliding Toolbar to your next script. Click the link to see an animation of it in action!FontInfo UDF - Get list of system fonts, or search to see if a particular font is installed.Get Extended Property UDF - Retrieve a files extended properties (e.g., video/image dimensions, file version, bitrate of song/video, etc)
EhJay Posted June 10, 2006 Posted June 10, 2006 (edited) This is what I use. I have a quicklaunch icon on my bottom startup bar thing. Sympatico is the name of my ISP. ;sets time to wait in seconds. Sleep(1000*Number(InputBox("Wait 'x' seconds","Enter Time To Wait"))) ;Click second quicktask bar button. MouseClick ( "left" , 140, 785 , 1 , 15 ) sleep(2000) ;Checks to see if Sympatico is already running. If WinActive ( "Sympatico Status" , "" )Then ;Dials send("{ALTDOWN}d{ALTUP}") exit EndIf If WinActive ( "Connect Sympatico" , "" ) Then Sleep(1000*Number(InputBox("Wait 'x' seconds","Enter Time To Wait"))) WinActivate("Connect Sympatico", "") ;Disconnects if already active. send("{ALTDOWN}d{ALTUP}") EndIf Edited June 10, 2006 by EhJay
clearguy Posted June 10, 2006 Author Posted June 10, 2006 Ok,so I have this: Run("rasdial ""ADSL"" ""16ai4-an0@free.fr"" ""xxxxxxxx"" ") Are there another tips for these commands(parameters?)? Thanx I've never met anyone who codes binary. StringMultiInsert()SOW EncryptFrench autoit forum - forum français
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now