Category: System Center

Cloud System Center Virtualization Windows Windows Server

SCVMM Error 2912 “The configuration registry database is corrupt (0x800703F1)”

Reading Time: < 1 minuteI recently spun up a new SCVMM environment, created my first VM, and attempted to create a template only to be faced with a job error. Error (2912) An internal error has occurred trying to contact the Host01 server: : . WinRM: URL: [http://Host01.lab.local:5985], Verb: [INVOKE], Method: [LoadSubkey], Resource: [http://schemas.microsoft.com/wbem/wsman/1/wmi/root/scvmm/P2VSourceFixup?RegFileName=C:\Users\SVC_VMM\AppData\Local\Temp\tmp6AB5.tmp] The configuration registry database is […]

Matt Hansen 
System Center Windows Server

SCCM 2012 R2 Reinstall Fails – Configuration Manager Requires a Dedicated SQL Server Instance

Reading Time: < 1 minuteRecently I had to reinstall an SCCM 2012 R2 instance, and came across a strange error when I ran the Prerequisite Check. Dedicated SQL Server instance: Configuration Manager requires a dedicated SQL Server instance to host the site database. You selected the SQL Server instance that site hosts the Configuration Manager database for another site. […]

Matt Hansen 
Scripting System Center

Powershell Script to check if SQL is Installed

Reading Time: < 1 minuteHere we go, short but sweet. I had to come up with this today when working with a SQL Server compliance item in SCCM 2012 using a script detection method. I’ve added the else back in, but you can modify however you need. if (Test-Path “HKLM:\Software\Microsoft\Microsoft SQL Server\Instance Names\SQL”) { write-host “True” } Else { […]

Matt Hansen 
Networking System Center Virtualization Windows Windows Server

Server 2012 R2 “does not have a network adapter available to create a virtual switch” when configuring VDI

Reading Time: 2 minutesI recently ran into this issue when doing an all-in-one VDI install, on top of a server that had been used for other things in the past. The “quick start” VDI option is supposed to essentially do everything for you, but I ran into this issue. “The Server does not have a network adapter available […]

Matt Hansen