标题: [文件操作] 批处理PsExec64.exe 调用 .lnk 快捷方式提示命令不正确 [打印本页]
作者: tiandyoin 时间: 2024-9-25 11:53 标题: 批处理PsExec64.exe 调用 .lnk 快捷方式提示命令不正确
- @echo off
-
- set "app=%~1"
- if "L%app%"=="L" set /p app=请输入命令行:
-
- :: 去除双引号
- set app| findstr /i /r "^app=\".*\"$" > nul && set "app=%app:~1,-1%"
-
- if /i "%app:~-4%"==".lnk" (
- set "app=C:\Windows\System32\cmd.exe /c ""%app%"" " &set app&pause)
-
- "c:\Sysinternals\PsExec64.exe" -d -i -s "%app%"
-
- @goto eof
复制代码
为什么使用 PsExec64 调用快捷方式,需要 在调用前加 pause, 否则总是提示命令不正确?
作者: 77七 时间: 2024-9-25 15:02
- @echo off
- if "%~1" neq "" (
- set app=%~1
- ) else (
- set /p app=input:
- )
- for /f "delims=" %%i in ("%app%") do (
- if /i "%%~xi" equ ".lnk" (
- "c:\Sysinternals\PsExec64.exe" -d -i -s "C:\Windows\System32\cmd.exe /c ""%%~i"""
- )
- )
- pause
复制代码
作者: tiandyoin 时间: 2024-10-3 09:49
本帖最后由 tiandyoin 于 2024-10-3 10:31 编辑
回复 2# 77七 - "c:\Sysinternals\PsExec64.exe" -d -i -s "C:\Windows\System32\cmd.exe" /c "%%~i"
复制代码
PsExec64.exe 要执行的命令必须是路径,不能带参数.
但这样一来,似乎被解析为 3 个参数, 第二个参数 /C 不起作用
作者: 77七 时间: 2024-10-3 12:18
回复 3# tiandyoin
- "c:\Sysinternals\PsExec64.exe" -d -i -s "%%~i"
复制代码
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |