The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    How To Access External Hard Drive From Command Prompt?

    Discussion in 'Windows OS and Software' started by Stunner, Jul 2, 2010.

  1. Stunner

    Stunner Notebook Deity

    Reputations:
    154
    Messages:
    1,141
    Likes Received:
    0
    Trophy Points:
    55
    Ey guys, I have a python script that I need to run from the command prompt and would like to know how to specify other drives from the command prompt as what I have tried is not working and specifying "cd .." when at C:\ doesn't take me up to a higher level. I would like to actually know how to access shared files through the network via the command prompt. Please provide examples! Thanks in advance.
     
  2. jackluo923

    jackluo923 Notebook Virtuoso

    Reputations:
    1,038
    Messages:
    3,071
    Likes Received:
    1
    Trophy Points:
    105
    E.g if you want to go to Z: drive type in
    Z:
    To go inside a folder in Z:
    simply type in
    Z:\Whatever\
    To access a file in Z - Whatever folder
    Z:\Whatever\run.exe
     
  3. Stunner

    Stunner Notebook Deity

    Reputations:
    154
    Messages:
    1,141
    Likes Received:
    0
    Trophy Points:
    55
    Awesome! Just what I needed. I kept on trying to do "cd Z:" rather than just "Z:". I dont understand why it can't be similar to the unix way of doing things... Thanks!