By adding the path in the search path area...
Printable View
By adding the path in the search path area...
Should I enter the path manually in the scrip or there is another way?
In the program so it can search for the files (Search Path Area). Where the other paths are...
Search Path Area...
Tanks Randem,
I've created script with ********** and here are the results:
Without **********:
With **********:Code:Source: "c:\Documents and Settings\User\My Documents\Setup Files\vbfiles\stdole2.tlb"; DestDir: "{sys}"; OnlyBelowVersion: 0,6; Flags: restartreplace uninsneveruninstall sharedfile regtypelib
Source: "c:\Documents and Settings\User\My Documents\Setup Files\vbfiles\msvbvm60.dll"; DestDir: "{sys}"; OnlyBelowVersion: 0,6; Flags: restartreplace uninsneveruninstall sharedfile regserver
Source: "c:\Documents and Settings\User\My Documents\Setup Files\vbfiles\oleaut32.dll"; DestDir: "{sys}"; OnlyBelowVersion: 0,6; Flags: restartreplace uninsneveruninstall sharedfile regserver
Source: "c:\Documents and Settings\User\My Documents\Setup Files\vbfiles\olepro32.dll"; DestDir: "{sys}"; OnlyBelowVersion: 0,6; Flags: restartreplace uninsneveruninstall sharedfile regserver
Source: "c:\Documents and Settings\User\My Documents\Setup Files\vbfiles\asycfilt.dll"; DestDir: "{sys}"; OnlyBelowVersion: 0,6; Flags: restartreplace uninsneveruninstall sharedfile
Source: "c:\Documents and Settings\User\My Documents\Setup Files\vbfiles\comcat.dll"; DestDir: "{sys}"; OnlyBelowVersion: 0,6; Flags: restartreplace uninsneveruninstall sharedfile regserver
Source: "c:\Documents and Settings\User\My Documents\Setup Files\vbfiless\msinet.ocx"; DestDir: "{sys}"; OnlyBelowVersion: 0,6; Flags: restartreplace uninsneveruninstall sharedfile regserver
What is your opinion?Code:Source: c:\program files\randem systems\**********\********** 7.0\vb 6 redist files\msvbvm60.dll; DestDir: {sys}; Flags: regserver restartreplace sharedfile; OnlyBelowVersion: 0,6
Source: c:\program files\randem systems\**********\********** 7.0\vb 6 redist files\oleaut32.dll; DestDir: {sys}; Flags: regserver restartreplace sharedfile; OnlyBelowVersion: 0,6
Source: c:\program files\randem systems\**********\********** 7.0\vb 6 redist files\olepro32.dll; DestDir: {sys}; Flags: regserver restartreplace sharedfile; OnlyBelowVersion: 0,6
Source: c:\program files\randem systems\**********\********** 7.0\vb 6 redist files\asycfilt.dll; DestDir: {sys}; Flags: sharedfile; OnlyBelowVersion: 0,6
Source: c:\program files\randem systems\**********\********** 7.0\vb 6 redist files\stdole2.tlb; DestDir: {sys}; Flags: uninsneveruninstall sharedfile regtypelib; OnlyBelowVersion: 0,6
Source: c:\program files\randem systems\**********\********** 7.0\vb 6 redist files\comcat.dll; DestDir: {sys}; Flags: regserver restartreplace sharedfile; OnlyBelowVersion: 0,6
Source: c:\program files\microsoft office\office11\msword.olb; DestDir: {sys}; Flags: sharedfile regtypelib;
Source: c:\progra~1\common~1\system\msmapi\1033\cdo.dll; DestDir: {sys}; Flags: regserver restartreplace sharedfile;
Source: c:\windows\system32\mscomctl.ocx; DestDir: {sys}; Flags: regserver restartreplace sharedfile;
Source: c:\windows\system32\msinet.ocx; DestDir: {sys}; Flags: regserver restartreplace sharedfile;
Would it work in Vista and would it resolve msinet.ocx problem?
Alex.
Without seeing the complete script.... How would you expect an complete answer?
If msinet.ocx isn't supposed to be installed on Vista you need to use this line.
Code:Source: c:\windows\system32\msinet.ocx; DestDir: {sys}; Flags: regserver restartreplace sharedfile; OnlyBelowVersion: 0,6
I thought that "OnlyBelowVersion: 0,6" would not install the file on Vista.
Am I correct?
That is correct but since msinet should not be installed on Vista you would need to change how your app works to run on Vista. As I understand it msinet.ocx is installed with IE7. Do you have IE7 installed on your Vista system?
It depends who installes my application.
I would like to destribute it and I don't know who has Vista and who has IE 7.
One of the people who installed my application on Vista, faced problem with msinet.ocx and that's why I need your help. This guy has IE7.
Check on his computer to see if msinet.ocx already exist. The lines with OnlyBelowVersion 0,6 will be install on every OS except Vista.
BTW: Microsoft swears they have tested msinet.ocx on Vista... But of course true to microsoft they never say how or give any coherent examples...