Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🛠功能建议[PDFTK添加书签时,不显示cmd窗口] #248

Open
sjhsbhqf opened this issue Jan 14, 2024 · 5 comments
Open

🛠功能建议[PDFTK添加书签时,不显示cmd窗口] #248

sjhsbhqf opened this issue Jan 14, 2024 · 5 comments
Assignees
Labels
enhancement New feature or request TOC Related to add table of contents UI

Comments

@sjhsbhqf
Copy link

sjhsbhqf commented Jan 14, 2024

在我的win11操作系统环境中,安装的是PDFtk Server version 2.02。

平时只用zotfile替代品(attanger)移动文件时,只移动一两个时弹出CMD窗口并不会觉得多烦。

但是最近打算做一个库的文件批量转移时,jasminum插件频繁使用cmd调用PDFtk server的过程中,会不断闪出CMD窗口来。

导致我没办法正常上网办公。

image

@lychichem
Copy link

调用的时候套个vbs,把cmd窗口隐藏掉?这个功能倒不是实现不了

@sjhsbhqf
Copy link
Author

调用的时候套个vbs,把cmd窗口隐藏掉?这个功能倒不是实现不了

大哥,多谢您pull request一下了

@lychichem
Copy link

调用的时候套个vbs,把cmd窗口隐藏掉?这个功能倒不是实现不了

大哥,多谢您pull request一下了

我只知道可能的实现方式,但我不会写

@l0o0
Copy link
Owner

l0o0 commented Jan 18, 2024

@lychichem 同学,你会写vbs的这代码么?可以用 pdftk xxxx 代替对应的命令脚本。我之前试过用bat 脚本,没达到禁用窗口的效果

@sjhsbhqf
Copy link
Author

sjhsbhqf commented Jan 18, 2024

@lychichem 同学,你会写vbs的这代码么?可以用 pdftk xxxx 代替对应的命令脚本。我之前试过用bat 脚本,没达到禁用窗口的效果

方法1:

如果你希望执行的.bat文件不弹出命令控制台窗口,可以使用start /b命令。

例如在你的.bat文件中加入如下代码:

@echo off
start /b your_command
这样执行的时候就不会弹出命令控制台窗口了。

来源:https://juejin.cn/s/%E6%89%A7%E8%A1%8Cbat%E4%B8%8D%E5%BC%B9%E5%87%BA%E7%AA%97%E5%8F%A3

方法2:

在你批处理的相同目录下新建一个记事本,里面输入:

set ws=wscript.createobject("wscript.shell")
ws.run "win.bat /start",0
(其中win.bat为你自己的批处理名字,自己改) 然后把这个记事本保存为后缀名为.vbe的文件,到时候你只要运行这个vbe文件就达到目的了!

原文链接:https://blog.csdn.net/skypeGNU/article/details/12708221

@jiaojiaodubai jiaojiaodubai added the enhancement New feature or request label Oct 25, 2024
@jiaojiaodubai jiaojiaodubai added TOC Related to add table of contents UI labels Oct 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request TOC Related to add table of contents UI
Projects
None yet
Development

No branches or pull requests

4 participants