→ 🚀What's New? Join Us for the Fall Product Launch! Register Now !

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
d4
Engaged Sweeper
Hi There,

Just want create a simple report in excel where list the computer name and software on them

Any help is appreciated!

Also can we fine tune this for Microsoft, Autocad?

Cheers
Dave
9 REPLIES 9
Hemoco
Lansweeper Alumni
Select tblComputers.Computername, tblComputers.Domain, tblSoftware.softwareName,
tblSoftware.softwareVersion, tblSoftware.SoftwarePublisher
From tblComputers Inner Join
tblSoftware On tblComputers.Computername = tblSoftware.ComputerName
Where tblSoftware.Softwarename Like '%yoursoftware%'


replace yoursoftware
d4
Engaged Sweeper
Many Thanks

On another query, how do get to a particular software Microsoft Project i.e.

Microsft Project 98, Microsoft Project Standard 2002, Microsoft Project Standard 2007
Hemoco
Lansweeper Alumni
You need to change the '%microsoft%' part to the correct publisher
d4
Engaged Sweeper
Thanks for that!

Finally how do I modify the 'Microsoft' report to add 'autocad' software as well please
Hemoco
Lansweeper Alumni
Right click/create a new report
Copy paste this code in the sql part at the bottom.
Click on the empty place where the tables are.
d4
Engaged Sweeper
Thanks I am a newbie

How do I set it up please in report builder?
Hemoco
Lansweeper Alumni
This is an example for all software:

Select tblComputers.Computername, tblComputers.Domain, tblSoftware.softwareName,
tblSoftware.softwareVersion, tblSoftware.SoftwarePublisher
From tblComputers Inner Join
tblSoftware On tblComputers.Computername = tblSoftware.ComputerName


This is only microsoft software:

Select tblComputers.Computername, tblComputers.Domain, tblSoftware.softwareName,
tblSoftware.softwareVersion, tblSoftware.SoftwarePublisher
From tblComputers Inner Join
tblSoftware On tblComputers.Computername = tblSoftware.ComputerName
Where tblSoftware.SoftwarePublisher Like '%microsoft%'
d4
Engaged Sweeper
Version 3.5.6
Hemoco
Lansweeper Alumni
Are you using version 3.5.x or beta 4.0?