Jump to content

Checking WinXP firewall status


JRibeiro
 Share

Recommended Posts

Hi all,

Is there a better way to check the status of WinXP firewall other then by outputing the result of NETSH FIREWALL SHOW STATE to a file and reading it to see if it is ON or OFF.

I've done a script that does this but I'm looking for a smarter way.

Any help?

Thanks

Link to comment
Share on other sites

Try

#include <Constants.au3>

$foo = Run(@ComSpec & " /c NETSH FIREWALL SHOW STATE", @SystemDir, @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD)
$line = StdoutRead($foo)
MsgBox(0, "STDOUT read:", $line)
Exit

Edit - Removed loop

Edited by BigDod


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...