ERROR in archlinux-2012.03.02_04-00-01-core-i686.iso

Folks,
I've downloaded the latest ISO's for archlinux-2012.03.02_04-00-01-core-i686.iso  and archlinux-2012.02.28_04-00-01-core-i686.iso
and burned them to CDRW's.  When I boot the CDRW's to the root prompt, and try to run:
/arch/setup
I get the following error:
ERROR: $5 is set to PROCEDURE ? we don't use $5, maybe you still need to update your code to the new api (all debug catagories in $4)
This happens on both CDR's.  I've VERIFIED the MD5SUM of the 03-02-2012 File and it is correct.
Are there problems with the ISO's?
Thanks.
Larry

if you run
aif -p interactive
it works, but won't let you choose a source, so best not to proceed with the other options, since you won't be able to select packages if you can't select a source.  i can't remember the error it gives, but aif crashes every time you try to select a source.  i found a blank disc so i'm just going to try and make the official net release work.
Last edited by chriseggroll (2012-03-03 23:31:00)

Similar Messages

  • SQL Service error on SCCM 2012 R2 Evaluation VHD

    Hi
    I've downloaded the VHD SCCM 2012 R2, but, SQL Server evaluation is out of date
    http://www.microsoft.com/en-us/download/details.aspx?id=40840
    I've one error "SLQ Server 2012 has expired...."
    How I do now ?
    Thanks at all
    Scorpio92

    Or you could fix this Microsoft?
    This issue is at least 2 years old going back to the previous product (SCCM 2012 SP1):
    https://social.technet.microsoft.com/Forums/en-US/151f6aa0-5391-4396-998f-d5d5782ed08f/system-center-2012-service-pack-1-configuration-manager-evaluation-vhd
    How was this not fixed when you created the 2012 R2 VHD?
    This is literally unfathomable how you could do this even once - you create a VHD for evaluation with a date specific eval of SQL? But then you imbeciles manage to do it at least a second time?
    None of you at the team behind this deserve your jobs.

  • Log error "Could not load file or assembly 'BarcodeConversion' or one of its dependencies. Access is denied. This code work fine in server 2008 but get this error in server 2012

    This code work fine in server 2008, but get this error in server 2012.  Do yo have any idea?

    Need some more info as to where this is installed and how.
    First thing to try would be to uninstall the solution and reinstall.
    Check the GAC for your assembly as well as web.config.
    If you don't see it in one of those places, something went wrong with the install and you'll need to start over.
    Brandon James SharePoint Developer/Administrator

  • Continued DCOM Errors on Server 2012

    We started noticing this error reoccurring after I set up a Powershell routine that sends daily emails to us with the errors from the systems Event Viewer log.  At first it was once or two a day and today it was 5 yesterday it was 7.  We are constantly
    getting the follow error on our 2012 server:
    The description for Event ID '10010' in Source 'DCOM' cannot be found. The local computer may not have the necessary registry information or message DLL files to display the message, or you may not have permission to access them. The following information
    is part of the event:
    '{73E709EA-5D93-4B2E-BBB0-99B7938DA9E4}'
    When I use a Powershell routine that returns information about all the DCOM's I get this:
    Application ID:  {73E709EA-5D93-4B2E-BBB0-99B7938DA9E4}
    Caption:  Microsoft WMI Provider Subsystem Host
    Description:  Microsoft WMI Provider Subsystem Host
    Installation Date:
    Name:  Microsoft WMI Provider Subsystem Host
    Status:
    So Powershell script says it says it is there.  Then how can we get the error message that the DCOM cannot be found? We have ran a malware program on the server and come up with nothing.  Checked the registry key and everything there seems to be
    set correctly.  Checked for server updates and there are none.  Checked for Firmware updates (Dell PowerEdge Server) and nothing there either.
    Of the 10 or so servers we have, this one with Server 2012 on it is the only one that giving us these errors, or any errors (not including Terminal Service errors), and we would like to find out what the problem is and correct it. 
    Thank you for any suggestions.
    Mark

    I am still getting these errors more than 10 times a day during the week but hardly any on the weekends.
    Server
    Event Time
    Type
    EventID
    Source
    Message
    VOLCANO
    08/27/2014 07:54:11
    Error
    10010
    DCOM
    The description for Event ID '10010' in Source 'DCOM' cannot be found. The local computer may not have the necessary registry information or message DLL files to display
    the message, or you may not have permission to access them. The following information is part of the event:'{73E709EA-5D93-4B2E-BBB0-99B7938DA9E4}'
    I had changed the power settings to every 5 hours which should have only given me 5 or 6 a day but I was getting as many as 15.  Hard Drives were set to not power down. So I am not sure that the 'Sleep' suggestion in the one article is correct. But
    this morning I went and put the power setting to never for the display.
    Any other suggestions? 

  • Getting Error : Error #1053: Illegal override of automationName in mx.core.Container

    I have Flex Data Service on Tomcat 4.1. (i.e. extracted
    flex.war in webapps/flex directorry of tomcat. "webapps/flex - flex
    directory is created inside the webapps"). Tried with the request
    for a sample mxml in the browser and able to see an swf file
    creation out of that and i am able to get that swf file in the
    browser. Thats fine.
    Now my scenario is as below:
    I request a sample html, in which an embedded sample swf with
    only one button on it. The request is to asp.net application. The
    request url is :
    http://localhost/FirstSite/Sample.html.
    I am able to get the initial swf file with this.
    Now on click of a button i will send request to an aspx page
    which again sends a request for an mxml to the tomcat (say tomcat
    has Sample2.mxml) as,
    HttpWebRequest req = (HttpWebRequest)WebRequest.Create("
    http://localhost:8080/flex/generated/Sample2.mxml");
    HttpWebResponse res = (HttpWebResponse)req.GetResponse();
    After execution of the second line i am able to see the
    creation of Sample2.swf in the tomcat's webapps/flex/generated
    folder.
    Now after the second line, that aspx will write an url string
    as respose to the client as,
    Response.write("
    http://localhost:8080/flex/generated/Sample2.swf");
    In the action script i am able to get this url when printed
    in trace at the client. Now i am trying to load that Sample2.swf
    with the lines in action script...
    var requiredURL:String = "
    http://localhost:8080/flex/generated/Sample2.swf";
    var urlReq:URLRequest = new URLRequest(requiredURL);
    var ldr:Loader = new Loader();
    ldr.load(urlReq);
    ldr.contentLoaderInfo.addEventListener(Event.COMPLETE,
    loaded);
    function loaded(e:Event):void {
    removeChildAt(0);
    stage.addChild(ldr);
    When i try this am getting error as,
    VerifyError: Error #1053: Illegal override of automationName
    in mx.core.Container.
    at flash.display::MovieClip/gotoAndStop()
    at
    mx.managers::SystemManager/::preloader_initProgressHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.preloaders::Preloader/::timerHandler()
    at flash.utils::Timer/flash.utils:Timer::_timerDispatch()
    at flash.utils::Timer/flash.utils:Timer::tick()
    Followed by series of errors like,
    ReferenceError: Error #1065: Variable
    _PanelStyle__embed_css_Assets_swf_CloseButtonUp_638970594 is not
    defined.
    at flash.display::MovieClip/gotoAndStop()
    at
    mx.managers::SystemManager/::preloader_initProgressHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.preloaders::Preloader/::timerHandler()
    at flash.utils::Timer/flash.utils:Timer::_timerDispatch()
    at flash.utils::Timer/flash.utils:Timer::tick()
    ReferenceError: Error #1065: Variable
    _LoaderStyle__embed_css_Assets_swf___brokenImage_416519517 is not
    defined.
    at flash.display::MovieClip/gotoAndStop()
    at
    mx.managers::SystemManager/::preloader_initProgressHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.preloaders::Preloader/::timerHandler()
    at flash.utils::Timer/flash.utils:Timer::_timerDispatch()
    .................. much more error trace like
    above...............
    I have placed crossdomail.xml file at each and every part of
    the application like at IIS and also at Tomcat.
    But now luck with that.
    Any thing am i missing?
    Waiting for the suggestions and thanks in advance.
    Deepak

    This project properties is located at which folder? Is it inside I'm able to
    see the different swcs inside there? The current sdk is 4.0.1?
    And the wrong version of RSL, what's that by the way.
    Really appreciate your response.

  • Critical Error: VerifyError: Error #1053: Illegal override of invalidateLayoutDirection in mx.core.C

    Hey guys,
    When I run my application, I have this error: VerifyError: Error #1053: Illegal override of invalidateLayoutDirection in mx.core.Container.
    What's the underlying reason for this error?
    Thanks and awaiting for any help.

    This project properties is located at which folder? Is it inside I'm able to
    see the different swcs inside there? The current sdk is 4.0.1?
    And the wrong version of RSL, what's that by the way.
    Really appreciate your response.

  • VerifyError: Error #1053: Illegal override of z in mx.core.UIComponent in adobe flex  pease help me!

    While I tried to run already existing adobe AIR application in Flex Builder3 using  Flex SDK4. I got this error
    VerifyError: Error #1053: Illegal override of z in mx.core.UIComponent in adobe flex
    please anyone help me to solve it

    Try setting your target player for 10 in your compiler options. It might be compiling for flash player 9.

  • Best preference settings for MacBook Pro Retina Mid 2012 with 2.7 Ghz Core i7 processor 16GB memory Nvidia GeForce GT 650M 1024MB processor

    (using latest AE CC2014)
    I have a MacBook Pro Retina Mid 2012 with 2.7 Ghz Core i7 processor 16GB memory Nvidia GeForce GT 650M 1024MB processor, doing some heavy AE renderings and just realized that this machine says it has 8 Cores? I'm had not yet turned on Multprocessing in Preferences Should I be?
    Should I leave 1 or 2 cores for other applications?
    RAM allocation per background CPU is defaulted set to 3GB
    Also for Adobe Media Encoder: in preferences under Video Rendering /Rendere it is set at Mercury Playback Engine GPU Acceleration (OpenCL) is that the best config for this computer?

    How much ram?
    The best settings depend on what you are working on. Here are mine for a nearly identical system:
    It's usually best to keep memory blocks in 4GB blocks. If my workflow is more in other apps I'll switch out other apps to 8 gb if things start to slow down. Because of my usual project settings I keep MP turned off on this machine, but for some projects I'll turn it on. If you decide to experiment to MP then keep an eye on the Actual CPU's that will be used and make sure the numbers add up. Other applications and Actual Cores should add up the the total in your system.

  • Why is my mcp restarting itself and showing me pop up , ur system restarted because of a prob, I'm using mbp 13inch 2012 ,2.5 GHz Intel Core i5, any answer please ?

    my mcp restarting itself and showing me pop up , ur system restarted because of a prob, I'm using mbp 13inch 2012 ,2.5 GHz Intel Core i5, any answer please ?

    Your description suggests that your MBP had a kernel panic:
    http://support.apple.com/kb/ts3742
    If so, follow these directions and post the report for inspection:
    support.apple.com/kb/ht2546http://
    Ciao.

  • Server Manager Error, Windows Server 2012 Standed

    Windows
    Server 2012 on my desktop
    and I've been in it then
    open Server Manager "ServerManager.exe - This application could not be started"
    error this time. In it,
    the option is YES and
    NO. YES is open
    to the side of .net.
    Please help me as soon as possible.

    Hi,
    Please check the event viewer to get more detailed error information about this issue.
    You can also remotely access it from another server by adding this server in the server manager of the remote server, and try to access the roles and features from the remote server, and tackle the problem from there.
    I hope this helps.

  • I get a Debug error in SCOM 2012 R2 when i open the Active alerts Tab in Monitoring session

    Hi All,
    After Deployment of my SCOM 2012r2 when i open my Active alerts tab and Pending Management tab i get this Debug .NET frame work error as per the screen shot below. When i click continue i get the same error 3 times and SCOM Crashes.
    Can any one please help me out with this error.
    Screen shot:
    Below is the full content of the error:
    See the end of this message for details on invoking 
    just-in-time (JIT) debugging instead of this dialog box.
    ************** Exception Text **************
    System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Reflection.TargetInvocationException:
    Exception has been thrown by the target of an invocation. ---> System.TypeInitializationException: The type initializer for 'Microsoft.EnterpriseManagement.Mom.Internal.UI.Knowledge.KnowledgeTransform' threw an exception. ---> System.IO.FileNotFoundException:
    Could not load file or assembly 'System.Data.SqlXml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified.
       at System.Xml.Xsl.XslCompiledTransform.Load(XmlReader stylesheet)
       --- End of inner exception stack trace ---
       at Microsoft.EnterpriseManagement.Mom.Internal.UI.Controls.KnowledgeControl..ctor()
       at Microsoft.EnterpriseManagement.Mom.UI.StateDetailView.InitializeComponent()
       at Microsoft.EnterpriseManagement.Mom.UI.StateDetailView..ctor()
       --- End of inner exception stack trace ---
       at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
       at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at Microsoft.EnterpriseManagement.ConsoleFramework.ComponentFactory.CreateComponentWithDefaultConstructor(ConstructorInfo constructor, IContainer parentContainer, String componentName, EventHandler`1 componentInitializeProcedure)
       at Microsoft.EnterpriseManagement.ConsoleFramework.ComponentFactory.CreateComponent(Type componentType, IContainer parentContainer, String componentName, EventHandler`1 componentInitializeProcedure)
       at Microsoft.EnterpriseManagement.ConsoleFramework.FrameworkServices.ServiceTableRecord.CreateComponent(Type componentType, String componentName, EventHandler`1 componentInitializeProcedure)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWinformViewConstructor.CreateView(Object parent, Type viewType, IViewParameters viewParameters)
       at Microsoft.EnterpriseManagement.ConsoleFramework.ViewConstructor.BeginShow(ShowViewContext showViewContext, AsyncCallback callback, Object state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.CreateNonRecyclableView(ShowViewContext showViewContext)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.CreateAndShowViewCore(ShowViewContext showViewContext)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.ShowViewOperation.Begin(ShowViewContext showViewContext)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.BeginShow(ShowViewContext showViewContext, AsyncCallback callback, Object state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.ViewDisplayController.BeginCreateDetailView()
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.ViewDisplayController.SetCurrentViewState(ViewState state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.ViewDisplayController.OnCreateViewEnded(Object sender, CreateViewEndedEventArgs args)
       --- End of inner exception stack trace ---
       at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
       at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
       at System.Delegate.DynamicInvokeImpl(Object[] args)
       at System.Windows.RoutedEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
       at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
       at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
       at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.ViewDisplay.OnCreateViewEnded(Object sender, CreateViewEndedEventArgs args)
       --- End of inner exception stack trace ---
       at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
       at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
       at System.Delegate.DynamicInvokeImpl(Object[] args)
       at System.Windows.RoutedEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
       at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
       at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
       at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.NavigationViewHost.RaisedCreateViewEndedEvent(Object view, Object controller, Object parentView, IViewParameters viewParameters)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.Microsoft.EnterpriseManagement.ConsoleFramework.IViewActivator.BeginShow(ShowViewContext showViewContext, Object parent, Object view, AsyncCallback callback, Object
    state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.ViewConstructor.BeginShow(ShowViewContext showViewContext, AsyncCallback callback, Object state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.CreateNonRecyclableView(ShowViewContext showViewContext)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.CreateAndShowViewCore(ShowViewContext showViewContext)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.ShowViewOperation.Begin(ShowViewContext showViewContext)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.BeginShow(ShowViewContext showViewContext, AsyncCallback callback, Object state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.ConsoleViewDisplayService.OpenViewJob(Object sender, ConsoleJobEventArgs args)
       at Microsoft.EnterpriseManagement.Mom.Internal.UI.Console.ConsoleJobExceptionHandler.ExecuteJob(IComponent component, EventHandler`1 job, Object sender, ConsoleJobEventArgs args)
       at Microsoft.EnterpriseManagement.ConsoleFramework.ConsoleJobsService.RunJob(ConsoleJobDescription jobDescription)
       at Microsoft.EnterpriseManagement.ConsoleFramework.WindowJobsService.RunJob(ConsoleJobDescription jobDescription)
       at Microsoft.EnterpriseManagement.ConsoleFramework.WindowJobsService.RunJob(IComponent jobOwner, EventHandler`1 jobMethod, EventHandler`1 errorHandler, Object[] arguments)
       at Microsoft.EnterpriseManagement.ConsoleFramework.WindowJobsService.RunJob(IComponent jobOwner, EventHandler`1 jobMethod, Object[] arguments)
       at Microsoft.EnterpriseManagement.ConsoleFramework.WindowJobsService.RunJob(EventHandler`1 jobMethod, Object[] arguments)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.ConsoleViewDisplayService.OpenView(String assemblyName, String typeName, String target, String item, String criteria, Object[] arguments)
       at Microsoft.EnterpriseManagement.Monitoring.Console.Common.ConsoleDisplayWrapper.OpenView(String assemblyName, String typeName, String target, String item, String criteria, Object[] arguments)
       at Microsoft.EnterpriseManagement.Mom.Internal.UI.Console.MomViewsDisplay.OpenMomView(IComponent component, ManagementPackView view, String target, String item)
       at Microsoft.EnterpriseManagement.Mom.Internal.UI.Console.MonitoringPage.OpenSelectedView(Boolean useLastSelectionFallback)
       at Microsoft.EnterpriseManagement.Mom.Internal.UI.Console.MonitoringPage.AfterNodeSelected(Object sender, TreeViewEventArgs e)
       at System.Windows.Forms.TreeView.TvnSelected(NMTREEVIEW* nmtv)
       at System.Windows.Forms.TreeView.WmNotify(Message& m)
       at System.Windows.Forms.TreeView.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    ************** Loaded Assemblies **************
    mscorlib
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/mscorlib.dll
    Microsoft.EnterpriseManagement.Monitoring.Console
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Monitoring.Console.exe
    System
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
    System.Core
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
    Microsoft.EnterpriseManagement.Presentation.Core
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Core.DLL
    System.Windows.Forms
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    System.Drawing
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    PresentationFramework
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.dll
    WindowsBase
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/WindowsBase/v4.0_4.0.0.0__31bf3856ad364e35/WindowsBase.dll
    PresentationCore
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_64/PresentationCore/v4.0_4.0.0.0__31bf3856ad364e35/PresentationCore.dll
    Microsoft.EnterpriseManagement.UI.ConsoleFramework
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.ConsoleFramework.DLL
    Microsoft.Practices.Prism.UnityExtensions
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.0.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.Practices.Prism.UnityExtensions.DLL
    Microsoft.Practices.Prism
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.0.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.Practices.Prism.DLL
    System.Configuration
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    System.Xaml
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xaml/v4.0_4.0.0.0__b77a5c561934e089/System.Xaml.dll
    System.Xml
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    Microsoft.EnterpriseManagement.Monitoring.Console.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.Monitoring.Console.resources.DLL
    Microsoft.EnterpriseManagement.UI.Foundation
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.Foundation.DLL
    System.ServiceModel
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.ServiceModel/v4.0_4.0.0.0__b77a5c561934e089/System.ServiceModel.dll
    SMDiagnostics
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/SMDiagnostics/v4.0_4.0.0.0__b77a5c561934e089/SMDiagnostics.dll
    System.ServiceModel.Internals
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.ServiceModel.Internals/v4.0_4.0.0.0__31bf3856ad364e35/System.ServiceModel.Internals.dll
    Microsoft.Practices.Unity
        Assembly Version: 2.0.414.0
        Win32 Version: 2.0.414.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.Practices.Unity.DLL
    Microsoft.EnterpriseManagement.Presentation.DataAccess
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.DataAccess.DLL
    Microsoft.EnterpriseManagement.Presentation.Security
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Security.DLL
    Microsoft.EnterpriseManagement.CompositionEngine
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.CompositionEngine.DLL
    Microsoft.EnterpriseManagement.Presentation.Tuneup
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Tuneup.DLL
    Microsoft.EnterpriseManagement.Monitoring.Components
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Monitoring.Components.DLL
    Microsoft.EnterpriseManagement.Monitoring.DataProviders
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Monitoring.DataProviders.DLL
    Microsoft.EnterpriseManagement.Management.DataProviders
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Management.DataProviders.DLL
    Microsoft.EnterpriseManagement.Presentation.DataProviders.Library
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.DataProviders.Library.DLL
    Microsoft.EnterpriseManagement.Presentation.Visual
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Visual.DLL
    Microsoft.EnterpriseManagement.Presentation.Controls
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Controls.DLL
    Microsoft.Practices.ServiceLocation
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.Practices.ServiceLocation.DLL
    Anonymously Hosted DynamicMethods Assembly
        Assembly Version: 0.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_64/mscorlib/v4.0_4.0.0.0__b77a5c561934e089/mscorlib.dll
    Microsoft.EnterpriseManagement.Presentation.Visual.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.Presentation.Visual.resources.DLL
    Microsoft.EnterpriseManagement.Presentation.Controls.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.Presentation.Controls.resources.DLL
    PresentationFramework.Classic
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework.classic/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.classic.dll
    System.ComponentModel.Composition
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.ComponentModel.Composition/v4.0_4.0.0.0__b77a5c561934e089/System.ComponentModel.Composition.dll
    System.Runtime.Serialization
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Serialization/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll
    Microsoft.EnterpriseManagement.Management.Transport
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Management.Transport.DLL
    Microsoft.EnterpriseManagement.CompositionEngine.Extensibility
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.CompositionEngine.Extensibility.DLL
    Microsoft.EnterpriseManagement.OperationsManager
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.EnterpriseManagement.OperationsManager/7.0.5000.0__31bf3856ad364e35/Microsoft.EnterpriseManagement.OperationsManager.dll
    Microsoft.EnterpriseManagement.Core
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.5.3070.0
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.EnterpriseManagement.Core/7.0.5000.0__31bf3856ad364e35/Microsoft.EnterpriseManagement.Core.dll
    Microsoft.EnterpriseManagement.UI.Console.Common
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.Console.Common.DLL
    Microsoft.Mom.UI.Components
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.Mom.UI.Components.DLL
    Microsoft.Mom.UI.Common
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.Mom.UI.Common.DLL
    Microsoft.Mom.Common
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.Mom.Common.DLL
    Microsoft.EnterpriseManagement.UI.Authoring
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.Authoring.DLL
    Microsoft.Mom.UI.Components.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.Mom.UI.Components.resources.DLL
    System.Runtime.Remoting
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
    System.Reactive
        Assembly Version: 1.0.10425.0
        Win32 Version: 1.0.10425.1
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/System.Reactive.DLL
    System.IdentityModel
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.IdentityModel/v4.0_4.0.0.0__b77a5c561934e089/System.IdentityModel.dll
    Microsoft.VisualStudio.Diagnostics.ServiceModelSink
        Assembly Version: 4.0.0.0
        Win32 Version: 10.0.30319.1
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Diagnostics.ServiceModelSink/v4.0_4.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Diagnostics.ServiceModelSink.dll
    System.Web
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_64/System.Web/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Web.dll
    System.Transactions
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_64/System.Transactions/v4.0_4.0.0.0__b77a5c561934e089/System.Transactions.dll
    System.EnterpriseServices
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_64/System.EnterpriseServices/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
    Microsoft.EnterpriseManagement.UI.ConsoleFramework.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.UI.ConsoleFramework.resources.DLL
    Microsoft.EnterpriseManagement.UI.Administration
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.Administration.DLL
    Microsoft.Mom.UI.Common.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.Mom.UI.Common.resources.DLL
    Microsoft.EnterpriseManagement.UI.Console.Common.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.UI.Console.Common.resources.DLL
    WindowsFormsIntegration
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/WindowsFormsIntegration/v4.0_4.0.0.0__31bf3856ad364e35/WindowsFormsIntegration.dll
    Microsoft.EnterpriseManagement.UI.Controls
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.Controls.DLL
    Microsoft.EnterpriseManagement.UI.ViewFramework
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.ViewFramework.DLL
    PresentationFramework.Aero
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework.Aero/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.Aero.dll
    Microsoft.EnterpriseManagement.UI.Controls.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.UI.Controls.resources.DLL
    UIAutomationTypes
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/UIAutomationTypes/v4.0_4.0.0.0__31bf3856ad364e35/UIAutomationTypes.dll
    PresentationFramework-SystemXml
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework-SystemXml/v4.0_4.0.0.0__b77a5c561934e089/PresentationFramework-SystemXml.dll
    UIAutomationProvider
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/UIAutomationProvider/v4.0_4.0.0.0__31bf3856ad364e35/UIAutomationProvider.dll
    PresentationFramework-SystemCore
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework-SystemCore/v4.0_4.0.0.0__b77a5c561934e089/PresentationFramework-SystemCore.dll
    Microsoft.EnterpriseManagement.UI.Reporting
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.Reporting.DLL
    Microsoft.Mom.Isam.Interop
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.Mom.Isam.Interop.DLL
    Microsoft.EnterpriseManagement.Core.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.5.3070.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.Core.resources.DLL
    System.Data
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_64/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll
    Microsoft.EnterpriseManagement.Runtime
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.EnterpriseManagement.Runtime/7.0.5000.0__31bf3856ad364e35/Microsoft.EnterpriseManagement.Runtime.dll
    Microsoft.EnterpriseManagement.UI.WizardFramework
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.WizardFramework.DLL
    Microsoft.EnterpriseManagement.Monitoring.UnitComponents
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Monitoring.UnitComponents.DLL
    Microsoft.EnterpriseManagement.Presentation.DataAccess.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.Presentation.DataAccess.resources.DLL
    Microsoft.EnterpriseManagement.UI.Reporting.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.UI.Reporting.resources.DLL
    Microsoft.EnterpriseManagement.UI.Administration.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.UI.Administration.resources.DLL
    PresentationFramework-SystemData
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework-SystemData/v4.0_4.0.0.0__b77a5c561934e089/PresentationFramework-SystemData.dll
    System.Numerics
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Numerics/v4.0_4.0.0.0__b77a5c561934e089/System.Numerics.dll
    Microsoft.SystemCenter.Advisor.Common
        Assembly Version: 7.0.5000.9
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Core.dll
    Microsoft.SystemCenter.Advisor.UI
        Assembly Version: 7.0.5000.9
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Core.dll
    Microsoft.EnterpriseManagement.DiagramFx
        Assembly Version: 7.1.1000.0
        Win32 Version: 7.1.3840.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.DiagramFx.DLL
    Microsoft.SystemCenter.Advisor.UI.resources
        Assembly Version: 7.0.5000.9
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Core.dll
    Microsoft.EnterpriseManagement.Monitoring.SyntheticTransaction.UnitComponents.Wpf
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Core.dll
    Microsoft.EnterpriseManagement.Monitoring.ServiceLevel.Components
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Core.dll
    Microsoft.SystemCenter.Visualization.Component.Library.WPF
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Core.dll
    Accessibility
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Accessibility/v4.0_4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
    Microsoft.GeneratedCode
        Assembly Version: 1.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    Microsoft.ReportViewer.WinForms
        Assembly Version: 11.0.0.0
        Win32 Version: 11.0.2100.60 ((SQL11_RTM).120210-1846 )
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.ReportViewer.WinForms/11.0.0.0__89845dcd8080cc91/Microsoft.ReportViewer.WinForms.dll
    System.Web.Services
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Web.Services/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll
    ************** JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.
    ============================
    Crash error and details:
    Error content:
    Problem signature:
      Problem Event Name: CLR20r3
      Problem Signature 01: 35IX4XXD43DM0DHGBOU3ZAVYZVCIPHYK
      Problem Signature 02: 7.1.10226.0
      Problem Signature 03: 522a58ed
      Problem Signature 04: mscorlib
      Problem Signature 05: 4.0.30319.17929
      Problem Signature 06: 4ffa57ca
      Problem Signature 07: 2aa4
      Problem Signature 08: 34
      Problem Signature 09: N3CTRYE2KN3C34SGL4ZQYRBFTE4M13NB
      OS Version: 6.1.7601.2.1.0.400.8
      Locale ID: 16393
      Additional Information 1: eb61
      Additional Information 2: eb613b33a7a25e3daead266f07bfdeb7
      Additional Information 3: 4405
      Additional Information 4: 4405e15216fd9fb173e974fe92b73f89
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt
    ==============================================================

    Hi,
    Just several ideas to be checked:
    1. Please, verify the prerequisites of Operations Console listed by the following link:
    http://technet.microsoft.com/en-us/library/dn249696.aspx
    2. Install all the SCOM related system updates.
    3. Clear SCOM Console cache:
    http://systemcenter.no/?p=215
    4. Try to clean up Ops Manager cache on SCOM Management server. To do this stop Microsoft Monitoring Agent service, navigate to SCOM installation path (by default, C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Server) and
    delete Health Service State folder. Start Microsoft Monitoring Agent service afterwards.
    5. If nothing helps, maybe try to reinstall SCOM Console.
    Igor Savchenko, VIAcode Consulting LLC (http://www.viacode.com/)

  • Replication error on windows 2012 DC

    Hi,
    I have added Windows 2012 R2 server (cadpdc1) to windows 2003 sp2 DC  (Primary DC) and promoted it as DC. After the promote I have ran dcdiag and it shows errors.
    Each of servers have three NICs connected to different networks.
    Please help me with your expertise since I need to bring this up on monday.
    Thank you
    Kind regards
    Chamara
    here the dcdiag output of new DC
    Directory Server Diagnosis
    Performing initial setup:
       Trying to find home server...
       Home Server = CADPDC1
       * Identified AD Forest.
       Done gathering initial info.
    Doing initial required tests
       Testing server: Default-First-Site-Name\CADPDC1
          Starting test: Connectivity
             Error during resolution of hostname CADPDC1.engineer.com through
             IPv6 stack.
             *** Warning: could not confirm the identity of this server in the
             directory versus the names returned by DNS servers. Hostname
             resolution error 0x2af9 "No such host is known."
             ......................... CADPDC1 passed test Connectivity
    Doing primary tests
       Testing server: Default-First-Site-Name\CADPDC1
          Starting test: Advertising
             Warning: DsGetDcName returned information for
             \\cadpdc.engineer.com, when we were trying to reach CADPDC1.
             SERVER IS NOT RESPONDING or IS NOT CONSIDERED SUITABLE.
             ......................... CADPDC1 failed test Advertising
          Starting test: FrsEvent
             There are warning or error events within the last 24 hours after the
             SYSVOL has been shared.  Failing SYSVOL replication problems may cause
             Group Policy problems.
             ......................... CADPDC1 passed test FrsEvent
          Starting test: DFSREvent
             ......................... CADPDC1 passed test DFSREvent
          Starting test: SysVolCheck
             ......................... CADPDC1 passed test SysVolCheck
          Starting test: KccEvent
             ......................... CADPDC1 passed test KccEvent
          Starting test: KnowsOfRoleHolders
             [CADPDC] DsBindWithSpnEx() failed with error -2146893022,
             The target principal name is incorrect..
             Warning: CADPDC is the Schema Owner, but is not responding to DS RPC
             Bind.
             [CADPDC] LDAP bind failed with error 8341,
             A directory service error has occurred..
             Warning: CADPDC is the Schema Owner, but is not responding to LDAP
             Bind.
             Warning: CADPDC is the Domain Owner, but is not responding to DS RPC
             Bind.
             Warning: CADPDC is the Domain Owner, but is not responding to LDAP
             Bind.
             Warning: CADPDC is the PDC Owner, but is not responding to DS RPC
             Bind.
             Warning: CADPDC is the PDC Owner, but is not responding to LDAP Bind.
             Warning: CADPDC is the Rid Owner, but is not responding to DS RPC
             Bind.
             Warning: CADPDC is the Rid Owner, but is not responding to LDAP Bind.
             Warning: CADPDC is the Infrastructure Update Owner, but is not
             responding to DS RPC Bind.
             Warning: CADPDC is the Infrastructure Update Owner, but is not
             responding to LDAP Bind.
             ......................... CADPDC1 failed test KnowsOfRoleHolders
          Starting test: MachineAccount
             ......................... CADPDC1 passed test MachineAccount
          Starting test: NCSecDesc
             ......................... CADPDC1 passed test NCSecDesc
          Starting test: NetLogons
             Unable to connect to the NETLOGON share! (\\CADPDC1\netlogon)
             [CADPDC1] An net use or LsaPolicy operation failed with error 67,
             The network name cannot be found..
             ......................... CADPDC1 failed test NetLogons
          Starting test: ObjectsReplicated
             ......................... CADPDC1 passed test ObjectsReplicated
          Starting test: Replications
             [Replications Check,CADPDC1] A recent replication attempt failed:
                From CADPDC to CADPDC1
                Naming Context: DC=ForestDnsZones,DC=engineer,DC=com
                The replication generated an error (-2146893022):
                The target principal name is incorrect.
                The failure occurred at 2014-06-27 17:05:59.
                The last success occurred at 2014-06-27 17:01:21.
                1 failures have occurred since the last success.
             [Replications Check,CADPDC1] A recent replication attempt failed:
                From CADPDC to CADPDC1
                Naming Context: DC=DomainDnsZones,DC=engineer,DC=com
                The replication generated an error (-2146893022):
                The target principal name is incorrect.
                The failure occurred at 2014-06-27 17:05:59.
                The last success occurred at 2014-06-27 17:01:21.
                1 failures have occurred since the last success.
             [Replications Check,CADPDC1] A recent replication attempt failed:
                From CADPDC to CADPDC1
                Naming Context: CN=Schema,CN=Configuration,DC=engineer,DC=com
                The replication generated an error (1727):
                The remote procedure call failed and did not execute.
                The failure occurred at 2014-06-27 17:05:59.
                The last success occurred at 2014-06-27 17:01:06.
                1 failures have occurred since the last success.
             [Replications Check,CADPDC1] A recent replication attempt failed:
                From CADPDC to CADPDC1
                Naming Context: CN=Configuration,DC=engineer,DC=com
                The replication generated an error (-2146893022):
                The target principal name is incorrect.
                The failure occurred at 2014-06-27 17:05:59.
                The last success occurred at 2014-06-27 17:01:07.
                1 failures have occurred since the last success.
             [Replications Check,CADPDC1] A recent replication attempt failed:
                From CADPDC to CADPDC1
                Naming Context: DC=engineer,DC=com
                The replication generated an error (-2146893022):
                The target principal name is incorrect.
                The failure occurred at 2014-06-27 17:05:59.
                The last success occurred at 2014-06-27 17:01:21.
                1 failures have occurred since the last success.
             ......................... CADPDC1 failed test Replications
          Starting test: RidManager
             ......................... CADPDC1 failed test RidManager
          Starting test: Services
             ......................... CADPDC1 passed test Services
          Starting test: SystemLog
             A warning event occurred.  EventID: 0x000727A5
                Time Generated: 06/27/2014   17:01:38
                Event String:
                The WinRM service is not listening for WS-Management requests.
             A warning event occurred.  EventID: 0x80050004
                Time Generated: 06/27/2014   17:05:03
                Event String:
                HP Ethernet 1Gb 2-port 332T Adapter: The network link is down.  Check to make sure the network cable is properly connected.
             A warning event occurred.  EventID: 0xA004001B
                Time Generated: 06/27/2014   17:05:06
                Event String: HP NC112T PCIe Gigabit Server Adapter
             An error event occurred.  EventID: 0x40000004
                Time Generated: 06/27/2014   17:05:39
                Event String:
                The Kerberos client received a KRB_AP_ERR_MODIFIED error from the server cadpdc1$. The target name used was LDAP/cadpdc.engineer.com/[email protected]. This indicates that the target
    server failed to decrypt the ticket provided by the client. This can occur when the target server principal name (SPN) is registered on an account other than the account the target service is using. Ensure that the target SPN is only registered on the account
    used by the server. This error can also happen if the target service account password is different than what is configured on the Kerberos Key Distribution Center for that target service. Ensure that the service on the server and the KDC are both configured
    to use the same password. If the server name is not fully qualified, and the target domain (ENGINEER.COM) is different from the client domain (ENGINEER.COM), check if there are identically named server accounts in these two domains, or use the fully-qualified
    name to identify the server.
             An error event occurred.  EventID: 0x40000004
                Time Generated: 06/27/2014   17:05:39
                Event String:
                The Kerberos client received a KRB_AP_ERR_MODIFIED error from the server cadpdc1$. The target name used was ldap/cadpdc.engineer.com/[email protected]. This indicates that the target
    server failed to decrypt the ticket provided by the client. This can occur when the target server principal name (SPN) is registered on an account other than the account the target service is using. Ensure that the target SPN is only registered on the account
    used by the server. This error can also happen if the target service account password is different than what is configured on the Kerberos Key Distribution Center for that target service. Ensure that the service on the server and the KDC are both configured
    to use the same password. If the server name is not fully qualified, and the target domain (ENGINEER.COM) is different from the client domain (ENGINEER.COM), check if there are identically named server accounts in these two domains, or use the fully-qualified
    name to identify the server.
             An error event occurred.  EventID: 0x40000004
                Time Generated: 06/27/2014   17:05:41
                Event String:
                The Kerberos client received a KRB_AP_ERR_MODIFIED error from the server cadpdc1$. The target name used was cadpdc$. This indicates that the target server failed to decrypt the ticket provided
    by the client. This can occur when the target server principal name (SPN) is registered on an account other than the account the target service is using. Ensure that the target SPN is only registered on the account used by the server. This error can also happen
    if the target service account password is different than what is configured on the Kerberos Key Distribution Center for that target service. Ensure that the service on the server and the KDC are both configured to use the same password. If the server name
    is not fully qualified, and the target domain (ENGINEER.COM) is different from the client domain (ENGINEER.COM), check if there are identically named server accounts in these two domains, or use the fully-qualified name to identify the server.
             An error event occurred.  EventID: 0x40000004
                Time Generated: 06/27/2014   17:05:43
                Event String:
                The Kerberos client received a KRB_AP_ERR_MODIFIED error from the server cadpdc1$. The target name used was GC/cadpdc.engineer.com/engineer.com. This indicates that the target server failed
    to decrypt the ticket provided by the client. This can occur when the target server principal name (SPN) is registered on an account other than the account the target service is using. Ensure that the target SPN is only registered on the account used by the
    server. This error can also happen if the target service account password is different than what is configured on the Kerberos Key Distribution Center for that target service. Ensure that the service on the server and the KDC are both configured to use the
    same password. If the server name is not fully qualified, and the target domain (ENGINEER.COM) is different from the client domain (ENGINEER.COM), check if there are identically named server accounts in these two domains, or use the fully-qualified name to
    identify the server.
             A warning event occurred.  EventID: 0x000727AA
                Time Generated: 06/27/2014   17:05:43
                Event String:
                The WinRM service failed to create the following SPNs: WSMAN/CADPDC1.engineer.com; WSMAN/CADPDC1.
             An error event occurred.  EventID: 0x40000004
                Time Generated: 06/27/2014   17:05:55
                Event String:
                The Kerberos client received a KRB_AP_ERR_MODIFIED error from the server cadpdc1$. The target name used was cifs/cadpdc.engineer.com. This indicates that the target server failed to decrypt
    the ticket provided by the client. This can occur when the target server principal name (SPN) is registered on an account other than the account the target service is using. Ensure that the target SPN is only registered on the account used by the server. This
    error can also happen if the target service account password is different than what is configured on the Kerberos Key Distribution Center for that target service. Ensure that the service on the server and the KDC are both configured to use the same password.
    If the server name is not fully qualified, and the target domain (ENGINEER.COM) is different from the client domain (ENGINEER.COM), check if there are identically named server accounts in these two domains, or use the fully-qualified name to identify the server.
             A warning event occurred.  EventID: 0x84350444
                Time Generated: 06/27/2014   17:05:58
                Event String:
                System Information Agent: Health: Post Errors were detected.  One or more Power-On-Self-Test errors were detected during server startup.
             An error event occurred.  EventID: 0x40000004
                Time Generated: 06/27/2014   17:05:59
                Event String:
                The Kerberos client received a KRB_AP_ERR_MODIFIED error from the server cadpdc1$. The target name used was E3514235-4B06-11D1-AB04-00C04FC2DCD2/5122bd13-c8ac-4265-a879-3a6831224994/[email protected].
    This indicates that the target server failed to decrypt the ticket provided by the client. This can occur when the target server principal name (SPN) is registered on an account other than the account the target service is using. Ensure that the target SPN
    is only registered on the account used by the server. This error can also happen if the target service account password is different than what is configured on the Kerberos Key Distribution Center for that target service. Ensure that the service on the server
    and the KDC are both configured to use the same password. If the server name is not fully qualified, and the target domain (ENGINEER.COM) is different from the client domain (ENGINEER.COM), check if there are identically named server accounts in these two
    domains, or use the fully-qualified name to identify the server.
             An error event occurred.  EventID: 0x40000004
                Time Generated: 06/27/2014   17:05:59
                Event String:
                The Kerberos client received a KRB_AP_ERR_MODIFIED error from the server cadpdc1$. The target name used was ldap/cadpdc.engineer.com. This indicates that the target server failed to decrypt
    the ticket provided by the client. This can occur when the target server principal name (SPN) is registered on an account other than the account the target service is using. Ensure that the target SPN is only registered on the account used by the server. This
    error can also happen if the target service account password is different than what is configured on the Kerberos Key Distribution Center for that target service. Ensure that the service on the server and the KDC are both configured to use the same password.
    If the server name is not fully qualified, and the target domain (ENGINEER.COM) is different from the client domain (ENGINEER.COM), check if there are identically named server accounts in these two domains, or use the fully-qualified name to identify the server.
             An error event occurred.  EventID: 0x0000410B
                Time Generated: 06/27/2014   17:05:59
                Event String:
                The request for a new account-identifier pool failed. The operation will be retried until the request succeeds. The error is
             An error event occurred.  EventID: 0x40000004
                Time Generated: 06/27/2014   17:06:07
                Event String:
                The Kerberos client received a KRB_AP_ERR_MODIFIED error from the server cadpdc1$. The target name used was LDAP/cadpdc.engineer.com. This indicates that the target server failed to decrypt
    the ticket provided by the client. This can occur when the target server principal name (SPN) is registered on an account other than the account the target service is using. Ensure that the target SPN is only registered on the account used by the server. This
    error can also happen if the target service account password is different than what is configured on the Kerberos Key Distribution Center for that target service. Ensure that the service on the server and the KDC are both configured to use the same password.
    If the server name is not fully qualified, and the target domain (ENGINEER.COM) is different from the client domain (ENGINEER.COM), check if there are identically named server accounts in these two domains, or use the fully-qualified name to identify the server.
             An error event occurred.  EventID: 0x0000041F
                Time Generated: 06/27/2014   17:06:30
                Event String:
                The processing of Group Policy failed. Windows could not resolve the computer name. This could be caused by one of more of the following:
             An error event occurred.  EventID: 0x0000041D
                Time Generated: 06/27/2014   17:07:07
                Event String:
                The processing of Group Policy failed. Windows could not resolve the user name. This could be caused by one of more of the following:
             An error event occurred.  EventID: 0x0000041F
                Time Generated: 06/27/2014   17:11:32
                Event String:
                The processing of Group Policy failed. Windows could not resolve the computer name. This could be caused by one of more of the following:
             An error event occurred.  EventID: 0x0000041F
                Time Generated: 06/27/2014   17:16:33
                Event String:
                The processing of Group Policy failed. Windows could not resolve the computer name. This could be caused by one of more of the following:
             An error event occurred.  EventID: 0x40000004
                Time Generated: 06/27/2014   17:16:38
                Event String:
                The Kerberos client received a KRB_AP_ERR_MODIFIED error from the server cadpdc1$. The target name used was LDAP/5122bd13-c8ac-4265-a879-3a6831224994._msdcs.engineer.com. This indicates that
    the target server failed to decrypt the ticket provided by the client. This can occur when the target server principal name (SPN) is registered on an account other than the account the target service is using. Ensure that the target SPN is only registered
    on the account used by the server. This error can also happen if the target service account password is different than what is configured on the Kerberos Key Distribution Center for that target service. Ensure that the service on the server and the KDC are
    both configured to use the same password. If the server name is not fully qualified, and the target domain (ENGINEER.COM) is different from the client domain (ENGINEER.COM), check if there are identically named server accounts in these two domains, or use
    the fully-qualified name to identify the server.
             An error event occurred.  EventID: 0x0000041F
                Time Generated: 06/27/2014   17:21:35
                Event String:
                The processing of Group Policy failed. Windows could not resolve the computer name. This could be caused by one of more of the following:
             ......................... CADPDC1 failed test SystemLog
          Starting test: VerifyReferences
             ......................... CADPDC1 passed test VerifyReferences
       Running partition tests on : ForestDnsZones
          Starting test: CheckSDRefDom
             ......................... ForestDnsZones passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... ForestDnsZones passed test
             CrossRefValidation
       Running partition tests on : DomainDnsZones
          Starting test: CheckSDRefDom
             ......................... DomainDnsZones passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... DomainDnsZones passed test
             CrossRefValidation
       Running partition tests on : Schema
          Starting test: CheckSDRefDom
             ......................... Schema passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... Schema passed test CrossRefValidation
       Running partition tests on : Configuration
          Starting test: CheckSDRefDom
             ......................... Configuration passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... Configuration passed test CrossRefValidation
       Running partition tests on : engineer
          Starting test: CheckSDRefDom
             ......................... engineer passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... engineer passed test CrossRefValidation
       Running enterprise tests on : engineer.com
          Starting test: LocatorCheck
             ......................... engineer.com passed test LocatorCheck
          Starting test: Intersite
             ......................... engineer.com passed test Intersite

    Hi,
    Please check the following : 
    - Confgigure IPv6 in DNS Management
    - Kerberos and LDAP records of dns.
    - Zone transfer from old server to new server.
    Thanks.
    Alper YAZGAN *

  • Errors installing SCOM 2012 Reporting Services

    I've run into an issue installing SCOM2012 Reporting Services, that I can't seem to figure out. I installed SQL Server 2008 R2 SP2 SSRS local to the SCOM server using an instance name of SCOM. I created the databases for this on another server (SQL server
    2008 R2 SP2) during the SSRS configuration. All from SSRS looks fine, and shows the scale out join, all good. I can browse to the reports page, add folders, all that normal stuff. I added the domain\datareader and datawriter accounts as SSRS admins in the
    site security, as well as ensured they are sysadmin in SQL, and local admins on the SQL and SCOM servers. So, all looks good. Until I go to add reporting services to SCOM 2012. It fails to complete, and the log shows:
    [12:28:36]: Warn: :Message:SRSPolicySetter SoapException Exception: System.Web.Services.Protocols.SoapException: An error occurred when invoking the authorization extension. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AuthorizationExtensionException:
    An error occurred when invoking the authorization extension. ---> System.ServiceModel.FaultException`1[[Microsoft.EnterpriseManagement.Common.UnauthorizedAccessMonitoringException, Microsoft.EnterpriseManagement.OperationsManager.Common, Version=7.0.5000.0,
    Culture=neutral, PublicKeyToken=31bf3856ad364e35]]: The creator of this fault did not specify a Reason.
       at Microsoft.ReportingServices.WebServer.ReportingService2005Impl.GetRoleProperties(String Name, Task[]& Tasks, String& Description)
       at Microsoft.ReportingServices.WebServer.ReportingService2005.GetRoleProperties(String Name, Task[]& Tasks, String& Description). Will retry..
    I then look in the SSRS logs, and see:
    library!ReportServer_0-1!89c!08/12/2013-12:28:34:: Call to GetRolePropertiesAction(Browser).
    library!ReportServer_0-1!89c!08/12/2013-12:28:36:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AuthorizationExtensionException: , Microsoft.ReportingServices.Diagnostics.Utilities.AuthorizationExtensionException: An error occurred when
    invoking the authorization extension. ---> System.ServiceModel.FaultException`1[Microsoft.EnterpriseManagement.Common.UnauthorizedAccessMonitoringException]: The creator of this fault did not specify a Reason. (Fault Detail is equal to Microsoft.EnterpriseManagement.Common.UnauthorizedAccessMonitoringException:
    The user domain\DataReader does not have sufficient permission to perform the operation.).
    So, I'm at a loss. That user is a sysadmin in SQL, has been added to the SSRS security for site and folder with full permissions, has been added to the SSRS databases specifically, and is a local administrator on both the SSRS/SCOM server and the SQL server.
    What am I missing here folks? The SSRS is then completely hosed, and no longer works either. So, I have to uninstall and reinstall to even try again. This is getting frustrating.
    Please help! :)
    Thanks in advance,
    mpleaf

    After many google searches, and a lot of security changes, I think I found the right now that finally cured the issue. I had to add my datareader account to the Operations Manager Administrators in SCOM User Roles, and then it seemed to go through just fine.
    mpleaf

  • UDI OSD Task Sequences started failing with 0x80070002 error in SCCM 2012

    This is kind of long, but here goes...
    We built a UDI task sequence in SCCM 2012 (with MDT integration) that we were testing for deployment of a couple of different Win7 images.  We customized the UDI experience thru the UDI wizard and XML file and OS deployment worked as expected
    thru the task sequence (testing on Hyper-V VMs). Recently, this UDI TS started failing with error 0x80070002  during what appears to be the "Use Toolkit Package" step.  This is after the OS image has already been laid down and after the ConfigMgr
    client has been installed/configured.  The SMSTS.log reports "Failed to open the task sequence key HKLM\Software\Microsoft\SMS\Task Sequence.  Error code 0x8007002"  Among other errors...I will post the entire log below...
    After the error during deployment, Win7 will boot normally, however, you have no network connectivity and it appears the proper network driver didn't get loaded in the OS. Combine this with the fact that the TS should have joined the machine to our domain,
    but you can't login because no network.. Im not sure if the network issue is a product of the TS failing early or the actual cause of the TS failure. 
    Anyway, I attempted to build another UDI task sequence using the same boot image and toolkit/settings packages, but am experiencing the same error during deployment.  We have a few OSD task sequences built without UDI and those all still work just fine. 
    So, I am at a loss for where the root problem lies.  Any suggestions or assistance would be greatly appreciated.
    Here is the entire SMSTS.log and BDD.log...
    https://skydrive.live.com/redir?resid=D65B1C4362892A26!110&authkey=!AKu5mOvDsXaEgvc
    Thanks
    Richie Tenhet

    your failure does appear to be network (driver or otherwise) or dns related and it cannot contact the management point FQDN just around the time where it should download and execute the
    Use Toolkit Package step...
    "Starting Task Sequence Engine . . . "
    "Non fatal error 0x80072ee7 in sending task sequence execution status message to MP"
    "Start executing an instruciton. Instruction name: Use Toolkit Package. Instruction pointer: 83"
    "unknown host (gethostbyname failed)"
    "sending with winhttp failed; 80072ee7"
    "Tried all the available http based locations. SMB based locations will be attempted now."
    "Failed to resolve the source for SMS PKGID=P0100015, hr=0x80070002"
    "Failed to run the action: Use Toolkit Package.
    The system cannot find the file specified. (Error: 80070002; Source: Windows)"
    that said, check that the package referenced above actually exists and is the correct source version on your distribution points, also verify (press F8 and check can you ping the FQDN of your management point) that you have network connectivity
    around the time of the failure.
    Step by Step Configuration Manager Guides >
    2012 Guides |
    2007 Guides | I'm on Twitter > ncbrady

  • BugCheck ERROR 1001 Server 2012

    Kindly Assist, 
    I am experiencing the error below on one of my Cluster Nodes.
    Event 1001, BugCheck
    The computer has rebooted from a bugcheck.  The bugcheck was: 0x00000124 (0x0000000000000000, 0xfffffa80c3640028, 0x00000000b6000000, 0x0000000000040150). A dump was saved in: C:\Windows\MEMORY.DMP. Report Id: 082714-46893-01.
    I Tried to analyze the minidump and am getting the info below
    hal.dll hal.dll+2d965
    fffff801`13403000 fffff801`1346f000
    0x0006c000 0x50875a79
    10/24/2012 6:03:21 AM Microsoft® Windows® Operating System
    Hardware Abstraction Layer DLL 6.2.9200.16442 (win8_gdr.121023-1503)
    Microsoft Corporation C:\Windows\system32\hal.dll
    ntoskrnl.exe ntoskrnl.exe+160ef9
    fffff801`1346f000 fffff801`13bbb000
    0x0074c000 0x51a966cd
    6/1/2013 6:13:17 AM Microsoft® Windows® Operating System
    NT Kernel & System 6.2.9200.16628 (win8_gdr.130531-1504)
    Microsoft Corporation C:\Windows\system32\ntoskrnl.exe
    How do I fix this issue?

    Hi,
    This Forum is not the best place for dump file analyzing. It's suggested to contact Microsoft Customer
    Support Services (CSS) so that a dedicated Support Professional can help you on this issue.
    To obtain the phone numbers for specific technology request, please refer to the website listed below:
    http://support.microsoft.com/default.aspx?scid=fh;EN-US;PHONENUMBERS¡¯
    If you are outside the US, please refer to
    http://support.microsoft.com   for regional support phone
    numbers.
    Thanks for your understanding.
    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.

Maybe you are looking for