Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些 VBA 代码需要几个小时才能运行。完成代码后,我希望 Windows 7(64 位专业版)进入 SLEEP。
最后我可以使用什么 VBA 代码来实现这一点?
如果我错了,请纠正我,但我不知道在 vba 中本地执行此操作的方法。通常对于这类事情,我会在互联网上搜索在命令提示符下执行此操作的方法,然后让我的 vba 运行命令行脚本。
果然,这里解释了如何通过命令行关闭/休眠。
https://superuser.com/questions/42124/how-can-i-put-the-computer-to-sleep-from-command-prompt-run-menu
您会在网上找到许多从 vba 运行命令行脚本的示例,您可以使用这些示例来执行这些命令。最基本的,是这样的:
shell "notepad.exe"