views:

655

answers:

3

How can I view my reputation with a Command Prompt script?

(In reply to StackOverflow reputation using PowerShell, because I'm bored as hell.)

+10  A: 
grawity
It is a very good example about how powershell improves windows command line scripts
eKek0
+3  A: 

In a command prompt window type:

start iexplore http://stackoverflow.com/users/flair/{your UID here}.html
Hardwareguy
Except iexplore is not in the path by default.
grawity
It is on every windows box I have access to. XP, Vista, 2003, 7
Hardwareguy
If iexplore is left out then it will open in the default browser, e.g. Opera or Firefox.
Peter Mortensen
A: 

There is more elaborate data for users available via (JSON):

http://stackoverflow.com/users/rep/50475/2009-01-01/2009-01-31

You could get some interesting data by parsing that string. Jon Skeet uses that for his rep tracker.

aleemb