Program crashes while saving to documents/desktop RDS2012R2

Hi,
A costumer of mine has an RDs2012r2 server. There around 17 users on it.
The server is part of domain (also 2012R2) and uses office 2013 SP1 and some thirdparty apps.
IN total 4 servers (ad/file, exchange, database, RDS)
But I have an issue that I cant figure out somehow.
Most things work normal, when a User want to save something (a document from word/excel, an download from IE11 etc) to an folder in his/her Documents or Desktop, it fails. In word/excel the program get stuck, the file is created, together with an .tmp file.
You can open the file, but its empty. When you rename the tmp file to docx, the data of the document is there.
Downloading files to Downloads of Desktop will get stuck at 99% and if you want to cancel the download, or close IE, it gets stuck and Explorer crashes afterwards.
When saving it to an Shared folder on the other server, there are no problems. Also you can copy those same files to Documents or Desktop without problems.
It's only affecting users, new or existing, but not the admin accounts somehow.
So it has probably has to something with userrights, or maybe Grouppolicies. The latter has no restriction in there own folders. Also if i check there folders/documents, that user has full access. Eventviewer has an Application Hang eventid 1001 with no useable
info if Word/Excel crashes. Can someone help? If you need more info, please let me know.

Hi,
Thank you for posting in Windows Server Forum.
As per you comment, regarding any GPO setting. Have you placed any setting related to it.
This issue can occur if the %SystemRoot%\SYSVOL\Domain\Policies Group Policy directory structure is missing or is incorrect. The Replication service is trying to replicate the directory but cannot locate it.
To resolve this issue, the directory must be restored to allow replication between domain controllers. This directory can either be restored from a backup or it can be recreated. You can troubleshoot missing sysvol and Netlogon shares on domain controller with
the help of this link.
Hope it helps!
Thanks.
Dharmesh Solanki

