Where is the Windows GUI equivalent for this WMI firewall setting?

Posted: 01-20-2006, 09:59 PM
Can anyone please help me here? I've been looking for months a place in
Windows XP GUI itself where I can change this setting without using the
following script which opens the Windows firewall for WMI access.

Set objFirewall = CreateObject("HNetCfg.FwMgr")
Set objPolicy = objFirewall.LocalPolicy.CurrentProfile
Set objAdminSettings = objPolicy.RemoteAdminSettings
objAdminSettings.Enabled = TRUE

Any ideas?

Thank you!
Reply With Quote

Responses to "Where is the Windows GUI equivalent for this WMI firewall setting?"

Dave Patrick
Guest
Posts: n/a
 
Re: Where is the Windows GUI equivalent for this WMI firewall setting?
Posted: 01-21-2006, 02:56 PM
Group policy editor;

Administrative Templates\Network\Network Connections\Windows
Firewall\Standard Profile

Administrative Templates\Network\Network Connections\Windows Firewall\Domain
Profile

"Allow remote administration exception"


--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"Jimmy B" wrote:
| Can anyone please help me here? I've been looking for months a place in
| Windows XP GUI itself where I can change this setting without using the
| following script which opens the Windows firewall for WMI access.
|
| Set objFirewall = CreateObject("HNetCfg.FwMgr")
| Set objPolicy = objFirewall.LocalPolicy.CurrentProfile
| Set objAdminSettings = objPolicy.RemoteAdminSettings
| objAdminSettings.Enabled = TRUE
|
| Any ideas?
|
| Thank you!


Reply With Quote
Jimmy B
Guest
Posts: n/a
 
Re: Where is the Windows GUI equivalent for this WMI firewall setting?
Posted: 01-21-2006, 09:09 PM
Thanks for replying Mr. Patrick! That's if you're running in a domain
configuration, correct? I couldn't find it on my local XP machine which is
just part of a workgroup. I looked all over in Administrator Tools
including Local Security Policy, Component Services and Computer Management,
but I still couldn't find it.

And I looked in the exceptions for the Windows Firewall, but nothing was
immediately apparent.

Jim
Reply With Quote
Dave Patrick
Guest
Posts: n/a
 
Re: Where is the Windows GUI equivalent for this WMI firewall setting?
Posted: 01-21-2006, 10:02 PM
"Jimmy B" wrote:
| Thanks for replying Mr. Patrick! That's if you're running in a domain
| configuration, correct?
* "Standard Profile" = non-domain (aka workgroup)
"Domain Profile" = domain environment


I couldn't find it on my local XP machine which is
| just part of a workgroup. I looked all over in Administrator Tools
| including Local Security Policy, Component Services and Computer
Management,
| but I still couldn't find it.
* Correct. Look in the group policy editor. gpedit.msc


| And I looked in the exceptions for the Windows Firewall, but nothing was
| immediately apparent.
* Yes, not there either.

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect


Reply With Quote
Jimmy B
Guest
Posts: n/a
 
Re: Where is the Windows GUI equivalent for this WMI firewall setting?
Posted: 01-24-2006, 05:12 AM
Thank you. I did find it after running gpedit.msc. It's just this console
doesn't seem to be accessible any other way in Windows XP by default.
Reply With Quote
Dave Patrick
Guest
Posts: n/a
 
Re: Where is the Windows GUI equivalent for this WMI firewall setting?
Posted: 01-25-2006, 01:41 AM
You're welcome.

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"Jimmy B" wrote:
| Thank you. I did find it after running gpedit.msc. It's just this
console
| doesn't seem to be accessible any other way in Windows XP by default.


Reply With Quote
 
LinkBack Thread Tools Display Modes
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
wmi equivalent of IOCTL_NDISUIO_SET_OID_VALUE? andrew Windows XP WMI 0 09-08-2005 03:24 PM
does xp have an equivalent to previous windows msconfig? canadagrl Windows XP Configuration & Management 2 08-26-2004 08:13 AM
firewall for windows xp dave Windows XP Configuration & Management 3 08-11-2004 02:51 AM
Windows XP Firewall rifleman Windows XP 7 08-22-2003 08:38 PM
Windows XP And Norton Firewall Greg Williams Windows XP Basics 1 07-20-2003 12:29 PM


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90