How do I make hidden files in windows 10 opaque

107 Views Asked by At

Normally when you turn on view hidden files, the hidden files will be semi-transparent. Is there a way to make them full opacity? Specifically, I'm looking to make my appdata folder fully visible.

1

There are 1 best solutions below

0
On

$TargetDirectory = "$env:UserProfile\AppData"
(Get-Item $TargetDirectory -Force).Attributes = 'Directory, NotContentIndexed'

We delete the Hidden attribute.