We found a really annoying issue when implementing our new XenApp 6 desktop. Users were saving files onto the desktop, but they would not appear until they pressed F5.
The users desktop is redirected to their Home Drive share. After more investigations we found that this problem occurred for any shared drive, even if it was to \\computername\c$ of the same computer you were on.
After searching the Internet we found no way to resolve this issue. There is mention of changing a registry key to "DontRefresh" which had limited success with others but didn't work for us.
We found this problem did not exist on another server in our environment and then we started looking into the differences.
Eventually we found it
Remove the following registry keys
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoRemoteRecursiveEvents
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoRemoteChangeNotify
Restart explorer and try again!
These registry settings were being applied as part of a performance upgrade script. I guess from a networking perspective it does create less network traffic but does make
Oppure :
Aggiungere al registro dei clients :
We created a registry file
FixSMB2CacheLifetime.reg
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\LanmanWorkstation\Parameters]
"DirectoryCacheLifetime"=dword:00000005
- Directory cache, by setting DirectoryCacheLifetime to ZERO.
- File Not Found cache, by setting FileNotFoundCacheLifetime to ZERO.
- File information cache, by setting FileInfoCacheLifetime to ZERO
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\LanmanServer\Parameters]
"DirectoryCacheLifetime"=dword:00000000
"FileNotFoundCacheLifetime"=dword:00000000
"FileInfoCacheLifetime"=dword:00000000