Community FAQ
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
chogan201
Engaged Sweeper III

Since upgrading to 12.3.2.3 this week, scanning has been an issue. 

I currently have over 500 devices in the queue and it is increasing.  I have on prem devices that haven't been scanned since the update.  LSAgent devices are reporting in normally.

I tried clearing the queue, restarting the service, and restarted the server.

Anyone else having this problem?

2 ACCEPTED SOLUTIONS
Mister_Nobody
Honored Sweeper III

LS 12.3 has hidden firewall rules scanner. 

Disable it via scan interval settings. 

View solution in original post

Obi_1_Cinobi
Lansweeper Tech Support
Lansweeper Tech Support

Hello there!

The performance issues with the firewall scanning scan item have been resolved in Lansweeper version 12.3.2.5:

  • LAN-17132 Improved Windows Firewall Scanning Performance.

You can update to the latest Lansweeper version by following the steps in this guide: https://www.lansweeper.com/knowledgebase/updating-your-installation/

If needed, you can always check our changelog to see all the additions, changes, and fixes that have been implemented in the Lansweeper software: https://www.lansweeper.com/changelog.aspx

View solution in original post

10 REPLIES 10

Try this report:

Select Top 1000000 tblassets.AssetID,
  tblassets.AssetName,
  tblassets.IPAddress,
  tblassets.Userdomain,
  tblassets.Username,
  tblassets.oscode,
  tblassets.memory,
  tblassets.Processor,
  TsysWaittime.CFGname,
  TsysLastscan.Scantime,
  TsysLastscan.Lasttime,
  TsysWaittime.Waitdays
From tblassets
  Inner Join TsysLastscan On tblassets.AssetID = TsysLastscan.AssetID And
      TsysLastscan.Scantime > 5 And TsysLastscan.Lasttime > GetDate() - 7
  Inner Join TsysWaittime On TsysLastscan.CFGcode = TsysWaittime.CFGCode
Order By TsysLastscan.Scantime Desc