Skip to content

Instantly share code, notes, and snippets.

@bigoals365
Created January 27, 2015 21:33
Show Gist options
  • Save bigoals365/9452516f112379407cd1 to your computer and use it in GitHub Desktop.
Save bigoals365/9452516f112379407cd1 to your computer and use it in GitHub Desktop.
Update Flash / Adobe for Zero Day Bugs
# Update-Flash.ps1
# This script will find your latest Flash/Adobe ActiveX EXE and run it to find updates like for the Zero Day bugs
# Adobe Begins Auto-Update Patching of Second Flash Player Zero Day
# Pasted from <http://threatpost.com/adobe-begins-auto-update-patching-of-second-flash-player-zero-day/110640>
$name = gci C:\Windows\System32\Macromed\Flash\FlashUtil64*ActiveX.exe | Sort Name -Descending | select name -First 1
$ExeName = $name.Name
$ExeName
$run = "C:\Windows\System32\Macromed\Flash\$ExeName -update activex"
$run
cmd /C "$run"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment