
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-25-2011 07:22 PM
This would be an essential report if we were to purchase this software.
It appears as though you can only view each computer one by one and there is no way
of creating a customised report for all systems or all servers or all workstations.
Or is there a way as you can do it with SCCM through powershell?
It appears as though you can only view each computer one by one and there is no way
of creating a customised report for all systems or all servers or all workstations.
Or is there a way as you can do it with SCCM through powershell?
Labels:
- Labels:
-
Archive
5 REPLIES 5

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2011 12:05 AM
See page 28 in the documentation.
After creating a report you can add it to one of the dashboards.
After creating a report you can add it to one of the dashboards.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-26-2011 04:22 PM
Ok but how do you add the report to the main interface - the manual doesnt tell you?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-26-2011 03:33 PM
Hi,
Please take a look at http://www.lansweeper.com/documentation.pdf
It contains step by step instructions on how to create reports.
If you need any special reports you can request them in the forum.
Please take a look at http://www.lansweeper.com/documentation.pdf
It contains step by step instructions on how to create reports.
If you need any special reports you can request them in the forum.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-26-2011 03:31 PM
I presume this is sql?
I have no experience with Sql but have run the script in Sql Studio
Msg 28102, Level 16, State 1, Line 2
Batch execution is terminated because of debugger request.
Msg 208, Level 16, State 1, Line 2
Invalid object name 'tblComputers'.
Query was cancelled by user.
Not exactly great for beginners!
Your product would be much better if you could do this with a gui - most users wouldnt know how to program this.
I haver no experience with SQL although I used to be a systems programmer and would hate to have to write stuff like this just to do a simple task.
Major failing of Lansweepr I think.
You need a gui reporting front end to customise reports.
I have no experience with Sql but have run the script in Sql Studio
Msg 28102, Level 16, State 1, Line 2
Batch execution is terminated because of debugger request.
Msg 208, Level 16, State 1, Line 2
Invalid object name 'tblComputers'.
Query was cancelled by user.
Not exactly great for beginners!
Your product would be much better if you could do this with a gui - most users wouldnt know how to program this.
I haver no experience with SQL although I used to be a systems programmer and would hate to have to write stuff like this just to do a simple task.
Major failing of Lansweepr I think.
You need a gui reporting front end to customise reports.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-26-2011 03:08 PM
You can create a custom report for this.
This is an example without any special formatting
This is an example without any special formatting
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblDiskdrives.Caption, tblDiskdrives.Freespace,
tblDiskdrives.Size
From tblComputers Inner Join
tblDiskdrives On tblComputers.Computername = tblDiskdrives.Computername
Where tblDiskdrives.Size Is Not Null
