我在同一个 LAN 中有几个工作站和一个 Windows Server 2008 R2。工作站显示在服务器的 Active Directory 中。当它们关闭时,有没有办法从服务器手动唤醒它们?
答案1
如果工作站已设置 WOL,则可以使用 Powershell 从服务器发送局域网唤醒魔术包。如果需要,还可以通过 Windows 任务计划程序运行脚本,在特定时间唤醒工作站。
下面是一个示例脚本: http://gallery.technet.microsoft.com/scriptcenter/Send-WOL-packet-using-0638be7b
用法:
Send-WOL -mac 00:11:32:21:2D:11 -ip 192.168.8.255 -port 7
脚本:
function Send-WOL
{
<#
.SYNOPSIS
Send a WOL packet to a broadcast address
.PARAMETER mac
The MAC address of the device that need to wake up
.PARAMETER ip
The IP address where the WOL packet will be sent to
.EXAMPLE
Send-WOL -mac 00:11:32:21:2D:11 -ip 192.168.8.255
#>
param(
[string]$mac,
[string]$ip,
[int]$port=9
)
$broadcast = [Net.IPAddress]::Parse($ip)
$mac=(($mac.replace(":","")).replace("-","")).replace(".","")
$target=0,2,4,6,8,10 | % {[convert]::ToByte($mac.substring($_,2),16)}
$packet = (,[byte]255 * 6) + ($target * 16)
$UDPclient = new-Object System.Net.Sockets.UdpClient
$UDPclient.Connect($broadcast,$port)
[void]$UDPclient.Send($packet, 102)
}
答案2
我可以想到一些商业产品可以做到这一点 - 包括 Deep Freeze Enterprise 和 Altiris Deployment Solution - 但我不知道 Active Directory 用户和计算机中是否内置了此类功能。在购买新产品之前,请检查您已拥有的软件是否具有此功能。