Created
January 20, 2021 15:17
-
-
Save winhelponline/4dc635770d5b123f6c1a719326037880 to your computer and use it in GitHub Desktop.
Decode TranscodedImageCache wallpaper file name using PowerShell
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
$TIC=(Get-ItemProperty 'HKCU:\Control Panel\Desktop' TranscodedImageCache -ErrorAction Stop).TranscodedImageCache | |
[System.Text.Encoding]::Unicode.GetString($TIC) -replace '(.+)([A-Z]:[0-9a-zA-Z\\])+','$2' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment