SCCM Collection Query All Clients where Advertisement not successful

Hi
I'm trying to create a collection with a dynamic membership query.
I want only the clients on which an advertisement status is not successful.
So I can see on which clients the advertisement didn't not apply.
When I use this query, I see the clients on which the advertisement was successful:
select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.ResourceId in (select ResourceID from SMS_ClientAdvertisementStatus where AdvertisementID = "BMA20408" and LastStateName = "Succeeded")
So my idea was to set the != Succeeded
But then I have no clients in the collection.
Any Idea how I can solve that?

Hi,,sorry, but it looks like that I'm too stupid for copy and paste.
I tried this one:
select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_SYSTEM.ResourceID not in (select SMS_ClientAdvertismentStatus.ResourceID
from SMS_ClientAdvertisementStatus where SMS_ClientAdvertisementStatus.AdvertisementID = "P0120EFE" and SMS_ClientAdvertisementStatus.laststatusmessageID in (10021))
and always, whe I want ot save the script I got the message that there is a mistake. I'm not able to find the mistake - can please anyone help me?
Regards
Rolf

Similar Messages

  • SCCM collection Query - Wrong output

    Hi 
    We are working on Creating Dynamic SCCM collection which get populated based on following two condition
    1) Belongs to a Test OU in AD
    2) Doesn't have scom agent installed
    We have been trying to work out why following query doesn't populate collection with correct object instead populate by every object that exist in this OU. Seems like condition after AND is totally ignored. is there anything I am doing wrong here
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_SERVICE on SMS_G_System_SERVICE.ResourceID =
    SMS_R_System.ResourceId where SMS_R_System.SystemOUName = "AD.local/Servers/DEV/Test" and SMS_G_System_SERVICE.DisplayName != "Microsoft Monitoring Agent"
    Where as below query is working and condition after AND is calculated and collection get populated with right objects.
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_SERVICE on SMS_G_System_SERVICE.ResourceID =
    SMS_R_System.ResourceId where SMS_R_System.SystemOUName = "AD.MONASH.EDU/Managed/Servers/DEV/OCIO/SplunkTest" and SMS_G_System_SERVICE.DisplayName = "Microsoft Monitoring Agent"
    We tried with different combination such as "not like", "is null" etc etc. seems to us that as soon as we try have negative criteria after AND that criteria has been ignored.
    To my little knowledge of SQL query, condition after AND is not optional and has to meet, if it doesn't query should return no value.
    is this same with SCCM collection query? will appreciate if some one can shade some light here.
    Thank you in advance. 

    Thank you All for the reply
    Our End Goal is to be able to automate software/configuration deployment based on criteria we set. SCOM is first of the rank if you like and we want this to be hands off approach so when a server move into certain OU based on criteria server get populated
    into SCCM collection and SCCM pushes out software/configuration packages out to the server.
    but having said that if we have to create two collection to satisfy our two criteria than most likely we will need number of collections depending on numbers and types of criteria. This will make managing collection and their relationship more challenging
    and not sure if that is the path we want to take. This will need to be discussed through unless we find better solution.
    Thank you again

  • SCCM collection query to create ESX host machines

    Hello Everyone
    I am looking SCCM collection query to create  ESX host collection. Any one can share the query to create EST host machines collection please

    For the actual ESXi hosts you can't.
    For host machines, that would be a query for all virtual servers, like this one:
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.IsVirtualMachine = "True"
    Make sure you limit the above query to servers collection or you can expand it to include servers, like this:
    select SMS_R_System.ResourceId, SMS_R_System.ResourceType, SMS_R_System.Name, SMS_R_System.SMSUniqueIdentifier, SMS_R_System.ResourceDomainORWorkgroup, SMS_R_System.Client from  SMS_R_System inner join SMS_G_System_OPERATING_SYSTEM on SMS_G_System_OPERATING_SYSTEM.ResourceId
    = SMS_R_System.ResourceId where SMS_R_System.IsVirtualMachine = "True" and SMS_G_System_OPERATING_SYSTEM.Caption like "%server%"

  • SCCM Collection query to get the Linux machines details

    Hi,
    Can I get the SCCM collection query to create list of Linux  machines . Please help me to get 

    Hi,
    Yes, you can.
    You use collections to manage groups of Linux and UNIX servers in the same way you use collections to manage other client types. Collections can be direct membership collections or query based collections that identify client operating systems, hardware
    configurations, or other details about the client that are stored in the site database. 
    For more information, please review the link below:
    How to Manage Linux and UNIX Clients in Configuration Manager
    http://technet.microsoft.com/en-us/library/jj573941.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • SCCM Collection query

    Dear,
    I have created collection name it (No iTunes) and add below query to find computer does not have iTunes and in collection Limiting option selected other collection where all computer account stored but this does not apply as need.
    would you please assist.
    Select * from SMS_R_System inner join
    SMS_G_System_Add_REMOVE_PROGRAM on
    SMS_G_System_Add_REMOVE_PROGRAM.ResourceID =
    SMS_R_System.ResourceID where
    SMS_G_System_ADD_Remove_PROGRAM.DIsplayName != “iTunes”
    [email protected]

    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,
    SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,
    SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client
    from SMS_R_System where SMS_R_System.ResourceId
    not in (SELECT SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID
    FROM SMS_G_System_ADD_REMOVE_PROGRAMS
    WHERE SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName like "itunes%" )
    Keep in mind that this will only find x86 versions of iTunes.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Client installation is not successful & not showing activity in SCCM Server 2012

     Environment : SCCM Server 2012 Configured successfull and installed clients using client push method , successfully Completed . I have seen Active, And push software to corresponding clients . installed successfully
    We have internal & external networks in our environment . Internal network in data center , the sccm server is also in data center . All client systems is getting software's from sccm in internal network ( done successful) .
    i have opened the ports in firewall 135,139,80,443,445, etc (TCP,UDP)
    When iam trying to push the client from SCCM server to  external network client system. it is not installing the  Ccm setup ,
    not showing "Active" in SCCM server .
    I have added a Account in Client push , Same account i added in Client system Administrator group .
    Info : All systems in Device collection 
    please updated the suggestions, to solve this issue . 
    Thanks in advance 

    Client push requires more than just those handful of ports as it uses RPC and SMB to push the initial required files -- thus, you need to open the dynamic high ports required for RPC.
    You can easily see this activity in the ccm.log.If you are unable/unwilling to open the RPC high ports, then you should choose an alertnate client install method.
    Jason | http://blog.configmgrftw.com

  • SCCM 2012 R2 CU1 Client updates but not showing in Admin Console

    I have updated my 5.00.7958.1000 client to Cumulative Update 1 (KB2938441).  If I look on the client the version now says 5.00.7958.1203.  My admin console when I click on the client still says 5.00.7958.1000. I tried update membership. It has
    been a couple days since the update on the one. Another was early this morning.  I have updated using the Patch and software package deployment.  I have used the push installation to upgrade.  In all cases, upgrade works, but in the console
    the client versions are not changing and keeps saying version is the same.
    Why wouldn't it update by now?  This is crazy the time it is taking to show a new version has been installed/upgraded.
    What process needs to happen?  Are there specific logs for this data coming back to the console I can check?
    Find this post helpful? Does this post answer your question? Be sure to mark it appropriately to help others find answers to their searches.

    We are a school district so the majority of our clients are intranet.  Our WAN is connected with Gigabit connections.  Single sccm primary site at center of the hub-n-spoke network topology.  Server running Windows server 2012 w/ 4cpu and
    16 GB RAM.  Server running in VMware so we can easily increase spec if needed, so more interested in what the "common" configuration may be so I can test it with those settings first and adjust accordingly. 
    We have 3,500 clients, only 800 of which may go home the other stay on network at all times.  A large number of those 3,500 are laptops that are in carts so they are not left on all the time so the different processes need to be somewhat frequent. 
    Additionally, it will be almost never that all those machines are on at the same time.  Many could be sitting shutdown in the carts.
    Please offer your opinion as to what good settings might be.  I know they may not be perfect, but I can test them out.
    Also checking the Client Settings under Administration workspace, I don't see all the same type of actions I do under the Client computer -> control panel -> configuration manager -> Actions tab.  Are these configured elsewhere
    or do they all fall under the "hardware inventory" and "software inventory" sections of the Administration -> Client Settings?
    Find this post helpful? Does this post answer your question? Be sure to mark it appropriately to help others find answers to their searches.

  • Query transform with where condition not equal to

    All,
    I have a two tables in a Data services job where I am using a Query transform to load the data from these two tables into another table. In the where tab in query transform i had a conditon saying table1.column1 <>  table2.column1 and table1.column2 <> table2.column2.
    I need to see the record count of table1-table2 in my final thrid table, but I see more record count and also the not equal condition is failing. Its working for an equal condition but the not equal condition is failing.
    The equivalent SQL query for the above transform has to be:
    select * from table1 inner join table2 on table1.column1 = table2.column1 where table1.column1 <> table2.column1 and
    table1.column2 <> table2.column2.
    Any thoughs on how to fix my query transform.
    Thanks

    Hi
    As per your below statement
    "I need to see the record count of table1-table2 in my final thrid table, but I see more record count and also the not equal condition is failing. Its working for an equal condition but the not equal condition is failing."
    If you trying to get the records from table-1 which are not in table-2 (as you trying table1-table2)
    you can try logic in query transformation where clause
    not table1.field1 in (table2.field1)
    and
    not table1.field2 in (table2.field2)
    it gives you count from table1 only
    Regards
    Ahalya Gopinath

  • Sending mails from client where SAPSERVER not connected to internet.

    Hi
    gurus
    How to send mails thru my sap client , which is connected to server located different place. with Server Name esmart03_ESM_00 and my client , ESM(800).
    1.The server is not connected to Internet.
    SCOT settings maintained is
    Default Domain ESM800
    SMTP NODE settings
    SAP Connect   General
    Node = SMTP
    Description= mailserver
    Mail Host = local host
    port = 25
    code page = 1100 
    checked Internet and  * in Addrr
    Default Domain = esmart
    RZ10  Settings.
    icm/server_port_2                           PROT=SMTP,PORT=25,host=smtp.googlemail.com,TIMEOUT=180
    is/SMTP/virt_host_2                         *:25;
    i had checked smicm for smtp port active, it is active as well as  scif..
    I appreciate for your answers where pts will be awarded..
    i had gone thru sapnotes as well as help.sap.com..
    regards
    sriram venkat.

    Hi,
    Your config is IMHO wrong.
    You need to set smtp.googlemail.com in the SCOT settings and to remove it from icm/server_port_2.
    You also need connectivity between your SAP server and smtp.googlemail.com.
    There are 99% chances out of 100, that you need to open firewalls rules and/or set proxy servers.
    Check that with your network team.
    Regards,
    Olivier

  • SCCM 2012 Secondary site client's are not doing hardware scan for more than 30 days

    Hi, 
    On our SCCM environment around 2500 active clients mapped for particular secondary site not performed hardware scan for more than 30 days. Can anyone provide suggestion how to fix this. 
    Regards,
    Madhan

    Yes i confirmed it is listing correct MP and software scan is working fine. we have around 8500 machines connected to that site buy only 3000 machines are having this issue. anyone has faced this issue ?
    Only 5000 Computers are supported by a secondary site.
    http://technet.microsoft.com/en-us/library/gg682077.aspx#BKMK_SupConfigClientNumbers
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • How to find the error when client proxy is not successfully triggered?

    Hi all,
    I want to consume a .NET service in SAP.
    But when I want to test the client proxy the following error occur:
    GENERAL_ERROR Error duing proxy processing (PART
    UNKNOWN (NULL) )
    Transaction ST11:
    TRACE SOAP RUNTIME - trace records                                                                               
    E CONTEXT 20090518061404.5255720 : CL_SOAP_CONTEXT ->SET_FAULT   
    SOAP runtime fault handling                                                                               
    E SOAP_RUNTIME 20090518061404.5256990 : CL_SOAP_RUNTIME_CLIENT   
    ->EXEC_PROCESSING Exception handling in SOAP runtime                                                                               
    E CONTEXT 20090518061404.5255620 : CL_SOAP_CONTEXT ->SET_FAULT set
    fault loop detected                                                                               
    E SOAP_RUNTIME 20090518061404.5256920 : CL_SOAP_RUNTIME_CLIENT                                   
    .NullPointerException:                                           
    Transaction SM21:
    SOAP Runtime Protocol: SOAP Fault exception occurred in program CL_SOAP_RUNTIME_ROOT==========CP in include CL_SOAP_RU NTIME_ROOT==========CM004 at position 80
    SOAP Runtime Protocol: Exception message: Severe processing error; SOAP fault handling required
    How can I find what's wrong????
    This error logging is not really helpful to me...
    Any ideas?
    regards

    Hello Mr. Bauer,
    Will you please elaborate on your solution to fix this issue?
    We are facing this issue too.
    Thanks in advance.
    Regards,
    Victor

  • Collection Query to Find PCs without Mozilla Firefox

    Hi all,
    Looking for a bit of a hand with my first-time SCCM query.  The final query would be a bit different to the below, but for troubleshooting and simplicity I'm using the following until I get a sensible result.
    Recently deployed Firefox to all vista and 7 clients in our company and want to find all clients where firefox is NOT installed.  Since my query was giving unexpected results I'm using a simpler query, which returns only my own PC for the moment; I
    have Firefox installed.
    At first I created a query which would simply find my PC based on hostname and add it to the collection; this worked.  I then modified the query to say "AND ADD_REMOVE_PROGRAMS.DisplayName like "%Firefox%".  Here's the query:
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_SYSTEM on SMS_G_System_SYSTEM.ResourceID = SMS_R_System.ResourceId inner join SMS_G_System_ADD_REMOVE_PROGRAMS on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID = SMS_R_System.ResourceId where SMS_G_System_SYSTEM.Name = "MyPCHostname" and SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName like "%Firefox%"
    Hey presto; my PC remains a member of the collection, as you would expect.
    Next up I modify the query to state:
    and SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName not like "%Firefox%"
    I refresh the collection membership and... my PC remains a member!  In the words of Chris Morris, "This is exactly what we did not want to happen".
    I repeated the above with Google Chrome and same undexpected results happened, so I'm sure my query is at fault; could anyone guide me in the right direction?  A few key points:
    I'm certain the Add/Remove Programs display names are correct
    This is my first time messing around with these queries
    I followed advice steps from TechNet to build the query, but not sure if I'm using the "and" operator correctly, or if nesting of statements is required
    Any help is appreciated, thank you.

    Yeah but why would you want to create multiple collections just to make one ultimate one that works. In my opinion, exclusion and inclusion queries are best left for something more universal and often used. Like we have an exclusion/inclusion query to leave
    out Executives on global pushes of changes. We like to make sure all the users are happy with the change before we make the uppers aware. This allows us room to fix/repair any issues and fly below the radar. In that sense the collection is universal and applicable
    in many scenarios.
    And to be honest, the query isn't that hard to "mess with". I have collections for this all the time. Just duplicate the query in a new collection, change the applicable text. Job done. One simple collection. I only provided a more complex query to show
    the OP that you could get granular too. In his case, you need only do the following
    select SMS_R_System.Name, SMS_R_System.LastLogonUserName, SMS_R_System.Client
    from SMS_R_System
    where SMS_R_System.Name
    not in
    (select SMS_R_System.Name
    from SMS_R_System
    inner join SMS_G_System_ADD_REMOVE_PROGRAMS
    on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID = SMS_R_System.ResourceId
    where SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName
    like "Firefox")
    Copy/Paste/Change the green text/new collection done
    Dustin Estes - MCP

  • Query startdate and end date not using the index

    Hi,
    in my query all the where  i am using  the code as below
    AND START_DATE                   <= SYSDATE
    AND SYSDATE  <= END_DATE
    because of this my query seems to slow and timeconsuming. is there any other alternate way?
    Pls help
    S

    KARTHIK,
    this is my query
    SELECT /*+ PARALLEL(CUSTOMER, 4)PARALLEL(CUSTOMER_MANAGER, 4),PARALLEL(CUSTOMER_DIVISION, 4) */
    CUSTOMER.CUSTOMER_EID 
    FROM  CUSTOMER_   CUSTOMER,
    CUSTOMER_MANAGER_ CUSTOMER_MANAGER,
    CUSTOMER_DIVISION_   CUSTOMER_DIVISION
    WHERE   CUSTOMER_MANAGER.CUSTOMER_EID   = CUSTOMER.CUSTOMER_EID
    AND CUSTOMER.CUSTOMER_EID               = CUSTOMER_DIVISION.CUSTOMER_EID
    AND  CUSTOMER_MANAGER.CUSTOMER_EID   = CUSTOMER_DIVISION.CUSTOMER_EID
    AND ( TRUNC(SYSDATE) BETWEEN CUSTOMER_MANAGER.DIVISION_START_DATE   AND CUSTOMER_MANAGER.DIVISION_END_DATE
    AND  TRUNC(SYSDATE) BETWEEN CUSTOMER_DIVISION.DIVISION_START_DATE   AND CUSTOMER_DIVISION.DIVISION_END_DATE )
    AND CUSTOMER_DIVISION.STATUS             ='AC';
    plan output is as below
    Plan hash value: 2500183415
    | Id  | Operation                     | Name              | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     | Pstart| Pstop |    TQ  |IN-OUT| PQ Distrib |
    |   0 | SELECT STATEMENT              |                   |     1 |    53 |       |   360K  (1)| 01:12:04 |       |       |        |      |            |
    |   1 |  PX COORDINATOR               |                   |       |       |       |            |          |       |       |        |      |            |
    |   2 |   PX SEND QC (RANDOM)         | :TQ10001          |     1 |    53 |       |   360K  (1)| 01:12:04 |       |       |  Q1,01 | P->S | QC (RAND)  |
    |   3 |    NESTED LOOPS               |                   |     1 |    53 |       |   360K  (1)| 01:12:04 |       |       |  Q1,01 | PCWP |            |
    |*  4 |     HASH JOIN                 |                   |    16M|   738M|   111M|   360K  (1)| 01:12:03 |       |       |  Q1,01 | PCWP |            |
    |   5 |      BUFFER SORT              |                   |       |       |       |            |          |       |       |  Q1,01 | PCWC |            |
    |   6 |       PX RECEIVE              |                   |    12M|   302M|       |   305K  (1)| 01:01:10 |       |       |  Q1,01 | PCWP |            |
    |   7 |        PX SEND PARTITION (KEY)| :TQ10000          |    12M|   302M|       |   305K  (1)| 01:01:10 |       |       |        | S->P | PART (KEY) |
    |   8 |         PARTITION HASH ALL    |                   |    12M|   302M|       |   305K  (1)| 01:01:10 |     1 |     4 |        |      |            |
    |*  9 |          TABLE ACCESS FULL    | CUSTOMER_DIVISION_ |    12M|   302M|       |   305K  (1)| 01:01:10 |     1 |     4 |        |      |            |
    |  10 |      PX PARTITION HASH ALL    |                   |    15M|   323M|       | 42663   (1)| 00:08:32 |     1 |     4 |  Q1,01 | PCWC |            |
    |* 11 |       TABLE ACCESS FULL       | CUSTOMER_MANAGER_ |    15M|   323M|       | 42663   (1)| 00:08:32 |     1 |     4 |  Q1,01 | PCWP |            |
    |* 12 |     INDEX UNIQUE SCAN         | CUSTOMER__PK      |     1 |     6 |       |     1   (0)| 00:00:01 |       |       |  Q1,01 | PCWP |            |
    Query Block Name / Object Alias (identified by operation id):
       1 - SEL$1
       9 - SEL$1 / CUSTOMER_DIVISION@SEL$1
      11 - SEL$1 / CUSTOMER_MANAGER@SEL$1
      12 - SEL$1 / CUSTOMER@SEL$1
    Predicate Information (identified by operation id):
       4 - access("CUSTOMER_MANAGER"."CUSTOMER_EID"="CUSTOMER_DIVISION"."CUSTOMER_EID")
       9 - filter("CUSTOMER_DIVISION"."STATUS"='AC' AND "CUSTOMER_DIVISION"."DIVISION_END_DATE">=TRUNC(SYSDATE@!) AND
                  "CUSTOMER_DIVISION"."DIVISION_START_DATE"<=TRUNC(SYSDATE@!))
      11 - filter("CUSTOMER_MANAGER"."DIVISION_END_DATE">=TRUNC(SYSDATE@!) AND "CUSTOMER_MANAGER"."DIVISION_START_DATE"<=TRUNC(SYSDATE@!))
      12 - access("CUSTOMER"."CUSTOMER_EID"="CUSTOMER_DIVISION"."CUSTOMER_EID")
           filter("CUSTOMER_MANAGER"."CUSTOMER_EID"="CUSTOMER"."CUSTOMER_EID")
    Column Projection Information (identified by operation id):
       1 - "CUSTOMER"."CUSTOMER_EID"[NUMBER,22]
       2 - (#keys=0) "CUSTOMER"."CUSTOMER_EID"[NUMBER,22]
       3 - (#keys=0) "CUSTOMER"."CUSTOMER_EID"[NUMBER,22]
       4 - (#keys=1) "CUSTOMER_DIVISION"."CUSTOMER_EID"[NUMBER,22], "CUSTOMER_MANAGER"."CUSTOMER_EID"[NUMBER,22]
       5 - (#keys=0) "CUSTOMER_DIVISION"."CUSTOMER_EID"[NUMBER,22]
       6 - "CUSTOMER_DIVISION"."CUSTOMER_EID"[NUMBER,22]
       7 - (#keys=1) "CUSTOMER_DIVISION"."CUSTOMER_EID"[NUMBER,22]
       8 - "CUSTOMER_DIVISION"."CUSTOMER_EID"[NUMBER,22]
       9 - "CUSTOMER_DIVISION"."CUSTOMER_EID"[NUMBER,22]
      10 - "CUSTOMER_MANAGER"."CUSTOMER_EID"[NUMBER,22]
      11 - "CUSTOMER_MANAGER"."CUSTOMER_EID"[NUMBER,22]
      12 - "CUSTOMER"."CUSTOMER_EID"[NUMBER,22]
    Pls suggest
    s

  • Collection query for specific SCCM client version - Parameters?

    Good morning,
    I need to upgrade my older clients as I recently upgraded SCCM to SP2.  I can't seem to find the parameters in query builder to populate a collection with a specific SCCM client version.  Can anyone help me out or point me in the right direction?  I can't find anything using "The Google".  You'd think lots of people would want this that there'd be a default query in SCCM already.  Thanks.

    Here is a query of all clients running sp1 version:
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_SMS_ADVANCED_CLIENT_STATE on SMS_G_System_SMS_ADVANCED_CLIENT_STATE.ResourceId = SMS_R_System.ResourceId where SMS_G_System_SMS_ADVANCED_CLIENT_STATE.Version = "4.0.6221.1000"
    JonL

  • SCCM Collection with IE9 Installed Clients

    Hello ,
    I would like to create a Collection on SCCM with all IE9 Clients . Because some clients downloaded and install the stand alone version of IE9 and others get the IE9 from our WSUS ,
    i cant count the exact number of IE9 installed clients . i have tried a lot of queries but i didnt get the right results except from the computers which installed and registered the IE9 on Add/Remove Programs .
    The query for the collection is :
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_ADD_REMOVE_PROGRAMS on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID
    = SMS_R_System.ResourceId where SMS_G_System_ADD_REMOVE_PROGRAMS.Publisher = "Microsoft Corporation" and SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName = "Internet Explorer" and SMS_G_System_ADD_REMOVE_PROGRAMS.Version like "9"
    That query doesnt return all the computers with the Intenet Explorer 9 installed , just only the computers with stand alone installation .
    Any ideas ?
    Thanks a lot
    D.S.

    Yes, i do
    Are you able to see any details of installed softwares and add remove program details in Resource explorer in SCCM console?
    Anoop C Nair - This posting is provided "AS IS" with no warranties or guarantees, and confers no rights. |Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not
    actually answer your question. This can be beneficial to other community members reading the thread.
    Sure ,  I can .
    Have you seen the note provided in the above post?
    Notes: To find the clients that have not yet installed IE 9, simply change "like" to "not like" when checking the file verison number. Also, if you see oddities in the memberships, keep in mind that this is based off of the .EXEs
    polled and listed in the SCCM database, so when in doubt, use Resource Explorer within the ConfigMgr console to see if the "iexplore.exe" file has been inventoried.
    Anoop C Nair - This posting is provided "AS IS" with no warranties or guarantees, and confers no rights. |Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not
    actually answer your question. This can be beneficial to other community members reading the thread.
    Have you checked the below point ? If yes can you please share the screen shot ?
    use Resource Explorer within the ConfigMgr console to see if the "iexplore.exe" file has been inventoried.
    Anoop C Nair - This posting is provided "AS IS" with no warranties or guarantees, and confers no rights. |Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not
    actually answer your question. This can be beneficial to other community members reading the thread.
    You mean the Resource Explorer from a client ? RightClick on Client ->Start->Resource Explorer ?
    I have enable the Software Inventory Client Agent on Clients from central site properties .

Maybe you are looking for

  • How do I install Samba 3.4.6 on my MacBook Pro?

    I'm having many odd problems associated with using Samba at work (where PCs and linux boxes rule & Macs are shunned). I hear the samba version that ships with the latest OS X (I have a 17" MacBook Pro running 10.6.2) is kind of out of date and was ho

  • Logic issue with Internal Table

    Hi All, I have an internal table with following structure. Name of Internal table: ITAB Fields:   userid      login date     number Values:  abc         01012008                  abc         02012008              abc         02012008              abc

  • Http authentication failing on all sites, does not even prompt me for user/pass

    Hi, After an apt-get update, sites that use HTTP authentication do not prompt for credentials and go straight to HTTP:401. It is only affecting this browser, others have no issues. I also updated a FF in Windows, no issues there after the update.

  • Error in creating physical inventory creation

    Hi One of my customer is getting an error as " given batch is not accepting physical inventory 701 " . The batch is a existing and the problem is this works for most of the batches and only for some are not working. Pls note they are using mi01 , mi0

  • Solaris 10.2 OEM Installation: but emctl displays OMS version is 10.1

    Hi, How can I validate the correct version of the installation I did. I though Iwas installing OEM GC Solaris 10.2.0.1. Installer said it was 10.2.0.1. I did an OMS and AGENT install all using same software distro and when I run ./emctl in the agent