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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" | |
No comments:
Post a Comment