About Me

ABOUT Greetings, Thanks for visiting techmindug.blogspot.com I am Opendi Cornelius Founder , CEO and Author of this blog. I work as an Application and Web Based Programmer in my spare time. Connect With Me On : • Facebook • Google+ • Twitter • LinkedIn The genesis behind techmindug.blogspot.com is my passion for anything even remotely related with technology. My areas of interest include Blogging, Technology, Computer Systems, Gadgets, SEO (Search Engine Optimization) , WordPress, Programming, Software Reviews and of course, surfing the net all the time. Techmindug.blogspot.com is a Blog Site where I write on the above mentioned areas of interest. Please feel free to share your valuable suggestions to enrich this blog. I am much thankful for your visit and I look forward to your visit again. If you face any issues , please send me your feedback through the Contact Form. Regards, Opendi Cornelius

Monday, 19 May 2014

How to create virtual disks

Let's say you have a veeeeeeeeeeeeery big path for a file to find and you don't remember the path. You should first have created a virtual disk with this path. How to create one? The code is here.
1. Open Notepad.
2. Write the code:
@echo off
subst x: "%systemroot%"
3. Save as virtual_disk.bat
I explained @echo off before, so now I'll explain only the second line.
subst x: =This creates a virtual disk in the selected letter, where x is the letter.
"xxxx"=This shows the path to be associated where xxx is the path. (%systemroot% means the Winows path).

0 comments:

Post a Comment