tis-adobeshockwaveplayer
12.3.5.205-1
Final Version of Adobe Shockwave Player - Adobe Shockwave Player (formerly Macromedia Shockwave Player, and also known as Shockwave for Director), was a freeware software plug-in for viewing multimedia and video games in web pages, content created on the Adobe Shockwave platform.
725 downloads

Description
- package : tis-adobeshockwaveplayer
- version : 12.3.5.205-1
- architecture : all
- categories : Drivers
- maintainer : WAPT Team,Jimmy PELÉ
- description : Final Version of Adobe Shockwave Player - Adobe Shockwave Player (formerly Macromedia Shockwave Player, and also known as Shockwave for Director), was a freeware software plug-in for viewing multimedia and video games in web pages, content created on the Adobe Shockwave platform.
- locale :
- target_os : windows
- min_wapt_version :
- sources :
- installed_size : 11411456
- impacted_process : AdobeGCSlimInstaller.exe,adobeshockwavebundle.exe,SwHelper_1235205.exe,SwInit.exe
- description_fr :
- description_pl :
- description_de :
- description_es :
- description_pt :
- description_it :
- description_nl :
- description_ru :
- editor : Adobe Systems
- licence : Freeware
- signature_date : 2020-02-27T21:28:24.856405
- Homepage : https://helpx.adobe.com/shockwave/shockwave-end-of-life-faq.html
Setup.py
# -*- coding: utf-8 -*-
from setuphelpers import *
uninstallkey = []
# Declaring specific app values (TO CHANGE)
bin_name = 'Shockwave_Installer_Slim.exe'
silent_args = '/S'
app_uninstallkey = 'Adobe Shockwave Player'
def install():
import time
# Specific app values
package_version = control.version.split('-',1)[0]
tasks_to_kill = control.impacted_process
# Getting the used storage on programfiles before installation (place it on the top)
get_disk_free_space_before = get_disk_free_space(programfiles)
# Installing the package
install_exe_if_needed(bin_name
,silentflags=silent_args
,key=app_uninstallkey
,min_version=package_version)
time.sleep(10)
killalltasks(tasks_to_kill)
# Return used storage of the program. (place it on the bottom)
get_disk_free_space_after = get_disk_free_space(programfiles)
free_space_after_diff = get_disk_free_space_before - get_disk_free_space_after
print("Storage used: " + str(free_space_after_diff))
def update_package():
pass