Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: administration permission  (Read 3120 times)

0 Members and 1 Guest are viewing this topic.

phoenix1971

    Topic Starter


    Newbie

    • Experience: Experienced
    • OS: Windows 8
    administration permission
    « on: January 23, 2017, 02:22:01 PM »
    i want to copy a large amount of data to another drive,but no matter what i do i keep getting "You'll need to provide administration permission to copy this file" i've checked permissions and everything looks fine,but still wont move, please help me
    thanks in advance

    DaveLembke



      Sage
    • Thanked: 662
    • Certifications: List
    • Computer: Specs
    • Experience: Expert
    • OS: Windows 10
    Re: administration permission
    « Reply #1 on: January 23, 2017, 07:38:12 PM »
    If you open up command prompt and runas administrator can you copy it then without any problems?

    This will take an understanding of using COPY, XCOPY, or ROBOCOPY. My personal favorite is XCOPY because it works between my newer and older computers and it is able to copy large amounts of data and maintain the folder structure from its source to its destination.

    I use this instruction on a regular basis with my external drives:

    Code: [Select]
    XCOPY C:\Data\*.* E:\Data\*.* /h/s/d/y
    This copies files and folders including hidden files and folders from my Data directory on my computer to same Data directory on the external. You will need to edit this for whichever path your source and destination is.