I wrote about my case to the TechRepublic forum, no answer so far. However I finally was able to solve my problem investigating a little more:
SOLUTION FOUND (Apr 16/2022)
- I have to modify the Local Group Policy.
Since Win 11 Home Edition doesn’t have the Group Policy Editor tool, I have to use a special method to do that
thru the next .bat file: GPEditEnabler.dat:
@echo off
pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >List.txt
dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~3*.mum >>List.txt
for /f %%i in ('findstr /i . List.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages%%i"
pause
Running the bat file with administrator privileges installed the tool in my PC. Once having the tool, I modify the “Allow the use of remote paths in the file shortcut icons” setting to “Enabled”,
into the Computer Configuration\Administrative Templates\Windows Components\File Explorer section.
This solution alone wasn’t enough
2) I have to create the next Registry Key that complements the LGP:
Registry Hive HKEY_LOCAL_MACHINE
Registry Path Software\Policies\Microsoft\Windows\Explorer
Value Name EnableShellShortcutIconRemotePath
Value Type REG_DWORD
Enabled Value 1
Disabled Value 0
After this all my custom icons are back
I hope this helps others like me