I was searching for a way to fix my computer's major hard drive lag when I stumbled across this.
http://articles.techrepublic.c...-10878_11-6177180.html
I connected a fast USB drive and mounted it at "C:\_linked\a". I moved AutoCAD to that directory then did this command:
mklink /j "C:\program files\AutoCAD" "C:\_linked\a\AutoCAD"
The program started up just as normal, but it was a lot faster than normal. This probably doesn't hold true for most computers, but remember that I said my computer has a major lag problem since I'm doing a hundred things at once. This computer acts as the house file server, it has p2p running all day and night, and I also play games on this computer. I was so impressed with the speed of using a flash drive that I moved all of my common Program Files to the flash drive and linked them with the above command.
Thoughts/opinions?
http://articles.techrepublic.c...-10878_11-6177180.html
Finally, the /J option will create a hard link to a folder. This is also called a directory junction or junction point and instead of working like a shortcut to a folder, a hard link works more like a regular folder. For example, the command
mklink /J c:\one c:\two\three\four
will make the operating system work with the long directory structure c:\two\three\four just as it were a single directory named c:\one.
When you're finished with any one of these types of symbolic links, you can terminate the link simply by deleting the link. For example, to terminate the one hard link, you'd simply delete the c:\one folder. However, since the link is terminated first and c:\one folder is actually empty, you needn't be concerned about data loss in the c:\two\three\four folder.
I connected a fast USB drive and mounted it at "C:\_linked\a". I moved AutoCAD to that directory then did this command:
mklink /j "C:\program files\AutoCAD" "C:\_linked\a\AutoCAD"
The program started up just as normal, but it was a lot faster than normal. This probably doesn't hold true for most computers, but remember that I said my computer has a major lag problem since I'm doing a hundred things at once. This computer acts as the house file server, it has p2p running all day and night, and I also play games on this computer. I was so impressed with the speed of using a flash drive that I moved all of my common Program Files to the flash drive and linked them with the above command.
Thoughts/opinions?