What you will want to do is setup IIS on your server box, load php and put your login script there. Now he is right you can get the uname, but no go on the pass, that is stored in a encrypted format(if you can even get to that) now you cant hash it either, unless want to do a brute force attack on it 😉 what you need to do is either set a session var that either contains a flag that tells your script that they have already logged in, or store the login info in it, you could encrypt it for security and then decrypt it when you need it.
or you can set a cookie for the above, and do the same thing with that. I have not done that with php, but have done it with ColdFusion, I was running a members page so I would do both so that I could use the session for short term needs(adds a little speed) and then a cookie for future visits. didnt encrypt it though, nothing that important. But that is what I would do If I were you.
PS. if you go the cookie or session route, you wont need to set up on your win box, you can just store the info the first time they login.