windows2003 ras_routing error of icf

Z

zhaodf

I have a windows 2003 Enterprise server.When I use "route and ras" and
select "config and start route and ras service",system say "ICF is in use,if
configure RRAS,please disable ICF,then try again." But I already disable ICF
service and disable it in all network connections.

Now,who can help me?
 
Z

zhaodf

The problem is ok.

within a vb script file called: enumconnection

set WMI = GetObject("WinMgmts:\root\Microsoft\HomeNet")
set objs = WMI.InstancesOf("HNet_ConnectionProperties")
for each obj in objs
WScript.Echo obj.GetObjectText_
next

within a vb script file called: listsicfistrue

set WMI = GetObject("WinMgmts:\root\Microsoft\HomeNet")
set objs = WMI.ExecQuery("SELECT * FROM HNet_ConnectionProperties WHERE
IsFirewalled = TRUE")
for each obj in objs
WScript.Echo obj.GetObjectText_
next

set WMI = GetObject("WinMgmts:\root\Microsoft\HomeNet")
set objs = WMI.ExecQuery("SELECT * FROM HNet_ConnectionProperties WHERE
IsIcsPublic = TRUE")
for each obj in objs
WScript.Echo obj.GetObjectText_
next

set WMI = GetObject("WinMgmts:\root\Microsoft\HomeNet")
set objs = WMI.ExecQuery("SELECT * FROM HNet_ConnectionProperties WHERE
IsIcsPublic = TRUE")
for each obj in objs
WScript.Echo obj.GetObjectText_
next


within a vb script file called: disableicfall

set WMI = GetObject("WinMgmts:\root\Microsoft\HomeNet")
set objs = WMI.InstancesOf("HNet_ConnectionProperties")
for each obj in objs
obj.IsFirewalled = FALSE
obj.Put_
next
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top