Skip to main content
1-Visitor
May 13, 2015
Solved

Silent Uninstallation of PTC Portmapper

  • May 13, 2015
  • 7 replies
  • 5109 views

Wanting to know if this uninstall can be made quiet no user prompts. I have tried the following command line switches

C:\Program Files\PTC\PTC Portmapper\bin\uninstall.exe /silent

C:\Program Files\PTC\PTC Portmapper\bin\uninstall.exe /quiet

C:\Program Files\PTC\PTC Portmapper\bin\uninstall.exe /s

C:\Program Files\PTC\PTC Portmapper\bin\uninstall.exe /q



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 MartinHanak

Creo 2.0 can be uninstalled using following command

C:\Program Files (x86)\PTC\Creo 2.0\Parametric\bin\uninstall.exe –quiet

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

You can try C:\Program Files\PTC\PTC Portmapper\bin\uninstall.exe –quiet

Or you can contact PTC Support as last instance ...

Martin Hanak

7 replies

24-Ruby III
May 14, 2015

David,

I am just curious.... Why did you install PTC Portmapper ?

Martin Hanak

dachammer1-VisitorAuthor
1-Visitor
May 14, 2015

I am unsure as to why it was installed. It wasn't something I specifically installed must have came in with something else that was selected during our install.

24-Ruby III
May 14, 2015

According to my knowledge, PTC Portmapper is necessary to install when user uses CADDS5 system. So uninstall it using Windows UI and never install again.

1-Visitor
May 14, 2015

I don't have the uninstall for the PTC Portmapper however I have used the following for other PTC components. I think it would be similar to the Parametric and Simulate removal commands:

start /w "" "%UNINSTALLPATH%" -quiet

Here is code from my Creo installer that removes the old stuff

echo Starting removal of Creo Platform...>>%LOG%
echo Starting removal of Creo Platform...
start /w msiexec.exe /x "C:\ptc\Creo 2.0\Common Files\%OLDBUILD%\install\addon\creoagent_32_64.msi" /q
rem sleep 5 seconds (5 pings at 1000 milliseconds per ping)
ping 127.0.0.1 -n 5 -w 1000 > NUL

echo Starting removal of Thumbnail Viewer...>>%LOG%
echo Starting removal of Thumbnail Viewer...
start /w msiexec.exe /x "C:\ptc\Creo 2.0\Common Files\%OLDBUILD%\install\addon\Thumbviewer_32_64.msi" /q
rem sleep 5 seconds (5 pings at 1000 milliseconds per ping)
ping 127.0.0.1 -n 5 -w 1000 > NUL

echo Starting removal of Product View 9.0...>>%LOG%
echo Starting removal of Product View 9.0...
start /w msiexec.exe /x{C2727593-C9AF-41E0-99C6-B004393564A1} /q
rem sleep 5 seconds (5 pings at 1000 milliseconds per ping)
ping 127.0.0.1 -n 5 -w 1000 > NUL

echo Starting removal of Creo View Express...>>%LOG%
echo Starting removal of Creo View Express...
start /w msiexec.exe /x "C:\ptc\Creo 2.0\Common Files\%OLDBUILD%\install\addon\pvx32_64\pvexpress\CreoView_Express_32_64.msi" /q
rem sleep 5 seconds (5 pings at 1000 milliseconds per ping)
ping 127.0.0.1 -n 5 -w 1000 > NUL

echo Starting removal of Arbortext IsoView 7.3...>>%LOG%
echo Starting removal of Arbortext IsoView 7.3...
start /w msiexec.exe /x {DE52A69A-978A-480A-82F7-E17C50F98EC6} /q
rem sleep 5 seconds (5 pings at 1000 milliseconds per ping)
ping 127.0.0.1 -n 5 -w 1000 > NUL

echo Starting removal of Creo Quality Agent...>>%LOG%
echo Starting removal of Creo Quality Agent...
start /w msiexec.exe /x {5B7F8A19-AF71-4517-B49C-683AFC5B639C} /q
rem sleep 5 seconds (5 pings at 1000 milliseconds per ping)
ping 127.0.0.1 -n 5 -w 1000 > NUL

(set PARAMETRICPATH=C:\ptc\Creo 2.0\Parametric\bin\uninstall.exe)

(set SIMULATEPATH=C:\ptc\Creo 2.0\Simulate\bin\uninstall.exe)

echo Starting removal of Creo Parametric...>>%LOG%

echo Starting removal of Creo Parametric...

start /w "" "%PARAMETRICPATH%" -quiet

rem sleep 20 seconds (20 pings at 1000 milliseconds per ping) - required to prevent error
ping 127.0.0.1 -n 20 -w 1000 > NUL


echo Starting removal of Creo Simulate...>>%LOG%
echo Starting removal of Creo Simulate...
start /w "" "%SIMULATEPATH%" -quiet
rem sleep 20 seconds (20 pings at 1000 milliseconds per ping)
ping 127.0.0.1 -n 20 -w 1000 > NUL

dachammer1-VisitorAuthor
1-Visitor
May 15, 2015

Thank you great information!