Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

administration installaiton


4 replies to this topic

asrinivas

asrinivas
  • Full Members
  • 36 posts

Posted 30 July 2007 - 11:42

hi ,

Please tell me what is administration installaition and how it is implemented.
the command setup.exe /a what it does.? after that how the users can install the application in local system....

regards,
asrinivas.



Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 02 August 2007 - 10:06

Administrative instalaltion basically unpacks all the files from your setup CABs (plus the .msi file itself) and copies them to a folder you specify. It is intended for system administrators who want to provide those files on a network share from where users can then install. This also gives users the chance to select "run from source".

antyagi

antyagi
  • Full Members
  • 121 posts

Posted 03 August 2007 - 06:52

Stefan, If do not want the files to be unpacked by administrative installation but keep the files packed in a cab file. Something like in MSOffice administrative installation. Is there something additional that MSOffice might be doing ?
  ankur tyagi

asrinivas

asrinivas
  • Full Members
  • 36 posts

Posted 03 August 2007 - 07:33

QUOTE (antyagi @ 2007-08-03 06:52)
Stefan, If do not want the files to be unpacked by administrative installation but keep the files packed in a cab file. Something like in MSOffice administrative installation. Is there something additional that MSOffice might be doing ?

Thanks a lot for your reply!!!!
I am sorry, i dont know whether to ask this question or not..but i am asking..

what is the difference between this administration insallation and copying the entire setupfolder in to network folder.

and one more thing is when i run the installation with /a switch it is copying the setup folder , but it is not copying the setup.exe file into network folder.and it is not copying .net framework files which are included in our setup.for intallation these files are necessary...

Please give us more information.

Regards,
A.Srinivas


Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 07 August 2007 - 13:50

antyagi: as far as I know the CABs will always be unpacked, that's how it's designed to work. Copying over the CABs could be done by a setup.exe, or a batch file, for instance.

asrinivas: Administrative install will unpack the CABs. If you don't use CABs there's no difference here. However in an administrative install you could also set some properties, or call custom actions.

Administrative install (msiexec /a) is handled by the Windows Installer engine. It doesn't know about your setup.exe and any prerequisits that your setup.exe might install. You could use a custom action copy the setup.exe and prerequisites files, too. However administrative installs are typically used in managed environments whare the administrator would often pre-deploy any prerequisites, instead of leaving this to your setup. Also, normal users typically don't have the permissions that are required to install prerequisites such as the .net framework.