VBA 代码重启资源管理器
Sub RestartExplorer() Dim objShell As Object Set objShell = CreateObject('WScript.Shell') objShell.Run 'taskkill /f /im explorer.exe', 0, True objShell.Run 'explorer.exe', 0, False End Sub
原文地址: https://www.cveoy.top/t/topic/mEDq 著作权归作者所有。请勿转载和采集!