failed installations
Hi guys =)
I hope you can help me out a bit here, we have some users who don't get software installed for various reasons like to low disk space or other annoying things.
I have created a label for low disk space that creates a popup on the users PC every now and then to tell the users to contact IT to clean up or expand the C drive, but most of them just click "OK" and do nothing about it, and then when they need software they complaint about it not installing...
So I'm wondering if it's possible to make a report on all PC's with failed installation ?
Thanks
René
I hope you can help me out a bit here, we have some users who don't get software installed for various reasons like to low disk space or other annoying things.
I have created a label for low disk space that creates a popup on the users PC every now and then to tell the users to contact IT to clean up or expand the C drive, but most of them just click "OK" and do nothing about it, and then when they need software they complaint about it not installing...
So I'm wondering if it's possible to make a report on all PC's with failed installation ?
Thanks
René
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
dchristian
13 years ago
Hey maybe this will point you in the right direction.
SELECT M.NAME AS MACHINE_NAME,
S.DISPLAY_NAME,
S.DISPLAY_VERSION,
MIA.ATTEMPT_COUNT
FROM MACHINE M,
MI_ATTEMPT MIA,
MI,
SOFTWARE S
WHERE M.ID = MIA.MACHINE_ID
AND MI.ID = MIA.MI_ID
AND S.ID = MI.SOFTWARE_ID
ORDER BY ATTEMPT_COUNT DESC,
MACHINE_NAME
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.