Unable to Copy File From Terminal Server to Client Share

Hi
For years client have been able to copy files from our Windows 2003 Terminal Server to their local workstation using:
copy myfile \\tsclient\mydrive\myfolder
However we upgraded to Windows 2012 Server R2 and now Windows 7 Pro clients cannot copy files.  The copy function creates the file name in their local folder but no content is sent after maybe 20 minutes or so the copy function times out and they get an
error message saying that the application was unable to write to the file.  I have tried this function with my Windows 8.1 workstation and the file copies properly and it works fine for older Windows XP clients.  Does anyone know why Windows 7 clients
are experiencing this issue.
Thanks
Simon

Hi Simon,
Initially please use latest RDP version 8.1 for windows 7 and check result. 
What’s the file size which you are copying?
Does this happens for all users and on all computers?
You can try below method might resolve your case.
1. Login to remote computer using Remote Desktop (RDP). 
2. Open Task Manager in the remote machine
3. Click the "Process" tab
4. Locate a program called "rdpclip.exe"
5. Right click and select "End process" to kill this program
6. Click on "File" menu in the task manager and select "New Task (Run)"
7. Type rdpclip.exe and press the button to start the process.
By killing existing instance of the rdpclip.exe and restarting the program, you can get your copy paste work again in your remote desktop.
Hope it helps!
Thanks.
Dharmesh Solanki
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Similar Messages

  • Copy File from Terminal Server to Workstation Failure

    Hi
    For years client have been able to copy files from our Windows 2003 Terminal Server to their local workstation using:
    copy myfile \\tsclient\mydrive\myfolder
    However we upgraded to Windows 2012 Server R2 and now Windows 7 Pro clients cannot copy files.  The copy function creates the file name in their local folder but no content is sent after maybe 20 minutes or so the copy function times out and they get
    an error message saying that the application was unable to write to the file.  I have tried this function with my Windows 8.1 workstation and the file copies properly and it works fine for older Windows XP clients.  Does anyone know why Windows 7
    clients are experiencing this issue.
    Thanks
    Simon

    Hi Simon,
    The copy command should also work on the Windows 7 clients. Please provide the detailed error message when run the command on the Windows 7 clients.
    You could also use robocopy command to achieve this.
    Robocopy
    https://technet.microsoft.com/en-us/library/cc733145.aspx?f=255&MSPPError=-2147217396
    Best Regards,
    Mandy
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • I am unable to copy files from my macbook pro to my external hard disk.

    I am unable to copy files from my macbook pro to my external hard disk. I tried to copy a movie 800mb in size to my EDD and  it shows the loading box and it says zero kb loaded out of 800mb and sometimes it loads a a few kb of the file, then after a while it ejects my hard disk and gives a message saying you should have ejected it properly. and it sometimes gives this message
    "The Finder can’t complete the operation because some data in “....” can’t be read or written.
    (Error code -36)".
    This happens with a range of files if they are more than a few mb in size, so I am pretty sure its not the file problem. It also occurs sometimes when i try to copy from my EDD to my mac.
    I have tried everything. I formatted my EDD to MS-DOS (FAT) format because i need to use it with mac and windows. I tried resetting The SMC and the PRAM and NVRAM. I tried verify and disk repair on disk utility. But the same thing happens over again and it is really frustrating. The problem doesnt happen with my PC.
    My EDD is an  Apollo 320GB hard drive from Imation.
    Also are there any particular EDD brands that may not have this issue with MACs and can be used on mac and PC?
    Thanks in advance!

    Hey guys,
    So this is follow up from my debarkle with the EDD. I found out my problem with copying files from Mac to EDD and vice versa was a result of a not so good EDD ( i had an apollo hard drive from imation) that was not very compatible with macs. So i did my research and found out that the best hard drives were Western Digital and Seagate. I bought the newest western digital EDD 1TB and formated it to FAT32 and guess what...no problems so far. The only problem is that FAT32 format doesn't copy files larger than about 4 gigs so i couldnt copy a movie from my brothers computer onto my EDD that was 1080p. You could probably resolve that by partitioning a small part of your hard drive in ExFAT? but yeah, hopefully that helped guys.
    Aaisha

  • Copy file from FTP server to sap application server

    Hi,
    I am able to copy a particular file from FTP server to sap application server using FTP_CONNECT, FTP_COMMAND and FTP_DISCONNECT. But here my problem is, it copies into default application server path(DIR_HIOME). I want to copy into specified folder in the application server. How can I specify the required destination path.
    Can you please suggest how to achieve this.
    Thanks,
    Shiva Kankanala

    try something like this:
    data: user(30) type c value 'ftpuser', "ftp username
                  pwd(30) type c value 'ftppass', "ftp password
                  host(64) type c value '255.255.255.255', "ftp server IP
                  cmd1(80) type c value 'lcd /dump', "location on app server where you want to copy the file
                  cmd2(80) type c value 'get', "specifies you are going to get the file from ftp server
                  dest like rfcdes-rfcdest value 'SAPFTPA',
                  file(15) type c value 'file.txt'. "specifies file that you want to get from ftp server
    data: hdl type i,
            key type i value 26101957,
            slen type i.
    slen = strlen( pwd ).
    call function 'HTTP_SCRAMBLE'
        EXPORTING
          source      = pwd
          sourcelen   = slen
          key         = key
        IMPORTING
          destination = pwd.
    call function 'FTP_CONNECT'
        EXPORTING
          user            = user
          password        = pwd
          host            = host
          rfc_destination = dest
        IMPORTING
          handle          = hdl.
    call function 'FTP_COMMAND'
        EXPORTING
          handle        = hdl
          command       = cmd1
        TABLES
          data          = result
        EXCEPTIONS
          command_error = 1
          tcpip_error   = 2.
      loop at result.
        write at / result-line.
      endloop.
    CONCATENATE cmd2 file INTO cmd2 SEPARATED BY SPACE.
    call function 'FTP_COMMAND'
          EXPORTING
            handle        = hdl
            command       = cmd2
          TABLES
            data          = result
          EXCEPTIONS
            command_error = 1
            tcpip_error   = 2.
        loop at result.
          write at / result-line.
        endloop.
        refresh result.

  • Copy File from Presentation Server to Application Server in Background

    Hi,
    I need to copy Image file from Presentation Server to Application Server.
    The below given code is workking fine in Foreground but whenevr I am trying to execute in Background, the job is cancelled and I am getting a dump.
    data : wa_source      type string,
              wa_destination type string.
    wa_source = 'C:\PARBIND.BMP'.
    wa_destination = 'D:\PARBIND.BMP'.
    start-of-selection.
      call method cl_gui_frontend_services=>file_copy
        exporting
          source               =  wa_source
          destination          = wa_destination
    *    overwrite            = SPACE
    *  EXCEPTIONS
    *    cntl_error           = 1
    *    error_no_gui         = 2
    *    wrong_parameter      = 3
    *    disk_full            = 4
    *    access_denied        = 5
    *    file_not_found       = 6
    *    destination_exists   = 7
    *    unknown_error        = 8
    *    path_not_found       = 9
    *    disk_write_protect   = 10
    *    drive_not_ready      = 11
    *    not_supported_by_gui = 12
    *    others               = 13
      if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    In backgound Error is....
    Exception condition "CNTL_ERROR" raised.*
    Any solution is appreciated.
    Thanks
    Arbind

    Hi Arbind,
    Just realize... when you run it in foreground, you have a foreground to capture the file location. so it runs fine..
    but when you are running it in background, there is no foreground to check that is no gui present... how can it check where the C:\.... location is??
    no need of reading any oss note... just see.. the name is cl_GUI_FRONTEND_service.. its only for front end..
    u need open dataset, read dataset, close dataset kind of things while running in background. or RFCs to read the file... (search SDN).

  • How to copy file from application server

    Hello experts,
    How to copy file from one folder of application server and paste it to other folder of application server(application server is same)?
    Is there any function module exists???
    thanks in advance
    Saurabh

    Hi you can use this function module to move a file from application server to another folder on application server.
    call function 'WS_FILE_COPY'
               exporting
                    destination = m_destination
                    source      = m_source
               importing
                    return      = return.
    Plus u can use this function module to delete the file from that folder from which u want to replace it.
          call function 'WS_FILE_DELETE'
               exporting
                    file   = m_source
               importing
                    return = return.
    The above FM can help u copy a file from one folder to another and delete the file from that folder.

  • Download text file from application server to client server.

    Hi all,
    I am facing a format issue while downloading text file from application server to the client machine.
    The issue is that, say I have 6 to 10 lines in my text file in application server. but when i store it on the hard drive,
    it shoes all the data in a single line. Where as i need to download data in same format as in application server.
    Awaiting for your responses.
    Regards,
    Jose

    Hi,
    If we want to upload file data from the application server to the internal table, there is no function module or class static method which we can use, we must wirte the code by ourselves.
    1. For the file data which has no seperator between field columns.
    PARAMETERS p_file  TYPE dxfile-filename.
    START-OF-SELECTION.
    OPEN DATASET p_file IN TEXT MODE ENCODING DEFAULT FOR INPUT.
      DO.
        READ DATASET p_file INTO gds_data.
        IF sy-subrc <> 0.
          EXIT.
        ENDIF.
        APPEND gds_data TO gdt_data.
      ENDDO.
    CLOSE DATASET p_file.2. For the file data which has tab separator between field columns.
    DATA: gds_field_split type gts_data.
    FIELD-SYMBOLS: <fs_field> TYPE gts_data.
    PARAMETERS p_file  TYPE dxfile-filename.
    START-OF-SELECTION.
    OPEN DATASET prf_file IN TEXT MODE ENCODING DEFAULT FOR INPUT.
      DO.
        READ DATASET p_file INTO gds_field.
        SPLIT gds_field  AT cl_abap_char_utilities=>horizontal_tab
             INTO TABLE gdt_field_split.
       LOOP AT gdt_field_split  into gds_field_split.
           gdf_index = gdf_index + 1.
           ASSIGN COMPONENT gdf_index OF STRUCTURE
                 gds_data to <fs_field>.
          IF sy-subrc = 0.
              <fs_field> = gds_field_split.
          ENDIF.
       ENDLOOP.
        APPEND gds_data TO gdt_data.
      ENDDO.
    CLOSE DATASET p_file.
    Thanks & regards,
    ShreeMohan

  • Unable to read file from application server

    Hi guys,
    I am reading file(could be any extension) from application server,but some time i am successfuly able to read file and sometime unable to read,why its happening .
    my code is here
    OPEN DATASET E_FILE FOR INPUT IN  BINARY MODE . "
      IF SY-SUBRC = 0.
        DO .
          READ DATASET E_FILE INTO GS_PDF_TAB.
          IF SY-SUBRC = 0.
            APPEND GS_PDF_TAB TO GT_PDF_TAB.
          ELSE.
            EXIT.
          ENDIF.
        ENDDO.
        CLOSE DATASET E_FILE.
      ENDIF.
    Thanks
    Ankur Sharma

    Hi,
    What actually happens?  Do you get a short dump?  Do you get a return code ne 0?  Does it run fine but you get no data in your table?
    We aren't mind-readers and can't help much without more information.
    Try using transaction AL11 to see if you access the files you are trying to open.
    Gareth.

  • Unable to copy files from mac to PC

    Hi,
    I have a mac (osx 10.6.3) and a PC (Windows Vista) connected to my local home network. On the PC there are some shared folders. I can connect to the PC using the "connect to server" dialog and I can get all those PC folders mounted in my desktop (apparently in read/write mode). Dragging files from the PC to my mac works nicely but, surprisingly, there is no way to drag files from my mac to the pc.
    When I drag a file from my mac to PC I'm always getting a dialog asking me to introduce my password to "allow Finder to make changes". I think it makes no sense because Finder should make no changes at all to copy a file to the PC and, on the other hand, I've read/write permissions on those files. After typing my password I get a second dialog: "One or more items can’t be copied to “Movies” because you don’t have permission to read them. Do you want to copy the items you are allowed to read?". Again, it makes no sense because I do have read/write permissions on those files. Unfortunately, any file is transferred after clicking "continue". This behavior is independent of file size, file type and permissions. No way to get any file transferred to the PC. What I'm doing wrong?
    Thanks in advance for your help.

    Hi, paullopez.
    Thanks for your answer. Unfortunately, in my previous post, I forgot to comment that I had macFuse and ntfs-3g already installed in my mac. I wonder if the problem is related to the osx implementation of SAMBA. Or, alternatively, ntfs-3g may be not able to work with samba mounted volumes? I have very little experience in sharing files via SAMBA so any help is welcomed.

  • Using scp to copy files from remote server to mac from a newbie

    Hi am a new poster to this forum and getting (re)acquainted with the unix world using terminal on the Mac. I am part of webteam for a large website run by a nonprofit where I have administrative access. I hope that this forum is the correct venue for my question.
    The other day I used terminal tsch to logg onto a remote server where I have admin privaleges. One of the other admins and I were in the process of experimenting with using either rsync or scp to "backup" the server. We are experimenting with different backup strategies over and above those supplied by our web host. After finding out how to open port 22 on my modem and setting services in sharing to allow for remote log on, I logged on to the remote server and ran this command (suggested by another admin):
    scp -r -p -v /remotefolder [email protected]:/Users/drktyler/Documents/serverBU/
    Unfortunately I had severely underestimated the amount of time it would take to perform scp and needed to terminate the scp job. For example, I only got 100 MB onto my Mac in one hour (normally takes about 6 mintues to download a 100 MB file from the internet) I tried to kill the job by doing:
    ctrl -z
    ls ps
    kill (scp pid #)
    This did not work. And I forgot about trying ctrl-c <blush>
    I was able to exit my session on the remote server which "exited" the scp job.
    Oh, before running scp, I did try rsync and it did not work. Unfortunately, I had not set my terminal session to an unlimited buffer size, so the early part of my session rolled off the terminal screen. This means I have no idea what the error was.
    This morning the other admin was performing some backups on the remote server and noticed that there was a an unexplained directory on the remote server named:
    mymacuserid
    It had what he called some rpms. I am not exactly sure what a rpms cache files are, but I think that rpms has some relatationship to the RPM package manager used by many linux systems. I could not account for how the mymacuserid directory got on the remote server because I did not put it there and my log in id to the remote server bears no resemblance to my Mac user id.
    We don't believe that this directory did any harm to the remote server, but I sure as heck would like to know how it got there.
    My question is if there was something about my scp command that
    (1) created this "temporary" mymacuserid directory on the remote server
    (2) did the way I ended the scp job by exiting the terminal mean that this temporary directory was not "cleaned up."?
    (3) what other options might have been available to me to kill the job and clean up after the job? ctrl-c while logged onto the remote server? opening up a second terminal window and killing the ssh job?
    (4) is scp normally that slow?
    My Mac: Mac Mini, 1.66 GHz Intel Core Duo, Memory: 1.5 GB 667 MHz DDR2 SDRAM, Mac OS 10.4.8
    Remote server: CPU AuthenticAMD, AMD Athlon(TM) XP 2600+
    Version psa v8.1.1_build81070716.12 os_CentOS 4.2
    OS Linux 2.6.9-55.0.2.EL {CentOS is built from Red Hat Enterprise Linux}
    Respectfully yours,
    treehugger from nj

    J.V. Thanks so much for your very helpful response!
    The other admin who was trying scp over the weekend also reported that the job ran very slowly, so I suspect the slow response time may be on the remote server end. I do appreciate knowing that you have gotten 80% of your advertised DSL speed with scp.
    Thank-you for being so polite and gentle in your response. No I did not know that if the remote patname has white space in it, that I need to quote the whole path and escape any white space with preceding backslashes as you showed in your rsync example.
    Finally, as for the rogue elements being left on the server, I figured out that these rogue elements were left on the server the day before I did the aborted scp job because I had to quit the terminal in the middle of an active rsync job while logged onto the remote terminal. When I went onto the server this morning, I checked the timestamps on the rogue files and the timestamps match up.
    The other admin has finally succeeded in doing a full server back-up (in addition to the back-up using the back-up utility provided by our web host). So, for the moment we are in pretty good shape. Of course, I'm not sure that I could replicate what he did. <shrug>
    Thanks again. I'm glad I posted on this forum as I have always learned a lot by reading the apple forums I suspect that I will be posting again.
    T.H.
    P.S. Please forgive me for not including copies of your original message in my reply. There is probably a setting that I need to change.

  • HT4088 unabl to copy files from pc

    Hi Team,
    Iam unable to copy my files (Images or songs) from my windows PC to Apple ipad4
    Could you please let me know the procedure for the same
    Thank you

    Hi there aaryan_manoj,
    You may find the information in the article below helpful.
    iTunes 11 for Windows: Set up syncing for iPod, iPhone, or iPad
    http://support.apple.com/kb/ph12313
    -Griff W.

  • Unable to copy file from local drive to external drive

    I'm attempting to copy a 7gb file from my local drive on my iMac to an external firewire drive. Whenever I try to do this I get the following message: Sorry, the operation could not be completed because an unexpected error occurred.
    I've rebooted, checked permissions on local and external drive. I'm the only person that uses this iMac. It only has one profile on it. Any suggestions?

    Hello Sikwidityo
    If that External HD is formatted MS-DOS FAT32, then there is a 4GB file size limit that the iMac's can write to it.
    See > http://www.macworld.com/article/51972/2006/07/ww_drives.html
    In order to copy large files to it you from your Intel iMac's, you will need to set the Partition Map Scheme to GUID Partition Table and Format it Mac OS Extended (Journaled)
    See > http://www.kenstone.net/fcphomepage/partitioningtiger.html
    Keep in mind that repartitioning and reformatting will erase the current data on the External drive. So if you do, you'll need to copy it's contents to one of your iMac's and then back when your done.
    Dennis

  • Copy files from mounted server

    I am new to ARD. I am used to using Timbuktu. In Timbuktu I can choose exchange files, and get a list that I can browse, including any attached drives and mounted volumes. I can navigate right to the file I want, and then copy it.
    I cant seem to find a easy way to browse files in ARD. I can do a search for files, but even then I can seem to be able to just browse files from a mounted volume.
    Is there any way to do this in ARD?

    Sorry, but there is no file browser in ARD (other than taking control of a system and browsing through it's own Finder). You have to search for a file, either with the File Search or, if the clients are running Mac OS X, a Spotlight search.

  • Slow transfer of files from ftp server to client system

    Recently when i connect to my ftp server, copying files is very slow, using either Ethernet or Airport, this wasn't the case before. At first i thought it was my network cable but using it with another Mac, files are copied fast. I don't want to format my computer, any ideas why i'm having this slow connection?

    Hi Steve!
    Your problem sounds like a duplex issue with your Ethernet connection or you have more than just one network switch/hub between you and the server and they aren't configured very well.
    Many network admins force their network switches to 100MB/full because Intel machines don't sometimes negotiate their speeds very well. However, Macs typically hate to be forced and prefer "auto" configuration.
    Verify that you have one network switch between you and the server and if so, verify that your Mac's network port is set to auto-negotiate your speed and duplex.
    You can type "ifconfig" into a Terminal window on your Mac to determine its current speed and duplex. Look for a line that says something like "media: autoselect status: active". For a wired Ethernet port you'll also see the speed and duplex of your connection.
    Hope this helps! bill
    1 GHz Powerbook G4   Mac OS X (10.4.5)  

  • Copy file from one server to another

    I have two intranet sites on two different servers. There is an image on the site1 which I would like to copy to site2. How do I do that ?
    Here is my code.
    <cfset image1Ext = Right(firstStoryImg, 3)>
    where firstStoryImg evaluates to http://mycompany.com/site1/images/firstImage.gif
    The following code is throwing "The cause of this exception  was: java.io.FileNotFoundException:" error.
    <cffile action="copy" source="#firstStoryImg#" destination="/folder/Images/image1.#image1Ext#" nameconflict="overwrite">

    What he said.
    In addition:
    <cfset image1Ext = Right(firstStoryImg, 3)>
    What happens if someone uploads a (valid) .jpeg file? You'll land yourself with a .peg file, that's what.

Maybe you are looking for

  • Windows XP can't connect to OfficeJet 4630 during installation

    Just bought a new OfficeJet 4630 and am very excited to use its wireless features. I got it connected to our in-home wireless router (Netgear) very easily, typing the WEP key right into the printer's keypad. I was subsequently able to install it on m

  • Apple Care has determined my download of Lion to be corrupt or broken

    FYI to everyone who read my previous questions. Apple Care has determined that the download of Lion I received is corrupt or broken. No offense to the nice guy at Apple who helped me, but, DUH. Apple is sending me Snow Leopard discs free of charge si

  • Retrieve the Purchase Order *TAX* Condition Records

    Hi, Tcode : ME23n Area  : Item Tab   : Invoice Tab in Item On clicking the button <b>taxes</b>  I can see different condition attached in the tax code. These taxes are available in KONH KONP table and the related Axxx table, (in my case A003 table).

  • Difference btwn at new and on change of

    Hi all, can i know the difference between 'at new' and 'on change of'.

  • CS5 Classroom in a Book Delayed AGAIN

    Amazon just sent me a notice that Premiere Pro CS5 Classroom in a Book is delayed again The new "possible" date is somewhere between Sept 8th to the 14th I will HOPE this means that the author(s) are working with Adobe to document the latest program