SCCM 2012 Create Modified Delete Collection Query

Hi 
how do we know which account that added/deleted a machine to specific collection or the account which causes a software deployment or removal on the machine.
many thanks.

You can use the report All messages for a specific message IDfor that. For some examples see:
http://www.petervanderwoude.nl/post/who-created-that-deployment/
http://eskonr.com/2014/08/sccm-configmgr-2012-way-to-find-who-created-modified-deleted-the-collection-using-ssrs-reports/
My Blog: http://www.petervanderwoude.nl/
Follow me on twitter: pvanderwoude

Similar Messages

  • How to Create/Modify/Delete a query view from the web template in BI 7.0

    All:
    In BW 3.5, the <b>Query Selection View</b>  web item was introduced for users to create a query view to save the navigational state of a query. This web item was also available to modify and delete an existing query view.
    The Query Selection View web item <u>does not</u> exist in BI 7.0. I see the drop down web item can be used to display the query views associated to a query.
    Can anyone share how to create,modify,save or delete a <b>query view</b> on the web in BI 7.0
    Thanks,
    Kumar

    Sanjay, we experienced the same issue. Below are a few pieces of information that may be of help: 1-The Save As button on the 0ANALYZER template saves the query to the portal. From Bex Web or Bex Analyzer, you have no access to these saved views. We created a ZANALYZER copy of the 0ANALYZER template and removed the Save As button. 2- If you right mouse click on any item in the query results grid of Bex Web, you get a small menu. Clicking on the menu item Save View will save the view to BI. You do not have the ability to delete the saved views from Bex Web. However, you can delete them from Bex Analyzer. This was not an option for us since most of our users are using Bex Web. 3- On the same menu, clicking on Bookmark, saves the navigation and also opens the Internet Explorer Favorites maintence window. The navigation is saved as an entry into the users Internet Explorer favorites where they can organize and delete their entries. However, deleting the favorite does not delete the entry for the bookmark in BI. The bookmarks are stored in table RSWR_DATA. Program RSWR_BOOKMARK_REORG can be used to manage the saved bookmarks. We are loading RSWR_DATA into a chracteristic so that we can query the information in order to help us manage it. I hope this helps you and others that appear to be struggling with the issue of saved views in Bex Web.

  • SCCM 2012 R2 Report using WMI Query

    I am trying to find out if I can generate a report to show which users installed what software using a report in SCCM 2012 R2 and a WMI Query.
    If not using the reporting within SCCM, then:
    1)  is it possible to pull such data via a wmi query
    2)  any suggestions how to do so?
    3)  Desktop OS is either Windows 7 or 8 or 8.1 Enterprise x64
    Thanks,
    Dave
    David Lakey

    You Can Create Query With the Software name but you can Know Which Computer and you can add System Resource as the Last login name
    This for Example:-
    From monitoring--> Create New Query--> Edit Query Statement --> Show Query Language
    past the following:- 
    select SMS_R_System.NetbiosName, 
    SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName 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 "%Visio%"
    After that in General you can add in Results Tap:-
    System Source and the Attribute Will be last Login name

  • SCCM 2012 report w/ selectable collection

    I am trying to create a report with a selectable collection parameter.  The original query I'm using is as follows (Stolen from
    http://blogs.technet.com/b/infratalks/archive/2013/09/10/sccm-2012-reporting-get-system-serial-number-amp-create-custom-ssrs-report.aspx):
    Select sys.Name0 Machine, CS.UserName0 'User Name',OS.Caption0 OS, OS.CSDVersion0 'Service Pack',CS.Manufacturer0 Manufacturer,CS.Model0 Model,BIOS.SerialNumber0 'Serial Number',RAM.Capacity0 Memory, cs.SystemType0
    From v_R_System SYS
      left join v_GS_COMPUTER_SYSTEM CS on sys.Name0=cs.Name0
      left join v_GS_PC_BIOS BIOS on sys.ResourceID=bios.ResourceID
      left join v_GS_OPERATING_SYSTEM OS on sys.ResourceID=OS.ResourceID
      left join v_GS_PHYSICAL_MEMORY RAM on sys.ResourceID=ram.ResourceID
      --Where sys.Name0 = @variable
      order by sys.Name0
    This works fine, but it gives me that information for EVERY machine in our infrastructure globally.  I am only interested in getting this information from machines in certain collections and I want to be able to select the collection each time I run
    the report.  I found this article:
    http://it.peikkoluola.net/2013/06/02/report-with-a-selectable-collection-parameter-sql/ and followed the steps, but cannot run the report successfully.  I'm guessing it has something to do with needing to modify my query, but I am a newb with SQL and
    have no clue what or where I should be tweaking.  Just adding "WHERE(dbo.v_FullCollectionMembership.CollectionID
    = @COLLID)" gives me a syntax error.  Moving it above "Order by sys.name0" gives an error about not being bound to anything, which makes sense but as I mentioned, I don't know what to tweak.  Help!  Thanks.

    Select sys.Name0 Machine, CS.UserName0 'User Name',OS.Caption0 OS, OS.CSDVersion0 'Service Pack',CS.Manufacturer0 Manufacturer,CS.Model0 Model,BIOS.SerialNumber0 'Serial Number',RAM.Capacity0 Memory, cs.SystemType0
    From v_R_System SYS
      left join v_GS_COMPUTER_SYSTEM CS on sys.Name0=cs.Name0
      left join v_GS_PC_BIOS BIOS on sys.ResourceID=bios.ResourceID
      left join v_GS_OPERATING_SYSTEM OS on sys.ResourceID=OS.ResourceID
      left join v_GS_PHYSICAL_MEMORY RAM on sys.ResourceID=ram.ResourceID
      join v_fullcollectionmembership fcm on fcm.resourceid=sys.resourceid
      Where fcm.collectionid = @COLLID
      order by sys.Name0
    Try the above, note that @COLLID is a placeholder for a variable.  It is presumed that you are creating this using Report Builder 3.0 (or better) or some other SQL tool to create reports for use on your SRS reporting point.  If you happen
    to be using Report Builder, once you save the above, under parameters you'd have a place for COLLID.  Now, what you want is to be able to have that parameter be populated with your collection names, so that you can select from the list when the report
    is run.
    So... another DataSet, with a query like:
    select collectionid, name
    from v_collection
    order by name
    Then, back to your parameters, COLLID, available values, Get values from a query, and you'll want to use that dataset you just made, and Value field is collectionid, and Label field is Name.
    If you want to test the top query in regular sql, don't use @collID.  figure out the collectionid of a specific collection, and put in where fcm.collectionid='ABC00012'
    Standardize. Simplify. Automate.

  • SCCM 2012 SSRS modify default reporting Link

    Hi,
       We have a requirement in SCCM 2012 reporting to change the default reporting link (http://netbiosname/reports ) to (http://fqdn/reports ) , the reason is users from
    a different domain are not able to access the link with NetBIOS name when the link is sent to them from a report subscription.
    How do we modify the default reporting link to show with FQDN instead of NetBIOS name ?
    Tried :
    We have tried to add the FQDN on the SQL SSRS - restarted SQL reporting services - restarted IIS - restarted SMS service ,  but still the FQDN report link wont show up on the SCCM console.
    Also tried to make changes in SSRS config file but now luck.

    Hi,
    >>We have tried to add the FQDN on the SQL SSRS - restarted SQL reporting services - restarted IIS - restarted SMS service ,  but still the FQDN report link wont show up on the SCCM console.
    Please add the FQDN as the screenshot below and remove the existing one. Reinstall the Reporting Services Point after add the FQDN.
    Best Regards,
    Joyce
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Sccm 2012 create report from recently installed software on clients

    As stated in this thread for 2007. Has anyone had any luck with this type of report in 2012?
    http://social.technet.microsoft.com/Forums/en-US/fecbe492-6d9d-4a8e-8d6d-ac12b3364b32/sccm-2007-create-report-from-recently-installed-software-on-clients?forum=configmgrreporting

    As stated in this thread for 2007. Has anyone had any luck with this type of report in 2012?
    http://social.technet.microsoft.com/Forums/en-US/fecbe492-6d9d-4a8e-8d6d-ac12b3364b32/sccm-2007-create-report-from-recently-installed-software-on-clients?forum=configmgrreporting
    It worked perfectly in CM12. What is the problem?
    http://www.enhansoft.com/

  • SCCM 2012 creates 4732 event logs for 3 of Servers

    Hi,
    My problem is SCCM 2012 R2 which I have installed recently is creating 4732 security logs in 3 of our servers for every 5hrs interval which is an audit exposure. When I investigated which gives me local administrator ID is getting added to the NT Authority
    Group, which I'm not able to explain. Can some one help me in understanding it or Is there anyway I can stop that?
    Regards,
    Vighnesh
    Vighnesh Kumar. S

    Hi,
    Please provide more information as Torsten said.
    Are there Event ID: 4733 messages existed in event log if it creates 4732 logs every 5 hours? Is it the same account being added to the same Group?
    Best Regards,
    Joyce
    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 2012 - Creating a Collection with Limiting memebers to 5 or 10 Computers even the Memebership Query can pull 1000 members

    Dear Brothers,
    I am deploying a huge application (requires 45 Minutes to Install, 3 to 5 Restarts), and I need to limit the deployment to 5 computers at a time. Limiting my Network Load and also the availability of the computers in operation as it requires a successive
    Restart.
    My aim is to "Create" a "Collection" to focus on deploying the software to
    5 computers at a time. The collection that limits to 5 computers can help our production environment to focus on the total deployment time without disturbing other computers.
    Regards,

    I would use powershell to do this. Create a Collection with all the computers that should get the application.
    Then in powershell - get all the members of that Collection into a variable. Use that variable as a basis for creating new Collection and create some logic that takes 5-10 machines and put those into a new Collection and then takes the next 5-10 machines
    and so on.
    I guess you could also do it using a combination of Query and Exclude Collections membership rules, but you would have to do it manually.

  • SCCM 2012 All Updates report sql query

    Need build sql query for report about all MS Updates like SCCM configuration manager view in window by path:
    \Software Library\Overview\Software Updates\All Software Updates.
    But I can't find fields that can show "product" (OS that use this patch) and size of each patch in SCCM and WSUS databases. Can anybody help me?

    To get file size I create query for files in package:
    SELECT distinct ui.Title, ui.InfoURL, ui.DatePosted,
    cf.FileName, cast(cast(cf.FileSize as real)/1024/1024 as decimal(10,2)) as SizeMb, uds.AssignmentName, uds.StartTime
    FROM CI_ContentFiles cf
    INNER JOIN v_UpdateContents uc  ON cf.Content_ID  = uc.Content_ID
    INNER JOIN v_UpdateInfo ui ON uc.CI_ID = ui.CI_ID 
    INNER JOIN vSMS_UpdateDeploymentSummary uds  ON ui.CI_ID = uds.CI_ID
    join CI_ContentPackages cp on cf.Content_ID=cp.Content_ID
    join CI_Contents co on co.Content_ID = cp.Content_ID
    Where PkgID='MKL00032'
    order by ui.InfoURL

  • Log for schedule agreement  division created/modify/delete at MRP (MD04)

    Tables CDHDR and CDPOS were saved when the user changed data manually using the transaction ME31L and  ME32L.
    When the new schedule divisions  were create direct at MRP, the registries were not saved.
    I searched for any configuration to activated this registry though without succesfully.

    Transaction AUT10 display the execution process though it doesn't mention exact information was changed.
    Is there any configuration to change the behavior of this transaction or another transaction I could see the information was changed, deleted or inserted?

  • Deleted site, still appears in SCCM 2012 console status: deleting...

    Hi i recently encountered a problem after deleting a secondary site, but it seems to happen only under my user account on the primary site console, here's the thing
    I deleted the site, and the log shows that the site was succesfully deleted, i connected to the server and the logs are ok, and the registry no longer has any SMS keys left to delete, and in programs files, both the configuration manager files, and the sql
    files were also deleted/uninstalled correctly, but in my console, the site still appears as Deleting...
    Note that I was the one who created it in the first place, and apparently I'm the only one who can still see it..., I open the console in both, the primary site server, and on my computer, and it shows as deleting, under Administration > sites configuration
    > sites, and I can still see the server on the site and site sistem roles, and that's it, and if I switch to the Central Site, is not there, which I guess is good
    I checked on both my colleagues, and they don't see the site anywhere, just me under my user account connected to the primary site
    Now, i did ran the Preinst /DELSITE command and it says that it couldn't find the data base for the site, which is good as well
    Part of the problem is that, I have to re-install the site, and if I run the setup connected to the primary site under my account, it says that the name already exists (i have to re-use the site code as per request) and if I run the same setup but
    connected to CAS or a colleague does it on primary or cas, the setup continues without the warning saying that the site code already exists
    So I would just like to find a way to delete it from my console or find the reason that's causing it, to avoid further conflics for that secundary site

    http://technet.microsoft.com/en-us/library/gg712320.aspx
    Re-Using Site Codes
    <content xmlns="http://ddue.schemas.microsoft.com/authoring/2003/5">Site codes cannot be used more than one time in a Configuration Manager hierarchy for a central administration site or primary sites. If you reuse a site code, you run the risk of having
    object ID conflicts in your Configuration Manager hierarchy. You can reuse the site code for a secondary site if it is no longer in use in your Configuration Manager hierarchy or in the Active Directory forest.</content>
    Have you deleted from AD Container ? did you cheked the hman.log ? is the replication ok?
    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.
    Click on "vote as Helpful" if you feel this post helpful to you. This can be beneficial to other community members reading the thread. ------------------------------------------------ PaddyMaddy | http://paddymaddy.blogspot.com/

  • SCCM 2012: create user/group which can only import computers, reset pxe boots

    Hi,
    We would like to give helpdesk some basic rights so they can add computers (via mac/pc name) and reset pxe-boots.
    We might grant extra rights but would like to start with these basic ones.
    I know the setup is fully different (RBAC) so your feedback how you implemented this would be highy appreciated.
    J.
    Jan Hoedt

    You can use "Custom Role Based Administration for Importing Computers" (http://blogs.technet.com/b/inside_osd/archive/2012/04/30/custom-role-based-administration-for-importing-computers.aspx)
    as a starting point. Then use "RBA Viewer" (part of the toolkit) to create your own, custom roles.
    Torsten Meringer | http://www.mssccmfaq.de

  • Permission sccm 2012

    Hi
    We have SCCM 2012 running in Windows 2008 R2
    Currenlty, we have three admin hanlding the SCCM 2012
    I want to audit/check the below changes
    a. Create/Modify/Delete  packages
    b. Create/Modify/Delete advertisement
    c. Create/Modify/Delete Collection
    d. Create/Modify/Delete Permision
    Where and How can I check in the log files who did the changes in the SCCM 2012 for the above information
    Robert

    this is something you should be able to find in the audit status messages (located under the status messages queries)

  • SCCM 2012 Collection Query

    Hi All,
    I am using SCCM 2012 SP1 with SQL 2008 R2 SP1. I have scenario as below.
    App A is targeted to user based collection as Available (Optional).
    App B needs to be targeted to users who has successfully installed App A as Required(Mandatory).
    Note : As per application behaviour we cannot target App B to machine(Device) based collection, otherwise I would have created a query to pull out all the machines in a collection where App A is successfully installed on base of Add/Remove
    program display name.
    Question : I want to create a user collection query which will pullout last logged on user for all the machines where
    App A is installed successfully, so that I can target App B to this user based collection as Required(Mandatory). In this way if in future any other user is installing App A then that user will also get pulled out automatically to this user
    based collection.
    Its bit urgent for me. Request you please help me to get this query or let me know if there is any other way to achieve this.
    Thanks & Regards Uttam

    Hi Torsten,
    I really have not thought about supersedence but App B is not the upgrade or replacement for App A. If it would then we would have defined the relationship in supersedence. But App A and App B are entirely different applications. Functionality of App B depends
    upon App A, so both has to be there on the machine.
    Only the thing is App B should go to the users who has already installed App A on their machines. For this I would like to create user based collection but confused regarding query. How can we achieve this? I am thinking of to modify the below query
    to pull out last logged on user from the below collection query. I am using SCCM 2012 SP1 with SQL 2008 R2 SP1. How can I modify the below 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 where ResourceId in  (select ResourceId from SMS_G_System_ADD_REMOVE_PROGRAMS
    where DisplayName="App A ARP name" and Version = "1.0.0")
    Thanks & Regards Uttam

  • SCCM 2012 RS QUERY RULE OPTIONS

    How do i create a device collection query in SCCM2012 R2 wizard rule to find properties information for server object in Active Directory, such as query for description field?
    Example:

    You must first enable the discovery of this field in "Active Directory System Discovery". See the "Active Directory Attributes" tab.
    (Administration / Hierarchy Configuration / Discovery Methods)
    Once enable, run a synchronization on this component by right clicking on it.
    After the discovery you'll be able to query the "Description" field under "System Resources".
    Or use this WQL query
    "select * from SMS_R_System where SMS_R_System.description = "Your Description Goes Here"
    Benoit Lecours | Blog: System Center Dudes

Maybe you are looking for

  • Interface for sending last changes with the format of theIDOC type HROT_USM

    Hi guys. Customer has asked me to create an interface which sends every day all records changed (for normal ITs: 0, 1, 6, 7, 8, 9, 16, 40, 41 & 105) from the last execution. This information has to be send in a flat file with the same format of IDOC

  • How do I find the Mac address for my 8900?

    I have a wireless network and can't connect to it at all. I have looked and typed in Blackberries search engine and came up with nothing, only answers are about a MAC computer, not what I am looking for. I have to add the Mac address to the wireless

  • Error in import request

    i am trying to import request, it was stopped with errors error code 8 what may be possible reason, can anyone tell how to resolve this prob.

  • Cannot drop job - says it's running, but it's not

    I did a dbms_scheduler.stop_job (which did not raise any error/warnings), and I killed the database session, but my job is still in user_scheudler_running_jobs view (with null session_id, null cpu_used). When I do a user_scheduler.drop_job, i get an

  • ESS Travel Exception after Portal Patching

    Hello Everyone, We have recently upgraded the portal from SP14 to SP17. So, this resulted in Various Software components like ESS are patched as well. But, in our old ESS track we have done lot of customisation to the Travel iViews. So, when we have