sehang / dokan

Automatically exported from code.google.com/p/dokan
0 stars 0 forks source link

optionally do not open windows explorer to "C:\Program Files (x86)\Dokan\DokanLibrary" at the end of silent installation #184

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
run "dokaninstall_053.exe /S" to perform a silent installation

I expected no new windows to appear, but you will notice a windows explorer 
window is displayed that points to the installation directory ("C:\Program 
Files (x86)\Dokan\DokanLibrary")

I would like to request an option so that the windows explorer window can be 
suppressed from being displayed after a silent installation.

Dokan 0.5.3
Windows 7 x64

Thank you.

Original issue reported on code.google.com by rami.abughazaleh@gmail.com on 2 Sep 2010 at 6:39

GoogleCodeExporter commented 8 years ago
It is actually very simple, here are the modifications to do:

Function .onInstSuccess
  ExecShell "open" "$PROGRAMFILES32\Dokan\DokanLibrary"
FunctionEnd

=>

Function .onInstSuccess
  IfSilent noshellopen
  ExecShell "open" "$PROGRAMFILES32\Dokan\DokanLibrary"
 noshellopen:
FunctionEnd

Original comment by sebastie...@gmail.com on 27 Jan 2011 at 4:58

GoogleCodeExporter commented 8 years ago

Original comment by asa...@gmail.com on 11 Feb 2011 at 3:50