Hi,
I have this query in SCCM in which I try to get all the App-V packages which start with X.
Reason: we renamed the application and did some other manipulations (made an application for users, one for computers) so now I'd like to verify what's exactly on those computers.
This works but I see pc's listed 3 or 4 times which I don't get.
Please advise.
J.
This is the query:
select SMS_G_System_COMPUTER_SYSTEM.Name, SMS_G_System_AppClientState.AppName from SMS_R_System inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId inner join SMS_G_System_AppClientState on SMS_G_System_AppClientState.ResourceID = SMS_R_System.ResourceId where SMS_G_System_AppClientState.AppName like "%X%"
I have this query in SCCM in which I try to get all the App-V packages which start with X.
Reason: we renamed the application and did some other manipulations (made an application for users, one for computers) so now I'd like to verify what's exactly on those computers.
This works but I see pc's listed 3 or 4 times which I don't get.
Please advise.
J.
This is the query:
select SMS_G_System_COMPUTER_SYSTEM.Name, SMS_G_System_AppClientState.AppName from SMS_R_System inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId inner join SMS_G_System_AppClientState on SMS_G_System_AppClientState.ResourceID = SMS_R_System.ResourceId where SMS_G_System_AppClientState.AppName like "%X%"
Jan Hoedt