
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2015 11:34 AM
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
Thanks
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2015 11:34 AM
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:
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
3 REPLIES 3

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2015 01:33 PM
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.
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.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2015 05:24 PM
Hi,
Even after rescanning all my windows assets, this report is showing up zero results
Any suggestions?
Even after rescanning all my windows assets, this report is showing up zero results
Any suggestions?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2015 11:34 AM
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:
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
