Create report to list all computers with chrome or mozilla browser al editions

Hi All,
I have SCCM 2007 R3 and I need to create report to list all computers with chrome or Mozilla browser all editions. any help?
Thanks,
Kareem Behery

The above one is SMS collection query. For SQL report you may try the below query: 
query for IE 10
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_SoftwareFile on SMS_G_System_SoftwareFile.ResourceID
= SMS_R_System.ResourceId where SMS_G_System_SoftwareFile.FileName
= "iexplore.exe" and SMS_G_System_SoftwareFile.FilePath
like "%prog%internet%" and SMS_G_System_SoftwareFile.FileVersion
like "10.%"
query for IE 9
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_SoftwareFile on SMS_G_System_SoftwareFile.ResourceID
= SMS_R_System.ResourceId where SMS_G_System_SoftwareFile.FileName
= "iexplore.exe" and SMS_G_System_SoftwareFile.FilePath
like "%prog%internet%" and SMS_G_System_SoftwareFile.FileVersion
like "9.%"
query for IE 10
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_SoftwareFile on SMS_G_System_SoftwareFile.ResourceID
= SMS_R_System.ResourceId where SMS_G_System_SoftwareFile.FileName
= "iexplore.exe" and SMS_G_System_SoftwareFile.FilePath
like "%prog%internet%" and SMS_G_System_SoftwareFile.FileVersion
like "11.%"

