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 f开发者_StackOverflow社区ile, but how do I silently install it? I don't want to bother the users with yet another GUI.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.
Just put the dll files and exe file in your application directory and they will be used by your application when necessary.
精彩评论