Se si è reindirizzato il desktop (o i documenti) su uno spazio DFS capita, su XP e 2003, che non si riescano a visualizzare i files se non dopo aver premuto F5. Come ovviare?
Creare nello script di logon con i seguenti comandi oppure inserire la chiave di registro HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer imputando NoSimpleNetIDList a valore 1
Script:
for /f “Tokens=* delims= ” %%a in (‘reg query “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer” /s^|find /i “NoSimpleNetIDList”‘) do goto :eof
set ComandoAggiornamento=REG ADD “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer” /v NoSimpleNetIDList /t REG_DWORD /d 1 /f
echo %ComandoAggiornamento%
for /f “Tokens=* delims= ” %%c in (‘wmic path win32_operatingsystem get Caption ^|findstr /L /C:”XP”‘) do %ComandoAggiornamento%
echo Aggiornamento effettuato