The EnableIPFilterSec WMI class static method can enable IP security globally across all IP-bound network adapters. With security enabled, security characteristics for any specific adapter can be altered with the EnableIPSec WMI class method. MSDN for the former here:
http://msdn.microsoft.com/en-us/library/aa390381%28VS.85%29.aspx
And see this MSDN entry for information about EnableIPSec and its parameters (that allow you to declare a list of ports and protocols):
http://msdn.microsoft.com/en-us/library/aa390382%28VS.85%29.aspx
Finally, this is a link to the WMI.NET code directory, where there are useful samples of code using System.Management to execute WQL queries.
http://msdn.microsoft.com/en-us/library/ms257338.aspx
NOTE:
If you need to mess around extensively with WQL tests for your ObjectQuery/SelectQuery System.Management objects, as I did, give wbemtest a try. It is the Windows Management Instrumentation tester, and makes writing, testing, and honing WQL for your applications much nicer.