My notebook (Dell D630, 2GB memory) runs very well in company, but when I bring it to home, the windows explore runs slowly, and always hang for about one to three seconds. While the other application did not have this problem.
The root cause is that every time I login to the domain server in company, it will run some script to map several network drives, the the network drives keep persistent after I logout. The script looks like the following lines.
@echo off
net use G: \\server1\sharename
net use S: \\server2\sharename
net use T: \\server3\sharename
After I delete the network drives using the following scripts.
@echo off
net use G: /delete
net use S: /delete
net use T: /delete
The windows explorer runs as fast as in company.
