I have a big problem opening http://localhost/ on Windows 7 (beta). I installed this os and everything went great; when I installed Wamp I saw that localhost is not working
To fix the port 80 problem do:
From cmd as administrator:
sc config http start= demand (you need a space after the equal sign and not before)netsh http show servicestate) as administrator to check that the port 80 is in useAfter you have run this command, you can disable http.sys as follows:
net stop http (stop the process)Sc config http start= disabled (if you want to disable the service forever)it works for me.