A Simple way to copy?
Results 1 to 5 of 5

Thread: A Simple way to copy?

  1. #1
    Registered User
    Join Date
    Mar 2001
    Location
    UK
    Posts
    153

    Post A Simple way to copy?

    I have a user who is very bad when it comes to backing up. He is afraid of his CDRW drive and software.........I think it's comes from not being able to program his VCR!!!!!

    I thought I could write a simple batch file that copied various files accross the network so I could back them up.

    The user could double click an icon and off it would go.

    The problem I am having is transfering it across the network.

    If I type:

    xcopy c:\*.* //network/blah blah etc.

    it cannot understand what the //network part is.

    Is there a way to do this in a dos window under w98SE or do I need 3rd party software.

    Any help will be appreciated as always.

    Thanks

    Stuart

  2. #2
    Registered User MacGyver's Avatar
    Join Date
    Oct 2000
    Location
    Ottawa
    Posts
    4,232

    Post

    Use backslashes instead of forward slashes like so:

    \\network\blah\blah

    Windows doesn't understand forward slashes as part of a path.

    If that doesn't work, you will have to map a drive letter to the root drive(s) of the network

  3. #3
    Registered User Stalemate's Avatar
    Join Date
    May 2001
    Location
    d4-e5
    Posts
    15,120

    Thumbs up

    You will probably need to use the NET USE command to "map" a logical drive to a network share.

    NET USE H: \\DESTINATION\SHARED_FOLDER

    In this example, SHARED_FOLDER on the PC named DESTINATION will be mapped as being drive H: on your local PC.

  4. #4
    Registered User
    Join Date
    Oct 1999
    Location
    Clackamas, OR USA
    Posts
    5,422

    Post

    [quote]Originally posted by MacGyver:
    <strong>Use backslashes instead of forward slashes like so:

    \\network\blah\blah

    Windows doesn't understand forward slashes as part of a path.

    If that doesn't work, you will have to map a drive letter to the root drive(s) of the network</strong><hr></blockquote>

    I just tested this method copying from a W2K system to a W98 system and it worked just fine....

  5. #5
    ozrica
    Guest

    Post

    Thanks for all your replies.

    I'll try these and post back if I still have problems.

    Stuart

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •