Client Management Suite

 View Only
  • 1.  How can I find the report that windows firewall is on

    Posted Aug 29, 2016 10:29 AM

    We have som machines that firewall is on, how can I find the report for this?

     

    Thanks

     

    Lillian



  • 2.  RE: How can I find the report that windows firewall is on

    Posted Aug 29, 2016 06:21 PM
    SELECT dbo.vComputer.Name, dbo.Inv_AeX_AC_NT_Services.StartupType AS 'Windows Firewall Startup Type'
    FROM  dbo.Inv_AeX_AC_NT_Services INNER JOIN
             dbo.vComputer ON dbo.Inv_AeX_AC_NT_Services._ResourceGuid = dbo.vComputer.Guid
    WHERE (dbo.Inv_AeX_AC_NT_Services.Name LIKE N'mpssvc')

    Will give you something like:

    Name        Windows Firewall Startup Type
    SMP         Automatic
    WIN2012A    Automatic