Windows slow application network save

Hi all,
We have a customer that is using a 3D application called FEM-design. When they use "save as" to a network drive it takes about 7 minutes to save a 100MB file. When opening the same file it´s about 15 secs.
We have tried Windows 7, 8, 8.1 and XP. There is no difference between the OSs. One strange thing that occured is a test with WinXP. I created c:\temp and also shared the folder. When I saved the file towards c:\temp it took about 15 sec. The same save against
the network drive took around 7 minutes. Anyone have an idea whats the problem here?
I have created a support request with the application company but my answer was:
 "Opening = Reading is always fast, but Saving = Writing is much slower"
In our environment  disk read nor write is a bottleneck.
Anyone got any ideas what to try next?

Hi,
Firstly make sure "WebClient" service is starting.
Saving toward c:\temp means saving the file to local drive. It doesn't waste the network traffic.
However when you save the file into network drive, its speed  also relied on the network quality.
Thus please ensure your network is stable and fluent.
Meanwhile, try to save a very small file into that drive for test.
Karen Hu
TechNet Community Support

Similar Messages

  • Gray Sidebar Icons, Slow Application File Open/Save in OS-X 10.7

    I hate the gray sidebar icons in Mac OS-X. I am a very visual person and every clue, including color, helps. I don't understand why Apple has found it necessary to take a giant step backward in time. Perhaps soon they will reintroduce black and white monitors.
    Anyway, I downloaded a pluging that restores colors to the finder windows, but not the application file open/save dialogs. Also, many times the application open/save dialog windows are slow to load the sidebar window; i.e. I can't do anything until they load the the folders, files, and devices available to open.
    Does anyone have a fix for this? Does anyone know if Apple plans to restore colored icons?
    Thanks - Bill

    bmagargal wrote:
    Also, many times the application open/save dialog windows are slow to load the sidebar window; i.e. I can't do anything until they load the the folders, files, and devices available to open.
    Try rebuilding Finder prefs....
    Go to your Finder "Go" menu hold the option key and choose Library. Then go to Preferences folder and trash these files:
    com.apple.finder.plist
    com.apple.sidebarlists.plist
    Then, restart, or log out and in again.
    (You will have to reset a few finder prefs the way you like them.)
    EDIT: Could it be whatever app you're using for the FInder windows that's causing that slowness?

  • Slow Accessing Files Across a Windows 2003 Server Network

    I posted this quite some time ago in the Os X Forum:
    Hi,
    We get the spinning ball when we access files across a Windows 2003 network with our Os 10.3.9 Macs.
    It seems that the more files there are in the folder, the longer you see the ball, our Fonts folder can sometimes take up to 2 minutes before you can scroll to the bottom of the folder.
    This happens after a computer restart or a program restart.
    Does anyone know of a fix for this issue, as it is quite annoying?
    Also note: This does not happen when accessing the same files through Os9 classic, even though the machines are running 10.3.9.
    The network is all new cat 5 cables and this a relatively new Dell Power Connect 3324 switch connected to a very fast Dell Poweredge 2600 server.
    Thanks in advance,
    David

    I'm also running several Macs on a Windows Small Business Server (Windows Server 2003) and the only way I am able to pull up the files was to join each one of my Macs to the Windows Server's network domain. You have to do this through the Directory Utility in the Utilities folder. There is one draw back from what I can tell, and it's something that I need some help with. It seems that once a Mac (running Leopard) is joined to a Windows domain, it takes the log in process forever to finish. Logging into a Leopard Mac alone is pretty quick, but after joining the domain, logging into any of the Macs on the Windows domain takes over a minute. If anyone knows the answer to this one, I'm all ears.

  • Best practice when writing multi window gtkmm application?

    Hello
    Anyone here who knows gtkmm? I'm in the progress of learning it, and now I'm stuck. I can't really find a good, clean and _working_ way to add more windows.
    For example I want to create a "New project" window where the user have to enter some information, and when the user hits "Create" a new main window opens.
    Right now I have done it like this:
    main.cpp
    int main(int argc, char** argv){
    //tk_init(&argc, &argv);
    Glib::RefPtr<Gtk::Application> app = Gtk::Application::create(argc, argv, "org.gtkmm.control");
    NewProject newProject;
    return app->run(newProject);
    class NewProject : public Gtk::Window{
    private:
    //Stuff for the "new_project" window
    Gtk::Label locationLabel;
    Gtk::Entry locationEntry;
    Gtk::Label descriptionLabel;
    Gtk::Entry descriptionEntry;
    Gtk::Button createButton;
    Gtk::Grid grid;
    void CreateProject();//Callback for createButton
    public:
    NewProject();
    virtual ~NewProject();
    NewProject::NewProject()
    locationLabel("Location"),
    descriptionLabel("Description and notes"),
    createButton("Create")
    set_title("New Project");
    add(grid);
    //gtk_grid_set_column_spacing(GTK_GRID(grid), 5);
    //gtk_grid_set_row_spacing(GTK_GRID(grid), 5);
    grid.add(locationLabel);
    grid.add(locationEntry);
    grid.attach_next_to(descriptionLabel, locationLabel, Gtk::POS_BOTTOM, 1, 1);
    grid.attach_next_to(descriptionEntry, locationEntry, Gtk::POS_BOTTOM, 1, 1);
    grid.attach_next_to(createButton, descriptionLabel, Gtk::POS_BOTTOM, 2, 1);
    //locationEntry.show();
    createButton.signal_clicked().connect(sigc::mem_fun(*this,
    &NewProject::CreateProject));
    show_all_children();
    show();
    NewProject::~NewProject(){
    void NewProject::CreateProject(){
    gProject.location = locationEntry.get_text();
    gProject.description = locationEntry.get_text();
    //printf(gProject.location.c_str());
    //printf(locationEntry.get_text().c_str());
    Glib::RefPtr<Gtk::Application> app = get_application();
    //std::vector<Window*> windows = app->get_windows();
    MainWindow mainWindow;
    app->add_window(mainWindow);
    //mainWindow.Create(); //Create just calls show() on the window, tried it as a simple double check, didn't work
    hide();
    And MainWindow is defined like this:
    class MainWindow : public Gtk::Window{
    private:
    Gtk::Button testLabel;
    public:
    void Create();
    MainWindow();
    virtual ~MainWindow();
    MainWindow::MainWindow(){
    printf(gProject.location.c_str());
    if(gProject.location.empty()){
    printf("EMPTY");
    }else{
    printf("Notempty");
    set_title("asd");
    Gtk::Button testButton("TEST");
    add(testButton);
    testButton.show();
    show();
    //this->project = project;
    //Show the new project window
    //Glib::RefPtr<Gtk::Application> app = get_application();
    //app->add_window(newProject);
    MainWindow::~MainWindow(){
    void MainWindow::Create(){
    show();
    So, why doesn't the window show up? I know the code is executed, because I can see the printf() output in the terminal. Instead of showing the new window, the application just exits "successfully". If I open MainWindow from main, the windows shows up, but opening NewProject from MainWindow doesn't work.
    As I said, I'm pretty new to GTK programming, so I am not completely sure about how I should organize the code, so what I've done here might for what I now, be completely wrong, so please guide me in the right direction I will take a look at other gtkmm applications to see how they have done it, but right now I have a very limited network connections, so I will have to wait until I get home in a few days.
    Thank you I can post more code if needed, but I don't think there is any more GTK relevant code in the project.
    Edit: I kind of solved this case, since I made the NewProject window as a dialoge, so it's fine for now. However, if somebody have a general solution, it would be nice
    Last edited by Hakon (2012-06-22 20:53:42)

    Hello
    Anyone here who knows gtkmm? I'm in the progress of learning it, and now I'm stuck. I can't really find a good, clean and _working_ way to add more windows.
    For example I want to create a "New project" window where the user have to enter some information, and when the user hits "Create" a new main window opens.
    Right now I have done it like this:
    main.cpp
    int main(int argc, char** argv){
    //tk_init(&argc, &argv);
    Glib::RefPtr<Gtk::Application> app = Gtk::Application::create(argc, argv, "org.gtkmm.control");
    NewProject newProject;
    return app->run(newProject);
    class NewProject : public Gtk::Window{
    private:
    //Stuff for the "new_project" window
    Gtk::Label locationLabel;
    Gtk::Entry locationEntry;
    Gtk::Label descriptionLabel;
    Gtk::Entry descriptionEntry;
    Gtk::Button createButton;
    Gtk::Grid grid;
    void CreateProject();//Callback for createButton
    public:
    NewProject();
    virtual ~NewProject();
    NewProject::NewProject()
    locationLabel("Location"),
    descriptionLabel("Description and notes"),
    createButton("Create")
    set_title("New Project");
    add(grid);
    //gtk_grid_set_column_spacing(GTK_GRID(grid), 5);
    //gtk_grid_set_row_spacing(GTK_GRID(grid), 5);
    grid.add(locationLabel);
    grid.add(locationEntry);
    grid.attach_next_to(descriptionLabel, locationLabel, Gtk::POS_BOTTOM, 1, 1);
    grid.attach_next_to(descriptionEntry, locationEntry, Gtk::POS_BOTTOM, 1, 1);
    grid.attach_next_to(createButton, descriptionLabel, Gtk::POS_BOTTOM, 2, 1);
    //locationEntry.show();
    createButton.signal_clicked().connect(sigc::mem_fun(*this,
    &NewProject::CreateProject));
    show_all_children();
    show();
    NewProject::~NewProject(){
    void NewProject::CreateProject(){
    gProject.location = locationEntry.get_text();
    gProject.description = locationEntry.get_text();
    //printf(gProject.location.c_str());
    //printf(locationEntry.get_text().c_str());
    Glib::RefPtr<Gtk::Application> app = get_application();
    //std::vector<Window*> windows = app->get_windows();
    MainWindow mainWindow;
    app->add_window(mainWindow);
    //mainWindow.Create(); //Create just calls show() on the window, tried it as a simple double check, didn't work
    hide();
    And MainWindow is defined like this:
    class MainWindow : public Gtk::Window{
    private:
    Gtk::Button testLabel;
    public:
    void Create();
    MainWindow();
    virtual ~MainWindow();
    MainWindow::MainWindow(){
    printf(gProject.location.c_str());
    if(gProject.location.empty()){
    printf("EMPTY");
    }else{
    printf("Notempty");
    set_title("asd");
    Gtk::Button testButton("TEST");
    add(testButton);
    testButton.show();
    show();
    //this->project = project;
    //Show the new project window
    //Glib::RefPtr<Gtk::Application> app = get_application();
    //app->add_window(newProject);
    MainWindow::~MainWindow(){
    void MainWindow::Create(){
    show();
    So, why doesn't the window show up? I know the code is executed, because I can see the printf() output in the terminal. Instead of showing the new window, the application just exits "successfully". If I open MainWindow from main, the windows shows up, but opening NewProject from MainWindow doesn't work.
    As I said, I'm pretty new to GTK programming, so I am not completely sure about how I should organize the code, so what I've done here might for what I now, be completely wrong, so please guide me in the right direction I will take a look at other gtkmm applications to see how they have done it, but right now I have a very limited network connections, so I will have to wait until I get home in a few days.
    Thank you I can post more code if needed, but I don't think there is any more GTK relevant code in the project.
    Edit: I kind of solved this case, since I made the NewProject window as a dialoge, so it's fine for now. However, if somebody have a general solution, it would be nice
    Last edited by Hakon (2012-06-22 20:53:42)

  • Cisco application networking manager license file - unable copy to server

    Hi all
    We tried all the options like ftp,tftp,scp,etc., to copy cisco application networking manager license file from my pc to its server which has CISCO ADE OS .But unable to copy .can anybody know correct method to copy ??
    Thanks & Regards
    Sanjeevi

    Adrian,
    In order to install the license you must have a license file on the ANM server and install it through the command line:
    http://www.cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/application_networking_manager/4.1/installation/guide/IG_config.html#wpmkr1120937
    No other way to do it.
    License file can either be copied to the ANM file system, or you can create a new empty license file on it and copy paste the license file content.
    If you have no access to the ANM server through CLI, then a workaround might be:
         - install a new VMWARE machine where you have CLI access.
         - install ANM on it
         - copy license (other you copy the file through any means or you create a file and edit by copy pasting the license file content)
         - install license with the command  /opt/CSCOanm/bin/anm-license install /path/ANMxxxxxxxxxxxxxxxxx.lic as described in the link above
         - save the VMware image
         - deploy the same VMWare image to the ESX where it has to be installed and where you have no access to CLI neither you can copy a file.
    Hope this helps,
    Domenico.

  • Windows Apps can't save to Snow Leopard Server

    I just set up a Mac Mini with Snow Leopard 10.6.4. Mac Users have no problems saving files from applications, but Windows users cannot save directly from Windows apps, such as Excel or Word. Windows users can drag files directly to the share point and it copies fine. This affects both XP and Win 7.

    Windows access files in differing ways depending on the product you are using. Some, like explorer, used to, and still may, make DOS calls, others depend on higher level APIs. Thus, what works in one may not work in others.
    Windows Office applications are very sensitive to directory, file, and record locks, and SMB permissions due to sharing issues. Be sure that your ACL permissions are set properly on each share point, and that you have set up the SMB tab under protocol options for each share point as well (turning on "share this item using SMB" ad enabling oplocks and strict locking. Mac to SNL works on posix permissions so you wouldn't see any issues if those are set properly, which they tend to be by default.

  • How to terminate Windows dial-up Network session

    Need help terminating a Windows dial-up network session from my Java application demo. The application runs on an unattended PC and periodically initiates a Dial-Up networking session, in order to send an email.
    I'm binding a Process variable to the output from...
    <runtime>.exec("rundll rnaui.dll,RnaDial <DU name>")
    The Windows dial-up session starts OK and the mail message is successfully sent. However, when I try to terminate the dial-up session using...
    <process>.destroy()
    ...it does not terminate the Windows dial-up session.

    You can use the JDUN API (Java Dial-up Networking) that can be found at http://www.JavaAPIs.com. It supports enumerating RAS dial-up entry names, dialing entries, and hanging up entries.

  • Window's application run on solaris

    Dear
    Sun Microsystems
    I am Mandar sawant. I am animator. I am using 3d-animation software which required highly configuration computer. And want operating system which give me smooth performs for my 3d-animation software. I am using AutoDesk Maya for my software. So I have some question about this is follow.
    1] Can I use my software on this operating system?
    2] Is this operating system good for graphic and editing work?
    3] What about security in this Os?
    4] Is this virus and hacker proof?
    5] can i run windows's application on this os? if yes then how?
    please reply me soon.

    1] Can I use my software on this operating system?Is your software Solaris based or written in Java? If not you will need an emulator to overlay onto Solaris for the OS your software is written for.
    2] Is this operating system good for graphic and editing work?While I am not an animator, I have always been very pleased with the performance of Solaris in any task I need to run--yes, and some are animation.
    3] What about security in this Os? Unix derivatives are much more secure than Windoz.
    4] Is this virus and hacker proof?There is no such thing as virus or hacker proof... if you are connected to a network, then you can make deterants, but nothing is virus nor hacker proof.
    5] can i run windows's application on this os? if yes then how? With a Windoz emulator you may as far as the emulator will allow.

  • Window users can't save my pictures i do sent by email

    Hello,
    Since i upgrade to OS X Lion Window users can't save photo's i do sent them by email. Before the upgrade it was never a problem.
    They do receive the mail. When they open it they do see the photos but not as an attatchment. So no jp(e)g attachments...just the photo in the mail.
    But whatever they do or try they just can't save the pictures i do mail them.
    I also selected "Sent Windows used attatchemnt"....and all other things..nothing helps.
    Who can help since i need to mail many pictures each day to window users.
    I would really be thankfull.
    PAUL

    Pakor wrote:
    Hello,
    Since i upgrade to OS X Lion Window users can't save photo's i do sent them by email.
    It's a known issue with embedded images in Outlook.
    It comes up with Mail on Lion cause Apple has decided to redesign Mail more close to the mail standards for better compatibility with the majority of mail applications.
    Unfortunately Windows Outlook handle mail in a more proprietary way and not the way almost all other mail applications will do.
    A workaround for Windows Outlook users is described in the knowledge base article behind the following link.
    http://support.microsoft.com/kb/917120
    A workaround for Apple users is only to put the file in a compressed folder (e.g. ZIP) prior of attaching to the mail.
    Lupunus

  • When i open firefox, before start show window [JavaScrip Application] title that have this text: TypeError: urlbar is null

    when i open firefox, before start show window [JavaScrip Application] title that have this text:>>TypeError: urlbar is null

    Try to boot the computer in [http://windows.microsoft.com/en-us/windows/start-computer-safe-mode#start-computer-safe-mode=windows-7 Windows Safe Mode with network support] (press F8 on the boot screen) open firefox and see if that happens again.

  • I wonder to know what is the enterprise solution for windows and application event log management and analyzer

    Hi
    I wonder to know what is the enterprise solution for windows and application event log management and analyzer.
    I have recently research and find two application that seems to be profession ,1-manageengine eventlog analyzer, 2- Solarwinds LEM(Solarwind Log & Event Manager).
    I Want to know the point of view of Microsoft expert and give me their experience and solutions.
    thanks in advance.

    Consider MS System Center 2012.
    Rgds

  • Can't see list of minimized windows when I minimize windows into application

    I love the Mac option to minimize windows into application icon, but recently it's behaving abnormally for me. When I minimize, for example, three Word documents into the application icon, I don't see the list of those documents when I click on the icon (they usually stack vertically in the menu, above "Options"). To see those documents, I have to click the application icon and select "show all windows".
    I can't figure out what's going on, and it's driving me nuts.
    What I'm seeing (I have three documents minimized into the Word application here):
    What I should be seeing (This is just a screen grab from a tutorial, not my machine):
    Here are my current dock preferences/settings:
    I've already rebooted. Any ideas? Thanks in advance!!

    You need to look in your user Library/Preferences for the .plist. Hold down the option key while using the Finder “Go To Folder” command. Enter ~/Library/Preferences/com.apple.dock.plist.  Move the .plist to the trash..
    In Applications/Utilities/Terminal type
    killall Dock
    Restart and test. You may have to update your dock to the way you want it.
    If you prefer to make your user library permanently visible, use the Terminal command found below.
    http://osxdaily.com/2011/07/04/show-library-directory-in-mac-os-x-lion/
    You might want to bookmark the command. I had to use it again after I installed 10.8.4. I have also been informed that if you drag the user library to Finder it will remain visible.

  • Windows Live Application Not Working

    I got a nokia n81 8gb firmware v 21.0.010 downloaded the Windows Live application from the download section on my phone it downloaded started installing after it finished i got an error message Unable to run application. restarted phone tried to run it from Applications folder not working. uninstalled redownloaded and installed same problem. any help appreciated, thanks.

    A friend of mine downloaded the same application and its working for him. but when he clicked the download button he was offered to download and install Nokia Web services Support Package and Nokia Internet Services Support Package before downloading and installing the Windows Live application itself. i did not get any prompt for downloading or installing any kind of application before installing the messenger itself thats why its not working coz obviously it needs those files to work. is this some kinda mistake or ? i dont get it how am i suposed to get those packages to make the application work if i cant get them from the download application ? any help appreciated. thanks alot

  • How to add iad's to window based application in xcode for ios

    hello,
    Im trying to add iad's to a window based application. I add the framework and add the banner in interface builder. The program builds without any problems but when I try to run the application on the simulator, the app crashes. Don't know what im doing wrong. Do I need to add any extra code or something. Please help, thanks in advance

    hello,
    Im trying to add iad's to a window based application. I add the framework and add the banner in interface builder. The program builds without any problems but when I try to run the application on the simulator, the app crashes. Don't know what im doing wrong. Do I need to add any extra code or something. Please help, thanks in advance

  • Solution for Slow Open and Save As Dialogs under 10.4.4

    I don't know how many others out there may be experiencing this, but...
    I noticed that -- after updating to 10.4.4 -- I started getting really long delays when accessing Open and Save As file dialogs -- I mean, sometimes it would take 5 to 15 seconds for the dialog to appear!
    I did a lot of troubleshooting, and finally hit upon the solution a couple of nights ago:
    It's the Desktop iDisk!
    Going into the .Mac Preference Pane and turning off "iDisk Syncing" has totally eliminated the slowdown.
    I think it has something to do with DiskMirrorAgent, since that has frozen on me a couple of times and prevented logoff until I force-quit it.
    'Hope this helps.
    -- Steve
    Late 2005 DC G5 2.3 GHz, 4 GB RAM   Mac OS X (10.4.4)  

    Hi Matt,
    One can always manually mount the iDisk when needed, and it still syncs, albeit in real time, and kind of herky-jerky.
    As for the slowdown when multiple items are mounted, I believe I'm describing a different issue, related to DiskMirrorAgent. If and when you get this slowdown (with desktop iDisk syncing enabled), check Activity Monitor, and you'll see DiskMirrrorAgent sucking up most of the CPU time for the time it takes before the dialog appears. My record time was about 25 seconds.
    As for slow Open and Save As dialogs when multiple items are mounted: I customarily have several external FireWire drives mounted, and often a couple of CDs and/or DVDs (I produce a radio program, and have several optical drives), and I have had no Open or Save As dialog slowdowns since at least 10.3.x, maybe earlier.
    Even when the dialog opens to a directory on a CD that has spun down, the opening time on an Open or Save As dialog is nearly instantaneous for me, suggesting that Mac OS X 10.4.x is doing a good job of caching the data.
    But I hear you about the "old days," when it used to take forever to get a dialog to appear, just because a CD was mounted! Maddening!
    -- Steve
    Late 2005 DC G5 2.3 GHz, 4 GB RAM   Mac OS X (10.4.4)  

Maybe you are looking for

  • Bonjour services disappear - can't see speakers in iTunes

    Hi, I guess this might not be the correct forum but I can't seem to find anywhere else it may sit. I am having issues with certain bonjour services not running on my iMac, this is mainly affecting speakers being shown in iTunes. I don't have a proble

  • Conditional Display of A region based on a Search condition

    Hello All, I would really appreciate any suggestion and pointers on how to achieve the below. My requirement is to display a tabulated result based on a search condition. I have two regions. One region contains the items to enable a search and the ot

  • Big Problem With Sound

    Hello all! i have a problem with my Iphone 3gs. the other day i was listening to music through the external speaker and had my phone plugged into its charger when all of a sudden the music just cut out out of nowhere. so then i pushed play on it but

  • Time Only based reports

    Post Author: Theron CA Forum: Desktop Intelligence Reporting How do i write a report based only on time (no DATE)? The two reports I require are (1) what time do Service Calls come into the Service Desk (7-8am, 8-9am, 9-10am etc. - again, date is irr

  • Windows 8 cannot locate scanned document

    hi folks have a HP Photosmart C7100 series 2 device after scanning a document, I cannot locate it eg should be in C:\users\wayne\documents\My Scans\scan0001.pdf but all I get is note that Windows cannot locate it and I need to spell it correctly!  wh