从PowerShell挂起或休眠

时间:2013-12-20 23:55:50

标签: .net windows powershell

我对使用Windows PowerShell暂停或休眠计算机感兴趣。你是如何实现这一目标的?

我已经知道Stop-ComputerRestart-Computer cmdlet,这些cmdlet包含在开箱即用的内容中,但这些cmdlet并不能实现我所追求的功能。

4 个答案:

答案 0 :(得分:27)

您可以使用SetSuspendState类上的System.Windows.Forms.Application方法来实现此目的。 SetSuspendState方法是一种静态方法。

[MSDN] SetSuspendState

有三个参数:

  • 国家[System.Windows.Forms.PowerState]
  • 强制[bool]
  • disableWakeEvent [bool]

调用SetSuspendState方法:

# 1. Define the power state you wish to set, from the
#    System.Windows.Forms.PowerState enumeration.
$PowerState = [System.Windows.Forms.PowerState]::Suspend;

# 2. Choose whether or not to force the power state
$Force = $false;

# 3. Choose whether or not to disable wake capabilities
$DisableWake = $false;

# Set the power state
[System.Windows.Forms.Application]::SetSuspendState($PowerState, $Force, $DisableWake);

将其置于更完整的功能可能如下所示:

function Set-PowerState {
    [CmdletBinding()]
    param (
          [System.Windows.Forms.PowerState] $PowerState = [System.Windows.Forms.PowerState]::Suspend
        , [switch] $DisableWake
        , [switch] $Force
    )

    begin {
        Write-Verbose -Message 'Executing Begin block';

        if (!$DisableWake) { $DisableWake = $false; };
        if (!$Force) { $Force = $false; };

        Write-Verbose -Message ('Force is: {0}' -f $Force);
        Write-Verbose -Message ('DisableWake is: {0}' -f $DisableWake);
    }

    process {
        Write-Verbose -Message 'Executing Process block';
        try {
            $Result = [System.Windows.Forms.Application]::SetSuspendState($PowerState, $Force, $DisableWake);
        }
        catch {
            Write-Error -Exception $_;
        }
    }

    end {
        Write-Verbose -Message 'Executing End block';
    }
}

# Call the function
Set-PowerState -PowerState Hibernate -DisableWake -Force;

注意:在我的测试中,-DisableWake选项没有发现我所知道的任何明显区别。即使此参数设置为$true,我仍然能够使用键盘和鼠标唤醒计算机。

答案 1 :(得分:14)

希望你发现这些有用。

关闭%windir%\System32\shutdown.exe -s

重新启动%windir%\System32\shutdown.exe -r

注销%windir%\System32\shutdown.exe -l

待机%windir%\System32\rundll32.exe powrprof.dll,SetSuspendState Standby

休眠%windir%\System32\rundll32.exe powrprof.dll,SetSuspendState Hibernate

编辑: 正如@mica评论中指出的那样,暂停(睡眠)实际上已经休眠了。显然,这发生在Windows 8及更高版本中。要“睡眠”,禁用休眠或获取外部Microsoft工具(不是内置的) “微软的Sysinternals工具之一是PsShutdown使用命令psshutdown -d -t 0它将正确睡眠,而不是休眠,一台电脑” 资料来源:https://superuser.com/questions/42124/how-can-i-put-the-computer-to-sleep-from-command-prompt-run-menu

答案 2 :(得分:6)

我在C:\ Windows \ System32

中使用关闭可执行文件
shutdown.exe /h

答案 3 :(得分:0)

我尝试将其减少到单线,但出现错误。这是我的解决方案:

[Void][System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") 
[System.Windows.Forms.Application]::SetSuspendState("Hibernate", $false, $false);