Joined: 04 Jun 2004
Posts: 227
Location: 48°42' n.Br./09°09' ö.L.
Posted:
Thu, 15.Nov.2007, 10:40
immer wieder stellt sich bei automatisierten installationen das problem, dass der cancel-button in den windows installer dialogen ausgeblendet werden soll (damit die benutzer die installation nicht abbrechen koennen).
seit der msi version 2.0 gibts dafuer einen commandline-switch:
Code:
msiexec.exe /i packagename.msi /qb!
der schalter "!" funktioniert allerdings nur im basic ui mode (qb)
per script oder c++ geht das ganze natuerlich auch:
vbscript:
Code:
Dim Installer As Object
Set Installer = CreateObject("WindowsInstaller.Installer")
Installer.UILevel = msiUILevelBasic + msiUILevelHideCancel
Installer.InstallProduct "packagename.msi"
View next topic View previous topic
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
Service provided by flatbyte.com
::
Powered by phpBB
:: FI Theme
:: Imprint ::
All times are GMT + 1 Hour