Hyper-V Failover Cluster

M_M 21 Reputation points
2021-09-30T14:20:42.743+00:00

Hi

A Windows Server 2016 Datacenter VM in a 2016 Hyper-V Failover Cluster.
I get the following error when changing the VM priority from 'High' to 'Medium'.
'Failed to execute control code '54526046'. For more data, see 'Information details'.
There is no further information in 'Information Details'.
I can't find a resolution to this.
Any help appreciated.

Hyper-V
Hyper-V
A Windows technology providing a hypervisor-based virtualization solution enabling customers to consolidate workloads onto a single server.
2,556 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Limitless Technology 39,391 Reputation points
    2021-10-01T09:43:39.637+00:00

    Hello @M_M ,

    This error appears when the operation tries to access the disk and there is some conflict:

    • there is not enough free space in host storage to proceed with the operation
    • the disk / volume / file system is locked or protected by some running process
    • User running the operation lacks permission over the host storage

    Have you tried using Powershell and run-as with an elevated account?

    Check priority: ​Get-ClusterGroup | Where-Object {$_.GroupType -eq "VirtualMachine"} | Select-Object Name, Priority
    Set priority: (Get-ClusterGroup VM01).Priority=xxxx
    settings:
    High (3000)
    Medium (2000): The default setting
    Low (1000)
    No Auto Start (0)

    Hope this helps with your query,

    -----------------------------------------------------------------------------------------------------------------------

    --If the reply is helpful, please Upvote and Accept as answer--

    1 person found this answer helpful.

  2. M_M 21 Reputation points
    2021-09-30T14:36:01.4+00:00

    Actually, there is a little more information in 'Information Details'.

    Error
    The operation has failed.
    Failed to execute control code '54526046'.

    Error Code: 0x80070057
    The parameter is incorrect

    0 comments No comments