@Vinod Survase, Thanks for posting in Q&A.
To remove or uninstall Adobe Flash Player via Intune, you can create a PowerShell script that will execute the following command to uninstall Flash Player silently:
C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_<version>.exe -uninstall -force
Replace <version>
with the version number of the Flash Player installed on the system. You can find this by navigating to C:\Windows\SysWOW64\Macromed\Flash\
and finding the name of the .exe file.
Here's an example PowerShell script that performs the Flash Player uninstallation silently:
$version = ((Get-ChildItem 'C:\Windows\SysWOW64\Macromed\Flash\').name -match "FlashUtil32_(.*).exe")[0].split('_')[1].split('.')[0]
$uninstallCommand = "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_$($version).exe -uninstall -force"
Invoke-Expression $uninstallCommand
You can then upload this script to Intune and create an uninstallation policy for it.
Hope the information can help.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.