Jump to content

Uninstalling Windows 8.1 Native Flash


FukenGruven

Recommended Posts

Ever since XP.. i have never installed Adobe Flash..
i've always used a portable browser...
with portable flash..

But Windows 8 natively comes bundled with Adobe Flash!
There are tools out there for pre-mastering Windows' images...

But this tutorial will focus on already installed /Online installs..
which i just uninstalled IE.. and wanted Flash gone as well..


1. Navigate here to get your flash package:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages


2. Start PowerShell.

3. enable unsigned PowerShell scripts:

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned


4. Now scroll below and verify "Adobe-Flash-For-Windows-Package~31bf3856ad364e35~amd64~~6.3.9600.16384" matches your registry key in Step 1.
- if your package version is different.. edit all occurrence with your package version.

5. Now manually execute each command below.. 1 line at a time.

$acl = get-acl -Path "hklm:\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing"$inherit = [system.security.accesscontrol.InheritanceFlags]"ContainerInherit, ObjectInherit"$propagation = [system.security.accesscontrol.PropagationFlags]"None"$rule = new-object system.security.accesscontrol.registryaccessrule "Administrators","FullControl",$inherit,$propagation,"Allow"$acl.addaccessrule($rule)$acl | set-aclSet-ItemProperty -Path "hklm:\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Adobe-Flash-For-Windows-Package~31bf3856ad364e35~amd64~~6.3.9600.16384" -Name Visibility -Value 1New-ItemProperty -Path "hklm:\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Adobe-Flash-For-Windows-Package~31bf3856ad364e35~amd64~~6.3.9600.16384" -Name DefVis -PropertyType DWord -Value 2Remove-Item -Path "hklm:\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Adobe-Flash-For-Windows-Package~31bf3856ad364e35~amd64~~6.3.9600.16384\Owners"dism.exe /Online /Remove-Package /PackageName:Adobe-Flash-For-Windows-Package~31bf3856ad364e35~amd64~~6.3.9600.16384

If you followed the tutorial to a T.. you should see something similar to my output:

j9n0vl.png

Note: for extreme minimalists.. this procedure could be used to remove other packages..

dism.exe /Online /Remove-Package /packagename:Microsoft-Windows-Camera-Package~31bf3856ad364e35~x86~~6.3.9600.16384dism.exe /Online /Remove-Package /packagename:Microsoft-Windows-FileManager-Package~31bf3856ad364e35~x86~~6.3.9600.16384
Edited by FukenGruven
Link to comment
Share on other sites


  • Replies 2
  • Views 3.1k
  • Created
  • Last Reply

Top Posters In This Topic

  • Reefa

    1

  • FukenGruven

    1

  • Ecarion

    1

Top Posters In This Topic

Thanks fellow very nice..And thx for the:

iNFO
Note: for extreme minimalists.. this procedure could be used to remove other packages..

Edited by F3dupsk1Nup
Link to comment
Share on other sites


  • 2 years later...
Quote

5. Now manually execute each command below.. 1 line at a time.

A few months ago, the forum was updated. So, I believe this part (5) has been changed by the update and the syntax perhaps need to be fix.

I don't know PowerShell... perhaps something like this was the original (or the right) syntax ?

 

What about the offline ? It should beginning by ?

$acl = get-acl -Path "Registry::HKLM\WIM_Software\Microsoft\Windows\CurrentVersion\Component Based Servicing"

At least, now I got an idea why the process refuse to work under Windows 8.1 (ACL ? After ? Remove TrustedInstaller (etc) ?).

Edited by Ecarion
Link to comment
Share on other sites


Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...