Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

^^^^

I need to save the IP of my domain (xxx.noip.com) or my external IP to a text file. It will then be uploaded to a public dropbox account.

share|improve this question
What have you tried? – Joachim Pileborg Dec 23 '12 at 6:32
My level of knowledge of batch and c++ is at bare minimum. Sorry if I haven't left any examples or etc... – user1924602 Dec 23 '12 at 6:35
Open a file, write your IP in it, upload it. – Clement Rey Dec 23 '12 at 6:36
Automatically? I have a dynamic IP which changes every 10 minutes or so – user1924602 Dec 23 '12 at 6:36
@user1924602 - please incorporate your comments into the question to make it more concrete and clear. This will help you get better answers. – Shai Dec 23 '12 at 6:46

1 Answer

You can get your external IP by browsing to http://checkip.dyndns.org

Assuming your DropBox folder is C:\dropbox

Here is a batch script that saves your public ip to a file in your dropbox folder.

get_my_public_ip.bat:

wget -q -O - http://checkip.dyndns.org > C:\dropbox\my_public_ip.html

You will need wget for it to run and it should be placed in a folder that is in your PATH variable (e.g. C:\Windows). You can find a windows port here. HTML tags are not removed from the file so its contents would be something like:

<html><head><title>Current IP Check</title></head><body>Current IP Address: 1.2.3.4</body></html>

Here is a Windows PowerShell script that does the same job AND strips the unnecessary text.

get_my_public_ip.ps1:

(new-object System.Net.WebClient).DownloadString('http://checkip.dyndns.org')|% { $_ -replace '.*Current IP Address: ([0-9\.]+).*','$1' } > C:\dropbox\my_public_ip.txt

Check here for some help on how to run Windows PowerShell Scripts.

Hope this helps

share|improve this answer
thank you! ..... – user1924602 Dec 23 '12 at 13:43
you're welcome! – Nikanos Polykarpou Dec 23 '12 at 19:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.