CMD question

hemp

Daemon Poster
Messages
1,304
Our school has many drives I can access from my account but cannot add or take material from. For example the N:\ drive has class stuff on it and my teacher said who ever can access it to add material from CMD gets some extra credit points. Is there a way I can do that.

From what I understand kids in other classes have done it and I am hoping I can get some points if I do.
 
I used to know how, a friend taught it to me, but I forgot it.

A quick google got me this
http://ss64.com/nt/
browse through it to find the command, then type it to see if you can achieve it.
 
Thank you +1

EDIT: I can't locate what I need on the site, I am not very good with CMD =/:EDIT
 
Do you know the file you are trying to access? If you do then when you are in the CMD menu. Input...
copy "Place to retrieve" "place to copy"
with the quotes
For example, say I want to move my test.txt to my test folder on my second partition, then I would type
C:\Users\*Username*> copy "C:\Users\*Username*\Downloads\test.txt" "D:\Test"
This command will copy the test.txt to where ever is the destination I typed.

If you don't know the files in there, then you type the destination then DIR.
For example if I want to view my downloads folder
C:\Users\*Username*\Downloads>DIR
Then it will view all the files and folder in that directory.

There might be an easier or simpler way, but that's what I was taught by friends and teachers.
 
Back
Top Bottom