I am new to SMS reports. This default report to list all ARP on a certain device came with our SMS:
Select v_GS_ADD_REMOVE_PROGRAMS.DisplayName0 FROM v_GS_ADD_REMOVE_PROGRAMS JOIN v_R_System ON v_GS_ADD_REMOVE_PROGRAMS.ResourceID = v_R_System.ResourceID
WHERE v_R_System.Netbios_Name0 = "TESTPC"
I want to modify it to exclude certain app names because alot of the stuff in ARP I don't need to know. So the end result is I want to list all apps on a device minus say "AdwareSafe" and "Adobe Acrobat" and "Microsoft Office". Thank you very much for any assistance.
Select v_GS_ADD_REMOVE_PROGRAMS.DisplayName0 FROM v_GS_ADD_REMOVE_PROGRAMS JOIN v_R_System ON v_GS_ADD_REMOVE_PROGRAMS.ResourceID = v_R_System.ResourceID
WHERE v_R_System.Netbios_Name0 = "TESTPC"
I want to modify it to exclude certain app names because alot of the stuff in ARP I don't need to know. So the end result is I want to list all apps on a device minus say "AdwareSafe" and "Adobe Acrobat" and "Microsoft Office". Thank you very much for any assistance.