Collection Querry Software detect

Hello,
defined a Collection with the following querry:
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_INSTALLED_SOFTWARE on SMS_G_System_INSTALLED_SOFTWARE.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_INSTALLED_SOFTWARE.ARPDisplayName like "%Trend Micro%" and SMS_G_System_ADD_REMOVE_PROGRAMS.Version
like "10.%"
The aim was: That i get all Clients into the Group which have Tern Micro 10.x have installed.
Problem: But a lot more clienst come into the Group because
 1. All clienst with Ternd Micro installed
2. All clienst having a random Software installed with version 10.x; e.x  MS Visual C++ 10.0.0

That's because you are mixing two different classes: 
... where
SMS_G_System_INSTALLED_SOFTWARE.ARPDisplayName like "%Trend Micro%" and
SMS_G_System_ADD_REMOVE_PROGRAMS.Version like "10.%"
Just pick one of them.
Torsten Meringer | http://www.mssccmfaq.de

Similar Messages

  • Good Collection Organizing Software?

    Is there such a thing as good software for organizing books, records, and other collectibles for Macintosh? I started to make a database, then found what seems to be the PERFECT program http://www.nortica.com/Software/CollectionMaster/Features.asp but it is not Mac compatible! Is there anything that can make such a program Mac compatible, or any similar program made to run on a Mac, or am I just stuck making my own databases? Any advice appreciated.

    Both Delicious Library and FileMaker Pro might do, but neither seems as ready made as the Collection Master software. Especially with FileMaker Pro, you'd have to really understand the program and customize a lot. So far I haven't even figured out how to use a template. If I could get some free ones I might try.

  • I purchased Adobe sc6 master collection from software city and i cannot locate the redemption code, but I do have the serial number for mac, do i still need the redemption code and where would i find it?

    I purchased Adobe sc6 master collection from software city and i cannot locate the redemption code, but I do have the serial number for mac, do i still need the redemption code and where would i find it?

    Hello,
    please have a look there: https://helpx.adobe.com/x-productkb/global/redemption-code-help.html
    >>> Redeem your redemption code in three easy steps.
    Hans-Günter

  • No previous version of grid software detected on the system

    Hi
    using rac 11.1.0.7 on 2 nodes clusters (OUL5x64) upgrading to 11.2.0 but the upgrade has error. degrade the system back to it old version 11.1.0.7 and now the old CRS are up then try to upgrade to 11.2.0 again but the first screen when select "Upgrade Grid Infrastructure" always receive this error
    [INS-40406] There is no previous version of grid software detected on the system.
    Please help how to get pass this error.
    Thanks,

    Check your inventory.xml file...the crs=true is probably not on the correct entry on one or all of the nodes...running the installer again with the updatenodelist will fix it.

  • Software Detection Script - Advice Appreciated.

    Hey guys, I am currently running a powershell script as a Configuration Item under SCCM 2012 but am looking to expand its functionality - this is where I am hoping someone can help...
    My script at present is as follows:
    param(
        ## The name of the software to search for
        $DisplayName = "*"
    Set-StrictMode -Off
     $compliance = "true"
    ## Get all the listed software in the Uninstall key
    $keys =    Get-ChildItem HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
    ## Get all of the properties from those items
    $items = $keys | Foreach-Object { Get-ItemProperty $_.PsPath }
    ## For each of those items, display the DisplayName and Publisher
    foreach($item in $items)
     if (($item.displayname) -and ($item.displayname -like $displayname))
       ## write-host $item.displayname
      switch ($item.displayname)
         "7-Zip 9.20" {$dummy=1}
         "Adobe Flash Player 11 ActiveX" {$dummy=1}
        default {$compliance = "False";$result=$result + $item.displayname + "`n"}
    ## write-host "======================================"
      Write-Host $compliance "`n" $result
    ## write-host "why:" $result
    So, basically it looks through all the programs under the "Uninstall" part of the the registry and compares it against those I detail in the script (I have much more listed but removed them to spare this post) - my question though is I want to
    expand the script to "ignore" certain software (for example Video drivers) and this is where I could use some guidance.
    Can anyone recommend an approach or a command to help me achieve this?
    Thanks in advance.

    It makes no sense and I am not going to try and figure out how you thought it up.
    Here is how to find in something belongs to a collection.
    $items=@(
         '-Zip 9.20',
         'Adobe Flash Player 11 ActiveX'
    if($items -contains 'Adobe Flash Player 11 ActiveX'){'Found'}else{'not found'}
    You can list as many things in the array as you need.  If one matches it will be found.  A switch is overkill in this case and your use is suspect.  The code you posted won't work and is hard to understand what you are trying to do.
    Look in the repository for scripts that retrieve uninstall items from the registry.  They will likely have what you need.
    ¯\_(ツ)_/¯

  • Will agreeing to a CS6 Master Collection "Adobe Software License Agreement" initiate the trial?

    I downloaded a CS6 Master Collection trial but I'd like to try the applications individually instead.
    I am attempting to open a .pdf and Acrobat X is asking me to accept an Adobe Software License Agreement.  But the window for this agreement says "CS6 Master Collection" in the upper left corner.
    Will accepting this Acrobat/Master Collection agreement initiate a CS6 Master Collection trial?

    The simplest solution would be to Install the free Adobe Reader to view the PDFs.
    Acrobat is included in the Master Collection, and is now the default PDF viewing application. Starting Acrobat, I believe, will start off the trial countdown.
    But to be fully functional, if you don't need the entire trial right now, you can go ahead and uninstall it.
    And to buy extra time, install individual trials of products as you need them. Just remember that you can try out a product only once on a machine.

  • Collection query - software update compliance status

    Hi all,
    I am trying to create a collection to list the computers that reported as unknown state from a specific software update deployment.  The query statement is as follow,
    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        SMS_UpdateComplianceStatus.MachineID     FROM         SMS_UpdateComplianceStatus        JOIN SMS_UpdateDeploymentSummary          
    ON SMS_UpdateComplianceStatus.CI_ID = SMS_UpdateDeploymentSummary.CI_ID     WHERE        SMS_UpdateComplianceStatus.Status = 0        AND SMS_UpdateDeploymentSummary.AssignmentName
    = "SUG_2013-00_All_FINAL")
    As far as I I understand, the status code 0 is unknown (I may be wrong on this one); 2 is non-compliant.  But the statement above does not return anything computers, while if I change SMS_UpdateComplianceStatus.Status = 2 and it returns the matched
    numbers as I run the compliance 7 report.
    Can you guys please take a look at this query statement and let me know the correct status number that I should punch in to return the computers that are unknown status.
    Thanks,
    Jimmy

    According to
    this post, you're right about value 0.  But if you look in the database at the v_Update_ComplianceStatus view, do you have any zeros?  I checked mine, and I don't - all 2's and 3's, so I wonder if you just don't have any in the table?

  • Problem with Creative Zen Micro software detecting certain C

    Hi,
    I hope someone can help me. I recently purchased a Creative Zen Micro MP3 player. So far, I have very few complaints, apart from the fact that while travelling on the bus, it won't seem to detect any radio stations.
    The problem re: the software though is that it will only detect the last track on three of my CD's. None of these CD's are damaged in any way, but all are from the same record label. Anyway, I was wondering if anybody had any tips on how I might be able to transfer these albums onto my player?
    Thanks a lot.

    My zen micro problem:
    Brief Problem description :.When I put a battery in the Zen micro, it automaticly turn on andshow "hardware problem" and freezed.2. If I connect to power adapter, i it automaticly turn on and show"hardware problem" and freezed.3. If I connect to my computer via usb cable, my computer can not findthe player and the player do not turn on even I switch on. As long asI put the battery in it, it automaticly turn on and show "hardwareproblem" and freezed. My computer still can not find it. I'm sure thecomputer and usb cable is working because all of my other device isworking ( include mouse, keyboard, logitech web camera, canon digitalcamera, samsung 52MB mp3). I try to take off all of theother usb equipements and the zen micro still not work. I can not rewrite the firmware because the zen micro freezed at"hardware problem" and my computer can not find it.
    Help!!!!!!

  • Collecting Unix Software Inventory Information?

    I have imported the server names of 155 servers. I have successfully collected the server hardware information, but very limited software information. I am looking for version and COTS software installed, not just the base unix software stack. Any suggestions on adjusting the scripts to be able to collect this detail level of information?

    Take a look at that device in Resource Explorer.  Notice that on a 64-bit device there is an 'Installed Applications' class and and 'Installed Applications (64)' class.  This data comes from the registry, and on a 64-bit operating system there
    are actually two separate 'Add/Remove Programs' lists that are aggregated in the OS user interface.
    If in Resource Explorer you see all of the software you expect to see, but not in the report, it is likely because the report is only looking at the 'Installed Applications' class and and not 'Installed Applications (64)' class.
    If you enable the 'Installed Software' class (either by going into the client settings or the AI node), you will notice that the 'Installed Software' class is a combined version of both the 32-bit and 64-bit applications.  This is much easier to report
    off of.
    I hope that helps, 
    Nash
    Nash Pherson, Senior Systems Consultant
    Now Micro -
    My Blog Posts
    If you've found a bug or want the product worked differently,
    share your feedback.
    <-- If this post was helpful, please click "Vote as Helpful".

  • Memory errors and software detection

    I have the 645EMax2 and admittedly, have a power supply issue in the process of resolution. However, I have two 512mb ddr 333mhz memory sticks from Seitec. I did a scan with DocMemory and Memtest86. Both gave errors at 485mb. I swapped them round and now have errors at 512+485 (ie 997mb) - showing it to be the stick and not the holder. Took it back to the supplier and they tested with GoldMemory (freeware I guess) and found no errors.
    So, would the results depend on processor speed and or BIOS config. I agree this is not conclusive til I test with a new power supply but any ideas on the realtive merits of these software testers would be welcome. Any ideas in general would be welcome.
    thanks

    ps. not all ram (makes and models) will work with more that 1 stick of ram (ps. boot windows xp play game (battlefiled  1942(use lots of ram)
    eg kinston 256 tiny big modulals (3x256 sticks) ok in 6547 (645) sis motherboard
    apcer 512 stick one works / 2 stick fails to play game with out crashing at random.
    make sure you set you timings to 2.5 safe(4) rate rame speed 333 etc

  • How to take Contacts back-up - Blackberry is not recognised by BB Desktop Software

    Hello,
    My phone is Blackberry Javeline 8900.  The desktop manager does not recognise my phone.  Everything else is fine.  It gets charged properly through USB.  I connected other BB phone, the same software recognises it.  
    So do not know what to do.  The issue is I need to back-up my contacts and which I am unable to do.  Also, I need to transfer those contacts to my another android device (I have 2 phones). Please help.
    Thanks.

    Hello andoshi,
    The following article will assist your with detecting your BlackBerry Curve 8900 smartphone within the BlackBerry Desktop Software on your computer:
    Identifying and troubleshooting issues with the BlackBerry Desktop Software detecting a USB connected BlackBerry smartphone - http://www.blackberry.com/btsc/KB00125
    We hope you find this helpful.
    Thank you.
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • Connecting Playbook to Desktop software

    Hi all,
    I am trying to connect my Playbook to the pc but I always get an error message, I used the update option which shows when I connect but I lost all my files for nothing, same problem occured again, now I am updating to the latest version relased before few hours but I am not sure if this works. any ideas or any one faced the same?
    knowing that I use the same pc software, and same USB cable to connect my torch 9810 and it works fine.
    thanks,
    Faisal

    Hello FaisalS,
    Welcome to the BlackBerry Support Community.
    The following article should help you with connecting your BlackBerry® PlayBook™ tablet to you computer using the BlackBerry® Desktop Software:
    Identifying and troubleshooting issues with the BlackBerry Desktop Software detecting a USB connected BlackBerry PlayBook - http://www.blackberry.com/btsc/KB27424
    We hope this helps.
    Thank you.
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • Zen Microphoto Error, detected by computer but nothing el

    Ok, so one night i was importing some new songs to my mp3 player and went to bed. Then the next morning i turned my comp on and i saw on the mp3 player "re-building-library" and the computer detected the mp3 player but Zen Microphoto Media Explorer, WINexplorer or WMP didnt detect it.
    Always when i connect my mp3 player i get this:
    [img"]http://img79.imageshack.us/img79/672/problemtm4.jpg">
    But nothing else detects it, and i cant import songs using WMP, WINexplorer or Zen Microphoto Media Explorer.
    This happened without reason and iam very dissapointed, hope for help. Thank you.
    I have tried this already: http://dmzweb3.europe.creative.com/SRVS/CGhttp://ask.europe.creative.com/SRVS/CGI-BIN/WEBCGI.EXE?New,Kb=ww_english_add,U={B8F6030-DA4F-D3-94F4-00500463020E},Company={CEAE26D-879-4C00-AC9F-03BC258F7B70},d=3025443648,Company={CEAE26D-879-4C00-AC9F-03BC258F7B70},d=3025443648,VARSET=ws:http://uk.europe.creative.com/,VARSET=ws:http://uk.europe.creative.com,case=9287
    And i have WMP 0, just reinstalled it and restarted comp... didnt work.
    Also always had SP2.
    My player works normally except from this.
    If u need more info plz ask.Message Edited by NewZet on 08-24-2006 2:55 PM

    I had the same problem with my 40GB Touch a couple of days ago. I just needed to reset the player>clean disk>reboot?I had read that if the software detects any error codes in the player in will not detect it or connect. Hope this helps, it did for me but I'm still learning how to use mine (just picked it up used)?BTW I'm using WMP , couldn't get CMO 3 or 5 to work either?Message Edited by TP24 on 0-9-20070:9 PM

  • Error when updating torch 9800 software

    Hi
    I keep on getting an error in the middle of my OS update of the BB torch.  Ive tried all 3 updates available and they all stop after uploaded several units and say I must check my internet connection.  Tried on several different connections, 3G and lan.  I have a App 606 error, but the software detects my phone, I do the repair option and then go the normal process of updating OS.

    Can you try using a different USB port in the rear of the PC, or even on a different PC?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Query for Software Updates Reports Install Date for only Some of the Installed Updates

    We use the following query to retrieve a list of software updates for a specific collection and software update group.  There are many cases where the installation status of a software update is 'installed' but there is no corresponding 'install
    date'.  Can anyone tell me why?
    declare   @AuthListLocalID as int
    declare @CollID as varchar(8)
    Select @CollID=CollectionID
    from v_Collection
    WHERE CollectionID='ZSV0000A'
    select @AuthListLocalID=CI_ID from   v_AuthListInfo
    where    CI_UniqueID='ScopeId_EAD5EB80-CC39-4EA2-B08F-A45BB84F1D76/AuthList_4DEAD110-5740-495E-8BD8-467A55C50A0C'
    select
    rs.Name0 as ServerName,
    catinfo.CategoryInstanceName as Vendor,
    catinfo2.CategoryInstanceName as   UpdateClassification,
    ui.BulletinID as BulletinID,
    ui.ArticleID as ArticleID,
    Case ui.Severity WHEN 10 THEN 'Critical' WHEN 8 THEN 'Important' ELSE LTRIM(ui.Severity) END as Rating,
    ui.Title as Title,            
    Targeted=(case when ctm.ResourceID is not   null then '*' else '' end),
    Installed=(case when css.Status=3 then   '*' else '' end),
    IsRequired=(case when css.Status=2 then   '*' else '' end),
    Deadline=cdl.Deadline,            
    CAST(CASE   IsNull(AddRem.InstallDate0,CAST('1/1/1900' as smalldatetime)) WHEN   CAST('1/1/1900' as smalldatetime) THEN AddRem64.InstallDate0 ELSE   AddRem.InstallDate0 END as Date) as 'Install Date',
    ui.InfoURL as InformationURL
    from v_UpdateComplianceStatus css
    inner join v_UpdateInfo ui on   ui.CI_ID=css.CI_ID
    inner join v_CIRelation cir 
    on ui.CI_ID=css.CI_ID and cir.ToCIID =   ui.CI_ID -- add this
    inner join v_CICategories_All catall on   catall.CI_ID=ui.CI_ID 
    inner join v_CategoryInfo catinfo on   catall.CategoryInstance_UniqueID = catinfo.CategoryInstance_UniqueID and   catinfo.CategoryTypeName='Company' 
    inner join v_CICategories_All catall2 on   catall2.CI_ID=ui.CI_ID 
    inner join v_CategoryInfo catinfo2 on   catall2.CategoryInstance_UniqueID = catinfo2.CategoryInstance_UniqueID
    and   catinfo2.CategoryTypeName='UpdateClassification'
    left outer join v_CITargetedMachines ctm   on ctm.CI_ID=css.CI_ID
    and ctm.ResourceID = css.ResourceID
    left outer join v_GS_ADD_REMOVE_PROGRAMS   AddRem on css.ResourceID = AddRem.ResourceID and ui.Title =   AddRem.DisplayName0
    left outer join   v_GS_ADD_REMOVE_PROGRAMS_64 AddRem64 on css.ResourceID = AddRem64.ResourceID   and ui.Title = AddRem64.DisplayName0
    left outer join (select atc.CI_ID
    ,CreationTime=min(a.CreationTime)
    ,ExpirationTime=min(a.ExpirationTime)
    ,StartTime=min(a.StartTime)
    ,EnforcementDeadLine=min(a.EnforcementDeadLine)
    ,LastModificationTime=min(a.LastModificationTime)
    ,Deadline=min(a.EnforcementDeadline)
    from v_CIAssignment a
    inner join v_CIAssignmentToCI atc on   atc.AssignmentID=a.AssignmentID
    group by atc.CI_ID) cdl  
    on cdl.CI_ID=css.CI_ID
    left outer join v_R_System rs ON   css.ResourceID=rs.ResourceID
    where    css.ResourceID in (
    Select vc.ResourceID
    FROM v_FullCollectionMembership vc
    WHERE vc.CollectionID=@CollID)
    and cir.FromCIID=@AuthListLocalID
    and cir.RelationType=1  
    order by
    catinfo.CategoryInstanceName
    , catinfo2.CategoryInstanceName
    , ui.ArticleID

    Hi Mate,
    Its really difficult to do get the installed date of the patches as there is no table available in SCCM  DB to pull this info i had a requirement in the past but i was unable to do had done it via work around.
    This can be done after editing of sms_def.mof file or else using the power-shell script in windows server 2008 where the powershell is a feature by default.
    H/W inventory: 
    For the 2000 servers this has to be installed but if we enable this its mentioned it may utilize upto 100 % of the Memory during the h/w inventory you can check that in your SMS_DEF.MOF  -
    QuickFixEngineering you can see the warning.uickFixEngineering
    http://support.microsoft.com/kb/279225/en-us
    Powershell script:
    http://msmvps.com/blogs/richardsiddaway/archive/2011/10/23/1760058.aspx
    the warning for the quick fix engineering is not there on 2012 but there on 2007 hope the info help you to achieve your output.
    Kamala kannan.c| Please remember to click “Mark as Answer” or Vote as Helpful if its helpful for you. |Disclaimer: This posting is provided with no warranties and confers no rights

Maybe you are looking for

  • How do we anchor to top of page on page load?

    HI! I use iframes and when a user clicks a link in the middle of a page it loads the new child iframe in the iframe BUT the new page is at the same vertical spot as the previous page. I want the page to be loaded at the top so the user can see the se

  • IDoc to multiple receivers...

    Hi All, (This is an IDoc to IDoc scenario) I am working on a scenario where I need to send a mapped IDoc to four local folders. (The local folders are for archived copies of the IDoc and for pick up by third party systems. We are not concerned with t

  • Date and time wrong

    My date and time has gone wrong on my iPod touch. It is showing 2513BE as the date and will not met me change it manually in settings and time and date. I have tried changing the time zones and this has not helped...any suggestions?

  • Regional LTE compatibility.

    I have a Purchase decision to make regarding the iPhone 5s and Regional LTE compatibility: I have numbers for O2 in UK; China Mobile in CN and AT&T in the US. Assuming China Mobile rolls out a full 4g service at the end of 2013, at least in Shanghai

  • Can I communicate with a Micrologix 1400?

    I'm trying to communicate with an Allen Bradley Micrologix 1400 using the OPC Client object and RSLinx Single Node as my OPC Server.  I have Lookout version 6.1.  So far I've been able to browse the plc in Lookout, but the diagnostics in RSLinx shows