daslick Posted October 4, 2006 Posted October 4, 2006 I took a look at ping and _getip(), but neither looks like it would work... I think (not sure) but _getip() is only for the current user's computer I tried _getip("www.google.com") and it didn't work. Does anyone have any ideas? Thanks.
Helge Posted October 4, 2006 Posted October 4, 2006 TCPStartup() $ip = TCPNameToIP("www.google.com") MsgBox(64, "Google IP", $ip)
daslick Posted October 4, 2006 Author Posted October 4, 2006 Wow that was really quick... thanks for the help- i'll give it a try
daslick Posted October 4, 2006 Author Posted October 4, 2006 Here's what I came up with... to try and bypass school webfilters. It works some of the time. #include <IE.au3> dim $ip dim $text TCPStartup() $text = InputBox ( "Link converter by ~The BISD Rebel~", "Enter the website that you would like to visit:" , "" , "" , .35 * @DesktopWidth, .2 * @DesktopHeight ) if not $text = "" then $ip = TCPNameToIP($text) if not $ip = "" then _IECreate ($ip)
zcoacoaz Posted October 5, 2006 Posted October 5, 2006 (edited) Why not just bypass the filters using one of the many websites designed to do that? Like http://www.workfriendly.net/ Edited October 5, 2006 by Xenogis [font="Times"] If anyone remembers me, I am back. Maybe to stay, maybe not.----------------------------------------------------------------------------------------------------------[/font][font="Times"]Things I am proud of: Pong! in AutoIt | SearchbarMy website: F.R.I.E.S.A little website that is trying to get started: http://thepiratelounge.net/ (not mine)[/font][font="Times"] ----------------------------------------------------------------------------------------------------------[/font][font="Arial"]The newbies need to stop stealing avatars!!! It is confusing!![/font]
daslick Posted October 5, 2006 Author Posted October 5, 2006 Because Lightspeedsystems blocks those... if you try to google web proxy or anything like that and click on anything - they are all blocked. I don't know of one that is not blocked. Perhaps tomarrow I will test workfriendly.net.
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