X-13 Posted October 18, 2011 Posted October 18, 2011 Gentlemen [and ladies], It seems, once again, I am in need of assistance. We’re having to problems with flash here. For some strange reason all of the computers are saying they have both Flash 9.0 and Flash 10.3.183.7. Adobe’s “check flash” webpage says we have 7.something… No idea why. Removing the Flash 9.0 manually and reinstalling 10.3.183.7 appears to solve the problem and I, wrongly, assumed that Flash 9.0 had just not been uninstalled properly. I’ve rebuilt a couple of computers and the problem is there again. [i had fixed it before.] Could the build image contain flash 9.0? Or is it more likely being partially installed because of another flash dependant program? [Like 2Simple, for example.] If it’s the image, is it possible to change the image or would I need to build a clean machine to make a new image off of?
Geoff Posted October 18, 2011 Posted October 18, 2011 Its probably some software thats installing flash with itself. I suggest you load up everything on an image then remove flash. Uninstall Flash Player | Windows Then install the latest version.
sted Posted October 18, 2011 Posted October 18, 2011 a lot of 2 simple software does use flash so its not impossible thats where its coming from you could just edit your image so that on first bootup before it gets all its network software (presumably where flash 10.3 is coming from group policy) it runs the flash uninstaller tool silently to remove old version
mwbutler Posted October 18, 2011 Posted October 18, 2011 When ever this happens here I: - Install "Windows uninstaller Utility" - Find all entries of flash, active x flash etc and uninstall - Install latest flash and the problem 9/10 gets resolved Some software packages may contain flash but it's best to check your image to see whether it contains legacy versions which are causing you these issues.
tommej Posted October 18, 2011 Posted October 18, 2011 # AUTOMATED ADOBE FLASH PLAYER MAINTENANCE POWERSCRIPT FOR # PUBLIC COMPUTING ENVIRONMENT # SYSTEM REQUIREMENTS: 32-BIT WINDOWS XP, VISTA, OR 7 AND # MICROSOFT .NET FRAMEWORK 2.0 WITH SERVICE PACK 1 OR HIGHER AND # WINDOWS POWERSHELL 2.0 OR HIGHER # SCRIPT TAKES APPROXIMATELY 2.5 MINUTES TO COMPLETE # BEST PRACTICE: CREATE A SCHEDULED TASK TO RUN POWERSHELL AS # AN ADMINISTRATOR AT LOGIN WITH THIS SCRIPT AS A PARAMETER AND # STORED IN A CENTRAL AND SHARED FILE LOCATION # YOU ARE ENCOURAGED TO COPY, MODIFY, AND DISTRIBUTE THIS SCRIPT # EMAIL [email protected] FOR ANY QUESTIONS OR COMMENTS 'SCRIPT HAS STARTED...' # UNINSTALL 'UNINSTALLING CURRENT ADOBE FLASH PLAYER ACTIVEX CONTROL FOR INTERNET EXPLORER...' $uninstallActiveX = Get-WmiObject -Class 'Win32_Product' -Filter "Name = 'Adobe Flash Player 10 ActiveX'" Trap {Continue} $uninstallActiveX.Uninstall() | Out-Null 'DONE!' 'UNINSTALLING CURRENT ADOBE FLASH PLAYER PLUGIN FOR MOZILLA FIREFOX...' $uninstallPlugin = Get-WmiObject -Class 'Win32_Product' -Filter "Name = 'Adobe Flash Player 10 Plugin'" Trap {Continue} $uninstallPlugin.Uninstall() | Out-Null 'DONE!' # DOWNLOAD 'DOWNLOADING LATEST WINDOWS INSTALLER FILE (.msi) FOR ADOBE FLASH PLAYER ACTIVEX CONTROL...' $downloadActiveX = New-Object System.Net.WebClient $fromUrl = 'http://www.adobe.com/go/full_flashplayer_win_msi' $saveTo = "$Env:Temp\install_flash_player_10_active_x.msi" $downloadActiveX.DownloadFile($fromUrl, $saveTo) 'DONE!' 'DOWNLOADING LATEST WINDOWS INSTALLER FILE (.msi) FOR ADOBE FLASH PLAYER PLUGIN...' $downloadPlugin = New-Object System.Net.WebClient $fromUrl = 'http://www.adobe.com/go/full_flashplayer_win_pl_msi' $saveTo = "$Env:Temp\install_flash_player_10_plugin.msi" $downloadPlugin.DownloadFile($fromUrl, $saveTo) 'DONE!' # INSTALL 'STOPPING INTERNET EXPLORER PROCESS...' Stop-Process -ProcessName 'iexplore' -ErrorAction 'SilentlyContinue' 'DONE!' 'SILENTLY INSTALLING ACTIVEX CONTROL USING WINDOWS INSTALLER...' $installActiveX = Get-WmiObject -List 'Win32_Product' $installActiveX.Install("$Env:Temp\install_flash_player_10_active_x.msi") | Out-Null 'DONE!' 'STOPPING MOZILLA FIREFOX PROCESS...' Stop-Process -ProcessName 'firefox' -ErrorAction 'SilentlyContinue' 'DONE!' 'SILENTLY INSTALLING PLUGIN USING WINDOWS INSTALLER...' $installPlugin = Get-WmiObject -List 'Win32_Product' $installPlugin.Install("$Env:Temp\install_flash_player_10_plugin.msi") | Out-Null 'DONE!' # CONFIGURE 'CREATING ADOBE FLASH PLAYER CONFIGURATION FILE AND DISABLING AUTOMATIC UPDATE NOTIFICATION...' New-Item -Path "C:\Windows\System32\Macromed\Flash\mms.cfg" -ItemType 'File' -Value 'AutoUpdateDisable=1' -Force | Out-Null 'DONE!' # DELETE 'DELETING DOWNLOADED MSI FILE FOR ACTIVEX CONTROL...' Remove-Item -Path "$Env:Temp\install_flash_player_10_active_x.msi" 'DONE!' 'DELETING DOWNLOADED MSI FILE FOR PLUGIN...' Remove-Item -Path "$Env:Temp\install_flash_player_10_plugin.msi" 'DONE!' 'SCRIPT IS COMPLETE!' Powershell is great. =]
DanielZ Posted November 3, 2011 Posted November 3, 2011 A number of old 2Simple installs do contain old versions of flash player within the installation. We have since remade all our installations without flash included - please contact us on [email protected] and we can send you download links of the latest installs Dan
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now