Category Archives: DOS

Robocopy – Automate Your Windows Copy

I backup my files regularly using the Windows scheduler. For example, several folders from my Windows preferences folder on drive C (C:\Users\dellxps\AppData\Roaming) to another drive, D:\Users\Ronald\AppData\Roaming. There is a built-in smart copier in Windows that not many people know about, … Continue reading

Posted in DOS, Operating System | Leave a comment

Map Network Drive using DOS command

Create a batch file named mapdrive.bat and put the following inside it: 1234REM Map network drives net use j: \\server1\john_music net use p: \\server2\pdfs pause Explanation: Line 1 is a comment. Line 2 (and similarly line 3) maps the network … Continue reading

Posted in DOS | Leave a comment