Similar Messages

  • My Itune program crashed while listening to music last monday and unable to download program back onto my desktop.

    My Itune program crashed while listening to music last monday and unable to download program back onto my desktop.

    Great thanks for sharing
    Now what is your your question?
    what happens when you try to download it?

  • Can i know the user exits which should trigger while saving billing docu

    hi,
    please can u help me to find out user exits which should trigger while saving billing documents.

    A couple years ago I downloaded this program, I think from SAPFANS.  I don't take any credit for it...Not sure who originally wrote it.  Just type in the t-code and hit execute. 
    *& Report name          : Identify and Drill-Down to SAP User Exits.   *
    *& Program name         : ZZ_FIND_USER_EXITS                           *
    REPORT  ZZ_FIND_USER_EXITS
      NO STANDARD PAGE HEADING
      LINE-SIZE 132
      LINE-COUNT 65
      MESSAGE-ID MM.
    D A T A   D E F I N I T I O N                                        *
    TABLES : TSTC,      " SAP Transaction Codes
             TADIR,     " Directory of Repository Objects
             MODSAPT,   " SAP Enhancements - Short Texts
             MODACT,    " Modifications
             TRDIR,     " System Table TRDIR
             TFDIR,     " Function Module
             ENLFDIR,   " Additional Attributes for Function Modules
             TSTCT.     " Transaction Code Texts
    S E L E C T I O N   S C R E E N                                      *
    PARAMETERS : P_TCODE LIKE TSTC-TCODE OBLIGATORY.
    I N T E R N A L   S T R U C T U R E S   &   T A B L E S              *
    DATA : GT_TADIR LIKE TADIR OCCURS 0 WITH HEADER LINE.
    V A R I A B L E S                                                    *
    DATA :
           GV_FIELD1(30)  TYPE C,
           GV_DEVCLASS    LIKE TADIR-DEVCLASS.
    C O N S T A N T S                                                    *
    CONSTANTS:
               GC_F     LIKE TRDIR-SUBC   VALUE 'F',
               GC_R3TR  LIKE TADIR-PGMID  VALUE 'R3TR',
               GC_FUGR  LIKE TADIR-OBJECT VALUE 'FUGR',
               GC_SMOD  LIKE TADIR-OBJECT VALUE 'SMOD',
               GC_PROG  LIKE TADIR-OBJECT VALUE 'PROG'.
    R A N G E S                                                          *
    RANGES:
      GR_VKORK      FOR  WKBP-VKORG.
    E V E N T   P R O C E S S I N G                                      *
    INITIALIZATION.
    AT SELECTION-SCREEN.
      SELECT SINGLE PGMNA
        INTO TSTC-PGMNA
        FROM TSTC
        WHERE TCODE = P_TCODE.
      IF SY-SUBRC <> 0.
        MESSAGE E899(MM)
          WITH TEXT-E01    " Input Transaction Code is Invalid.
               TEXT-E02.   " Please Correct !!
      ENDIF.
      SELECT SINGLE TTEXT
        INTO TSTCT-TTEXT
        FROM TSTCT
        WHERE SPRSL = SY-LANGU
          AND TCODE = P_TCODE.
    START-OF-SELECTION.
      CLEAR GV_DEVCLASS.
      SELECT SINGLE DEVCLASS
        INTO GV_DEVCLASS
        FROM TADIR
        WHERE PGMID  = GC_R3TR
          AND OBJECT = GC_PROG
          AND OBJ_NAME = TSTC-PGMNA.
      IF SY-SUBRC <> 0.
        SELECT SINGLE SUBC
          INTO TRDIR-SUBC
          FROM TRDIR
          WHERE NAME = TSTC-PGMNA.
        IF TRDIR-SUBC = GC_F.         " Function Group
          SELECT SINGLE FUNCNAME
            INTO TFDIR-FUNCNAME
            FROM TFDIR
            WHERE PNAME = TSTC-PGMNA.
          SELECT SINGLE AREA
            INTO ENLFDIR-AREA
            FROM ENLFDIR
            WHERE FUNCNAME = TFDIR-FUNCNAME.
          CLEAR GV_DEVCLASS.
          SELECT SINGLE DEVCLASS
            INTO GV_DEVCLASS
            FROM TADIR
            WHERE PGMID    = GC_R3TR
              AND OBJECT   = GC_FUGR
              AND OBJ_NAME = ENLFDIR-AREA.
        ENDIF.
      ENDIF.
      SELECT *
        FROM TADIR
        INTO TABLE GT_TADIR
        WHERE PGMID  = GC_R3TR
          AND OBJECT = GC_SMOD
          AND DEVCLASS = GV_DEVCLASS.
      FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
      WRITE:/(19) 'Transaction Code - ',
              20(20) P_TCODE,
              45(36) TSTCT-TTEXT.
      SKIP.
      IF NOT GT_TADIR[] IS INITIAL.
        WRITE:/(95) SY-ULINE.
        FORMAT COLOR COL_HEADING INTENSIFIED ON.
        WRITE:/1 SY-VLINE,
               2 'Exit Name',
              21 SY-VLINE ,
              24 'Description',
              95 SY-VLINE.
        WRITE:/(95) SY-ULINE.
        SORT GT_TADIR BY OBJ_NAME.
        LOOP AT GT_TADIR.
          SELECT SINGLE MODTEXT
            INTO MODSAPT-MODTEXT
            FROM MODSAPT
            WHERE SPRSL = SY-LANGU
              AND NAME = GT_TADIR-OBJ_NAME.
          FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
          WRITE:/01 SY-VLINE,
                 02 GT_TADIR-OBJ_NAME HOTSPOT ON,
                 21 SY-VLINE,
                 22 MODSAPT-MODTEXT,
                 95 SY-VLINE.
        ENDLOOP.
        WRITE:/(95) SY-ULINE.
        DESCRIBE TABLE GT_TADIR.
        SKIP.
        FORMAT COLOR COL_TOTAL INTENSIFIED ON.
        WRITE:/ 'No of Exits:' , SY-TFILL.
      ELSE.
        FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
        WRITE:/(95) 'No User Exit exists'.
      ENDIF.
    AT LINE-SELECTION.
      GET CURSOR FIELD GV_FIELD1.
      IF GV_FIELD1(8) = 'GT_TADIR'.
        SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
        CALL TRANSACTION 'SMOD' AND SKIP FIRST   SCREEN.
      ELSE.
        MESSAGE I899(MM)
          WITH TEXT-I01    " Click on the Exit Name to Drill-Down
               TEXT-I02.   " to SAP Enhancement Information.
      ENDIF.
    END-OF-SELECTION.
    TOP-OF-PAGE.
    S U B R O U T I N E S                                                *
    E N D   O F   R E P O R T  ****************************************

  • Error while saving shipment document

    Dear Gurus,
    While saving Shipment document i am getting this error
    Transportation planning point not allowed for export shipment.
    Please note i am not doing export shipment.
    Thanks
    KS

    I have checked all the settings and have found OK.
    I am getting the above error even while making empty shipments, without deliveries.
    I have used the same shipment type & transportation planning point earlier. I did not get these error at that time. I was able to create shipment cost document and other documents.
    Please advise.
    Thanks
    KS

  • Unable to see existing documents in a Custom Sharepoint 2013 Document library while saving a document directly in it using explorer mode

    Hi,
    We have a SharePoint 2013 doc library based on a custom template, which has been migrated from 2010.
    We are unable to see existing documents in a Document library created using this template while saving a document directly in it using explorer mode, However we can save files and even see them in explorer mode, only when we try to save a new document there
    directly, we cant see the old docs.
    All the OOB libraries work fine.
    Below is the normal behavior while saving a file, however nothing comes up when saving on this custom template library

    Solved it myself guys... (Well the major part)
    Got help from here...
    https://www.nothingbutsharepoint.com/sites/devwiki/articles/pages/blank-open-save-dialog-when-browsing-document-library-from-office-clients.aspx
    and
    http://www.sharepointconfig.com/2011/02/vs2010-list-definition-template-missing-file-dialog-view/
    with some tweaks of my own..
    Still working on it because its showing SharePoint 2010 header... And I need 2013 look...

  • An error occurred: Save document failed / An error occurred while saving the document: PATH (HDB 00055)

    Hello Colleagues, I am creating an analysis in build 576, everything goes well, the algorithm calculates the needed values, but when I try to save the analysis, I receive the following error message: "An error occurred: Save document failed / An error occurred while saving the document: <PATH> (HDB 00055)".
    Does anyone know what could cause this error message?
    Thanks a lot for any hint.
    Sergey

    Hi Henry,
    I am using PA 1.0.11 and received this error; any update on this fix for SAP PA. Does this happen for a particular data source.
    I am currently using Excel as source and whenever I try to use this data; I get this even if I move the data to a new file or rename a file. I tried to check the same issue with a different file and it works fine. This file worked fine a day back.
    Please let me know if this is unusual for this version.
    Regards,
    Arvind E

  • CS Crashes While Saving

    There seems to be an incompatibility problem that causes PS CS to crash while saving under OSX 10.4.11. Crash reports say Exception: EXC_BAD_ACCESS (0x0001)
    Codes: KERN_INVALID_ADDRESS (0x0001) at 0xfffffff4 and strange folders ( ¬∂ßå∆∂´ ) are created in Home/Preferences. Apple blames Adobe. Adobe blames Apple. Either way - we're screwed.
    Any gurus out there with thoughts?

    Yes lower the allocation to about 75 -80 %.
    You need some memory for the system also before relaunching PS trash the settings folder to give yourself a clean start and also if you don't have another disk or partition as a scratch disk get one.
    To trash the settings folder
    1. Quit Illustrator.
    2.Go to User/username/Library/Preferences/ Adobe illustrator CS4 Settings and trash the settings folder, the whole folder not just the contents of the folder..
    3. Start Illustrator. Illustrator creates a new preferences file.

  • Garageband crashing while saving

    Hi all,
    I was working on a track on Garageband today on my ipad when it suddenly crashed while saving. Now whenever I open it up, it goes back to that song and won't save - so I can't access all my other files! There's an awful lot of work on those files and I really want to get them back but I've no idea how. I've tried switching ipad off and back on, but that hasn't worked - and the files aren't synced up to my PC as I haven't had access to it for a while.
    Is there a way to get back to the main screen on garageband? Please someone help, this is so frustrating!
    Thanks
    PS

    Sad to say this has now happended to me twice.
    Any help or ideas would be greatly appreciated.
    Cheers

  • Form Builder crashes while saving .fmb file when connected to db

    Hi,
    I am getting error The instruction at "0x679c352c" referenced memory at "0x0000001c". The memory could not be "read".
    Forms version is 6.0.8.11.3 and database version is 10.2.0.3.0
    I am doing the following steps:
    1) Open .fmb file in forms builder
    2) Connecting to database
    3) Making some changes in form
    4) Compiling (Ctrl+Shift+K) and generating form (Ctrl+t)
    5) Saving form <--- Here I am getting the error and form crashes
    If I do not connect to database then builder is allowing me to save the file
    1) Open .fmb file in forms builder
    2) Making some changes in form
    3) Saving form (Successful)
    I did some exercise just as a guess that may some part of the form is causing this error. I full expanded all components of the form i.e. blocks, canvases, triggers etc.
    This exercise produced that 3 program units were giving same error while full expending those. I deleted those 3 program units and re-created them. Now it is not showing me this memory error while full expanding all program units. I can now fully expand my full form.
    But I am still getting this error while saving the changes when I am connected to database.
    Please help.
    Regards,
    Edited by: rawat75 on Sep 2, 2011 7:13 PM

    Hi Experts,
    We are getting the same issue. Our form builder crashes once we open our custom form
    in form builder.
    Server shows:-
    Forms 6.0 (Forms Runtime) Version 6.0.8.28.0 (Production)
    Form Builder shows:-
    Forms [32 Bit] Version 6.0.8.11.3 (Production)
    How to upgrade the form builder version?

  • Error while saving the documents in Transactions MIRO,VA02, VA01, ects

    Hi SAP Gurus,
    i am geting an popup error while saving or after changing the documents in MIRO VA01, VA02 transactions..
    The error is  * " Condition Table Missing : Access JST1 60 ( Pricing Taxes ) " *
    can u please help me out.
    Regards
    Kumar m

    Hi,
    Found a note explaining the significance of these errors.
    It says:
    "NZE-28862: SSL connection failed
    Cause: This error occurred because the peer closed the connection.
    Action: Enable Oracle Net tracing on both sides and examine the trace output. Contact Oracle Customer support with the trace output."
    For further details you may refer the Note: 244527.1 - Explanation of "SSL call to NZ function nzos_Handshake failed" error codes
    Thanks & Regards,
    Sindhiya V.

  • Odd program crash when saving on server.

    When I go to save and I click on the drown down bar to select my recent places, etc., the program crashes. This only happens when the location is on our server. I can save to the server just fine, but if I click on the drop down tab, it never drops down then the program crashes. If my location is on the HD, it works just fine. This happens with any program.
    Any thoughts?
    Thanks!

    Hi Vondy, try this...
    First, Safe Boot , (holding Shift key down at bootup), use Disk Utility from there to Repair Permissions, move this file to the Desktop & reboot.
    /Users/YourUserName/Library/Preferences/com.apple.recentitems.plist
    In finder, select Go menu>Go to Folder, and go to "/volumes".
    Volumes is where an alias to your hard drive ("/" at boot) is placed at startup, and where all the "mount points" for auxiliary drives are created for you to access them. This folder is normally hidden from view.
    Drives with an extra 1 on the end have a side-effect of mounting a drive with the same name as the system already think exists. Try trashing the duplicates with a 1, and reboot.

  • Program Crashes while multi-threading

    Hi Gurus:
    I am working on a program where I am running multiple JInternalFrames inside a JFrame. Each JInternalFrame starts a new thread (when the OK button is pressed). The thread calls a native (C++) method, which interfaces with another API (CAD).
    Problem is that when I run two frames together, my program crashes. If I wait for one frame to complete the process and then start the second one, everything works fine. I am not sharing any data between the threads. I even put a synchronized access modifier in front of the method that is causing the crash, to no avail. Don't know what else to try. I also ran the program in two different processes with only invoking one frame in each process, and it worked fine.
    The program either crashes with no error message, or sometimes it gives this error:
    -------------- Start of error --------------------------
    Another exception has been detected while we were handling last error.
    Dumping information about last error:
    ERROR REPORT FILE = (N/A)
    PC = 0x22ABDFFD
    SIGNAL = -1073741819
    FUNCTION NAME = (N/A)
    LIBRARY NAME = (N/A)
    Please check ERROR REPORT FILE for further information, if there is any.
    Good bye.
    ----------- End of error -------------------------------
    Any help would be appreciated.
    Regards,
    Kamran

    I also got that error - sometimes.
    Now I get something like this :
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 11 occurred at PC=0x403bce8e
    Function name=__libc_free
    Library=/lib/libc.so.6
    Dynamic libraries:
    08048000-0804c000 r-xp 00000000 08:01 17180 /usr/java/jdk1.3.1_01/bin/i386/native_threads/java
    0804c000-0804d000 rw-p 00003000 08:01 17180 /usr/java/jdk1.3.1_01/bin/i386/native_threads/java
    40000000-40016000 r-xp 00000000 08:01 446282 /lib/ld-2.2.2.so
    40016000-40017000 rw-p 00015000 08:01 446282 /lib/ld-2.2.2.so
    and so on.
    I got an application which starts 50 threads (sometimes I start 60 or 30, just testing right now).
    Do you've got RedHat? And Kernel 2.4.2-2smp?
    I don't know how I got rid of your error, but now I got that one...
    Anybody who has experiences with that?
    THX,
    Peter

  • Flash CS5 crashed while saving (unexpected error)

    When working on a flash project in cs5 my computer crashed. When I re opened it i got a text box saying unexpected file type.
    Any help, advice or answers would be great. I've been working on this project for almost a hundred hours and I would hate to lose it over a system crash. Even telling me that its gone would be a relief.
    Also I do have a swf file from the almost completed flash. Is there anyway to convert it back to flash so I can finish editing? I tried using sothink swf decompiler but when I ran it through all I got was a blank fla.
    I would greatly appreciate any words or help. Thank you

    This has happened to me twice. This time it happened with a file that crashed several times before while moving a MC attached to a IK rig. The final crash was while saving.  All I get now is "An error occurred while opening" and can not open the file.

  • Edge animate crashing while saving...

    Edge animate always fails while saving one of my projects. I tried it in different systems but still the same issue. Does edge have a limit in no of symbols??? because i have about 100 symbols.... can you provide me with a patch or something for this issue. Please reply ASAP. I am attaching the project here..
    http://1drv.ms/UWTgUS

    In case any of the staff are trying to rectify this bug...here is something I noticed that may be helpful. When I discover that my recent change/addition has not been saved (because I must now check after each step by refreshing the html file in the browser, not just checking with control-enter) I have to close edge and restart it. When I close edge it asks if I want to save! It shouldn't be asking this, because I just saved!
    I'm wondering if the issue has to do with not enough memory. It seems the problem occurs when there are too many operations during the creation of the new symbol. Edge has to remember each step, so it can give you the option of undoing. Perhaps if there are too many steps "memorized" there is not enough memory left for the save procedure?? Just a thought. If I had more ram would the problem go away? I only have 4 gigs of ram on the laptop I'm using. Do any of you guys who are having similar problems have more or less ram?

  • Indesign CC crashing while opening a document - using a exteral font program

    After a few days of terror and trying to find out why my Indesign crashed everytime i try to open a document i got pretty desperate.
    Reading forums and found a lot of people with this kind of issue i found out it had something to do with the font i used in that document.
    I found out Indesign CC keeps all fonts that you open before in the dropdownlist, even that font is deactivated. So when you open the document your indesign start to look for that font, also typekit does, and that's where the problem was...
    After trying a few things i found out, if you know what font u use in that document and you activate that font in your extern fontprogram (i use Universal type client),
    Open than Indesign, the document opens, if you want to open the font when Indesign is open it just crash.
    Just wanted to share this, hope it helps some people

    Check for Third Party plugins. Make sure that you only have plugins that come with InDesign application. Remove custom/sample plugins and try again.
    If the above doesn't work, delete InDesign preferences (at C:\Documents and Settings\...\Application Data\Adobe\InDesign).
    Regards,
    Narayan

Maybe you are looking for

  • Itunes wont let me update my ipod

    I tried putting too many songs on my ipod and it told me there isnt enough room so itunes made a seperate playlist with every song in it (i forget why). so i left the playlist there, deleted some videos for more space and updated my ipod. everything

  • Exporting Information out from Vendor Master

    Hi Guys, I would like to change some information in batch for vendor master, what is the best way to extract all the vendor data, change it in excel and then importing all the data back agian? Thanks

  • How to get any update and delete happening in database

    Hi,     I need to capture the insert, delete and update operation performed by AD group users in the database. How i can capture it ?

  • Acrobat 8 Pro -Organizer Database Damaged

    I am running Windows XP. I just started doing tutorials to learn this program. I was really impressed with what the Organizer could do, but suddenly it stopped working and I am receiving the following message: "The Organizer Database is damaged and w

  • I need help deleting "all records associated with my domain name"

    Hello, I'm having problemsthe same exact problem as Daren... setting up my site to go live. Here's what I've done so far: 1) built the site and pushed it live 2) upgraded the site 3) set up a GoDaddy domain name 4) set up the servers on GoDaddy 5) se