vba如何实现先退出excel,再休眠

我是这么写
shell "shutdown -h"
application.quit
但dos命令shutdown -h无法延时执行,所以理论上可能电脑直接休眠,导致quit方法没来得及执行

调用
shutdown -h -t 60
延迟60秒。