If you are on a domain, you'll find that even with the XP firewall on, you can still access the remote registry and filesystem of the computers on the domain because there are canned exceptions for the local network. This lets you at least deploy VNC to the computers but when it comes time to conenct to them, you're blocked.
Luckily, the remote scripting in VNCScan still works so you can execute the following VBS script using the built-in remote scripting and disable the firewall before connecting:
'--------------------------Start
Set objFirewall = CreateObject("HNetCfg.FwMgr")
Set objPolicy = objFirewall.LocalPolicy.CurrentProfile
objPolicy.FirewallEnabled = FALSE'--------------------------End
To turn it back on, make another script and have it say:
'--------------------------Start
Set objFirewall = CreateObject("HNetCfg.FwMgr")
Set objPolicy = objFirewall.LocalPolicy.CurrentProfile
objPolicy.FirewallEnabled = TRUE'--------------------------End
Thank you,
Steve Bostedor