Skip to main content
21-Topaz II
August 20, 2015
Solved

Silent Install CreoView Express Fails

  • August 20, 2015
  • 4 replies
  • 3280 views

I'm trying to create a silent install for Creo 2.0 M160 and all the client side components.  I'm getting an error on the CreoView Express install:

Invalid Switch - "/vADDLOCAL="ALL""

The syntax for calling the installer in my batch file is:

start /w "\\server\creo_install_files\creo_2_m160\pvx32_64\CreoSetup.exe" /vADDLOCAL="ALL" /qn

This matches what is in the install guide for Creo 2.0 M080.  I do not have the install guide for M160, but the install guide for Creo 3.0 F000 shows the same syntax. I assume the Creo 2.0 M160 syntax should be the same.

Any insight as to what I'm missing?


This thread is inactive and closed by the PTC Community Management Team. If you would like to provide a reply and re-open this thread, please notify the moderator and reference the thread. You may also use "Start a topic" button to ask a new question. Please be sure to include what version of the PTC product you are using so another community member knowledgeable about your version may be able to assist.
Best answer by dgschaefer

Figured it out.  There are no quotes around the path to CreoSetup.exe:

start /w \\server\creo_install_files\creo_2_m160\pvx32_64\CreoSetup.exe /vADDLOCAL="ALL" /qn

not

start /w "\\server\creo_install_files\creo_2_m160\pvx32_64\CreoSetup.exe" /vADDLOCAL="ALL" /qn

4 replies

dgschaefer21-Topaz IIAuthorAnswer
21-Topaz II
August 20, 2015

Figured it out.  There are no quotes around the path to CreoSetup.exe:

start /w \\server\creo_install_files\creo_2_m160\pvx32_64\CreoSetup.exe /vADDLOCAL="ALL" /qn

not

start /w "\\server\creo_install_files\creo_2_m160\pvx32_64\CreoSetup.exe" /vADDLOCAL="ALL" /qn

21-Topaz I
August 20, 2015

Is this for Creo or Creo View?  I use that for Creo View.

You can also add this at the end to define the installation directory:

APPLICATIONFOLDER="C:\xxx"

Here are all the options.

https://support.ptc.com/appserver/cs/view/solution.jsp?n=CS32319

21-Topaz II
August 20, 2015

CreowView Express that comes with a Creo install.

18-Opal
August 25, 2015

Here is the code I use. When you use start with quotes, you need a title in quotes first. I put in blank. This is preferable, in case you have a space in your path.

     start /wait "" "%InstallViewExpress%" /vADDLOCAL="ALL" /qn APPLICATIONFOLDER="%creo_load_point%\View Express\"