still looking into network drives Follow
this is a bit disappointing: IDEA 5.0 still keeps looking into my slow network drives, even if those drives are not in any way part of an IDEA project.
Seems like this fix is not going into IDEA 5.0?
Or is it cancelled all the way?
IDEA is boycotting me working from home via VPN :()
I have to disconnect the network drives while working with IDEA...
IDEA: Develope with pleasure and a little pain :)
... ok ok: this is my last post regarding this topic ;)
Please sign in to leave a comment.
Hi,
You could try using subst instead of mapping the drives.
I have this script I run before using idea (this is in windows):
@echo off
echo Creating mapped directories
subst i:
bla\d$
subst s:
bla2\d$
subst o:
blaaap\home
echo done
Regards,
Jari
thanks for the tipp: I tried to do it, but
I need to connect the network drive with a different user name (because I'm not logged into the domain)
subst S:
bla2\xyz passwd /USER:domain\username
does not work, but
net use S:
bla2\xyz passwd /USER:domain\username
does
M.