/build/static/layout/Breadcrumb_cap_w.png

Deployment Reports

Folks,

new to KACE but learning fast. I've asked this question at Support and they basically are saying "it's in there" or "it's possible". Here's what I've posed to them. I'm installing Office 2007 on roughly 2200 machines and would like to produce a report that shows when a client had the package installed and how long it took. Does any one know of any canned or user created report that does that? I've been going crazy trying to generate one. I'm trying to justify the KACE appliance in terms of saving time and money installing software using it versus having a computer specialist install it.

Any aid would be greatly appreciated.

regards,

Pat

0 Comments   [ + ] Show comments

Answers (5)

Posted by: wsteo 13 years ago
Senior Yellow Belt
0
Will this do? Change that 'Orca 3.1' to the software display name you want. Remember to leave the wildcard % at the end of string.

select ASSET_HISTORY.TIME, ASSET.NAME, ASSET_HISTORY.DESCRIPTION
from ASSET
left join ASSET_TYPE on ASSET.ASSET_TYPE_ID = ASSET_TYPE.ID
left join ASSET_HISTORY on ASSET.ID = ASSET_HISTORY.ASSET_ID
where
(ASSET_TYPE.ID = 5
and ASSET_HISTORY.DESCRIPTION not like '%KB%'
and ASSET_HISTORY.DESCRIPTION not like '%reboot%' )
and
(ASSET_HISTORY.DESCRIPTION like 'Found software item Orca 3.1%')
order by TIME DESC
Posted by: pkarr@mcallenisd.net 13 years ago
Senior Yellow Belt
0
Wsteo,

thanks for this. It works pretty well. The only issue I have is that in the description field it shows everything from Microsoft Office Proof to Microsoft Office Professional Plus 2007. There are a good 15 items in the description field when I replace orca 3.1% with Microsoft Office Professional Plus 2007%.

How do I make it find just Microsoft Office Professional Plus 2007 and show that only in the description field.

I really appreciate this.

Pat
Posted by: wsteo 13 years ago
Senior Yellow Belt
0
It probably is the wild card filter '%' that selects all other unwanted software titles at the same time. If you want only a particular software, copy and paste the enitre string from Description column. as it checks for string using =, do not miss out even a period.

ASSET_HISTORY.DESCRIPTION = 'Found software item Microsoft Office Professional Plus 2007 in inventory.'
Posted by: pkarr@mcallenisd.net 13 years ago
Senior Yellow Belt
0
If you are asking me to do this:

Original

select ASSET_HISTORY.TIME, ASSET.NAME, ASSET_HISTORY.DESCRIPTION from ASSET left join ASSET_TYPE on ASSET.ASSET_TYPE_ID = ASSET_TYPE.ID left join ASSET_HISTORY on ASSET.ID = ASSET_HISTORY.ASSET_ID where (ASSET_TYPE.ID = 5 and ASSET_HISTORY.DESCRIPTION not like '%KB%'
and ASSET_HISTORY.DESCRIPTION not like '%reboot%' ) and (ASSET_HISTORY.DESCRIPTION like 'Found software item Microsoft Office Professional Plus 2007%') order by TIME DESC

Edited

select ASSET_HISTORY.TIME, ASSET.NAME, ASSET_HISTORY.DESCRIPTION from ASSET left join ASSET_TYPE on ASSET.ASSET_TYPE_ID = ASSET_TYPE.ID left join ASSET_HISTORY on ASSET.ID = ASSET_HISTORY.ASSET_ID where (ASSET_TYPE.ID = 5 and ASSET_HISTORY.DESCRIPTION = 'Found software item Microsoft Office Professional Plus 2007 in inventory.') order by TIME DESC

I tried it and it failed.

thanks for the help and patience.

pat
Posted by: pkarr@mcallenisd.net 13 years ago
Senior Yellow Belt
0
I also ran this and the report runs but no data is retrieved.

select ASSET_HISTORY.TIME, ASSET.NAME, ASSET_HISTORY.DESCRIPTION from ASSET left join ASSET_TYPE on ASSET.ASSET_TYPE_ID = ASSET_TYPE.ID left join ASSET_HISTORY on ASSET.ID = ASSET_HISTORY.ASSET_ID where (ASSET_TYPE.ID = 5 and ASSET_HISTORY.DESCRIPTION not like '%KB%'
and ASSET_HISTORY.DESCRIPTION not like '%reboot%' ) and (ASSET_HISTORY.DESCRIPTION = 'Found Software item Microsoft Office Professional Plus 2007 12.0.4518.1014 in inventory') order by TIME DESC

Pat
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

View more:

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