Create a Virtual Drive for Your Most Used Folder in My Computer
We can create a virtual drive in My Computer for your most used folder, so that you can access your favorite folder from My Computer easily.
Here is the trick:
1. In RUN dialog box type cmd to open Command Prompt.
2. Now type the following command:
Code:
subst drive_letter: folder_pathFor example, if you want to create virtual drive for folder D:\Pictures, then the command will be:
Code:
subst H: D:\Pictures3. It will immediately create H: virtual drive in My Computer.
4. To delete this virtual drive use the following command:
Code:
subst drive_letter: /DThe drive in example can be deleted using this command:
Code:
subst H: /DNote:
1. You can not create virtual drive using existing drive letter. For example, if you have 2 drives C: and D:, you can not use them to create virtual drive.
2. You should not use chkdsk, diskcomp, diskcopy, format, label and recover commands on virtual drives.
______________________________
0 comments:
Post a Comment