-2

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.

Donut
  • 7
  • 2

1 Answers1

0

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

We delete the Hidden attribute.