Jump to content

fantazma

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by fantazma

  1. Hello, I have recently issue with the status 0x1 and after long searching on google found that windows task scheduler need to be run automatically on schedule if you want to not get the error “last run result(0X1 )” . If you try on first time to run the task manually, will get this error. Check this solution to be very helpful to troubleshoot this error.
  2. To complete silent install third party like Java, Adobe with msi use this comand : @echo install Google Chrome start /wait msiexec /i "%~dp0%googlechromestandaloneenterprise.msi%" /qn /l* Copy the command on the notepad file and save like "install.cmd". Rename application.msi with your msi name file. Copy the msi file and install.cmd into 1 folder. Run As administrator and Done. In this site you can learn more information about silent install command.
  3. I have deployed successfully java 8 from SCCM 2012. Just create cmd file with below command : REM Uninstall old Java 32 bit Start /wait msiexec.exe /x {Product code of your older java 32 bit} /qn /norestart /l* REM Uninstall old java x64 Start /wait msiexec.exe /x {Product code of your older java 64bit} /qn /norestart /l* REM Install Java 8 x32 start /wait msiexec /i "%~dp0jre1.8.0_40x32.msi" JU=0 JAVAUPDATE=0 AUTOUPDATECHECK=0 RebootYesNo=No WEB_JAVA=1 /q /l* REM Install Java 8 X64 start /wait msiexec /i "%~dp0jre1.8.0_40x64.msi" JU=0 JAVAUPDATE=0 AUTOUPDATECHECK=0 RebootYesNo=No WEB_JAVA=1 /q /l* You can set the logs for tracking results. For more information look on Deploy Java 8 blog. Very helpful. Best Regards
×
×
  • Create New...