Hi,
You are correct GPOs are processed in order.. Global, Domain, Local which means that the local policy is always the last to apply.
you could however do this using logon and logoff scripts on your domain
Disable the firewall:
Set objFirewall = CreateObject("HNetCfg.FwMg
Set objPolicy = objFirewall.LocalPolicy.Cu
objPolicy.FirewallEnabled = FALSE
Enable the Firewall:
Set objFirewall = CreateObject("HNetCfg.FwMg
Set objPolicy = objFirewall.LocalPolicy.Cu
objPolicy.FirewallEnabled = TRUE
Save them as VBS and set the disable as startup and enable as shutdown...
/Fox
Main Topics
Browse All Topics





by: Brum07Posted on 2008-10-21 at 01:04:30ID: 22765254
I would put the users in a group and create a policy that had a VBScript logon to turn the firewall off;
r") rrentProfi le
r") ntProfile bled = TRUE
Set objFirewall = CreateObject("HNetCfg.FwMg
Set objPolicy = objFirewall.LocalPolicy.Cu
objPolicy.FirewallEnabled = FALSE
Then a log off VBScript to enable the firewall;
Set firewall = CreateObject("HNetCfg.FwMg
Set firewallPolicy = firewall.LocalPolicy.Curre
firewallPolicy.FirewallEna
Regards