I asked the same question this past July. Unless this has been added recently (don't think so...) then the answer is still "not really..."
Pretty much just have to set up custom registry scans for the firewall keys and make do.
Here's the relevant bits of that post, along with a link to the full thread-
http://www.lansweeper.com/Forum/yaf_postst11262_Windows-Firewall-status-report.aspx#post41975
esr wrote:
...possible to get a report that just provides the status of the firewall- on or off?
Searching around the forum it looks like the options are to check the service, but there it's also possible for the service to be on and the firewall disabled-
SELECT [Computer], Started
FROM [lansweeperdb].[dbo].[tblServices] inner join
lansweeperdb .dbo.tblComputers on tblServices .Computername = tblComputers .Computername where
tblServices .caption = 'Windows Firewall/Internet Connection Sharing (ICS)'
Or to run a custom scan for the following registry keys
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsFirewall\DomainProfile
\EnableFirewall=0 (DWORD data type)
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsFirewall\StandardProfile
\EnableFirewall=0 (DWORD data type)
All the above was found in the following post
http://www.lansweeper.com/Forum/yaf_postst3493_Firewall-Status.aspx#post16673