SCCM 2012 Reporting Error

I am getting this error while trying to run reports.     I tried to uninstall the role.  I've created a new reporting database and reinstalled the role but nothing.
There is an error in XML document (1, 3050). ------------------------------- Microsoft.ConfigurationManagement.ManagementProvider.SmsException There is an error in XML document (1, 3050). Stack Trace:    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.GetParameters()
   at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.LoadParameters(IReport report, Collection`1 navigationParameters, IResultObject resultObject)    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerPresenter.Worker_DoWork(Object
sender, DoWorkEventArgs e)    at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e)    at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument) ------------------------------- System.InvalidOperationException
There is an error in XML document (1, 3050). Stack Trace:    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.GetParameters()    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.LoadParameters(IReport
report, Collection`1 navigationParameters, IResultObject resultObject)    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerPresenter.Worker_DoWork(Object sender, DoWorkEventArgs e)    at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs
e)    at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument) ------------------------------- System.Xml.XmlException '', hexadecimal value 0x02, is an invalid character. Line 1, position 3050. Stack Trace:    at
Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.GetParameters()    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.LoadParameters(IReport report, Collection`1 navigationParameters,
IResultObject resultObject)    at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerPresenter.Worker_DoWork(Object sender, DoWorkEventArgs e)    at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e)
   at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument) -------------------------------  

ok, I have heard of this issue before.
Review your SWM rules, one of them will have an "odd" character in it. The "odd" character might but within the Name, filename, original file name or description fields. In your case only the "odd" char is hexadecimal value 0x02.
Once you fix that, the reports will work correctly. Also keep in mind that you might have more than 1 Software title with the "odd" characters.
http://www.enhansoft.com/

Similar Messages

  • MBAM - SCCM 2012 Reports - Error: the 'MBAM Policy' view does not exist

    Hi
    I have installed MBAM with SCCM 2012 integration. A single server install with SQL server 2012. Mostly it has gone smoothly and laptops are being encrypted and pins stored and recoverable. The problem I have is reports are not showing. I get the following
    error message.
    "Error: the 'MBAM Policy' view does not exist"
    Any ideas why this is? I get the same error message with all 4 reports.

    Hi Slycy,
    There is another thread that seems to be a similar issue
    here that may help you. The last post in particular has a number of steps that you can use to speed up creation of the views:
    Just for future reference, there are quite a few things that have to happen before the view is created. This is merely how CM works.
    Make MBAM MOF changes
    Select TPM spec version in hardware inventory
    Install MBAM CM Integration feature
    Perform a machine policy refresh cycle on a client to get the MOF changes that need to be inventoried
    Perform hardware inventory
    Update MBAM Supported Computers collection membership.  The machine should appear if it meets the criteria
    Run another machine policy refresh on the client so that the Configuration Baseline will come down
    Make sure that the MBAM agent has woken up once
    Evaluate the Configuration Baseline
    The MBAM views should be created now.
    You don't have to do this for every machine, but this is the process to speed it up.  If you let CM do it, it could take over a week before the view is created the first time, depending on when Hardware inventory runs, etc.
    Hope this helps,
    David

  • 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 Report Problem

    hi there,
    we are using sccm 2012 with reports functionality on SQL 2008 R2 since 2 weeks now and everything is working fine, including reports.
    most of the time i monitor the reports for "Status for a specified task sequence deployment on a specific computer"
    but since yesterday i noticed that i cannot see any data here anymore - all task sequence deployments (which are working fine without errors) are not shown here anymore. not only i cannot see the current deployments of computers, i am also not able to see
    data for deployments we had 2 weeks ago.
    there is no error; sccm 2012 reports are just showing me no data (just for 1,2 computers instead of 20 or 30).
    i rebooted sccm 2012 and also took a look at the component status; no error related to reporting system and reporting service is running.
    anyone has a clue?

    Since no one has answer this post, I recommend opening  a support case with CSS as they can work with you to solve this problem.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • How to show a filter of the values in SCCM 2012 report?

    I didn't see a forum for SCCM 2012 reporting, only SCCM 2007 Reporting, so I hope I am posting in the correct forum for this.
    We upgraded to SCCM 2012 R2 and when running a report and entering values we can no longer type in a filter and then see a filtered list of values like in SCCM 2007.
    Is there a solution for this?  This was very useful especially in the Add/Remove report because many times we don't know exactly what to enter. 
    Below is a snapshot of what we did in SCCM 2007.

    Garth, unfortunately, I don't.   I was fair at SCCM 2007 reporting and modifying SQL statements, but it seems everything has changed with SCCM 2012 reporting.  For the specific SCCM 2012 report I mentioned,  "Computers with specific software
    registered in Add Remove Programs", is there some code I could paste in somewhere to get it to operate like the SCCM 2007 report?
    Are you using BIDS or Report Builder. (Keep in mind that I recommend BIDS over RP)
    Here are the basic steps:
    Review the SQL for the Prompt
    Add a variable to the prompt
    Import; refresh the SQL query within the dataset
    Move that the new variable is BEFORE the existing variable
    Enter in the Prompt text “Enter computer filer”
    Test to make sure everything is nice
    Upload the report.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • SCCM 2012 Report equivalent of WSUS Report

    In the old WSUS admin console you could set your display under All Computers (and other computer groups) to show patches that were Failed/Needed/Applied. I found this EXTREMELY useful. I can not find an equivalent within SCCM 2012. Does such a report exist
    and if not, how do I go about making one? Software Updates A - Compliance, Compliance 1 is sort of close but it makes you click multiple times to get one report and you have to do it for each group. In WSUS all you had to do was click once or twice and I see
    no option equivalent to All Computers.
    Ben JohnsonWY

    Here's the whole set:
    http://social.technet.microsoft.com/Forums/en-US/78d145bb-81d2-45c7-9e23-d0980aaaf7ca/sccm-2012-r2-how-to-get-ipaddress-working-in-my-custom-report?forum=configmanagergeneral
    http://social.technet.microsoft.com/Forums/en-US/d27bf671-91b4-45e9-bbc9-a3da9a4fd628/sccm-2012-compliance-7-customize-for-total-updates-needed?forum=configmanagergeneral
    http://social.technet.microsoft.com/Forums/en-US/e865c492-9058-4141-9af7-26b280fbfe0b/sccm-2012-reporting-code-returns-same-value-for-total-number-of-required-updates-per-computer?forum=configmanagergeneral
    http://social.technet.microsoft.com/Forums/en-US/1e5a2644-4eb7-4bed-92a3-a07d670bbb51/software-update-compliance-report-in-sccm-2012?forum=configmanagersecurity
    http://social.technet.microsoft.com/Forums/en-US/3e3e0120-7e8c-4c9f-a1e0-4dc1fffe0618/sccm-2012-report-equivalent-of-wsus-report?forum=configmanagergeneral
    Hope it helps
    Ben JohnsonWY

  • SCCM 2012 Report for Software registered in Add/Remove programs

    Hi
    Am looking to create an SCCM 2012 Report for Software registered in Add/Remove programs on windows 7 machines but dont have enough experience with report builder to do this.
    Was hoping someone could help.

    When i use the url i still only see the following categories
    Administrative Security
    Asset Intelligence
    Client Push
    Client Status
    Compliance and Settings ManagementHave looked through them all and that one is not there
    the only software ones are the following
    Report Software 01A - Summary of installed software in a specific collectionThis report provides a summary of installed software ordered by the number of instances found from inventory.
     Open Menu
    Report Software 02A - Product families for a specific collectionThis report lists the product families and the count of software in the family for a specific collection.
     Open Menu
    Report Software 02B - Product categories for a specific product familyThis report lists the product categories in a specific product family and the count of software within the category. This report is linked to Software 02C - Software in a specific product
    family and category.
     Open Menu
    Report Software 02C - Software in a specific product family and categoryThis report lists all software that is in the specified product family and category. This report is linked to Software 06B - Software by product name.
     Open Menu
    Report Software 02D - Computers with specific software installedThis report lists all computers with specific software installed. This report is linked to Software 02E - Installed software on a specific computer .
     Open Menu
    Report Software 02E - Installed software on a specific computerThis report lists all software installed on a specific computer.
     Open Menu
    Report Software 03A - Uncategorized softwareThis report lists the software that is either categorized as unknown or has no categorization.
     Open Menu
    Report Software 04A - Software configured to automatically run on computersDisplays a list of software configured to automatically run on computers.
     Open Menu
    Report Software 04B - Computers with specific software configured to automatically runDisplays all computers with specific software configured to automatically run.
     Open Menu
    Report Software 04C - Software configured to automatically run on a specific computerDisplays installed software configured to automatically run on a specific computer.
     Open Menu
    Report Software 05A - Browser Helper ObjectsThis report displays the Browser Helper Objects installed on computers in a specific collection.
     Open Menu
    Report Software 05B - Computers with a specific Browser Helper ObjectDisplays all of the computers with a specific Browser Helper Object.
     Open Menu
    Report Software 05C - Browser Helper Objects on a specific computerDisplays all Browser Helper Objects on the specific computer.
     Open Menu
    Report Software 06A - Search for installed softwareThis report provides a summary of installed software ordered by the number of instances based on search criteria for the product name, publisher, or version.
     Open Menu
    Report Software 06B - Software by product nameThis report provides a summary of installed software ordered by the number of instances based on selected Product Name.
     Open Menu
    Report Software 07A - Recently used executable programs by the count of computersThis report displays executable programs that have been used recently with a count of computers on which they have been used. The Software Metering client must be enabled for this
    site to view this report.
     Open Menu
    Report Software 07B - Computers that recently used a specified executable programThis report displays the computers on which a specified executable program has recently been used when you enable the software metering client setting.
     Open Menu
    Report Software 07C - Recently used executable programs on a specified computerThis report displays executables that have been used recently on a specified computer when you enable the software metering client setting.
     Open Menu
    Report Software 08A - Recently used executable programs by the count of usersThis report displays executable programs that have been used recently with a count of users that have most recently used them when you enable the software metering client setting.
     Open Menu
    Report Software 08B - Users that recently used a specified executable programThis report displays the users that have most recently used a specified executable program when you enable the software metering client setting.
     Open Menu
    Report Software 08C - Recently used executable programs by a specified userThis report displays executable programs that have been used recently by a specified user when you enable the software metering client setting.
     Open Menu
    Report Software 09A - Infrequently used softwareThis report displays software titles that have not been used during a specified period of time. You can specify a value that will represent the number of days that have elapsed since the last use (e.g. if you
    enter 90 days, you will see software that was not used in the past 90 days or more). You can also leave the Days not used field empty to see all software titles that were never used.
     Open Menu
    Report Software 09B - Computers with infrequently used software installedThis report displays computers which have software installed that has not been used for a specified period of time. The specified period of time is based on the value specified in the
    'Software 09A - Infrequently used software' report.
     Open Menu
    Report Software 10A - Software titles with specific multiple custom labels definedThis report allows you to view software titles based on matching of all selected custom label criteria. Up to three custom labels can be selected to refine a software title search.
     Open Menu
    Report Software 10B - Computers with a specific custom-labeled software title installedThis report shows all computers in this collection, that have the specified custom-labeled software title installed.
     Open Menu
    Report Software 11A - Software titles with a specific custom label definedThis report allows you to view software titles based on matching of at least one of the selected custom label criteria.
     Open Menu
    Report Software 12A - Software titles without a custom labelThis report displays all software titles that do not have a custom label defined.
     Open Menu
    Report Software 14A - Search for software identification tag enabled softwareThis report provides the count of installed software with a software identification tag enabled.
     Open Menu
    Report Software 14B - Computers with specific software identification tag enabled software installedThis report lists all computers that have installed software with a specific software identification tag enabled.
     Open Menu
    Report Software 14C - Installed software identification tag enabled software on a specific computerThis report lists all installed software with a specific software identification tag enabled on a specific computer.
     Open Menu

  • SCCM 2012 report with BitLocker status

    I am not an expert in SCCM 2012 Report Builder and i am trying to create a report with>
    computername(laptop),drive letter, bitlocker status
    I can't find the property to use in report builder to read the drive letter and bitlocker status. Is there someone who can help me out or had a rdl report file for me ?
    PS. creating a query in SCCM 2012 is easy and works...but how to create a report out of it ??

    SELECT dbo.v_R_System.Name0, dbo.v_GS_ENCRYPTABLE_VOLUME.DriveLetter0, dbo.v_GS_ENCRYPTABLE_VOLUME.ProtectionStatus0
    FROM dbo.v_GS_ENCRYPTABLE_VOLUME INNER JOIN
    dbo.v_R_System ON dbo.v_GS_ENCRYPTABLE_VOLUME.ResourceID = dbo.v_R_System.ResourceID
    Please use the query above, you need to create your own data source of this Report. For more information, please ask at SQL forum, there is a dedicated SSRS forum for this kind of question.
    Juke Chou
    TechNet Community Support

  • SCCM 2012 An error has occurred during report processing (rsProcessingAborted)

    I have this error on some reports i try to run in my customer
    i rebuild all the Database and add the security rule for the report database
    i gave the user Logon locally rights ,(and run as a services) also run as sysadmin
    here is the error
    Microsoft.Reporting.WinForms.ReportServerException
    An error has occurred during report processing. (rsProcessingAborted)
    Stack Trace:
       at Microsoft.Reporting.WinForms.ServerReport.ServerUrlRequest(Boolean isAbortable, String url, Stream outputStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.ServerReport.InternalRender(Boolean isAbortable, String format, String deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.AsyncMainStreamRenderingOperation.RenderServerReport(ServerReport report)
       at Microsoft.Reporting.WinForms.AsyncRenderingOperation.PerformOperation()
       at Microsoft.Reporting.WinForms.ReportViewer.AsyncReportOperationWrapper.PerformOperation()
       at Microsoft.Reporting.WinForms.ProcessingThread.ProcessThreadMain(Object arg)
    here is a log srsrp.log:
    System.Web.Services.Protocols.SoapException: The policy for '#######\IT Department' user or group is not valid. The role assignment is either empty, specifies a user or group name that is already used in an existing role assignment for the current item,
    or specifies duplicate roles for the same user or group. ---> Microsoft.ReportingServices.Diagnostics.Utilities.InvalidPolicyDefinitionException: The policy for '#######\IT Department' user or group is not valid. The role assignment is either empty, specifies
    a user or group name that is already used in an existing role assignment for the current item, or specifies duplicate roles for the same user or group.~   at Microsoft.ReportingServices.WebServer.ReportingService2005Impl.SetPolicies(String Item,
    Policy[] Policies)~   at Microsoft.ReportingServices.WebServer.ReportingService2005.SetPolicies(String Item, Policy[] Policies)

    ok . the user name is sccm.admin this user have the assignment to run as a services, he is a domain admin, on the sql server this user have the sysadmin, i create the reporting with the Reporting Services Configuration Manager, and on the Database i use
    the sccm.admin to create the new database, on the Service Account i use sccm.admin user, also this user have local administrator on the SCCM server, + i give him the dbreader on All the database on the SCCM server witch it also the SQL server, i add the sccm.admin
    on the reporting web the system role and check the all settings give him full permissions
    do i make my self clear ? (my English is not so bright )
    now from the SCCM 2012 console , some reports run perfectly, and some run and trow this error at me
    Microsoft.Reporting.WinForms.ReportServerException
    An error has occurred during report processing. (rsProcessingAborted)
    Stack Trace:
       at Microsoft.Reporting.WinForms.ServerReport.ServerUrlRequest(Boolean isAbortable, String url, Stream outputStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.ServerReport.InternalRender(Boolean isAbortable, String format, String deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.AsyncMainStreamRenderingOperation.RenderServerReport(ServerReport report)
       at Microsoft.Reporting.WinForms.AsyncRenderingOperation.PerformOperation()
       at Microsoft.Reporting.WinForms.ReportViewer.AsyncReportOperationWrapper.PerformOperation()
       at Microsoft.Reporting.WinForms.ProcessingThread.ProcessThreadMain(Object arg)
    this poor gay have the same problem
    An error has occurred during report processing. (rsProcessingAborted)

  • GDI Error - Charts not visible in sccm 2012 reports

    I'm trying to run some default out of box reports for my sccm 2012 environment and finding that the raw data in table format is being provided but if there's any charts that should be included in the report they're not showing up. In the SSRS logs I see
    the error below:
    reportrendering!ReportServer_0-245!7e88!04/30/2015-11:09:07:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.RenderingObjectModelException: , Microsoft.ReportingServices.ReportProcessing.RenderingObjectModelException: A generic error occurred
    in GDI+. ---> System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI+.
    In researching this I found similar issues out there where Hotfix-KB2823372 resolved the issue but this now looks to only be available for Windows8 as I tried to download the Hotfix and run on my server to only receive a message advising it's not applicable.
    Please advise if you've seen this error before and what you've done to resolve it.
    Jason

    What operating system are you using? That hotfix should do the trick for Windows Server 2012, see also:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/8b47f28e-c6d5-497e-85db-d89a74fb27cd/a-generic-error-occured-in-gdi-error-ssrs-2012-sp1-on-windoes-server-2012?forum=sqlreportingservices
    For Windows Server 2008 R2, see:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/50c071db-b4fc-4a2e-a9f4-e10e833c97d2/report-not-rendering-charts-in-pdf-a-generic-error-occurred-in-gdi?forum=sqlreportingservices
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • SCOM 2012 Report error rsprocessingaborted rserrorexecutingcommand

    Hello All,
    I am able to run some reports from SCCM 2012 console but few of them do not work.
    Error in SCOM console when I try to run the report
    An error has occurred during report processing. (rsProcessingAborted) Query execution failed for dataset 'Data_Warehouse_Main'. (rsErrorExecutingCommand) For more information about this error navigate to the report server on the local server machine,
    or enable remote errors
    When i log on to report server and try to run same report using  browser, here is the error I get
    An error occurred during client rendering. An error has occurred during report processing. Query execution failed for dataset 'Data_Warehouse_Main'. The EXECUTE permission was denied on the object 'Win7MemorySufficiencyReport', database 'OperationsManagerDW',
    schema 'dbo'
    So where do we need to change the permissions and for what account?
    Also why some reports are running with same permissions and not others?
    Thanks in Advance!!

    Hi,
    More info:
    The EXECUTE permission was denied on the object 'Win7DiskUtilizationDrilldownReport', database 'OperationsManagerDW' ...
    http://nerdymark.com/execute_permission_was_denied_object_win7diskutilizationdrilldownreport_database_operationsmanagerdw
    Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information. 
    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 report Shows as Non-Complaint

     Hi , I am new for SCCM 2012 , Today i have created the deployment in sccm 2012...
    After some time i view my SCCM Status ...  Some of the systems are shows as NON-Complaint
    I have checked all log files in sccm client side , it doesn't show any error.
    I have check the SCCM client version is up-to-date.
    What can i do.. Pls help....  

    So many SU will have multiple versions, are you sure that you are deploying the needed SU to these PC? Why do you think that the reports are wrong?
    http://www.enhansoft.com/

  • SCCM 2012 SP1 errors when downloading updates

    Currently using SCCM 2012 SP1 with CU2 and I am having some update download issue with Automatic Deployment Rules.
    The Environment is:
      Server 2008 R2
      SCCM 2012 SP1 CU2 (Upgraded from SCCM 2012 CU2)
    I created an Automatic Deployment Rule for Adobe Flash. Since I was having the same issue with Adobe Reader, when I published via SCUP to WSUS I chose not to sign the updates.
    After publishing to WSUS I then sync SCCM, I see the updates and then in the ADR I had it download the updates and I see this error:
    Authentication of file C:\Windows\TEMP\CABDEC5.tmp failed, error 0x800b0004 Software Updates Patch Downloader 8/15/2013 6:49:43 PM 3712 (0x0E80)
    ERROR: DownloadContentFiles() failed with hr=0x80073633 Software Updates Patch Downloader 8/15/2013 6:49:43 PM 6876 (0x1ADC)
    Failed to download the update from internet. Error = 13875 SMS_RULE_ENGINE 8/15/2013 6:49:43 PM 6876 (0x1ADC)
    Failed to download ContentID 16845337 for UpdateID 16841530. Error code = 13875 SMS_RULE_ENGINE 8/15/2013 6:49:43 PM 6876 (0x1ADC)
    Now the funny thing is if I go to the update itself within update group that Flash is a member I can right click it and choose download and the error doesn't occur.
    I observed that the UNC path for ADR Adobe flash, when the rule is ran, is populated with folders that have a name something like 44738297895427890.1 or 423154325378u867234789.1. I have come to realize that those are failed downloads. So for the
    heck of it I then right clicked the update itself and chose download and it downloaded without issue. Now I'm guessing that when I chose to download directly from the update maybe the system is getting the update from adobe and not from wherever the rule was
    trying to get it from.  I then see the .1 removed from the directory name and there are updates within them.
    Just for clarity here are the steps I go through from SCUP to Syncing...
    Log in to WSUS server
    Run SCUP as administrator
    Get notified there are updates from Adobe and let SCUP download updates
    Find the updates the specify the following publishing options
    Full Content
    Sign all software updates with a new publishing certificate .... (Is this necessary by the way?)
    Then click Next
    After that's done I then go to SCCM Manager Console and go to Software Updates and right click to Synchronize them.
    After that's done then I run the ADR for Adobe Flash and when it goes to download the updates that's when the error occurs.
    What am I missing?
    Also, while I wait for help I just recently added the WSUS SCUP certificate to the SCCM server to see if by chance that fixes stuff. If it does then I'll post the results of adding the certificate to the SCCM server.
    One other thing, is there a way to delete updates? When I was having this issue in the past, I went in to SCUP I marked the updates as expired and then deleted the updates. Went to SCCM and synchronized the updates and they went from not expired to expired
    then I waited, maybe 30 days or so before I could add the updates back in.
    Thanks for the help!

    Yes, I know this is an old post, but I’m trying to clean them up. Did you solve this problem, if so what was the solution?
    Have you seen the note at the bottom of this page about this error?
    http://technet.microsoft.com/en-us/library/bb932193.aspx
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Sccm 2012 reporting services server instance blank

    Hi guys,
    Can anyone provide me tips to install reporting service point on SCCM 2012 server.
    P.S: SRS instance configured in SQL server 2008 R2 SP2 and it can accessible (http://<SQLserver>/Reports/) in SCCM 2012 server
    Please help me!
    Thanks,

    If you don't have DNS entry for your Report Service Point (SQL server), the instance field can be blank too.
    Can you expand on this as I have never heard of this issue before.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • SCCM 2012 Reports not visible

    Hi All,
    I am unable to view Reports in the SCCM CM 2012 console and the URL.
    I have installed the Reporting service in DB server and later also ran the Reporting service configuration on DB server.
    After that I am able to browse to the URL but do not see any default reports.
    I have followed http://www.windows-noob.com/forums/index.php?/topic/4550-using-sccm-2012-rc-in-a-lab-part-11-adding-the-reporting-services-point-role/
    Please suggest

    Hi,
    This is what I am getting in the log SRSRP
    Any Suggestions
    Timed Out... SMS_SRS_REPORTING_POINT
    4/7/2013 7:30:43 AM 4012 (0x0FAC)
    Reporting Services URL from Registry [http://ushtsawphxp015:8080/ReportServer/ReportService2005.asmx]
    SMS_SRS_REPORTING_POINT 4/7/2013 7:30:43 AM
    4012 (0x0FAC)
    The request failed with HTTP status 401: Unauthorized.
    SMS_SRS_REPORTING_POINT 4/7/2013 7:30:43 AM
    4012 (0x0FAC)
    (!) SRS not detected as running SMS_SRS_REPORTING_POINT
    4/7/2013 7:30:43 AM 4012 (0x0FAC)
    Failures reported during periodic health check by the SRS Server USHTSAWPHXP015.PHXCORP.COM.
    SMS_SRS_REPORTING_POINT 4/7/2013 7:30:43 AM
    4012 (0x0FAC)
    Waiting for changes for 1 minutes SMS_SRS_REPORTING_POINT
    4/7/2013 7:30:43 AM 4012 (0x0FAC)
    Timed Out... SMS_SRS_REPORTING_POINT
    4/7/2013 7:31:43 AM 4012 (0x0FAC)
    Reporting Services URL from Registry [http://ushtsawphxp015:8080/ReportServer/ReportService2005.asmx]
    SMS_SRS_REPORTING_POINT 4/7/2013 7:31:43 AM
    4012 (0x0FAC)
    The request failed with HTTP status 401: Unauthorized.
    SMS_SRS_REPORTING_POINT 4/7/2013 7:31:43 AM
    4012 (0x0FAC)
    (!) SRS not detected as running SMS_SRS_REPORTING_POINT
    4/7/2013 7:31:43 AM 4012 (0x0FAC)
    Failures reported during periodic health check by the SRS Server USHTSAWPHXP015.PHXCORP.COM.
    SMS_SRS_REPORTING_POINT 4/7/2013 7:31:43 AM
    4012 (0x0FAC)
    Waiting for changes for 1 minutes SMS_SRS_REPORTING_POINT
    4/7/2013 7:31:43 AM 4012 (0x0FAC)
    Timed Out... SMS_SRS_REPORTING_POINT
    4/7/2013 7:32:43 AM 4012 (0x0FAC)
    Reporting Services URL from Registry [http://ushtsawphxp015:8080/ReportServer/ReportService2005.asmx]
    SMS_SRS_REPORTING_POINT 4/7/2013 7:32:43 AM
    4012 (0x0FAC)
    The request failed with HTTP status 401: Unauthorized.
    SMS_SRS_REPORTING_POINT 4/7/2013 7:32:43 AM
    4012 (0x0FAC)
    (!) SRS not detected as running SMS_SRS_REPORTING_POINT
    4/7/2013 7:32:43 AM 4012 (0x0FAC)
    Failures reported during periodic health check by the SRS Server USHTSAWPHXP015.PHXCORP.COM.
    SMS_SRS_REPORTING_POINT 4/7/2013 7:32:43 AM
    4012 (0x0FAC)
    Waiting for changes for 1 minutes SMS_SRS_REPORTING_POINT
    4/7/2013 7:32:43 AM 4012 (0x0FAC)
    Murali Krishna V.S

Maybe you are looking for

  • Need some help regarding validation of input in a text field

    Hello everyone, i am new to all this website designing stuff and is working on my first website (treausre hunt types) and expecting some guidance over here.   :-) I have successfully managed to validate the login page using server behaviour. Let me e

  • How do run unix command in java

    hi All unix command working fine in our java program. but i want change user in linux by using java. it's not working. "su root" This command onely not working. anybody know help me This is my ID [email protected] This my code <% String s = null; try

  • User not created in OIM 11gr2 - trusted reconciliation from OID

    Hello, in my tests I'm trying to do a trusted reconciliation from OID to OIM. I checked the errors below in the log file and I checked the column on the database. The column is there but I can't understand why this error appear. I did a select on thi

  • Calender to be called in Forms

    Hi , I am new to this forum and new to Oracle forms i have many doubts to be cleared My very first Query is to know what are the steps to be done to invoke the calender to a form my Second one as follows when i select a date from the calender it shou

  • How to make table

    hi, i have a 2 tables of same structure ,i want to make a new table from thoese tables, but problem is that both table has some same data & i want to make new a table that should not have duplicate data . table 1 table 2 table 3 must be 123 200701 12