使用我的 C# 应用程序以编程方式安装 Dokan?
我有一个需要 Dokan 的应用。
当应用程序启动时,我想检查Dokan是否已安装。
如果没有,我该如何安装?
我有安装程序文件,但如何静默安装它?我不想用另一个 GUI 来打扰用户。
I have an app that requires Dokan.
When the app starts, I wish to check whether Dokan is installed or not.
If it's not, how do I install it?
I have the installer file, but how do I silently install it? I don't want to bother the users with yet another GUI.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常,安装程序有一些命令,您可以使用一些参数调用
setup.exe
文件,例如/S
或让您静默安装应用程序的参数。大写 S 特定于 NSIS 安装程序。
Normally, there are some commands for installers and you can call
setup.exe
file with some parameters like/S
or something that let you install the app silently.Capital S is specific for NSIS installers.
只需将 dll 文件和 exe 文件放在您的应用程序目录中,您的应用程序将在需要时使用它们。
Just put the dll files and exe file in your application directory and they will be used by your application when necessary.