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.
Asked
Active
Viewed 541 times
1

Vercas
- 8,931
- 15
- 66
- 106
-
Normally, there are some commands for installers and you can call the setup.exe file with some parameters like /s or something that let you install the app silently – Dr TJ Jun 26 '11 at 23:55
2 Answers
-1
Just put the dll files and exe file in your application directory and they will be used by your application when necessary.
-
3What do you mean? Should I just throw the Dokan files in my app directory? But how about the driver? And the mounter service?? – Vercas Aug 18 '11 at 21:40