會員註冊 / 登入  |  電腦版  |  Jump to bottom of page

Windows Server » 使用命令列遠端重開別台Windows主機

發表人: andowson, 七段學員
2009-10-08 19:20:02
如果遇到遠端桌面被佔滿而無法登入時,可以透過命列列方式遠端重起Windows主機

net use \\遠端ip位址 /user:administrator password
shutdown -m \\\\遠端ip位址 -r -f -t 3

net use的使用說明:

NET USE

[devicename | *] [\\computername\sharename[\volume] [password | *]]
[/USER:[domainname\]username]
[/USER:[dotted domain name\]username]
[/USER:[username@dotted domain name]
[/SMARTCARD]
[/SAVECRED]
[[/DELETE] | [/PERSISTENT:{YES | NO}]]

NET USE {devicename | *} [password | *] /HOME

NET USE [/PERSISTENT:{YES | NO}]


shutdown的使用方式說明
使用方式: shutdown [-i | -l | -s | -r | -a] [-f] [-m \\computername] [-t xx] [-c

"comment"] [-d up:xx:yy]

沒有引數 顯示這個訊息 (和 -? 相同)
-i 顯示 GUI 介面,必須是第一個選項
-l 登出 (不能和 -m 選項一起使用)
-s 電腦關機
-r 關機並重新啟動電腦
-a 中止系統關機
-m \\\\computername 從遠端進行關機/重新啟動/中止
-t xx 將關機等候時間設定成 xx 秒
-c "comment" 關機註解 (最多 127 個字元)
-f 強制關閉執行中的應用程式,不顯示警告
-d [u][p]:xx:yy 關機原因代碼
u 是使用者代碼
p 是預先計劃的關機代碼
xx 是主要原因代碼 (小於 256 的正整數)
yy 是次要原因代碼 (小於 65536 的正整數)

參考資料:
http://blog.roodo.com/horoyang/archives/8606387.html




會員註冊 / 登入  |  電腦版  |  Jump to top of page