cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
lessthansubtle
Engaged Sweeper II
Is it possible for a report to be created in Lansweeper showing devices that have inactive firewalls? More specifically, workstations such as desktops/laptops as well as servers.

Thanks
1 ACCEPTED SOLUTION
Daniel_B
Lansweeper Alumni
Information about Firewall configuration is not currently scanned. However, you might be able to set up custom registry scanning and provide the following value to be scanned:

Key: HKEY_LOCAL_MACHINE
Regpath: SYSTEM\CurrentControlSet\services\SharedAccess\Parameters\FirewallPolicy\StandardProfile
Regvalue: EnableFirewall

Afterwards rescan your Windows computers.
The following report will list if Windows Firewall was scanned as enabled or disabled:

Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried,
Case tblRegistry.Value When 0 Then 'Disabled' When '1' Then 'Enabled'
Else 'unknown' End As Firewall
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblRegistry On tblAssets.AssetID = tblRegistry.AssetID
Where tblAssetCustom.State = 1 And
tblRegistry.Regkey Like '%FirewallPolicy\StandardProfile'
Order By tblAssets.AssetName

View solution in original post

3 REPLIES 3
Daniel_B
Lansweeper Alumni
We recommend that you browse through the registry key

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\SharedAccess\Parameters\FirewallPolicy

on machines in your network. The setting applied may be different and you may need to scan another value. Note: This key is only responsible for Windows Firewall, not for other products.
lessthansubtle
Engaged Sweeper II
Hi,

Even after rescanning all my windows assets, this report is showing up zero results

Any suggestions?
Daniel_B
Lansweeper Alumni
Information about Firewall configuration is not currently scanned. However, you might be able to set up custom registry scanning and provide the following value to be scanned:

Key: HKEY_LOCAL_MACHINE
Regpath: SYSTEM\CurrentControlSet\services\SharedAccess\Parameters\FirewallPolicy\StandardProfile
Regvalue: EnableFirewall

Afterwards rescan your Windows computers.
The following report will list if Windows Firewall was scanned as enabled or disabled:

Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried,
Case tblRegistry.Value When 0 Then 'Disabled' When '1' Then 'Enabled'
Else 'unknown' End As Firewall
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblRegistry On tblAssets.AssetID = tblRegistry.AssetID
Where tblAssetCustom.State = 1 And
tblRegistry.Regkey Like '%FirewallPolicy\StandardProfile'
Order By tblAssets.AssetName