无忧启动论坛

标题: 共享冲突 [打印本页]

作者: wenbieba    时间: 2024-6-25 20:07
标题: 共享冲突
本帖最后由 wenbieba 于 2024-6-25 20:12 编辑

用命令复制文件,提示共享冲突,复制替换失败,先删除后复制也提示共享冲突,
echo f|xcopy /E /S /Q /Y  "%CD%\*.dll" "%ProgramFiles%\7-zip\"


大神指点



设置[url=]🔗 链接助手[/url]

其他扩展🏷️ 小鱼标签 (UTags) - 为链接添加用户标签
V2EX.REP - 专注提升 V2EX 主题回复浏览体验
v2ex.min - V2EX 极简风格
赐你个头像吧





作者: 1801403    时间: 2024-6-25 20:24
应该是有文件在使用中...
作者: wenbieba    时间: 2024-6-25 20:37
1801403 发表于 2024-6-25 20:24
应该是有文件在使用中...

没使用,已终止进程
作者: 1G空间100元    时间: 2024-6-25 20:48
没见过这样的错误
作者: wenbieba    时间: 2024-6-25 20:53
1801403 发表于 2024-6-25 20:24
应该是有文件在使用中...

7-zip.dll怎么结束进程
作者: magicgenius    时间: 2024-6-25 21:02
试一下
该行之前添加
taskkill /f /im explorer.exe
该行之后添加
start "" explorer.exe

作者: yyz2191958    时间: 2024-6-25 21:07
wenbieba 发表于 2024-6-25 20:53
7-zip.dll怎么结束进程

注册反注册dll:
注册dll
regsvr32.exe  dll的名字
反注册dll
regsvr32 /u  dll的名字
作者: wenbieba    时间: 2024-6-25 21:09
magicgenius 发表于 2024-6-25 21:02
试一下
该行之前添加
taskkill /f /im explorer.exe

不行,结束7z进程是taskkill /f /im 7zFM.exe吗设置[url=]🔗 链接助手[/url]

其他扩展🏷️ 小鱼标签 (UTags) - 为链接添加用户标签
V2EX.REP - 专注提升 V2EX 主题回复浏览体验
v2ex.min - V2EX 极简风格
赐你个头像吧





作者: magicgenius    时间: 2024-6-25 21:39
wenbieba 发表于 2024-6-25 21:09
不行,结束7z进程是taskkill /f /im 7zFM.exe吗设置🔗 链接助手

其他扩展🏷️ 小 ...

直接替换安装程序文件得了……
你上传dll文件,我来给你打包……
作者: wenbieba    时间: 2024-6-25 21:56
magicgenius 发表于 2024-6-25 21:39
直接替换安装程序文件得了……
你上传dll文件,我来给你打包……

谢谢,解压替换了
作者: 9zhmke    时间: 2024-6-25 22:40
由于7z有右键菜单关联,所以dll一直处于运行状态,有工具软件的话,可以剥离,没有工具,可以直接把老的7-zip文件夹更名后再新建一个,就不会存在无法覆盖的问题了。
作者: cnerp    时间: 2024-8-21 19:39
本帖最后由 cnerp 于 2024-8-21 20:07 编辑

Title 正在卸载7-ZIP……

rem mode con cols=40 lines=5
color 1f

if not exist "%ProgramFiles%\7-Zip\7-Zip.dll" goto run
taskkill /f /im explorer.exe
taskkill /fi "modules eq explorer.exe" /f
rd/s/q "%ProgramFiles%\7-Zip"

if exist %windir%\Rexplorer.exe (
        start "" "%windir%\Rexplorer.exe"
) else (
        start "" "%windir%\explorer.exe"
)

goto exit

:run
rd/s/q "%ProgramFiles%\7-Zip"
rd/s/q "%ProgramData%\Microsoft\Windows\Start Menu\Programs\7-Zip"
rd/s/q "C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\7-Zip"

:exit
reg delete "HKEY_CURRENT_USER\Software\7-Zip" /f >NUL 2>NUL
reg delete "HKEY_CURRENT_USER\Software\IvoSoft\ClassicStartMenu"  /f >NUL 2>NUL
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\7-Zip"  /f >NUL 2>NUL
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{23170F69-40C1-278A-1000-000100020000}"  /f >NUL 2>NUL


echo 卸载成功!

rem pause





欢迎光临 无忧启动论坛 (http://bbs.wuyou.net./) Powered by Discuz! X3.3