
kann mir jemand helfen?, fehlen berechtigungen? kann ich mir nicht vorstellen
scnr: Nur weil man sich etwa nicht vorstellen kann ...kirschex hat geschrieben:Das kommt wenn ich meine software verteile.
kann mir jemand helfen?, fehlen berechtigungen? kann ich mir nicht vorstellen
Code: Alles auswählen
[Winbatch_unattended_install]
$TEMP$\flashplayer\flashplayer_10_ax_debug.exe -install
$TEMP$\flashplayer\flashplayer_10_plugin_debug.exe -install
Code: Alles auswählen
[Initial]
requiredWinstVersion >= "4.8.6"
LogLevel=2
; Log Errors in Logfile but don't abort:
ExitOnError=false
; Show syntax errors in the script:
ScriptErrorMessages=on
; Dont trace step by step through the script:
TraceMode=off
; Let started programs run in front of the winst window
StayOnTop=false
[Aktionen]
ShowBitmap /3 "%SCRIPTPATH%\flashplayer.png" "Adobe Flashplayer 10"
;Variable fuer temporaeres Verzeichnis
DefVar $Temp$
set $Temp$ = EnvVar("TEMP")
;Variablen fuer BetriebssystemsVersion (OS)-Test
DefVar $OS$
DefVar $MinorOS$
set $OS$ = GetOS
set $MinorOS$ = GetNTVersion
DefVar $ProductId$
Set $ProductId$ = "flashplayer"
DefVar $MinimumSpace$
Set $MinimumSpace$ = "50 MB"
if not(HasMinimumSpace ("%SystemDrive%", $MinimumSpace$))
LogError "Not enough space on %SystemDrive%, " + $MinimumSpace$ + " on drive %SystemDrive% needed for " + $ProductId$
isFatalError
; Stop process and set installation status to failed
else
comment "Show product picture"
ShowBitmap /3 "%ScriptPath%\" + $ProductId$ + ".png" $ProductId$
if FileExists("%ScriptPath%\delsub.ins")
comment "Start uninstall sub section"
Sub "%ScriptPath%\delsub.ins"
endif
if ( $OS$ = "Windows_NT" )
Message "Installing " + $ProductId$ + " ..."
Files_copy
Winbatch_unattended_install
Files_Delete
endif
if (IniVar("NoAutoUpdate") = "on")
Files_copy_noautoupdate
else
Files_delete_noautoupdate
endif
endif
[Files_copy]
checktargetpath="$TEMP$\flashplayer"
copy -svx "%SCRIPTPATH%\files\"
[Winbatch_unattended_install]
$TEMP$\flashplayer\install_flash_player.exe /s
$TEMP$\flashplayer\install_flash_player_ax.exe /s
[Files_Delete]
delete -sf $TEMP$\flashplayer\
[Files_copy_noautoupdate]
copy -svx "%SCRIPTPATH%\files\mms.cfg" "%SYSTEM%\Macromed\Flash"
[Files_delete_noautoupdate]
delete -sf "%SYSTEM%\Macromed\Flash\mms.cfg"
Code: Alles auswählen
[Initial]
[Winbatch_unattended_install]
$TEMP$\flashplayer\install_flash_player.exe /s
$TEMP$\flashplayer\install_flash_player_ax.exe /s
Ja Super, .msi ist mir natürlich auch lieber. Vielen Dank auch an Cherry ...lars_k hat geschrieben:Hallo ,
wir benutzen auch nur MSI Dateien (wenn möglich ) selber aufruf wie in der vorherigen Antwort.
lade Dir die msi Dateien hier herunter .. http://www.adobe.com/special/products/f ... tion3.html
Gruß
Lars