当我在 Windows 2008 服务器上时,如何通过 CMD 向其他用户发送消息?
我通常会这样做shutdown -r -t 30
,但是如何向该命令添加文本?
答案1
shutdown -r -t 30 -c "This system is shutting down in 30 seconds.."
将-c "text"
在显示窗口添加一条注释,通知其他用户关机事宜。
对于 Unix,语法为shutdown -r -t 30 "This system is shutting down in 30 seconds..
“