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!
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
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 10 years ago I unpacked the exe using innounp since INNO setup was used to create the exe. I then opened the .iss file that was unpacked in INNO setup compiler . Then I added a single line to the [Setup] section, RestartIfNeededByRun=No, my [Setup] section looked like this before recompiling :
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
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 :)
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 8 years ago
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 8 years ago
Sign up today to participate, stay informed, earn points and establish a reputation for yourself!
Sign up! login