765058729 发表于 2022-7-23 23:05:04

32位程序在64位运行会出现这个问题,加一行
DllCall("kernel32.dll", "int", "Wow64DisableWow64FsRedirection", "int", 1)

holley 发表于 2022-7-24 15:56:44

13gu 发表于 2022-7-23 17:41
老大,你试了么,我运行后会弹库文件夹,同时不会再运行explorer.exe

改成这样即可:
SplashTextOn('温馨提示', '正在结束 explorer 请稍候…', 300, 50)
Do
        Run(@ComSpec & ' /c taskkill /f /im explorer.exe', '', @SW_HIDE)
        Sleep(500)
Until Not ProcessExists('explorer.exe')
SplashOff()
ShellExecute('explorer.exe')
Exithttps://cdn.jsdelivr.net/gh/master-of-forums/master-of-forums/public/images/patch.gif

13gu 发表于 2022-7-24 20:43:36

谢谢各位大佬
页: 1 [2]
查看完整版本: 【已解决】explorer.exe结束再运行问题