MacMini 2012 fresh install fails

Hello,
i own a Mac-Mini (2012, w/o cd rom) with 10.7.
i wanted to downgrade it to 10.6; many apps that i use are not working on 10.7.
so i crated a USB installation drive from the SL DVD i have, but when booting i got the kernel hang.
i tried boot from a USB dvd drive and got the same screen.
then i restarted the mac mini while holding the T to my MBP and erased the HD.
it did not help, i still get the same screen.
and not (since i erased the drive) i can't reach the "Recovery mode" anymore…
HELP!!!!!!!

1. That iMac will not run Snow Leopard
see > Don't install a version of Mac OS X earlier than what came with your Mac
2. If the Recovery Partition is gone, then you may need to take the Mini into your local Apple Service Provider and have them re-install OS X Lion or Mountain Lion on it. 
read > OS X: About OS X Recovery

Similar Messages

  • New Site, New server SCCM 2012 R2 install fails at sp_createlocaleinfo

    Server 2012 R2 new build, SQL 2012, fresh install, SCCM 2012 R2 new install. All on one system. No clustering.
    All the prerequisites check out OK. But the install fails at sp_createlocaleinfo:
    INFO: SQL Server script: Create object spprocessdrsrecoveryversionmessage  $$<Configuration Manager Setup><01-03-2014 12:27:56.167-60><thread=3292 (0xCDC)>
    INFO: SQL Server script: Create object sp_makesureintervalexists  $$<Configuration Manager Setup><01-03-2014 12:27:56.198-60><thread=3292 (0xCDC)>
    *** -- ~-- Name         : sp_CreateLocaleInfo ~-- Definition   : SqlObjs ~-- Scope        : CAS_OR_PRIMARY ~-- Object       : P ~-- Dependencies
    : <Detect> ~-- Description  : <Please provide a description for this object> ~-- ~CREATE PROCEDURE sp_CreateLocaleInfo @_ciid int, @digest xml(CIDigest) AS ~BEGIN ~ ~    if (exists (select 1 from CI_ConfigurationItems where
    CI_ID=@_ciid and CIType_ID=21)) ~    begin ~       --It is a DT, only create localized info for default local ~       ;WITH XMLNAMESPACES ~  (
    ~    N'http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest' as app ~  ) ~  insert into CI_LocalizedCIClientProperties( CI_ID, LocaleID, Title, [Description]) ~ ~   select ~    
    @_ciid, ~      65535, ~     ISNULL(@digest.value('(/app:DeploymentType/app:Title)[1]', 'nvarchar(256)'), '') as Title, ~     ISNULL(@digest.value('(/app:DeploymentType/app:Description)[1]', 'nvarchar(2048)'),
    '') as [Description] ~      ~    end ~    else ~    begin ~  ;WITH XMLNAMESPACES ~  ( ~    N'http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest'
    as app ~  ) ~  insert into CI_LocalizedCIClientProperties( CI_ID, LocaleID, Title, [Description], Publisher, [Version], ReleaseDate, InfoUrl,InfoUrlText, PrivacyUrl, UserCategories, Tags, Icon ) ~ ~   select ~    
    @_ciid, ~     case ISNULL(cidigest.tc.value('(./@Language)[1]', 'nvarchar(10)'), '') when '' then 0 else ~    dbo.fnLShortNameToLCID(cidigest.tc.value('(./@Language)[1]',
    'nvarchar(10)')) end as lcid, ~ ~     cidigest.tc.value('(app:Title)[1]', 'nvarchar(256)') as Title, ~     cidigest.tc.value('(app:Description)[1]', 'nvarchar(2048)') as [Description], ~     cidigest.tc.value('(app:Publisher)[1]',
    'nvarchar(512)') as Publisher, ~     cidigest.tc.value('(app:Version)[1]', 'nvarchar(512)') as [Version], ~     cidigest.tc.value('(app:ReleaseDate)[1]', 'nvarchar(64)') as ReleaseDate, ~ ~     cidigest.tc.value('(app:InfoUrl)[1]',
    'nvarchar(1024)') as InfoUrl, ~     cidigest.tc.value('(app:InfoUrlText)[1]', 'nvarchar(1024)') as InfoUrlText, ~     cidigest.tc.value('(app:PrivacyUrl)[1]', 'nvarchar(2048)') as PrivacyUrl, ~    
    cidigest.tc.query('app:UserCategories') as UserCategories, ~     cidigest.tc.query('app:Tags') as Tags, ~ ~     ( ~     select top 1 icons.tc.value('xs:base64Binary((./app:Data)[1])', 'varbinary(max)')
    ~     from @digest.nodes('/app:AppMgmtDigest/app:Resources/app:Icon') as icons(tc) ~     where ~    icons.tc.value('(./@Id)[1]', 'nvarchar(1024)') = cidigest.tc.value('(./app:Icon/@Id)[1]',
    'nvarchar(1024)') ~     ) ~     as Icon ~ ~   from @digest.nodes('/app:AppMgmtDigest/app:Application/app:DisplayInfo/app:Info') as cidigest(tc) ~   where dbo.fnLShortNameToLCID(cidigest.tc.value('(./@Language)[1]',
    'nvarchar(10)')) != 0; ~ ~   --insert default info. ~   declare @defaultlocal nvarchar(20); ~ ~ ~  ;WITH XMLNAMESPACES ~  ( ~    N'http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest'
    as app ~  ) ~   select  @defaultlocal  = info.loc.value('(./@Language)[1]', 'nvarchar(20)') from @digest.nodes('/app:AppMgmtDigest/app:Application/app:DisplayInfo/app:Info ~          
    ') as info(loc) ~   where ISNULL(info.loc.value('(./@Language)[1]', 'nvarchar(20)'), '') = ISNULL(@digest.value('(/app:AppMgmtDigest/app:Application/app:DisplayInfo/@DefaultLanguage)[1]', 'nvarchar(20)'), '');
    ~ ~ ~  if  @defaultlocal is null ~  begin ~ ~    if exists (select  1 from @digest.nodes('declare namespace app="http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest";
    ~           /app:AppMgmtDigest/app:Application/app:DisplayInfo/app:Info ~           ') as info(loc) ~          
    where info.loc.value('declare namespace app="http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest"; ~          
    (./@Language)[1]', 'nvarchar(20)') = 'en') ~     begin ~     set @defaultlocal = 'en'; ~     end  else if exists (select  1 from @digest.nodes('declare
    namespace app="http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest"; ~          
    /app:AppMgmtDigest/app:Application/app:DisplayInfo/app:Info ~           ') as info(loc) ~           where info.loc.value('declare namespace app="http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest";
    ~           (./@Language)[1]', 'nvarchar(20)') = 'en-US') ~     begin ~      set @defaultlocal = 'en-US'; ~    
    end else ~     begin ~     select @defaultlocal = lo from ( select  top 1  ISNULL(info.loc.value('declare namespace app="http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest";
    ~           (./@Language)[1]', 'nvarchar(20)'), '')  as lo from @digest.nodes('declare namespace app="http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest";
    ~           /app:AppMgmtDigest/app:Application/app:DisplayInfo/app:Info ~           ') as info(loc)) as tdb ~     end ~  end ~
    ~  if not exists (select 1 from CI_LocalizedCIClientProperties lp where
    lp.CI_ID=@_ciid and lp.LocaleID=65535) ~  begin ~  insert into CI_LocalizedCIClientProperties ( CI_ID, LocaleID, Title, [Description], Publisher, [Version], ReleaseDate, InfoUrl, UserCategories, Tags,
    Icon ) ~   select CI_ID, 65535, Title, [Description], Publisher, [Version], ReleaseDate, InfoUrl, UserCategories, Tags, Icon from ~   CI_LocalizedCIClientProperties lp where lp.LocaleID = dbo.fnLShortNameToLCID(@defaultlocal)
    and lp.CI_ID = @_ciid ; ~   end; ~ ~ ~  --Expend categories. ~   ;WITH XMLNAMESPACES ~   ( ~    N'http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest' as app ~  
    ) ~   insert into CI_LocalizedCIClientTags (CI_ID, LocaleID, Tag, [Type]) ~   select distinct tt.CI_ID, tt.LocaleID, RTRIM(LTRIM( cate.tag.value('(.)[1]', 'nvarchar(513)'))) as tag, ~   N'UserCategory' ~   from ~  
    CI_LocalizedCIClientProperties  as tt cross apply tt.UserCategories.nodes('/app:UserCategories/app:Tag') as cate(tag) ~   where tt.CI_ID = @_ciid ; ~  ---Expend tags. ~   ;WITH XMLNAMESPACES ~   ( ~   
    N'http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest' as app ~   ) ~  insert into CI_LocalizedCIClientTags (CI_ID, LocaleID, Tag, [Type]) ~  select distinct tt.CI_ID, tt.LocaleID, cate.tag.value('(.)[1]',
    'nvarchar(513)') as tag, ~  N'Tag' ~  from ~  CI_LocalizedCIClientProperties  as tt cross apply tt.Tags.nodes('/app:Tags/app:Tag') as cate(tag) ~  where tt.CI_ID = @_ciid ; ~    end ~END ~  $$<Configuration
    Manager Setup><01-03-2014 12:28:09.027-60><thread=3292 (0xCDC)>
    *** [42000][701][Microsoft][SQL Server Native Client 11.0][SQL Server]There is insufficient system memory in resource pool 'internal' to run this query. : sp_CreateLocaleInfo  $$<Configuration Manager Setup><01-03-2014 12:28:09.027-60><thread=3292
    (0xCDC)>
    ERROR: SQL Server error: [42000][701][Microsoft][SQL Server Native Client 11.0][SQL Server]There is insufficient system memory in resource pool 'internal' to run this query. : sp_CreateLocaleInfo  $$<Configuration Manager Setup><01-03-2014 12:28:09.027-60><thread=3292
    (0xCDC)>
    Failed to execute sql command -- ~-- Name         : sp_CreateLocaleInfo ~-- Definition   : SqlObjs ~-- Scope        : CAS_OR_PRIMARY ~-- Object      
    : P ~-- Dependencies : <Detect> ~-- Description  : <Please provide a description for this object> ~-- ~CREATE PROCEDURE sp_CreateLocaleInfo @_ciid int, @digest xml(CIDigest) AS ~BEGIN ~ ~    if (exists (select 1 from CI_ConfigurationItems
    where CI_ID=@_ciid and CIType_ID=21)) ~    begin ~       --It is a DT, only create localized info for default local ~       ;WITH XMLNAMESPACES ~  (
    ~    N'http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest' as app ~  ) ~  insert into CI_LocalizedCIClientProperties( CI_ID, LocaleID, Title, [Description]) ~ ~   select ~    
    @_ciid, ~      65535, ~     ISNULL(@digest.value('(/app:DeploymentType/app:Title)[1]', 'nvarchar(256)'), '') as Title, ~     ISNULL(@digest.value('(/app:DeploymentType/app:Description)[1]', 'nvarchar(2048)'),
    '') as [Description] ~      ~    end ~    else ~    begin ~  ;WITH XMLNAMESPACES ~  ( ~    N'http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest'
    as app ~  ) ~  insert into CI_LocalizedCIClientProperties( CI_ID, LocaleID, Title, [Description], Publisher, [Version], ReleaseDate, InfoUrl,InfoUrlText, PrivacyUrl, UserCategories, Tags, Icon ) ~ ~   select ~    
    @_ciid, ~     case ISNULL(cidigest.tc.value('(./@Language)[1]', 'nvarchar(10)'), '') when '' then 0 else ~    dbo.fnLShortNameToLCID(cidigest.tc.value('(./@Language)[1]',
    'nvarchar(10)')) end as lcid, ~ ~     cidigest.tc.value('(app:Title)[1]', 'nvarchar(256)') as Title, ~     cidigest.tc.value('(app:Description)[1]', 'nvarchar(2048)') as [Description], ~     cidigest.tc.value('(app:Publisher)[1]',
    'nvarchar(512)') as Publisher, ~     cidigest.tc.value('(app:Version)[1]', 'nvarchar(512)') as [Version], ~     cidigest.tc.value('(app:ReleaseDate)[1]', 'nvarchar(64)') as ReleaseDate, ~ ~     cidigest.tc.value('(app:InfoUrl)[1]',
    'nvarchar(1024)') as InfoUrl, ~     cidigest.tc.value('(app:InfoUrlText)[1]', 'nvarchar(1024)') as InfoUrlText, ~     cidigest.tc.value('(app:PrivacyUrl)[1]', 'nvarchar(2048)') as PrivacyUrl, ~    
    cidigest.tc.query('app:UserCategories') as UserCategories, ~     cidigest.tc.query('app:Tags') as Tags, ~ ~     ( ~     select top 1 icons.tc.value('xs:base64Binary((./app:Data)[1])', 'varbinary(max)')
    ~     from @digest.nodes('/app:AppMgmtDigest/app:Resources/app:Icon') as icons(tc) ~     where ~    icons.tc.value('(./@Id)[1]', 'nvarchar(1024)') = cidigest.tc.value('(./app:Icon/@Id)[1]',
    'nvarchar(1024)') ~     ) ~     as Icon ~ ~   from @digest.nodes('/app:AppMgmtDigest/app:Application/app:DisplayInfo/app:Info') as cidigest(tc) ~   where dbo.fnLShortNameToLCID(cidigest.tc.value('(./@Language)[1]',
    'nvarchar(10)')) != 0; ~ ~   --insert default info. ~   declare @defaultlocal nvarchar(20); ~ ~ ~  ;WITH XMLNAMESPACES ~  ( ~    N'http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest'
    as app ~  ) ~   select  @defaultlocal  = info.loc.value('(./@Language)[1]', 'nvarchar(20)') from @digest.nodes('/app:AppMgmtDigest/app:Application/app:DisplayInfo/app:Info ~          
    ') as info(loc) ~   where ISNULL(info.loc.value('(./@Language)[1]', 'nvarchar(20)'), '') = ISNULL(@digest.value('(/app:AppMgmtDigest/app:Application/app:DisplayInfo/@DefaultLanguage)[1]', 'nvarchar(20)'), '');
    ~ ~ ~  if  @defaultlocal is null ~  begin ~ ~    if exists (select  1 from @digest.nodes('declare namespace app="http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest";
    ~           /app:AppMgmtDigest/app:Application/app:DisplayInfo/app:Info ~           ') as info(loc) ~          
    where info.loc.value('declare namespace app="http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest"; ~          
    (./@Language)[1]', 'nvarchar(20)') = 'en') ~     begin ~     set @defaultlocal = 'en'; ~     end  else if exists (select  1 from @digest.nodes('declare
    namespace app="http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest"; ~          
    /app:AppMgmtDigest/app:Application/app:DisplayInfo/app:Info ~           ') as info(loc) ~           where info.loc.value('declare namespace app="http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest";
    ~           (./@Language)[1]', 'nvarchar(20)') = 'en-US') ~     begin ~      set @defaultlocal = 'en-US'; ~    
    end else ~     begin ~     select @defaultlocal = lo from ( select  top 1  ISNULL(info.loc.value('declare namespace app="http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest";
    ~           (./@Language)[1]', 'nvarchar(20)'), '')  as lo from @digest.nodes('declare namespace app="http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest";
    ~           /app:AppMgmtDigest/app:Application/app:DisplayInfo/app:Info ~           ') as info(loc)) as tdb ~     end ~  end ~
    ~  if not exists (select 1 from CI_LocalizedCIClientProperties lp where
    lp.CI_ID=@_ciid and lp.LocaleID=65535) ~  begin ~  insert into CI_LocalizedCIClientProperties ( CI_ID, LocaleID, Title, [Description], Publisher, [Version], ReleaseDate, InfoUrl, UserCategories, Tags,
    Icon ) ~   select CI_ID, 65535, Title, [Description], Publisher, [Version], ReleaseDate, InfoUrl, UserCategories, Tags, Icon from ~   CI_LocalizedCIClientProperties lp where lp.LocaleID = dbo.fnLShortNameToLCID(@defaultlocal)
    and lp.CI_ID = @_ciid ; ~   end; ~ ~ ~  --Expend categories. ~   ;WITH XMLNAMESPACES ~   ( ~    N'http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest' as app ~  
    ) ~   insert into CI_LocalizedCIClientTags (CI_ID, LocaleID, Tag, [Type]) ~   select distinct tt.CI_ID, tt.LocaleID, RTRIM(LTRIM( cate.tag.value('(.)[1]', 'nvarchar(513)'))) as tag, ~   N'UserCategory' ~   from ~  
    CI_LocalizedCIClientProperties  as tt cross apply tt.UserCategories.nodes('/app:UserCategories/app:Tag') as cate(tag) ~   where tt.CI_ID = @_ciid ; ~  ---Expend tags. ~   ;WITH XMLNAMESPACES ~   ( ~   
    N'http://schemas.microsoft.com/SystemCenterConfigurationManager/2009/AppMgmtDigest' as app ~   ) ~  insert into CI_LocalizedCIClientTags (CI_ID, LocaleID, Tag, [Type]) ~  select distinct tt.CI_ID, tt.LocaleID, cate.tag.value('(.)[1]',
    'nvarchar(513)') as tag, ~  N'Tag' ~  from ~  CI_LocalizedCIClientProperties  as tt cross apply tt.Tags.nodes('/app:Tags/app:Tag') as cate(tag) ~  where tt.CI_ID = @_ciid ; ~    end ~END ~~ 
    $$<Configuration Manager Setup><01-03-2014 12:28:09.027-60><thread=3292 (0xCDC)>
    ERROR: Failed to execute SQL Server script: Create SQL object sp_createlocaleinfo~  $$<Configuration Manager Setup><01-03-2014 12:28:09.027-60><thread=3292 (0xCDC)>
    ERROR: SQL Server error: <>  $$<Configuration Manager Setup><01-03-2014 12:28:09.027-60><thread=3292 (0xCDC)>
    ~~===================== Completed Configuration Manager 2012 Server Setup =====================  $$<Configuration Manager Setup><01-03-2014 12:28:09.136-60><thread=3292 (0xCDC)>
    CarolChi

    Yes I found your guide and followed it.
    Stuck after 16 hours at LU_SoftwareList 
    INFO: Extracted file D:\Program Files\Microsoft Configuration Manager\AI\LU_CAL_ProductList.csv  $$<Configuration Manager Setup><01-04-2014 17:27:57.606-60><thread=520 (0x208)>
    INFO: Extracted file D:\Program Files\Microsoft Configuration Manager\AI\watermark.txt  $$<Configuration Manager Setup><01-04-2014 17:27:57.606-60><thread=520 (0x208)>
    INFO: Successfully expanded CSV files  $$<Configuration Manager Setup><01-04-2014 17:27:57.606-60><thread=520 (0x208)>
    INFO: Starting data import data to table: LU_LicensedProduct  $$<Configuration Manager Setup><01-04-2014 17:27:57.638-60><thread=520 (0x208)>
    INFO: Successfully imported data to table LU_LicensedProduct  $$<Configuration Manager Setup><01-04-2014 17:28:01.717-60><thread=520 (0x208)>
    INFO: Starting data import data to table: LU_Category  $$<Configuration Manager Setup><01-04-2014 17:28:01.717-60><thread=520 (0x208)>
    INFO: Successfully imported data to table LU_Category  $$<Configuration Manager Setup><01-04-2014 17:28:01.764-60><thread=520 (0x208)>
    INFO: Starting data import data to table: LU_SoftwareList  $$<Configuration Manager Setup><01-04-2014 17:28:01.764-60><thread=520 (0x208)>
    CarolChi

  • Server 2012 fresh install - Running at a crawl. Possible hardware issue?

    Hello All,
    I have recently purchased a used server and just fresh installed Server 2012 to evaluate it, and I am experiencing a issue with it running very slow.   So far nothing has been setup or installed besides the OS, hard drives, and a external usb drive,
    so it is pushing me to believe my issue is hardware related.
    First let me describe the issue more.   Basically everything is slow to load.  Control panel takes 20 seconds...  trying to load disk management and other snap in from administrative tools all take 15-20secs+ and first come up in
    a greyed out window or the administrative tools window goes to "Not Responding" for a few seconds then loads it.
    I do not think it is due to the fact the server is used with slightly dated hardware as it has Dual Quad-Core 2.66 Xeons & 16gb ECC Ram, so I was thinking their must be a bad piece of hardware in there?  Maybe bad ram?
    Anyway I plan to start hardware diagnostics, but I just wanted to see if anyone had any insight or suggestions for me.  And to verify if this sounds like a hardware issue to you as well.
    Thanks!

    Windows 2008 R2 that is on top of the list of supported operating systems. It is a good choice for some testing with M350 G5. Then you can test the in-place upgrade and application compatibility test will tell you, which component makes the problem.
    If for example onboard NIC is not compatible, then you can use another NIC card that is compatible. When it is RAID controller (very often), then either use another RAID or single HDD (it is test only, not for production environment).
    You can explore the virtualization path. Get know if appropriate hypervisor from VMvare is compatible with this hardware is also compatible with Windows Server 2012 R2. VMware forum may answer your question on virtualization. Working in virtual environment
    will provide some experience too.
    Majority of current desktop equipment allows you for testing Windows Server 2012 R2. There are some exceptions, namely "high end game machines" that make you to find remedy for drivers (example
    MAXIMUS IV GENE-Z - here is a need to adapt inf file for NIC, because of there is low end NIC on motherboard.)
    For low performance issues use native tools like Performace Monitor and diagnostics - Event logs and Device Manager. For detailed analysis consider Sysinternals tools.
    HTH
    Milos 

  • SCVMM 2012 agent install fails on standalone 2008 R2 host

    I am attempting to install SCVMM 2012 agent and getting this error:
    Error (421)
    Agent installation failed on exhpv01.denverwater.org because of a WS-Management configuration error.
    Recommended Action
    Ensure that the Windows Remote Management service is enabled and running on the server exhpv01.denverwater.org. Additionally, in the Local Group Policy Editor (gpedit.msc), navigate to Computer Configuration\Administrative Templates\Windows Components\Windows
    Remote Management (WinRM), and then ensure that there are no policy settings configured for WinRM Client or WinRM Service.
    I have run winrm qc and it shows winrm is configured.  I have verified there is no gpo settings configuring winrm.
    My runas account is a local administrator on the target host.
    I can install the agent local but still cannot add to the SCVMM server.
    Mark

    I am attempting to install SCVMM 2012 agent and getting this error:
    Error (421)
    Agent installation failed on exhpv01.denverwater.org because of a WS-Management configuration error.
    Recommended Action
    Ensure that the Windows Remote Management service is enabled and running on the server exhpv01.denverwater.org. Additionally, in the Local Group Policy Editor (gpedit.msc), navigate to Computer Configuration\Administrative Templates\Windows Components\Windows
    Remote Management (WinRM), and then ensure that there are no policy settings configured for WinRM Client or WinRM Service.
    I have run winrm qc and it shows winrm is configured.  I have verified there is no gpo settings configuring winrm.
    My runas account is a local administrator on the target host.
    I can install the agent local but still cannot add to the SCVMM server.
    Mark

  • SCCM 2012 - sms_notificaiton_server install fails, bgbisapi.msi could not be installed

    Hi,
    installed a SCCM 2012 R2 Primary site on a 2012 R2 server on the D: drive. Everything seemed to go well, however i am am now encountering issues with the SMS_NOTIFICATION_SERVER in that the site component manager is unable to install it. The status message
    viewer informs me that, "Site Component Manager failed to install this component, because the Microsoft Installer File for this component (bgbisapi.msi) could not install."
    When i check the Bgbsetup.log, i see the following lines: 
    <01/19/15 14:46:27> CTool::RegisterComPlusService: Failed to unregister D:\Program Files\Microsoft Configuration Manager\bin\x64\microsoft.configurationmanager.bgbserverchannel.dll with .Net Fx 4.0
    <01/19/15 14:46:27> CTool::RegisterComPlusService: run command line: "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\RegSvcs.exe" /extlb /tlb:"D:\Program Files\SMS_CCM\microsoft.configurationmanager.bgbserverchannel.tlb" "D:\Program
    Files\Microsoft Configuration Manager\bin\x64\microsoft.configurationmanager.bgbserverchannel.dll"
    <01/19/15 14:46:30> CTool::RegisterComPlusService: Failed to register D:\Program Files\Microsoft Configuration Manager\bin\x64\microsoft.configurationmanager.bgbserverchannel.dll with .Net Fx 4.0
    <01/19/15 14:46:30> Cannot register BGB server channel DLL D:\Program Files\Microsoft Configuration Manager\bin\x64\microsoft.configurationmanager.bgbserverchannel.dll. Installation cannot continue.
    <01/19/15 14:46:30> Fatal MSI Error - bgbisapi.msi could not be installed.
    Having done a bit of reading, it seems a few other people have come accross this issue before:
    https://rikkoss.wordpress.com/2013/12/11/tip-do-not-change-the-default-installation-location-for-configmgr-2012/
    http://www.windows-noob.com/forums/index.php?/topic/7401-sms-notification-server-failed-critical-sccm-sp1-sql-2012-sp1/
    The solution for these folks seems to be to edit 2 files in the .Net folder,InstallUtil.exe.config and Regsvc.exe.config,
    and insert the following code:
    <runtime>
    <loadFromRemoteSources enabled=”true”/>
    </runtime>
    However, this hasn't worked for me and i'm still getting stuck with the same error messages. Since i'd really like to avoid reinstalling SCCM on the C: drive, can anyone suggest any possible solutions to this issue? 

    The MPsetup.log has this:
    <01/20/15 16:28:11>         ======== Completed Installation of Pre Reqs for Role SMSMP ========
    <01/20/15 16:28:11> Installing the SMSMP
    <01/20/15 16:28:11> Passed OS version check.
    <01/20/15 16:28:11> IIS Service is installed.
    <01/20/15 16:28:11> No versions of SMSMP are installed.  Installing new SMSMP.
    <01/20/15 16:28:11> Enabling MSI logging.  mp.msi will log to D:\Program Files\Microsoft Configuration Manager\logs\mpMSI.log
    <01/20/15 16:28:11> Installing D:\Program Files\Microsoft Configuration Manager\bin\x64\mp.msi CCMINSTALLDIR="D:\Program Files\SMS_CCM" CCMSERVERDATAROOT="D:\Program Files\Microsoft Configuration Manager" USESMSPORTS=TRUE SMSPORTS=80
    USESMSSSLPORTS=TRUE SMSSSLPORTS=443 USESMSSSL=TRUE SMSSSLSTATE=0 CCMENABLELOGGING=TRUE CCMLOGLEVEL=1 CCMLOGMAXSIZE=1000000 CCMLOGMAXHISTORY=1
    <01/20/15 16:28:12> mp.msi exited with return code: 1603
    <01/20/15 16:28:12> Backing up D:\Program Files\Microsoft Configuration Manager\logs\mpMSI.log to D:\Program Files\Microsoft Configuration Manager\logs\mpMSI.log.LastError
    <01/20/15 16:28:12> Fatal MSI Error - mp.msi could not be installed.
    and the MPmsi.log has this:
    MSI (s) (B0:E0) [16:37:14:660]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI23F6.tmp, Entrypoint: CcmRegisterPerfCounters
    [16:37:14] @@ERR:25001
    Internal Error 25001. 80070057
    MSI (s) (B0!F8) [16:37:14:676]: Product: BGB http proxy -- Internal Error 25001. 80070057
    CustomAction CcmRegisterPerfCounters returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
    Had a go at removing the MP, disabled the UAC and reinstalling the MP. Same result unfortunately...The server is temporarily housed in a block GPO OU so group policy shouldn't be an issue. Thanks for all the help so far!

  • SCVMM 2012 R2 - install fails on creation of resource group

    Hi,
    When I run the installation for SCVMM 2012 R2, I get the error below:
    20200
    Creation of the VMM resource group (%GroupName;) failed.
    Ensure that the group name is valid, and cluster resource or group with the same name does not exist, and the group name is not used in the network.
    Permissions have been granted to AD containers and cluster.  Cluster is online and pinging.  I'm installing as an SCVMM administrator and also tried with Domain Admins.
    Any ideas?  Thanks, Matt.

    The IP address was in use by the cluster.  The IP has to be free (not pingable) and host name must not already exist in AD.  Fixed.

  • DPM 2012 R2 install fail - Reporting services "definition contains XML that is not well-formed or the XML is not valid"

    Hi Everyone,
    I've been battling with this for a while and I'm getting nowhere. I'm attempting to install DPM 2012R2 onto a fresh VM with a local SQL installation. The setup is as follows:
    Server OS: 2008R2 SP1
    SQL: 2008 R2 standard with SP3(tried SP2 before this)
    Collation: SQL_Latin1_General_CP1_CI_AS
    Reporting services installed: Yes(ticked do not configure during the installation)
    Enabled reporting servics on port 80 with the default URL
    DPM Installation does not throw any errors during the preinstall stage(The server passes all the checks)
    Basically, when Installing. I get this error(extract):
     at Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.Reporter.DeployFileInServer(Boolean recreate, ReportDBInfo rptInfo)
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.Reporter.DeployReports(String sourceFolderPath, Boolean recreate, Boolean calledFromSetup)
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.Reporter.InstallReports(Boolean calledFromSetup, String sourceFolderPath, String sqlServerName, String sqlInstanceName, String dbConnectionString)
       --- 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.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams)
       at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.ReportingConfiguration.DeployReports(Boolean isRemoteReporting, String sqlMachineName, String sqlInstanceName, String rsMachineName, String rsInstanceName, String installerPath)
    [10/12/2014 2:35:25 p.m.] * Exception :  => Report configuration failed.Verify that SQL Server Reporting Services is installed properly and that it is running.Microsoft.Internal.EnterpriseStorage.Dls.Setup.Exceptions.BackEndErrorException: exception
    ---> Microsoft.Internal.EnterpriseStorage.Dls.Setup.Exceptions.ReportDeploymentException: exception ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.ReportingException:
    exception ---> System.Web.Services.Protocols.SoapException: System.Web.Services.Protocols.SoapException: The report definition is not valid or supported by this version of Reporting Services. This could be the result of publishing a report definition of
    a later version of Reporting Services, or that the report definition contains XML that is not well-formed or the XML is not valid based on the Report Definition schema. Details: Root element is missing.
       at Microsoft.ReportingServices.WebServer.ReportingService2005Impl.CreateReport(String Report, String Parent, Boolean Overwrite, Byte[] Definition, Property[] Properties, Warning[]& Warnings)
       at Microsoft.ReportingServices.WebServer.ReportingService2005.CreateReport(String Report, String Parent, Boolean Overwrite, Byte[] Definition, Property[] Properties, Warning[]& Warnings)
       at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
       at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.Reporting.ReportingService2005.CreateReport(String Report, String Parent, Boolean Overwrite, Byte[] Definition, Property[] Properties)
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.Reporter.CreateReport(String pathOfReport, ReportDBInfo rptInfo)
       --- End of inner exception stack trace ---
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.Reporter.CreateReport(String pathOfReport, ReportDBInfo rptInfo)
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.Reporter.DeployFileInServer(Boolean recreate, ReportDBInfo rptInfo)
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.Reporter.DeployReports(String sourceFolderPath, Boolean recreate, Boolean calledFromSetup)
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.Reporter.InstallReports(Boolean calledFromSetup, String sourceFolderPath, String sqlServerName, String sqlInstanceName, String dbConnectionString)
       --- 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.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams)
       at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.ReportingConfiguration.DeployReports(Boolean isRemoteReporting, String sqlMachineName, String sqlInstanceName, String rsMachineName, String rsInstanceName, String installerPath)
       --- End of inner exception stack trace ---
       at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.ReportingConfiguration.DeployReports(Boolean isRemoteReporting, String sqlMachineName, String sqlInstanceName, String rsMachineName, String rsInstanceName, String installerPath)
       at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.BackEnd.DeployReports(String reportserverConfigFilePath, Boolean isOemSetup, String sqlMachineName, String sqlInstanceName, Boolean isRemoteReporting, String reportingServerMachineName, String
    reportingInstanceName)
       --- End of inner exception stack trace ---
       at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.BackEnd.DeployReports(String reportserverConfigFilePath, Boolean isOemSetup, String sqlMachineName, String sqlInstanceName, Boolean isRemoteReporting, String reportingServerMachineName, String
    reportingInstanceName)
       at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.DpmInstaller.DeployReports(Boolean isRemoteReporting, Boolean isUpgrade)
       at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.ProgressPage.InstallerThreadEntry()
    *** Mojito error was: ReportDeploymentFailed; 0; None
    [10/12/2014 2:35:25 p.m.] *** Error : Report configuration failed.
    Verify that SQL Server Reporting Services is installed properly and that it is running.
    ID: 812
    [10/12/2014 2:35:25 p.m.] Information : Data Protection Manager installation has failed. All the items that were copied during the installation process have been removed.
    For details, click the Error tab.
    Any ideas?
    I've managed to get it to this stage. Originally I didn't have encryption keys or a listening port(which I fixed).

    Can you try following steps:
    If there are SSL certificates on your computer, by default SQL 2008
    installation configures HTTPS for reporting websites. When DPM tries to
    deploy reports on these websites it may fail if the reporting websites
    are not accessible (might be due to invalid/expired certificates). To
    workaround this, provided you do not require HTTPS for reporting websites do
    the following:
    1. Edit C:\Program Files\Microsoft DPM\SQL\MSRS10.MSDPMV3BETA1EVAL\Reporting
    Services\ReportServer\rsreportserver.config
    2. Set the SecureConnectionLevel to 0 if the current value is 2 (A value to
    2 means secure connection is required)
    3. Connect to SQL reporting service configuration manager and connect to the
    instance MSDPMV3BETA1EVAL
    4. Click on Web Service URL, click advanced and remove SSL identities
    5. Repeat the above for Report Manager URL
    6. Make sure report manager URL and web service URL are accessible with out
    any errors.
    6. Restart report server
    If that doesn't solve the problem, please try following steps:
    1. Open Start-> All programs->SQL server 2008->Configuration Tools->Report
    Server Configuration Manager
    2. Connect to the instance which the DPM is using to install.
    3. Browse Report Manager URL and web service url
    4. If report manager URL or web service url throws any error say 500 or 404
    fix the error. (Try also replacing machine name with localhost in url)
    5. Otherwise delete DPMReports folder (if present) using below instructions
    6. Restart reporting services
    7. Try DPM setup again.
    Deleting DPM reports:
    1. Open report manager URL in IE
    2. Click show details on right hand side
    3. Put a tick against DPMReports folder
    4. Click Delete button.
    Regards, Trinadh [MSFT] This posting is provided AS IS with no warranties, and confers no rights. If you found the reply helpful, please MARK IT AS ANSWER. Looking for source of information for DPM? http://blogs.technet.com/b/dpm/ http://technet.microsoft.com/en-in/library/hh758173.aspx

  • Data Protection Manager Agent 2012 R2 install failing

    Executing: .\DPMAgentInstaller_x64.exe aura.ad.isillc.com
    I get the following console output:
    Installing agent and configure for dpmserver =[ad.isillc.com\AURA]
    DPMAgentInstaller failed with errorcode =0x80070648, error says: Unknown propert
    y.
    Check log files in [WINDIR]Temp\MSDPM*.LOG
    Press Enter key to close the window\\
    The output in the log file named MSDPMAgentBootstrap0Curr is this:
    0DD8 0DE4 11/23 23:42:53.667 06 installagent.cpp(155) NORMAL Agent installation started for dpmserver [aura.ad.isillc.com]
    0DD8 0DE4 11/23 23:42:53.686 06 bootstrapmsihelper.cpp(219) ACTIVITY The agent bootstrapper is doing prerequisite checks
    0DD8 0DE4 11/23 23:42:53.686 06 bootstrapmsihelper.cpp(1366) NORMAL OS version more than or equal to Win2K3SP2.
    0DD8 0DE4 11/23 23:42:53.686 06 bootstrapmsihelper.cpp(1397) NORMAL Querying for DPMRA with Upgrade code: {EFF053DE-592F-5574-9AA3-64662A944952}
    0DD8 0DE4 11/23 23:42:53.686 06 bootstrapmsihelper.cpp(1471) NORMAL Querying for DPMRA with product code: {6FA0CE18-E1AB-4CA2-B552-03D16516E174}
    0DD8 0DE4 11/23 23:42:53.686 06 bootstrapmsihelper.cpp(544) NORMAL KB975759 not appliicable.
    0DD8 0DE4 11/23 23:42:53.686 06 bootstrapmsihelper.cpp(564) ACTIVITY The agent bootstrapper is installing prerequisites
    0DD8 0DE4 11/23 23:42:53.686 06 bootstrapmsihelper.cpp(683) NORMAL There is an existing msxml6 product found
    0DD8 0DE4 11/23 23:42:53.687 06 bootstrapmsihelper.cpp(752) WARNING InstallMSXML method returned code = 230e360
    0DD8 0DE4 11/23 23:42:53.687 06 bootstrapmsihelper.cpp(607) WARNING InstallAgentPrereqs failed with errorcode=230e360
    0DD8 0DE4 11/23 23:42:53.687 06 bootstrapmsihelper.cpp(267) WARNING PerformAgentInstall failed with errorcode=230e360
    0DD8 0DE4 11/23 23:42:53.687 06 bootstrapmsihelper.cpp(171) WARNING InstallProtectionAgent failed with errorcode=230e360
    0DD8 0DE4 11/23 23:42:53.687 06 installagent.cpp(82) WARNING Failed: Hr: = [0x80070648] DPMAgentInstaller failed, error says: [Unknown property.
    0DD8 0DE4 11/23 23:42:53.687 06 installagent.cpp(82) WARNING ]
    0DD8 0DE4 11/23 23:42:56.812 06 bootstrapmsihelper.cpp(700) WARNING Failed: Hr: = [0x80070648] : Encountered Failure: : lVal : ret
    0DD8 0DE4 11/23 23:42:56.812 06 bootstrapmsihelper.cpp(574) WARNING Failed: Hr: = [0x80070648] : Encountered Failure: : lVal : hr
    0DD8 0DE4 11/23 23:42:56.812 06 bootstrapmsihelper.cpp(236) WARNING Failed: Hr: = [0x80070648] : Encountered Failure: : lVal : InstallAgentPrereqs(silent)
    0DD8 0DE4 11/23 23:42:56.812 06 bootstrapmsihelper.cpp(168) WARNING Failed: Hr: = [0x80070648] : Encountered Failure: : lVal : PerformAgentInstall(installargs, silent, skipKB)
    0DD8 0DE4 11/23 23:42:56.812 06 installagent.cpp(167) WARNING Failed: Hr: = [0x80070648] : Encountered Failure: : lVal : hrTemp
    That's pretty much all the information I have. I've tried disabling the Windows firewall as suggested elsewhere online. The OS installing into is Server 2012 R2. I've tried to install it into a number of different Server 2012 R2 boxes. They all get the same
    error.

    Hi,
    The last three DPM updates had code changes to the DPMFilter.sys driver which tracks block level changes for protected data sources.  The DPMFilter cannot be unloaded / patched and reloaded without loosing block level changes which would require a forced
    consistency check for all data sources.  The decision was made to require the reboot instead of forcing a consistency check for all data sources which could be more disruptive especially for multi-terabyte file servers. 
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • SCCM 2012 Client Install Failing ONLY on 8.1 Machines - Advice?

    Good morning,
    I've got a rather interesting situation.  We have a SCCM 2012 site configured for https, the site server is acting as the MP and DP, and we are installing the client via the SCCM 2012 Client GPO.  Our cert is an InCommon cert.  We have 4000+
    Windows 7 machines that are able to install the client.  We tested on a Window 8 machine and the client install works as well.  Whenever a Windows 8.1 machine tries to install it fails.  We have checked the boundaries (we can't specify IP ranges
    since we don't manage the whole network).  I can manually browse to the source files on the MP/DP.  The switches we use when installing via the GPO are /usepkicert /mp:[redacted] CCMHTTPSSTATE=63 SMSSITECODE=[redacted] SMSCACHESIZE=12288.  However,
    it always fails with:
    <![LOG[GetDPLocations failed with error 0x80004005]LOG]!><time="09:33:26.329+300" date="03-13-2015" component="ccmsetup" context="" type="3" thread="12944" file="siteinfo.cpp:532">
    <![LOG[Failed to get DP locations as the expected version from MP 'https://[redacted]'. Error 0x80004005]LOG]!><time="09:33:26.329+300" date="03-13-2015" component="ccmsetup" context="" type="2"
    thread="12944" file="ccmsetup.cpp:11261">
    <![LOG[Failed to find DP locations from MP 'https://[redacted]' with error 0x80004005, status code 403. Check next MP.]LOG]!><time="09:33:26.329+300" date="03-13-2015" component="ccmsetup" context="" type="2"
    thread="12944" file="ccmsetup.cpp:11117">
    <![LOG[Only one MP https://[redacted] is specified. Use it.]LOG]!><time="09:33:26.330+300" date="03-13-2015" component="ccmsetup" context="" type="1" thread="12944" file="ccmsetup.cpp:10080">
    <![LOG[Have already tried all MPs. Couldn't find DP locations.]LOG]!><time="09:33:26.330+300" date="03-13-2015" component="ccmsetup" context="" type="3" thread="12944" file="ccmsetup.cpp:11146">
    <![LOG[MapNLMCostDataToCCMCost() returning Cost 0x1]LOG]!><time="09:33:26.332+300" date="03-13-2015" component="ccmsetup" context="" type="1" thread="12944" file="ccmutillib.cpp:5479">
    <![LOG[GET 'https://[redacted]/CCM_Client/ccmsetup.cab']LOG]!><time="09:33:26.333+300" date="03-13-2015" component="ccmsetup" context="" type="1" thread="12944" file="httphelper.cpp:807">
    <![LOG[Failed to successfully complete WinHttp request. (StatusCode at WinHttpQueryHeaders: 403)]LOG]!><time="09:33:26.366+300" date="03-13-2015" component="ccmsetup" context="" type="3" thread="12944"
    file="httphelper.cpp:1013">
    <![LOG[DownloadFileByWinHTTP failed with error 0x80004005]LOG]!><time="09:33:26.366+300" date="03-13-2015" component="ccmsetup" context="" type="3" thread="12944" file="httphelper.cpp:1081">
    <![LOG[A Fallback Status Point has not been specified.  Message with STATEID='308' will not be sent.]LOG]!><time="09:33:26.367+300" date="03-13-2015" component="ccmsetup" context="" type="1"
    thread="12944" file="ccmsetup.cpp:9763">
    <![LOG['Configuration Manager Client Retry Task' is scheduled to run at 03/13/2015 02:33:26 PM (local) 03/13/2015 07:33:26 PM (UTC) time with arguments ' "/usepkicert" "/mp:[redacted]" "CCMHTTPSSTATE=63" "SMSSITECODE=AHC"
    "SMSCACHESIZE=12288" /RetryWinTask:1'.]LOG]!><time="09:33:26.369+300" date="03-13-2015" component="ccmsetup" context="" type="1" thread="10100" file="wintask.cpp:315">
    <![LOG[CcmSetup failed with error code 0x80004005]LOG]!><time="09:33:26.409+300" date="03-13-2015" component="ccmsetup" context="" type="1" thread="10100" file="ccmsetup.cpp:10879">
    Anyone have any idea why this is happening only on 8.1 machines?  I can't think of where else to check.  Thanks for any help.

    Okay, so I installed via the following:  ccmsetup.exe /usepkicert /source:C:\Client CCMHTTPSSTATE=63 SMSSITECODE=AHC SMSCACHESIZE=12288 and the client installed.  But you're right, the CCMMessaging.log is full of https errors.  I know it's
    something with the cert and I've even requested new ones from the CA.  However, why what is it about 8.1 that is causing the issues?  Like I said, we have 4000 machines using the same client authentication cert and they work.  I've cut and paste
    some of the log entries.  One thing to note is the \\[redacted]\sms_ahc\client\ccmsetup.exe in the beginning was using the internet FQDN.  Everything else is using the intranet location.  Does that provide any insight as to what is going
    on?
    \\[redacted]\sms_ahc\client\ccmsetup.exe /usepkicert /source:C:\Client CCMHTTPSSTATE=63 SMSSITECODE=AHC SMSCACHESIZE=12288
    <![LOG[Successfully sent security settings refresh message.]LOG]!><time="12:43:12.834+300" date="03-16-2015" component="CcmMessaging" context="" type="1" thread="5452" file="ccmhttperror.cpp:369">
    <![LOG[Successfully sent location services HTTPS failure message.]LOG]!><time="12:43:12.837+300" date="03-16-2015" component="CcmMessaging" context="" type="1" thread="5452" file="ccmhttperror.cpp:396">
    <![LOG[Post to https://[redacted]/ccm_system_windowsauth/request failed with 0x87d00231.]LOG]!><time="12:43:12.837+300" date="03-16-2015" component="CcmMessaging" context="" type="2" thread="5452"
    file="messagequeueproc_outgoing.cpp:442">
    <![LOG[[CCMHTTP] ERROR: URL=https://[redacted]/ccm_system_windowsauth/request, Port=443, Options=63, Code=0, Text=CCM_E_BAD_HTTP_STATUS_CODE]LOG]!><time="12:45:12.880+300" date="03-16-2015" component="CcmMessaging"
    context="" type="1" thread="5452" file="ccmhttperror.cpp:297">
    <![LOG[Raising event:
    instance of CCM_CcmHttp_Status
    DateTime = "20150316174512.883000+000";
    HostName = "[redacted]";
    HRESULT = "0x87d0027e";
    ProcessID = 8572;
    StatusCode = 403;
    ThreadID = 5452;
    ]LOG]!><time="12:45:12.883+300" date="03-16-2015" component="CcmMessaging" context="" type="1" thread="5452" file="event.cpp:715">
    <![LOG[Successfully sent security settings refresh message.]LOG]!><time="12:45:12.889+300" date="03-16-2015" component="CcmMessaging" context="" type="1" thread="5452" file="ccmhttperror.cpp:369">
    <![LOG[Successfully sent location services HTTPS failure message.]LOG]!><time="12:45:12.892+300" date="03-16-2015" component="CcmMessaging" context="" type="1" thread="5452" file="ccmhttperror.cpp:396">
    <![LOG[Post to https://[redacted]/ccm_system_windowsauth/request failed with 0x87d00231.]LOG]!><time="12:45:12.892+300" date="03-16-2015" component="CcmMessaging" context="" type="2" thread="5452"
    file="messagequeueproc_outgoing.cpp:442">

  • SCCM 2012 SP1 Install fails at splash screen: Failed to create process of setupWpf.exe

    Hello,
    I can't seem to get past the initial install screen. When I click install I receive what is shown in the screen shot. The error in question is "Failed to create process of SetupWpf.exe" This is what I get after i click install. The error above
    that one "WinHttpReceiveresponse failed 80072ee7" is what I get when I tried to download the latest updates from the splash screen. It was on like update 44 of 56 when it failed but I am not sure I need to pursue that one. I cant even get the insall
    going.
    Phil Balderos

    I am also having the same issue..
    I can start the sccm 2012 installation piror to installing SQL 2012 SP1. Once SQL installation is complete, and try to install sccm 2012 -> issue occur. Is this a sql issue, or a sccm 2012 issue.. I have download the SQL 2012 and SCCM 2012 FROM MS
    twics.. I have rebuilt my lab twice already ...
    Any help, not sure what step I am missing....
    Hello Yuyut,
    This issue is related to CM12 (not nessarly a widly known issue) perhaps something with the ISO. The copy I was using was from our MSDN subscription which kept failing. I downloaded it twice and still same issue. Since  I am setting this up as a lab
    for testing purposes I just ended up downloaded the 180 day evaluation and has worked for me so far. So again this is not related to SQL as I have noticed.
    Thorsten did mention on this thred that I should check permissons of the account I was trying to install it from. That was not my issue but you could give that a look also.
    Phil
    Phil Balderos

  • Upgrading pacman after a fresh install failed

    Recently I installed Arch Linux on my machine. I was following a few "after install" instructions. When I did,
    #pacman -S pacman
    I got the following errors.
    error: failed to commit transaction (conflicting files)
    glibc: /usr/bin/tzselect exists in filesystem
    glibc: /usr/sbin/zdump exists in filesystem
    glibc: /usr/sbin/zic exists in filesystem
    Errors occurred, no packages were upgraded.
    How to proceed from here?
    Thanks.

    https://bbs.archlinux.org/viewtopic.php … 4#p1082344

  • ProClarity 6.3 PAS install fails on Windows Server 2012

    We are trying to install PAS 6.3 on Windows Server 2012 and the install fails with the following error
    The following requirements are missing:
    Windows Server 2003 SP1
    We have successfully installed on Windows Server 2008 R2, so it really isn't a Windows Server 2003 SP1 issue.
    Has anyone successfully installed on Windows Server 2012?  Is there a way to force the installer not to check for the OS?
    Thanks.
    Kevin

    I have a PAS server running in Windows 2012, by doing exactly the same pre-requisites  that you do in Windows 2008 r2 (iis, Framework, SQL ADO 2005 / 2008). With the Windows Server 2003 SP1 message you can avoid it by doing a really simple thing that
    is right click the setup file --> properties, and head to the "Compatibility Tab" and run it with compatibility mode Windows 7, also run it with Admin permissions. This let you pass by the message and let you install the product.  Remember, after  the
    installation, you need to check all the IIS config, folder permissions, that you did in Windows 2008 x64  installation. Also, the App pool needs to work with .NET 2.0 not 4.0. 
    Good luck! 
    Byron
    BNavas

  • Fresh install of Server 2012 R2 causes inaccessible boot device on first Reboot

    Hello Everyone, 
    Doing a fresh install of Windows Server 2012 R2 on a SuperMicro X9DRT-HF+ motherboard based server. The server is using iSCSI boot, setup detects the iSCSI disk and copies its files, finishes the "Getting files ready for installation" "Installing
    Updates" phase, reboots, takes a while and eventually gives a Blue screen with Inaccessible Boot Device error. I have tried some changing options in the BIOS, I've had Nimble (storage array) support on the phone and they confirmed the setup is correct
    but for some reason after the first reboot Windows can no longer find its install files and gives a BSOD.
    Additional Information: 
    Server: SuperMicro X9DRT-HF+ (no internal disk)
    Storage: iSCSI disk provided from Nimble CS220 Array
    Windows 2008 R2 Server installation will proceed without any problems.
    I checked the \Windows\Panther\Setupact.log / CBS.log file and there doesn't seem to be anything indicating a problem. 
    I have googled a number of times to find solutions but most articles reference a similar problem after installing a particular KB (which shouldn't be the case here). Need some help :) 

    Hey Tim,
    Thanks for your reply, since the start of this post I have also installed MDT to try a different approach to installing the OS. Using MDT I have injected the Intel I350 driver into the installation so it should be restarting with the driver loaded.
    The odd thing is that when the server reboots the Windows startup screen loads for about 4 minutes before it gives the INACCESSIBLE_BOOT_DEVICE error. This would indicate to me that it sees the disk and tries to boot from it but then something goes wrong.
    Other than the \Windows\Panther location is there another place I should be looking for log files during this part of the Windows install? I have reviewed all the locations listed under the TechNet library article "hh824819" (I can't post
    a link to the article but a google search brings it up) but I can't seem to find a log of when the server crashes what it is doing at that point.

  • Fresh Install of Windows 8.1 on rMBP mid 2012

    Seeing how there are issues about bootcamp and windows 8.1, anyone know if a fresh install of Windows 8.1 (non-pro) will work on a rMBP mid 2012 model using the usual bootcamp instructions? Or will I have to do a workaround to get it installed?

    That is what I fear. I've heard issues about installing windows 8.1 directly (though most seem to be about the 2013 MBPs, unsure of my model), and considering it's impossible for me to get a copy of windows 8 and upgrade through the store (the optimal solution) now, I'm left with installing 8.1 right from the get-go. Anyone else have success/experience going through the 8.1 route on 2012 MBPs?

  • Can I upgrade from DreamSpark to an open License Version of WS 2012 R2 Standard without a fresh install?

    Hi. I have a working copy of a WS2012R2 which came from a DreamSpark channel. My Needs have changed and I have purchased on Open License of the Windows Server 2012 R2 Standard. Is there a way to use the product Key to "change" the channel of
    the already installed software without doing a fresh install? Do I have to (or Should I) scrap the DreamSpark version and reinstall everything?  The functionality that is missing for me in DreamSpark is Remote Desktop Services for which I have Open Licenses
    which obviously are non functional under DreamSpark software. Called MS Open Licensing toll free and they require a $300 incident fee to answer this question. I neither have an issue un-installing the software nor installing a fresh version. I just have a
    Licensing question. Thanks Sam

    Sounds like you called a support line, not a licensing line.  I've never heard of Microsoft asking a fee to answer a question about licensing.
    Never played with Dreamspark media, but this is how it is done for other media that can activated with a different key.
    From an elevated command prompt:
    slmgr /ckms
    slmgr /upk
    slmgr /ipk <PRODUCT KEY>
    slmgr /ato
    .:|:.:|:. tim

Maybe you are looking for

  • Songs skipping like a scratched CD

    A few songs on my iPod nano are skipping like a scratched CD would skip: always in the same place, making that annoying stuttering sound. They work fine in iTunes, so I figured removing that particular playlist from my iPod, syncing, then re-adding t

  • My 5th Gen iPod Touch isn't connecting right

    I just bought this iPod a few hours ago. I have been trying to connect it to my iTunes via the USB cable I was given. When I plug it in, my computer recognizes that it was plugged in, but iTunes doesn't show that I have an iPod. I tried to find an an

  • Get a Script error when trying to print

    I installed originally my HP LaserJet 1018 on Windows XP. Later on I downloaded the print drivers from the HP support site for Windows 7 Professional ( not sure if it's 32 or 64 bit). The print function does work from within Word 2007 but not in Inte

  • Exporting a PDF to HTML without OCR

    Hi All, I am using Adobe Acrobat X to export PDFs to HTML files. It looks like the HTML conversion runs an OCR process on the document before the HTML page is written. This is resulting in a lot of images not showing properly because the OCR process

  • How do I exit or eliminate the album cover screen in the music player?

    THe music app on iPhone6 has a screen with pictures of album covers of the music on the phone.  Once that screen appears how do I exit that screen to control the music?  Better eliminate that screen altogether as it seems useless.