写一段用excel内用vba代码重启资源管理器的代码
Sub RestartExplorer() Dim shell As Object Set shell = CreateObject("WScript.Shell") shell.Run "taskkill /f /im explorer.exe", , True shell.Run "explorer.exe", , True End Sub
原文地址: https://www.cveoy.top/t/topic/bb4O 著作权归作者所有。请勿转载和采集!