After little investigation i've found out that problem was with Java "user.home" system property, pointing to the network path.
This situation causes even more troubles, as all the apps which use Java "user.home" create their ".something/" in the path, specified by this property. And after that they all work very slow because of network latency.
I've found a fix here:
http://stackoverflow.com/questions/2134338/java-user-home-is-being-set-to-userprofile-and-not-being-resolvedBasically, altering
CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Desktopvalue to
%userprofile%\Desktopsolved the problem.
Cool!
This comment has been removed by the author.
ReplyDelete