web-dev-qa-db-ja.com

Hyper-Vの役割を持つWindows Server 2012で休止状態を有効にする方法は?

Windows Server 2012をラップトップにインストールしています。特にサーバーエディションでテストする必要があるソフトウェアを開発しているため、serverが必要です。のドキュメント Windows Server 2012によると

Hyper-Vの役割がインストールされている場合、スリープと休止状態は無効になりません。

この変更はどのような価値をもたらしますか?

Hyper-Vを実行しているコンピューターは、スリープモードまたは休止状態モードにすることができます。これは、ラップトップコンピュータでHyper-Vを実行しているユーザーに特に役立ちます。

質問

Hyper-Vの役割を持つWindows Server 2012で休止状態を有効にする方法は?

私が試したもの

  • hvboot のレジストリを変更します。レジストリにhvbootフォルダがなかったため、手動で追加して再起動しました

    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\hvboot]
    "Start"=dword:00000003
    

    無効。

  • デスクトップ上でAlt + F4を押すと、スリープまたは休止状態が利用できなくなります

shut down options

  • service.msc(これはC:\ Windows\system32\vmms.exeを指します)でHyper-V仮想マシン管理サービスを停止します。他のすべてのHyper-Vサービスはデフォルトで停止されました。

  • 管理者として実行

    powercfg.exe /hibernate on
    

    これは出力です

    Microsoft Windows [Version 6.2.9200]
    (c) 2012 Microsoft Corporation. All rights reserved.
    
    C:\Windows\system32>powercfg.exe /hibernate on
    Hibernation failed with the following error: The request is not supported.
    
    The following items are preventing hibernation on this system.
            An internal system component has disabled hibernation.
                    Hypervisor
    
    C:\Windows\system32>powercfg.exe /a
    The following sleep states are not available on this system:
        Standby (S1)
            The system firmware does not support this standby state.
            An internal system component has disabled this standby state.
                    Hypervisor
    
        Standby (S2)
            The system firmware does not support this standby state.
            An internal system component has disabled this standby state.
                    Hypervisor
    
        Standby (S3)
            An internal system component has disabled this standby state.
                    Hypervisor
    
        Hibernate
            An internal system component has disabled hibernation.
                    Hypervisor
    
        Standby (Connected)
            The hypervisor does not support this standby state.
            The system firmware does not support this standby state.
    
        Hybrid Sleep
            Standby (S3) is not available.
            Hibernation is not available.
            The hypervisor does not support this standby state.
    
        Fast Startup
            Hibernation is not available.
    
    
    C:\Windows\system32>
    
5
oleksii

リンクした記事に誤りがあります。これは、2012R2の一部になる予定の機能です。記事のそのセクションには、R2を必要とするラベルを付ける必要があります。

3
longneck