Installing FrameMaker 12 with deployment file?
Hi there,
Does anyone know how to install FrameMaker 12 with deployment file? I am currently using AutoIT (SciTE) for scripting. Below are my coding but for some reason it execute then goes away in seconds.
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
#RequireAdmin
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Icon=NV_IT.ico
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
Opt("TrayMenuMode", 1)
$AppName = "Adobe Framemaker 12"
$prompt = MsgBox(262145, "NVIDIA: " & $AppName & " Installation", "You are about to install " & $AppName & ". The installation can take anywhere from 10 to 20 minutes." & @CRLF & @CRLF & "Please close all running applications and click on OK to proceed.")
If $prompt = 2 Then Exit
SplashTextOn("NVIDIA: " & $AppName, $AppName & " is being installed..." & @CRLF & @CRLF & "Please do not open any applications until this task is finished.", 400, 160, -1, 150, 20, "", 10)
; INSTALL MAIN
ShellExecuteWait("Set-up.exe", " --mode=silent --deploymentFile=" & @ScriptDir & "\install.xml --overrideFile=", @ScriptDir)
SplashOff()
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Thanks for your help,
Answers (3)
Are you familiar with the concept of searching? It's quite the thing these days...apparently.
http://www.itninja.com/question/how-to-install-framemaker-10-with-deployment-file
...and you didn't figure that *maybe* all that was missing from the example was the name of the deployment file? Or from your command line, the 'action' argument?
Set-up.exe --mode=silent --deploymentFile= --action=install
Set-up.exe", " --mode=silent --deploymentFile=" & @ScriptDir & "\install.xml --overrideFile=", @ScriptDir)
> I did search and did ran into that article. It does not work.
Yes, we knew that, because you told us and that saved everyone a lot of tim...no, wait...:-)