
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-22-2019 08:37 PM
I couldn't find it anywhere on here.
I need a report that scans one server and checks if a process is not running.
ex.,
ServerA needs explorer.exe to be running in the task manager. The report should populate that ServerA does not have explorer.exe running. If explorer.exe is running, the report should have no result.
Is this something lansweeper is capable of and if yes, can someone assist me with it?
I tried below but it claims assetname is an invalid column.
Select tblAssets.AssetName, tblProcesses.Caption
where tblAssets.AssetName = 'Server' AND tblProcesses.Caption = 'Process.exe'
I need a report that scans one server and checks if a process is not running.
ex.,
ServerA needs explorer.exe to be running in the task manager. The report should populate that ServerA does not have explorer.exe running. If explorer.exe is running, the report should have no result.
Is this something lansweeper is capable of and if yes, can someone assist me with it?
I tried below but it claims assetname is an invalid column.
Select tblAssets.AssetName, tblProcesses.Caption
where tblAssets.AssetName = 'Server' AND tblProcesses.Caption = 'Process.exe'
Labels:
- Labels:
-
Report Center
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-23-2019 04:29 PM
Well, I tried <> and that just shows all processes other than the one I want.
I ended up just saving this report as a chart for now and placing it on the main page.
Hopefully, someone will eventually be able to assist me in making the report do what I need.
I ended up just saving this report as a chart for now and placing it on the main page.
Hopefully, someone will eventually be able to assist me in making the report do what I need.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-22-2019 09:00 PM
I figured out the issue. I had to select the names from the search box. For whatever reason, it didn't like them typed.
Select Top 1000 tblAssets.AssetName,
tblProcesses.Caption
From tblAssets
Inner Join tblProcesses On tblAssets.AssetID = tblProcesses.AssetID
Where tblAssets.AssetName = 'Server' And tblProcesses.Caption =
'Process.exe'
I need this to follow what I wrote above. To be blank if true and populate if false. This is so I can setup an email alert when it is false.
Select Top 1000 tblAssets.AssetName,
tblProcesses.Caption
From tblAssets
Inner Join tblProcesses On tblAssets.AssetID = tblProcesses.AssetID
Where tblAssets.AssetName = 'Server' And tblProcesses.Caption =
'Process.exe'
I need this to follow what I wrote above. To be blank if true and populate if false. This is so I can setup an email alert when it is false.
