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.

Here's what I need to do, any ideas would be helpful.

I need to be able to change the Local IP address of a computer programmatically as a limited user in XP. Without giving Admin information to the users. I've played with runas, sanur, and autoit, but all either require giving up the Administrator password or is not extremely reliable.

Again, any ideas would be great.

share|improve this question

3 Answers

You should probably create a service that has administrative rights and allow limited users to request an IP change from that service.

share|improve this answer
Ha, was just typing the same. :) – hangy Oct 10 '08 at 18:29

Neall is right, you could do this with a service. You'd need to build & install the service, and create a small client that can be run in limited user mode that would command the service to change the IP.

However, before you go charging down that road, I have to ask: why do you want to change the IP address of the computer? I'm wondering if you arrived at this as a solution for some other problem that might have a different method of resolution.

share|improve this answer

I'd imagine you could simply call LogonUser with admin credentials, and change it from there. That'd require embedding the password in the EXE, of course.

share|improve this answer

Your Answer

 
discard

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