Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[.NET] Disable Firewall.
#1
Self explanatory.

Code:
Dim Proc As Process = New Process
            Dim top As String = "netsh.exe"
            Proc.StartInfo.Arguments = ("firewall set opmode disable")
            Proc.StartInfo.FileName = top
            Proc.StartInfo.UseShellExecute = False
            Proc.StartInfo.RedirectStandardOutput = True
            Proc.StartInfo.CreateNoWindow = True
            Proc.Start()
            Proc.WaitForExit()
Reply


Messages In This Thread
[.NET] Disable Firewall. - by Yin - 04-05-2010, 05:45 PM
RE: [.NET] Disable Firewall. - by ♱ RedTube ♱ - 04-05-2010, 06:13 PM
RE: [.NET] Disable Firewall. - by Cybr - 04-05-2010, 10:57 PM
RE: [.NET] Disable Firewall. - by S1cKL3R - 04-05-2010, 11:00 PM
RE: [.NET] Disable Firewall. - by RaZoR03 - 04-18-2010, 12:14 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [TUT]Enable and Disable TaskManger in vb.net [TUT] HB Virus 4 3,180 12-19-2011, 10:10 AM
Last Post: euverve

Forum Jump:


Users browsing this thread: 2 Guest(s)