Packet Tracer 5.3.3
Hi, I need to deploy silently the new Packet Tracer 5.3.3 to multiple computers. So I use PacketTracer533_setup_no_tutorials.exe /SILENT /MERGETASKS="!desktopicon" to launch the installation. It works great except for the window popup about some "Packet Tracer Skills Based Assessment (PTSBA)" that the user need to press the OK button. So I'm trying to find out if there's any parameter that I could add to my command line to skip this window popup?
Any help is appreciated!
Answers (4)
I'm looking for the same answer.
Comments:
-
I'm looking for the same answer, too! - akilpatrick 11 years ago
-
I tried this with no luck: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- - akilpatrick 11 years ago
Comments:
-
Thanks for the information I85eagle! Your solution is, by far, the easiest. - GBoucher 9 years ago
-
This was very helpful!! Thank You!! I am using PDQ Deploy, and it would install, but get hung up, just like the original post. This has allowed me to remote deploy PT 6.1.1 Student Version flawlessly. I appropriate you answering this mystery for us! THANK YOU! - pgregory42 9 years ago
Hi there! :) Here is my approach to PT5 deployment. I created a small bacth script for this:
@ECHO OFF
REM Installing PT5
start PackerTracer5.3.3.exe /verysilent /suppressmsgboxes
REM Waiting the installation to complete:
ping localhost -n 120 >nul
REM Killing "Packet Tracer Skills Based Assessment (PTSBA)" message!
start taskkill /IM /F PacketTracer5.3.3.tmp
:END
I use "ping localhost -n "desire time in seconds" to wait for the installation to complete, but You can use "timeout" or other. I've tested this on Win7 x64 with 100Mbit network and 7200rpm HDD and Core i7 and 120 seconds timeout is more that enough....but if You install PT5 on older machines, is better to increase this value. I use MDT2012 Update 1, and for now everything is working fine!:)
Hope this help!:)
Regards,
FaTLaMeR
P.S. Sorry for my English....it's not my native language :)
P.S.S The same can be use to deploy PT 6.0.1, but so far I was not able to test it :)
Comments:
-
These steps work for version 6.01 too but the taskkill line is not working.. Tried this manually and also deployed from my KACE. Here is my bat file
start CiscoPacketTracer6.exe /verysilent /suppressmsgboxes
REM Waiting the installation to complete:
ping localhost -n 180 >nul
REM Killing "Packet Tracer Skills Based Assessment (PTSBA)" message!
start taskkill /IM /F CiscoPacketTracer6.tmp
When I tried the batch commands manually the TMP file was named just like the EXE I have.
Not a huge deal as it can be closed once a person logs in but would like to make it clean as possible.
EDIT: It seems like you have to switch the /IM and /F switches on the task kill
It should be: taskkill /F /IM CiscoPacketTracer6.tmp - bwilkerson 10 years ago-
Hello :) Actually the installer creates a process with the same name of the original .exe....for example if you name it PTT611.exe, at the of the installation it creates PT611.tmp process, which must be "killed" with taskkill....long story short:
REM Installing PT611
start PT611.exe /verysilent /suppressmsgboxes
REM Waiting the installation to complete:
ping localhost -n 120 >nul
REM Killing "Packet Tracer Skills Based Assessment (PTSBA)" message!
start taskkill /IM /F PT611.tmp
:) - anonymous_93801 10 years ago
so that the conversation will remain readable.
Tested with MDT2012 Update 1 on WIn7 x64,100Mbit network,Core i7, 7200rpm hdd:
@ECHO OFF
REM Installing Packet Tracer 5.3.3
start PacketTracer5.3.3.exe /verysilent /suppressmsgboxes
REM Waiting for installation to complete
ping localhost -n 120 >nul
REM Killing "Packet Tracer Skills Based Assessment (PTSBA)" message:
start taskkill /F /IM PacketTracer5.3.3.tmp
:END
If needed, adjust "-n" in seconds for your needs, or use "timeout" command.
This can be used to deploy PacketTracer 6.0.1, but I'm not tested it yet:)
Sorry for my English, but it's not native language :)
Regards,
FaTLaMeR - anonymous_93801 11 years ago