downgrade cluster functional level

After doing some research, it looks like you can’t downgrade cluster functional levels, nor can you live migrate instances from 2016 to 2012 anyways. I would suggest using server 2016 instead of a 2012 to get this job done. You’d have to put a lot of work into using the wrong tool for the job … Read more

MTTF, MTBF, MTBR and MTBF for HP ProLiant Gen9

Don’t worry about the MTTF, MTBF, MTBR and MTBF figures… why would those apply to the specifics of your environment? The servers have internal redundancies and can be extremely stable in production. But that depends on your environment, the disk array/composition, types of disks, RAM quantity, CPU configuration, thermal characteristics, power, etc. Employing some form … Read more

Hyper-V Manager – How do I Connect to Hyper-V Server using different credentials

Add the target account credentials to the Windows Credential Manager from the command line and try reconnecting: cmdkey /add:TARGET /user:TARGET\USER /pass Where TARGET is the remote Hyper-V host name and USER is the username added as an Administrator to the Hyper-V server. As an aside, after having struggled with this configuration myself, I highly recommend … Read more

How can I disable “Use automatic checkpoints” for new Hyper-V VM’s on Windows 10? [closed]

From a helpful fellow commenting at https://blogs.technet.microsoft.com/virtualization/2017/04/20/making-it-easier-to-revert/: Set-VM -Name MyVM -AutomaticCheckpointsEnabled $false will tell Hyper-V on Windows 10 not to use automatic checkpoints for that virtual machine only. I’m still not aware of a way to tell the Windows 10 Hyper-V host not to set that option on new VM’s, but at least we have … Read more