Announcement

Collapse
No announcement yet.

Newbie : Diff OS install

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Newbie : Diff OS install

    Hello, I just discovered this great program ! Great !
    But here's my question. My setup has to install some files on different OS.
    Win9x and WinNT/W2K. The file should be installed in the system dir. But this is different for the OS.
    On win9x it should be %windir%\system and on WinNT/Win2K it should be %windir%\system32.
    How can I let my setup determine which OS it is, and copy file to the correct inst.path ?

    Thanks for your help !

  • #2
    Re: Newbie : Diff OS install

    Hi,

    Setup Factory can determine which OS the users is running in a variety of ways. The easiest is to use the conditions tab that each file has, there you will be able to select which OS the useR must have in order for the selected file to be installed.

    There are also these built-in variables:
    %IsWin31%
    %IsWin32s%
    %IsWin95%
    %IsWin98%
    %IsWinME%
    %IsWinNT3%
    %IsWinNT4%
    %IsWin2000%
    These variables have a value of "True" or "False" depending on whether the install is running on the respective operating system.

    But in this case you do not have to use either of these methods you will simply have to use the built-in variable %SysDir% as the destination for your files.

    %SysDir%
    The user’s Windows System directory.
    C:\Windows\System on WIN 9X machines
    C:\WINNT\System32 on WIN NT machine

    mark.
    MSI Factory The Next Generation Intelligent Setup Builder

    Comment


    • #3
      Re: Newbie : Diff OS install

      Mark, thx for your fast reply !
      Why make it difficult, if Setup Factory does it the easy way
      Thanks again...

      Comment

      Working...
      X