cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X

Creo 3.0 uninstall thumbviewer?

davehaigh
11-Garnet

Creo 3.0 uninstall thumbviewer?

In Creo 2.0 you could uninstall the thumbviewer with this command.

msiexec /uninstall "C:\ptc\Creo 2.0\Common Files\m120\install\addon\Thumbviewer_32_64.msi" /passive

In Creo 3.0 there is no .msi that you can call to do the uninstall.

Any ideas how to uninstall this?

David Haigh
Phone: 925-424-3931
Fax: 925-423-7496
Lawrence Livermore National Lab
7000 East Ave, L-362
Livermore, CA 94550


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.
6 REPLIES 6

Had a conversation with PTC. You have to call the .msi from the install disk, or the install folder. Obviously I don't want to stick a disk into the system to call the .msi from that. And, I'm not real thrilled with the idea of calling it from a network share. So I decided to just copy the two required .msi files into a uninstall folder in the load point, That way I can call them from the uninstall script and they are local to the system.

Like this,

In my install script:

1. rem ** move msi's req for uninstall to folder

2. If {%valid%}=={success} (echo f |xcopy /y "C:\ptc\Staging_Folder\Creo 3.0-m010\Thumbviewer_32_64.msi" "C:\ptc\Creo 3.0\M010\uninstall\Thumbviewer_32_64.msi")

3. If {%valid%}=={success} (echo f |xcopy /y "C:\ptc\Staging_Folder\Creo 3.0-m010\Creo 3.0-m010 software\install\addon\pvx32_64\pvexpress\CreoView_Express_32_64.msi" "C:\ptc\Creo 3.0\M010\uninstall\CreoView_Express_32_64.msi")
In my uninstall script:

1. rem ** Remove CreoView Express

2. msiexec /uninstall "%CREO3PATH%\%CREOVERSION%\uninstall\CreoView_Express_32.msi" /passive

3. rem ** Waiting 30 seconds

4. timeout /T 30 /NOBREAK

5. rem ** Remove the Thumbviewer

6. msiexec /uninstall "%CREO3PATH%\%CREOVERSION%\uninstall\Thumbviewer_32_64.msi" /passive

7. rem ** Waiting 30 seconds

8. timeout /T 30 /NOBREAK

I should also point out that in Creo 3, the help is split between apps. So the path to the uninstall.exe is different than in Creo 2. For example I have to do this:

1. "%CREO3PATH%\help\creo_help_pma\bin\uninstall.exe" -quiet

2. "%CREO3PATH%\help\creo_help_sim\bin\uninstall.exe" -quiet

David Haigh
dnordin
15-Moonstone
(To:davehaigh)

If you get the GUID from the .msi file, you can uninstall the viewer via the msiexec command.


For example: "MsiExec /X{1F20389C-E4CF-4419-9E20-572720AC424C} /qn"


You can use a tool like InstEdit to get the GUID. If you use that tool, you'll find the GUID under the Property table listed as the ProductCode.


You can also get the GUID from the registry as well as the uninstall command that's used by the Add/Remove programs control panel. The registry area is usually HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall


Regards,


Dan Nordin

I looked in the registry.
[cid:image001.png@01D03BA2.F70476B0]

I found this. I assume you’re saying if I just enter this uninstall string it will do the uninstall without having to get the GUID?

By the way what’s a GUID?

David Haigh

FYI the creo agent is in a different path in the registry.

It’s here with the 32 bit software:
HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall

The thumbviewer is here with the 64bit software:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall

[cid:image002.png@01D03BA4.BEB20F00]

David Haigh
JoeH
1-Newbie
(To:davehaigh)

In Creo 2, you can keep “Thumbnail Viewer” and “Creo View Express” from being installed at the users Creo launch by setting the config.pro option “startup_check_for_visualization no”

It may work for Creo 3 also.

[cid:image001.png@01D03BC4.3182D130]
Joe Haines
ICT – Product Development & Engineering
NAFTA & Virtual Validation Integration

CNH Industrial
120 Brubaker Ave.
MS 652
New Holland, PA 17557
Desk (717) 355-3699
Mobile (717) 371-3471

www.cnhindustrial.com<">http://www.cnhindustrial.com>

Please note my new email address : Joe.Haines@cnhind.com<">mailto:Joe.Haines@cnhind.com>

This is a prime example of why I don’t want to see the exploder to go away.

I would not have gone and searched for an answer to a question that I was not aware of. Whereas I’m now aware of a config.pro option that I will be able to use in the future.

Regards,
Top Tags