Similar Messages

  • Report to list all computers and their collection membership

    Hi
    I am currently working on a site where direct membership is used for collections but a need has arisen to move to AD Queries.
    I have created a simple powershell script that creates groups based on the contents of a csv file and another script which populates this with the members listed in another csv file.
    To help speed up the process is there a way to generate a report that lists ALL Computers and their Collection membership?
    The only reports I seem to find that are built in require an inputted value of either computer name of collection ID. I simply need a report that lists Computer Name is column 1 and Collection Name in column 2 for all computers and all collections.
    Many Thanks,
    Matt Thorley

    select 
    FCM.Name,
    C.Name
    from 
    dbo.v_Collection C
    join dbo.v_FullCollectionMembership FCM on C.CollectionID = FCM.CollectionID
    Thanks to Garth for original query. I just modified it :)
    Anoop C Nair (My Blog www.AnoopCNair.com)
    - Twitter @anoopmannur -
    FaceBook Forum For SCCM

  • To show report which list all Accounts with no activity associated with it

    Hi
    1) Is it possible to show report which list all the accounts which do not have any activity associated with it?
    2) A report which shows All the accounts with Activity ( Even though there is no activity associated with it)
    Quick reply appreciated

    Hi Rits,
    You can achieve this using combine analysis. Create two reports and in the first one make the Activity Id blank, In the second report keep it as it is and do union of both the analysis.
    This will give you all the accounts which have/have not Activities associated with them.
    Hope it helps,
    Thanks,
    Mayank

  • Report: list of computers with out dated antivirus definitions

     
      Is there a report in SCCM to list all machines with outdated antivirus (SC End Point Protection) ?
      I believe SCCM take out such machine out of network through security center information  even if third part antivirus is installed.
      But can we get that as report as well ? list of computers
    Shahid Roofi

    Yes, I know this is an old post, but I’m trying to clean them up.
    I would start by looking at the built-in report found within the Endpoint Protection SSRS folder.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • T code/ report to list all material sales pricing condition with deletion i

    I create sales org/ material level pricing conditions in VK11. Some unwanted material pricing conditions are with Deletion indicator active. Iu2019m looking for a report to list all material sales pricing condition with deletion indicator active.
    Please advice me on this.

    Hi Goto v/ld and select 16 which stands for individual prices, and then populate sales organization, distribution channel, customer ,material numbers,etc...and tick "Cond.marked for deletion" check box in "list screen" tab which is the most important, execute you will be able to see all material pricing condition even though it had been deleted.

  • Report to Show All Machines with ANY Deployment Failures

    I need to generate a report, daily, that displays all machines that have
    any kind of an deployment failure. This list will then be used to generate tickets for consultants in that area to check on them.
    I know I can look at specific deployments and see which machines show up as failed, but I am not seeing a report that shows all machines that have
    any kind of a failed deployment. Does one exist, or will I need to create it?

    you can try this report to list all failed deployments(only for applications but not packages).
     select
    all
    SMS_AppDeploymentAssetDetails.AppName as 'App Name',
    CASE WHEN SMS_AppDeploymentAssetDetails.AppStatusType = '1' Then 'Success'
    when SMS_AppDeploymentAssetDetails.AppStatusType = '2' Then 'In Progress'
    when SMS_AppDeploymentAssetDetails.AppStatusType = '3' Then 'Requirements Not Met'
    when SMS_AppDeploymentAssetDetails.AppStatusType = '4' Then 'Unknown'
    when SMS_AppDeploymentAssetDetails.AppStatusType = '5' Then 'Error'
    else 'Unknown'
    End as 'App Status Type',
    CASE WHEN SMS_AppDeploymentAssetDetails.ComplianceState = '1' Then 'Compliant'
    WHEN SMS_AppDeploymentAssetDetails.ComplianceState = '2' Then 'Non-Compliant'
    WHEN SMS_AppDeploymentAssetDetails.ComplianceState = '4' Then 'Error'
    WHEN SMS_AppDeploymentAssetDetails.ComplianceState = '6' Then 'Partial Compliance'
    else 'Unknown'
    End as 'Compliance State',
    CASE WHEN SMS_AppDeploymentAssetDetails.DeploymentIntent  = '1' Then 'Install'
    WHEN SMS_AppDeploymentAssetDetails.DeploymentIntent  = '2' Then 'Uninstall'
    WHEN SMS_AppDeploymentAssetDetails.DeploymentIntent  = '3' Then 'Preflight'
    else 'Unknown'
    End as 'Deployment Intent',
    SMS_AppDeploymentAssetDetails.DTName as 'Deplyoment Type Name',
    CASE WHEN SMS_AppDeploymentAssetDetails.InstalledState  = '1' Then 'Uninstall'
    WHEN SMS_AppDeploymentAssetDetails.InstalledState  = '2' Then 'Install'
    WHEN SMS_AppDeploymentAssetDetails.InstalledState  = '3' Then 'Unknown'
    else 'Unknown'
    End as 'Installed State',
    CASE WHEN SMS_AppDeploymentAssetDetails.IsMachineAssignedToUser = '1' Then 'Yes'
    Else 'No'
    End as 'Device Assigned to User?',
    SMS_AppDeploymentAssetDetails.MachineName as 'Device Name',
    CASE WHEN CHARINDEX('\',SMS_AppDeploymentAssetDetails.UserName)>0 THEN SUBSTRING
    (SMS_AppDeploymentAssetDetails.UserName,CHARINDEX('\',SMS_AppDeploymentAssetDetails.UserName)+1,255)
    ELSE SMS_AppDeploymentAssetDetails.UserName END 'User Name'
    from fn_AppDeploymentAssetDetails(1033) AS SMS_AppDeploymentAssetDetails
    where SMS_AppDeploymentAssetDetails.AppStatusType = '5'
    ORDER BY 1
    Original query posted on http://systemcenteradmin.com/?p=67
    Eswar Koneti | Configmgr blog:
    www.eskonr.com | Linkedin: Eswar Koneti
    | Twitter: Eskonr

  • A report that lists all non-exempt employees that do not have a supervisor

    HI all,
    Please help. This is urgent.
    bold "A report that lists all non-exempt employees that do not have a supervisor assigned in R/3." bold
    I have already selected non-exempt employees but don't know how to select people who do not have a supervisor" What selection criteria I should choose in the ad-hoc query
    Thanks a bunch,
    Rashmi

    Hi
    Actually its not that difficult. You can give a criteria in selection where relationship A002 is equal to a space . Replace A002 in this example with the relatioship you have defined for 'Reports(line) to'.
    Regards
    Waz

  • HT202213 Home sharing problem: I have never set up home sharing but I feel I understand it.  I recently (last 2 months or so) deauthorized, first time ever, all computers with my iTunes account. I am trying to set up home sharing but get  iTunes says "You

    Home sharing problem: I have never set up home sharing but I feel I the concept and how it works.  I recently (last 2 months or so) deauthorized, first time ever, all computers with my iTunes account. I have 3 computers authorized.  I am trying to set up home sharing but get  iTunes says:
    "Home Sharing could not be activated because this computer is not authorized for the Apple Id "#########@###.com". Would you like to authorize now?"  I click "authorize" and get the next error " You cannont authorize more than 5 computers.  You have already authorized 5 computers with this Apple ID.  To authorize this computer you must first deauthorize one of the other computers."
    Can someone help or shed more light on my problem?
    Thanks,
    Richard

    Home Sharing is designed to work on your local network not across the internet/cloud.
    Stuff is accessed under the Computers column where your local iTunes library on a local computer would appear.
    Home Sharing would share your iTunes content (i.e. stuff stored in itunes on the computer, not in the cloud) with AppleTV or an iPad etc on the SAME network.
    AppleTV2 will not be able to see itunes content on the work computer over the internet.  It's not designed to.  if the work computer was on the home network it would.
    iCloud is in it's infancy and is not a mature product - iTunes TV Show purchases appear on AppleTV, but currently music does not unless you are subscribed to iTunes Match. I find this rather odd to be honest, along with the inability to buy music on AppleTV2.  Movies purchased in iTunes are not authorised for iCloud viewing currently either.
    Maybe it has something to do with iTunes Match 'getting in the way' - i think they assume you'll use that whereas you really want to be able to access Purchased music from the cloud without subscribing to itunes Match which is overkill for some.
    AC

  • Report to list all infotype record per employee

    Hi All
    is there a report that list all infotypes record per employee  ?
    thanks for helping
    Corinne

    Hi,
    It will not be feasible as all the IT has different fields.
    There is no standard report as Mr, Raghu mentioned.
    Ketul

  • List all users with full control on a SharePoint 2013 Sub site from SharePoint Object Model in C#

    If I have a sub site URL and a user with Site Admin, can I list all users in that sub site that have Full Control at that level?
    Any C# code sample?

    Still you can do that, just pass the subsites to your code and from their you can find the users dynamically.
    You could also use SPWeb.Users property to get users assigned to a subsite
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.users(v=office.15).aspx
    alternatively you can also use SPWeb.SiteUsers to get all users
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.siteusers(v=office.15).aspx
    other APIs of help-
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.associatedmembergroup(v=office.15).aspx
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.associatedownergroup(v=office.15).aspx
    http://sharepoint.stackexchange.com/questions/101671/object-model-list-all-users-with-full-control-on-a-sub-site-in-sharepoint-2013
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • Std. Transaction / Report to List all PO's with no invoice posting

    Hi All,
    I would like to know is there a standard transaction or report, which lists out all PO's for which goods receipt has been done, but invoice posting has not been done?
    Vivek

    Hi All,
    Thanks for your inputs,
    1. MR11 - Can you please let me know what input conditions do i have to give, to view only those PO's for which GR is done & Invoice not posted, because when i run this transaction it is showing all PO's which have invoice posted as well.
    2. ME2M - I am not able to select the dynamic selection option, it is in grey, how do i activate it?
    3. ME80FN - This gives a list of PO's line wise, but what i need is all PO lines for which GR is done, but no invoice posted.
    Await inputs.
    Vivek

  • REPORT for list of invoice with an order reason.

    Hi SAP Gurus !
    Is there any standard SAP report which will show me a list of invoice with an order reason field?
    I have tried VF05 and VF05n,but in both of them, order reason as a selection parameter field is missing.
    In case of any clarification kindly revert back to me.
    Regards,
    Ujjawal

    Thanks to all !
    Actually i was going  to create a query with VBRK and VBAK  tables but sales order number is not the common link as sales order number is present in VBAK table only.
    Apart from that i had tried to add VBRK and VBRP table then i was getting the list of invoice with order reasons (because order reason was getting copied from an order to invoice) ,but in this query i'm getting Order reason number with list of invoice only(Description of order reason is not coming).
    Please guide me for this if i'm wrong.
    Regards,
    Ujjawal

  • How to create an email list server solution with java

    hi all
    I would like to create a email list service with java.
    (when I say email list service, I mean , you send email and everyone who subscribes to the list receives the email automatically or the email is held in a queue for approval )
    this solution would have to be integrated with the emailing standards .
    Could someone share with me how one would create a list service with java and how it would work with the email and pick it up ?
    stephen

    or if there is an open source solution please let me know
    stephen

  • Report for listing contact person with customer

    Hello,
    we use the tables adrc, adrp, kna1, knvv and now I want to know if somebody has a ready report, where I can put the country-id in (f.e. 'it') , so that this reports lists all contact persons with their customer and their adress.
    Does anybody such a report ?
    Thanks
    Gerd

    again

  • Powershell to list all computers and the complete OU path

    I am trying to get a list of All Computers within the domain Prefixed UK and have it export the list to a CSV with the full OU Path.
    So far I can get the computers but not the OU
    Get-ADComputer -Filter 'SamAccountName -like "UK*"' | Select -Exp Name 
    Thanks

    Hi,
    What do you mean by 'complete OU path'? If you look at the DistinguishedName property of the returned computer object, you'll see the full path there.
    Don't retire TechNet! -
    (Don't give up yet - 12,700+ strong and growing)

Maybe you are looking for

  • [CS3 JS] How to Create a Timer?

    Within InDesign I need to be able to fire a periodic process to examine links from a JavaScript script. I have my own script running in its own engine. I can't figure out how to create a timer that will run in the background and call the appropriate

  • Power Mac 1.8 Dual G5 Runs slooooow

    We have 2 Power Mac G5's running the same OS 10.4.11 and Adobe creative suite 2. An issue with one is that it opens all Adobe aps real slow. It took 52 seconds to open InDesign but the other Power Mac opened it in 16 seconds. Also, an 84 MB file in P

  • How to implement search in Oracle Apex 3.2?

    I am new to orale apex & i want to impelment keyword based search in my app. I want a textbox on page 0 so that this textbox will come on every page. User will enter the search criteria & clieck on search button, app. will search that keyword in data

  • Getting my first BB

    Hi, I am thinking of getting myself a blackberry, however I keep reading that this divice is called curve 9300 3G and in my country it is called Curve 9300 is this the same phone? http://www.mobitel.si/telefoni-in-naprave/aparati.aspx here is a link

  • Error starting HTTP-Server: Address already in use: JVM_Bind

    Hello, I installed IAS 10.1.2.0.2. then I tried to start an application and get the following: D:\Oracle_Home_IAS\j2ee\home>java -jar oc4j.jar 07/01/08 10:04:00 Error starting HTTP-Server: Address already in use: JVM_Bind 07/01/08 10:04:01 Oracle App