Commands for silent install for oajinit13129.exe

I'm writing a script to install oajinit13129.exe and I was wondering what the command/s are for installing the update silently, or invisibly for the user? I'm guessing it's a b1 command, pre-installation batch, but can't be sure.
Thanks for any help you can offer,
Carl W

Here are the steps needed to do silent installation:
1) Unistall Jinitiator
2) Make cmd file for example (install.cmd) containing the following line:
jinit13121.exe -s -a -s
Note: You have to write the full path of the exe file of jinit
This will install the jinitiator in silent mode in the directory
C:\Program Files\Oracle\JInitiator 1.3.x.x
3) Finally Execute (Install.cmd) and it will install Jinitiator in Silent mode

Similar Messages

  • What download is good for Firefox 33 for silent install for windows os?

    In fire Fox 33 download we see there is setup stub .exe , when will setup.exe for firefox 33 be available as we cannot do a silent install for setup stub.exe . we have no issues in doing silent install for setup .exe which we had for previous versions , also where we can find the download for firefox 32

    Older releases can be found on the Mozilla CDN server, but keep in mind that older versions are not safe to use on internet as they have disclosed security vulnerabilities.
    *http://download.cdn.mozilla.net/pub/mozilla.org/firefox/releases/32.0.3/
    *https://www.mozilla.org/security/known-vulnerabilities/firefox.html
    *https://www.mozilla.org/security/known-vulnerabilities/firefoxESR.html
    You can also look at the Firefox 31.2.0 ESR version if you want to use an older version that is up to date:
    *https://www.mozilla.org/en-US/firefox/organizations/all.html
    *https://www.mozilla.org/en-US/firefox/31.2.0/releasenotes/
    *https://www.mozilla.org/en-US/firefox/organizations/system-requirements/

  • How do I create a silent install for Adobe Robohelp 11.0? AAMEE fails

    I have tried to create a silent install for Adobe Roboehelp 11 using AAMEE v. 3.1 but after inserting "product installation folder", "package name" and "save to" and choosing "next" the picture just greys out.
    If if choose "next" again I get to the options page but it is empty.
    I tried using an older version of AAMEE and here I can create an unserialized build but it wont accept the my license code (which works fine if I install manually)
    Does anyone know how to solve this?
    I am using Windows 7 Enterprise Edition 64 bit.
    Best Regards,
    Christian Roejbaek

    Hi Christian,
    You have to use Creative cloud packager (CCP) to create the package for RoboHelp 11, AAMEE will not work for the latest version. CCP will be available in your LWS website(www.licensing.adobe.com) . Download CCP from LWS website and create a package for RH 11.
    Please refer to the below link for more information of CCP:
    http://helpx.adobe.com/creative-cloud/packager/creating-packages.html
    Once you will reach "The Application and Updates screen " on CCP window then you have to click on "Add Offline Media" and select the "product installer folder" as RH 11 might not show in the list of products on that screen.
    After creating the package:
    Steps to follow to deploy silently on single machine:
    1. Open CMD in Administrator mode.
    2. Give the path till inside the build folder of the package. For Example if the build is saved on your Desktop the path in CMD should be as below:
    C:\Users\[username]\Desktop\Packagefolder\packagename\Build>
    3. Now type the following installation command: msiexec.exe /i packagename.msi /quiet
    4. Launch Task Manager.
    5.There will be three process of “msiexec.exe”
    a)   6.One will be under System
    b)   7.Other Two will be under [username].
    8.Installation will be completed once both the process of msiexec.exe under the [username] are finished.
    9.The installation process with take 5 to 10 minutes
    Regards,
    Mayank

  • Silent install for adobe reader version 110003

    silent install for adobe reader version 110003

    Hi,
    I don't know your more details about how you pretend to deploy your Adobe Reader but I did this to my current deployment and many people on the company are happy with this:
    1- I extracted the contents from the Adobe Reader installer.
    2- I modified the MSI using Customization Wizard to hide some menus (Maybe you can skip this step if you don't need to customize it)
    3- On SCCM 2012 I created a Script deployment with a CMD file which contains the following command for silent install. (You don't need to have an SCCM infrastructure to deploy it but it will help)
    start /wait msiexec /i "%~dp0AcroRead.msi" /q TRANSFORMS="%~dp0AcroRead.mst" PATCH="%~dp0AdbeRdrUpd11001_MUI.msp;%~dp0AdbeRdrSecUpd11002.msp"
    or
    msiexec /i "%~dp0AcroRead.msi" /q TRANSFORMS="%~dp0AcroRead.mst" PATCH="%~dp0AdbeRdrUpd11001_MUI.msp;%~dp0AdbeRdrSecUpd11002.msp"
    - On my case I used %~dp0 because I'm installing from a server caching files on client machines but if you pretend to test and install it locally avoid using: %~dp0 and put your absolut path. Like C:\Temp or your MSI and source files location.
    - Start /wait - Will execute your MSI installer file and then once is finished will proceed with the next command if any.
    - Transforms- will force the MSI to apply the custom settings I did on Customization Wizard)
    - PATCH- command will proceed to install the patches you may have at the moment 11.0.1, 11.0.2, etc...
    Hope this will help you !
    Derspinne

  • Silent install for FlashBuilder update

    Hello
    i have a FB4 fully automated deployment using the AAMEE tools. I need to deploy the latest 4.0.1 update to everyone.
    Is there anyway to automate or make the installation as silent as possible?
    Is it posible to "slipstream" the update to my FB4 deployment to make future installations simpler?
    Thanks for your help.

    Hi,
    I don't know your more details about how you pretend to deploy your Adobe Reader but I did this to my current deployment and many people on the company are happy with this:
    1- I extracted the contents from the Adobe Reader installer.
    2- I modified the MSI using Customization Wizard to hide some menus (Maybe you can skip this step if you don't need to customize it)
    3- On SCCM 2012 I created a Script deployment with a CMD file which contains the following command for silent install. (You don't need to have an SCCM infrastructure to deploy it but it will help)
    start /wait msiexec /i "%~dp0AcroRead.msi" /q TRANSFORMS="%~dp0AcroRead.mst" PATCH="%~dp0AdbeRdrUpd11001_MUI.msp;%~dp0AdbeRdrSecUpd11002.msp"
    or
    msiexec /i "%~dp0AcroRead.msi" /q TRANSFORMS="%~dp0AcroRead.mst" PATCH="%~dp0AdbeRdrUpd11001_MUI.msp;%~dp0AdbeRdrSecUpd11002.msp"
    - On my case I used %~dp0 because I'm installing from a server caching files on client machines but if you pretend to test and install it locally avoid using: %~dp0 and put your absolut path. Like C:\Temp or your MSI and source files location.
    - Start /wait - Will execute your MSI installer file and then once is finished will proceed with the next command if any.
    - Transforms- will force the MSI to apply the custom settings I did on Customization Wizard)
    - PATCH- command will proceed to install the patches you may have at the moment 11.0.1, 11.0.2, etc...
    Hope this will help you !
    Derspinne

  • Silent install for adobe acrobat professional verstion 8 how to.

    Hi Guys,
    I need to perform of adobe acrobat professional version 8 silent install for mass deployment of windows 7 purpose. but i cant find a customization wizard that works on my professional version 8 . i have tried version 10 and 11 and its not working. please help...
    Thanks,
    Raymond

    There might have once been a deployment solution for this, but I imagine Adobe will have withdrawn it. Why on earth are you deploying a product so far past end of life, with unfixed security issues?

  • MAJOR HELPP WITH ITUNES!!! ERROR SAYS THERE IS A PROBLEM WITH THIS WINDOWS INSTALLER PACKAGE. A PROGRAM REQUIRED FOR TIS INSTALL FOR THIS INSTALL TO COMPLETE COULD NOT BE RUN.

    WHAT CAN I DO... PLEASE HELP

    ERROR SAYS THERE IS A PROBLEM WITH THIS WINDOWS INSTALLER PACKAGE. A PROGRAM REQUIRED FOR TIS INSTALL FOR THIS INSTALL TO COMPLETE COULD NOT BE RUN
    That one is often associated with trouble with your Apple Software Update.
    Is your Apple Software Update currently launching on the PC?

  • Command Line Parameters for Silent Install with Status for BI4.0 Products

    For the XI3.1 product installations, which clearly leveraged MSIEXEC installation files, it was possible to use the /qb+ command line parameter to trigger a silent install which showed the progress of the installation with a final prompt to acknowledge the completion of the installation.
    For the new BI4.0 installation package, it's not clear how to trigger a silent installation which also shows the installation progress.  The installation guide describes using -q in the command line to run a silent installation, or leveraging a response.ini file to trigger a silent install, but in neither case does it show how to modify the silent installation command to enable a display of the installation progress.
    Does anyone know the syntax, either command line or embedded in a response.ini file, to trigger a silent installation for the BI4.0 products which ALSO shows the progress of the installations?
    Thanks,
    Josh

    Yes, I've tried the same switch that I used for the XI3.1 installations, namely "/qb".  In XI3.1 I was able to use this switch either directly in the MSIEXEC command line or in the Response.ini file as "QUIET=/qb".  In either case, this switch resulted in a silent install that showed a progress bar window for the installation, completing with a confirmation prompt indicating that the installation had completed.
    Neither approach works with the BI4.0 installation packages.  My suspicion is that SAP has switched to a different installation engine as I can't find the typical .msi installation files that would indicate this is a MSIEXEC installation.  I'm hoping someone knows what type of installation engine is being used and what the switching syntax is for silent installs. But it can't be a completely transparent silent install (I know how to do this); it must provide an option to show an installation progress bar.
    Thanks,
    Josh

  • Command line switch for silent install (-ms) no longer works for Firefox 35.0

    In previous versions of Firefox, I've downloaded the full installer from https://www.mozilla.org/en-US/firefox/all/ and created a silent install package using the command line-
    "FirefoxSetup35.0.exe" -ms /INI="configuration.ini"
    drop the -ms and it installs (albeit not silently)
    drop the /INI and it fails
    that would indicate that the problem is the -ms switch. Any ideas?

    I found the related bug (looks like it will be fixed in Firefox 23)
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=890516 Bug 890516] - Embedded audio stopped working after installing FF 22

  • Silent Install for JRE 1.4.2_02

    I am having trouble running a silent install of the JRE. I've referenced the following document, but have not had any luck. http://java.sun.com/j2se/1.4.2/docs/guide/plugin/developer_guide/silent.html
    The command I attempted to use is:
    j2re-1_4_2_02-windows-i586-p.exe /s /v
    Is this not the correct format? I tried many different versions of the command based on the silent install document, none worked. I still get prompted to accept the install.
    http://java.sun.com/products/archive/j2se/1.4.2_02/jre/install-windows.html

    This would be more appropriate forum for this question:
    http://forum.java.sun.com/forum.jsp?forum=14

  • Silent Install for WebLogic

    Hi, I am trying to install Weblogic 8.1 in silent mode. I found a web page that talked about using a silent.xml file which I tried. But, I still can't get it to work. Does anyone have a silent.xml file for Weblogic 8.1 they can post here or e-mail at [email protected]
    Or, is there another way to install Weblogic 8.1 in silent mode?
    Thanks,

    Hi Matt,
    Attached is a sample silent.xml file
    platform812_win32.exe -mode=silent -silent_xml=d:\misc\shortcut\silent1.xml
    silent.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <domain-template-descriptor>
    <identification display-name="Silent Install" base-jar-name="bids.jar" alias="WLS" />
    <input-fields>
    <data-value name="BEAHOME" value="D:\currentbuild" />
    <data-value name="USER_INSTALL_DIR" value="D:\currentbuild/weblogic81" />
    <data-value name="JVM_TYPE"      value="other" />
    <data-value name="domain.directory" value="D:\currentbuild/user_domains/mydomain" />
    <data-value name="SERVER-RUN-AS" value="Single Server (Standalone Server)" />
    <data-value name="templateJarFileDir" value="D:\currentbuild/weblogic81b/common/templates/domains" />
    <data-value name="selectedJar" value="D:\currentbuild/weblogic81b/common/templates/domains/wls.jar" />
    <data-value name="INSTALL_NT_SERVICE" value="no" />
    </input-fields>
    </domain-template-descriptor>
    Cheers
    Raj

  • Silent Install for Mac

    How can I do a silent install of PSE 8 for Mac?
    It seems like all the pieces are there, but I keep getting End Adobe Setup.  Exit code: 7

    For Enterprise customers, the preferable route is to contact Adobe directly for their is a specially designed team to handle Enterprise support cases.
    May be the below link should help you:
    http://www.adobe.com/support/programs/enterprise/
    To be very frank, it is not recommended to us to directly handle enterprise customers on 1-o-1 basis.
    You are correct in understanding that the underlying installer technology/engine is same between PSE 8 Mac and CS4 applications, and your silent install command also looks ok, but without the log files, it is hard to comment on why installer is failing.
    Can you contact Enterprise support directly to help in this regard, if nothing works out then we can use this platform as last resort. Sounds fine?
    Regards,
    Ankush

  • Silent Install for RoboHelp 7?

    The silent install option is listed as a feature for the new
    RoboHelp 7. However I am unable to find a list of command line
    switches to make this happen. Using the command line msiexec /i
    Adobe RoboHelp 7 /QN I am able to launch the MSI, however I cannot
    find a switch to include the serial number in the installation so
    that a user does not have to enter it. Is there a list anywhere of
    what command line switches are available to use to silently install
    this product with all needed features enabled or disabled? Or
    perhaps a specific .xml file that needs to be referenced? Any info
    would be appreciated.
    Thanks,

    Hello Peter
    Thank you for your help but unfortunately I am not able to
    make it work.
    Here is the exact string I have used;
    msiexec /qn /L* "c:\RH.log" /I "C:\RoboHelp\Adobe RoboHelp
    7.msi" USERNAME=xxx COMPANYNAME=xxx
    SERIALNUMBER=xxxx-xxxx-xxxx-xxxx-xxxx-xxxx EPIC_EULA_ACCEPTED=1
    TRANSFORMS=C:\RoboHelp\1033.mst
    RoboHelp is installed but on startup I am still presented
    with the "Software Setup-page" where I have to choose either
    entering a serial number or choosing 30 days trial period.
    On the other hand I have found a solution using simple
    setupcapture of the setup-procedure. Entering the serial number is
    stored in a single file which can be added to a transform using
    normal techniques.
    I guess I'll go with that solution then.
    Thank you for trying though.

  • Silent install for patch release 3 waiting for carriage return

    I'm trying to get Patch Release 3 (to take my 10.2.0.1.0 installtion to 10.2.0.4.0 on Linux RHEL 5/x64) to install using a ResponseFile so it can be scriptable.
    The actual silent install works fine - the problem lies with the patch install - it waits for the carriage return to be pressed oce it has been installed. And since its waiting for the Return key to be pressed, the script hangs.
    The command I'm running is
    +/oracle/staging/10g/patch/Disk1/runInstaller -ignoreSysPrereqs -silent -responseFile /oracle/staging/10g/patch.rsp << EOF+
    EOF
    I'm not even sure where to start looking to solve this issue.
    Can anyone point me in the right direction please...

    Hi;
    Did you follow patch 8.2 Installing the Oracle Database 10g Patch Set Noninteractively part?
    Also see:
    ERROR:Oracle 10.2.0.4 Patch Set Return Exit Code -1073741819 [ID 779582.1]
    OUI reports a successful silent install when errors are present [ID 793510.1]
    Regard
    Helios

  • Silent install for 8.1.6.2

    Is there a way to silently install Net8.1.6.2 Client for Windows? I created a response file for Net8.1.6, but I'm not sure if you are supposed to intergate the patch into that response file or create a new response file and have the first one call it. Thanks in advance for the help.

    You may try these directions as well, they worked very well.
    http://blog.stealthpuppy.com/deployment/deploying-adobe-reader-81
    Blake

Maybe you are looking for

  • How does an analog input exceed its maximum?

    Lookout 5.1 Modicon PLC Nitrate Analyzer Conductivity Analyzer Level Transmitters Occasionally I'll have an analog signal in Modbus, i.e. F400302, formatted 0-32767 with engineering units set from 0-50 or 0-2000 or 0-3 and it exceeds that maximum som

  • After Upgrade to 7.6.100.0 User Can't Connect To Wireless

    We have an internal 5508 controller that has two SSID's on it.  A secure SSID which uses an ACS server to authenticate users through AD, and a guest SSID which tunnels out to a DMZ 5508 anchor controller.  The guest users have no issues at all.  We u

  • Data Mapper to relational database

    I've been reading the "Patterns of Enterprise Application Architecture" book and it has opened my mind to a lot of different designs. I'm trying to design a large accounting system in OO. I'm unclear on how I should design the mapping inbetween the d

  • Need to delete someone's "old" email address.

    I was typing someone's name into a new email when 2 possible addresses appeared. One was an old one but did not appear in my Address Book. It would seem that it was being accessed from an old email. I would like to get rid of it so that it does not c

  • Broadcasting over LAN

    I am working on a program that broadcasts a packet over the LAN.I implemented a datagram packet which has some data inside .Is there any way to broadcast this message to the computers without specifying the port number..I want all the computers on LA