1

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.

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 Answers2

1

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.

Vercas
  • 8,931
  • 15
  • 66
  • 106
Dr TJ
  • 3,241
  • 2
  • 35
  • 51
-1

Just put the dll files and exe file in your application directory and they will be used by your application when necessary.

  • 3
    What 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