构建 visual studio 后关闭 windows
Shutdown windows after build visual studio
我想让我的电脑在一夜之间构建大型项目(比如 Unreal Engine)
但我不希望我的电脑整晚都开着。现在制作一个关机计时器真的不可靠,所以我想知道是否有办法在我的 C++ 构建完成后 windows visual studio 关闭。
提前致谢!
问候,
乔乔皮
通过运行设置自动关机。
如果您知道项目构建需要多长时间(只是高估了猜测),此方法可以解决您的问题:
Open Run by Windows+R, type shutdown –s –t number and tap OK.
运行命令中的数字代表秒的数值。比如你想让你的电脑在10分钟后自动关机,输入的命令是shutdown –s –t 600。完成这个设置后,系统会提示你自动关机的时间。
*您也可以通过命令提示符或 Windows Powershell 完成此操作:
Type shutdown –s –t 1200 (i.e. 20 minutes) and press Enter.
使用任务计划程序工具(内置 Windows)。
如果您不想猜测构建需要多长时间,此工具提供了在记录特定事件时关闭的选项。
"Create a basic task" > type "Shutdown" as the task name (click Next) > Choose when the task starts (One time), you can also choose "when a specific event is logged" (click Next) > Set the start time of the task (click Next) > Select Start a program (click Next) > Click the Browse button, open Disk C/Windows/System32
, choose the .exe
file named "shutdown" (click Open) > Enter –s as the argument (click Next) > Click Finish to complete the task creation and bring the task into effect.
不要在Visual Studio.
中进行构建
编写一个批处理文件,(1) 调用 msbuild
或 devenv
,以及 (2) 调用 shutdown
.
我想让我的电脑在一夜之间构建大型项目(比如 Unreal Engine) 但我不希望我的电脑整晚都开着。现在制作一个关机计时器真的不可靠,所以我想知道是否有办法在我的 C++ 构建完成后 windows visual studio 关闭。
提前致谢! 问候, 乔乔皮
通过运行设置自动关机。
如果您知道项目构建需要多长时间(只是高估了猜测),此方法可以解决您的问题:
Open Run by Windows+R, type shutdown –s –t number and tap OK.
运行命令中的数字代表秒的数值。比如你想让你的电脑在10分钟后自动关机,输入的命令是shutdown –s –t 600。完成这个设置后,系统会提示你自动关机的时间。
*您也可以通过命令提示符或 Windows Powershell 完成此操作:
Type shutdown –s –t 1200 (i.e. 20 minutes) and press Enter.
使用任务计划程序工具(内置 Windows)。
如果您不想猜测构建需要多长时间,此工具提供了在记录特定事件时关闭的选项。
"Create a basic task" > type "Shutdown" as the task name (click Next) > Choose when the task starts (One time), you can also choose "when a specific event is logged" (click Next) > Set the start time of the task (click Next) > Select Start a program (click Next) > Click the Browse button, open Disk
C/Windows/System32
, choose the.exe
file named "shutdown" (click Open) > Enter –s as the argument (click Next) > Click Finish to complete the task creation and bring the task into effect.
不要在Visual Studio.
中进行构建编写一个批处理文件,(1) 调用 msbuild
或 devenv
,以及 (2) 调用 shutdown
.