Forums on Intune, SCCM, and Windows 11

Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!

SOLVED Crteating report like ARP MS patches Install Date

  • Thread starter Thread starter Tino_B
  • Start date Start date
  • Replies Replies 1
  • Views Views 2K

Tino_B

New Member
Messages
1
Reaction score
0
Points
1
Hi,
I try to create a Report which shows me all Computers from a specified collection with all installed MS Updates. The important thing is the install date. Like the overview in ARP but as Report.
I tried include a mof File to get the install date and the Update overview.
Has anybody tried it before?
 
Hi There ,

try this and you have to add one query for specific collection which

v_add_remove_Programs.

select sys.Name0 as PCName,
arp.DisplayName0 as Program,
InstallDate0 as Time
from v_Add_Remove_Programs arp
inner join v_R_System sys on sys.ResourceID =arp.ResourceID
where arp.DisplayName0 like '%<YourAPPName>%'
 
Back
Top