Response time with OneDrive login - how to speed up ?

How to speed up response times with OneDrive for login ?
Is it possible to cut off ads ?
What else ?

Speed of login is depending on your network connection speed and your ISP server configuration as well as your PC configuration. If you set Internet Explorer to keep temporary files (which is default setting for IE), you speed might be a bit faster.

Similar Messages

  • Any way to improve response time with iPhoto 8.1.2 using Mountain Lion ?

    Any way to improve response time with iPhoto 8.1.2 using Mountain Lion ?  Can you store photos on a separate hard drive and use a smaller file for openning iphoto?

    How did you move your iPhoto library to the new system?  the recommended way is Connect the two Macs together (network, firewire target mode, etc)  or use an external hard drive formed Mac OS extended (journaled) and drag the iPhoto library intact as a single entity from the old Mac to the pictures folder of the new Mac - launch iPhoto on the new mac and it will open the library and convert it as needed and you will be ready move forward.
    LN

  • Re: [Fwd: Java Applet IIOP Call-In with Release 3C--How dowe speed up d

    Hi Michael,
    We have done exactly what you describe and have avoided the slow applet
    download times. Although it can be a bit tricky, it is possible to use
    the ORB bundled inside the Netscape 4.0 browser (Visibroker for Java by
    Visigenic). Most of the code should follow Netscape's examples (on
    http://developer.netscape.com)--just remember to initialize the ORB by
    passing a reference to the current applet in orb_init() (so that you
    invoke something like orb_init(this) [assuming you are extending
    java.applet.Applet]). Pulling up the Java console within your web
    browser should help debug quite a bit (a lot of debug messages will get
    printed there the ORB is having problems).
    Netscape has just implemented the applet caching schemes you describe,
    so it probably shouldn't matter too much if you use another vendor's
    ORB (we've done this with Iona's OrbixWeb). If you use ZIP files, they
    have to be uncompressed, and I don't think that the browser will cache
    them between browser sessions. Netscape 4.0 does seem to handle
    compressed JAR files just fine and it does indeed cache them between
    browser sessions. I'd go with the JAR format anyway since the ZIP
    bundling was just a workaround until Sun got their act together in the
    1.1 JDK.
    By the way, you also might want to take advantage of the code-signing
    and capabilities APIs of Netscape if you are going to invoke methods on
    objects not resident on your web server. Otherwise, you will probably
    run into the (in)famous browser applet security restrictions and you may
    have other problems doing things like callbacks from Forte, etc.
    If you want more detail on how it works, let me know and I can post some
    examples.
    Oh, one last thing: we are a consulting firm specializing in these kinds
    of things :)
    Bill
    Subject: Java Applet IIOP Call-In with Release 3C--How do we speed up download time.
    Date: Wed, 2 Jul 1997 09:10:31 -0500
    From: Michael Nelson <[email protected]>
    To: "'[email protected]'" <[email protected]>
    We have successfully implemented a simple Java Applet that calls into
    Forte Services via IIOP. However, the duration of the download time
    for
    Applet and its required class files is UNACCEPTABLE in a typical
    INTERNET environment where 28.8K modems and multiple hops around the
    net
    are not uncommon. We dialed into our network at 28.8K (but no
    hopping),
    and found that download times varied from 1.5 - 2.0 minutes. This is
    unacceptable, even by internet standards. We have been using the
    Visigenic Visibroker product as the ORB.
    After doing some investigation, we've come up with several ideas to
    speed up download time:
    1. Figure out how to use the Visigenic components (CORBA/IIOP class
    files) that come bundled with the latest version of the Netscape
    Navigator browser, so that they don't have to be downloaded
    2. Figure out how to use ZIP files. Here's what I've read: "Since
    the
    introduction of Netscape Navigator 3.0, you can specify an
    uncompressed
    .zip file as an addition to the code base of your application. By
    specifying a ZIP file, the browser will load your applet's classes
    from
    a specified ZIP file before it searches the code base. This ZIP can
    improve applet download time by reducing the number of HTTP
    connections
    required to fetch applet code. As an added benefit, Netscape caches
    the
    single ZIP file so that it will not reload your applet unless the date
    of the ZIP file has changed."
    3. Figure out how to use JAR files. Here's what I've read: "JAR
    stands for Java archive. It's a file format based on the popular ZIP
    file format and is used for aggregating many files into one. Although
    JAR can be used as a general archiving tool, the primary motivation
    for
    its development was so that Java applets and their requisite
    components
    can be downloaded to a browser in a single HTTP transaction, rather
    than
    opening a new connection for each piece. This greatly improves the
    speed with which an applet can be loaded onto a web page and begin
    functioning. The JAR format also supports compression, which reduces
    the
    size of the file and improves download time still further."
    Unfortunately, we've been unable to get any of these approaches to
    work.
    Has any one used these or other approaches to speed up applet
    download
    time? Or, does anyone know of consulting firms that specialize in
    this
    sort of thing?
    Thanks in advance for your help.
    Mike Nelson, Project Leader
    Metrix, Inc.
    [email protected]
    414-798-8560 x1157
    Billy L. Williams, Jr. | email: [email protected]
    Sage Solutions, Inc. | Tel: (415) 392-7243 (x506) Fax: (415) 391-3899
    | Pager: (415) 605-1791 (page me if urgent)

    Hi Michael,
    We have done exactly what you describe and have avoided the slow applet
    download times. Although it can be a bit tricky, it is possible to use
    the ORB bundled inside the Netscape 4.0 browser (Visibroker for Java by
    Visigenic). Most of the code should follow Netscape's examples (on
    http://developer.netscape.com)--just remember to initialize the ORB by
    passing a reference to the current applet in orb_init() (so that you
    invoke something like orb_init(this) [assuming you are extending
    java.applet.Applet]). Pulling up the Java console within your web
    browser should help debug quite a bit (a lot of debug messages will get
    printed there the ORB is having problems).
    Netscape has just implemented the applet caching schemes you describe,
    so it probably shouldn't matter too much if you use another vendor's
    ORB (we've done this with Iona's OrbixWeb). If you use ZIP files, they
    have to be uncompressed, and I don't think that the browser will cache
    them between browser sessions. Netscape 4.0 does seem to handle
    compressed JAR files just fine and it does indeed cache them between
    browser sessions. I'd go with the JAR format anyway since the ZIP
    bundling was just a workaround until Sun got their act together in the
    1.1 JDK.
    By the way, you also might want to take advantage of the code-signing
    and capabilities APIs of Netscape if you are going to invoke methods on
    objects not resident on your web server. Otherwise, you will probably
    run into the (in)famous browser applet security restrictions and you may
    have other problems doing things like callbacks from Forte, etc.
    If you want more detail on how it works, let me know and I can post some
    examples.
    Oh, one last thing: we are a consulting firm specializing in these kinds
    of things :)
    Bill
    Subject: Java Applet IIOP Call-In with Release 3C--How do we speed up download time.
    Date: Wed, 2 Jul 1997 09:10:31 -0500
    From: Michael Nelson <[email protected]>
    To: "'[email protected]'" <[email protected]>
    We have successfully implemented a simple Java Applet that calls into
    Forte Services via IIOP. However, the duration of the download time
    for
    Applet and its required class files is UNACCEPTABLE in a typical
    INTERNET environment where 28.8K modems and multiple hops around the
    net
    are not uncommon. We dialed into our network at 28.8K (but no
    hopping),
    and found that download times varied from 1.5 - 2.0 minutes. This is
    unacceptable, even by internet standards. We have been using the
    Visigenic Visibroker product as the ORB.
    After doing some investigation, we've come up with several ideas to
    speed up download time:
    1. Figure out how to use the Visigenic components (CORBA/IIOP class
    files) that come bundled with the latest version of the Netscape
    Navigator browser, so that they don't have to be downloaded
    2. Figure out how to use ZIP files. Here's what I've read: "Since
    the
    introduction of Netscape Navigator 3.0, you can specify an
    uncompressed
    .zip file as an addition to the code base of your application. By
    specifying a ZIP file, the browser will load your applet's classes
    from
    a specified ZIP file before it searches the code base. This ZIP can
    improve applet download time by reducing the number of HTTP
    connections
    required to fetch applet code. As an added benefit, Netscape caches
    the
    single ZIP file so that it will not reload your applet unless the date
    of the ZIP file has changed."
    3. Figure out how to use JAR files. Here's what I've read: "JAR
    stands for Java archive. It's a file format based on the popular ZIP
    file format and is used for aggregating many files into one. Although
    JAR can be used as a general archiving tool, the primary motivation
    for
    its development was so that Java applets and their requisite
    components
    can be downloaded to a browser in a single HTTP transaction, rather
    than
    opening a new connection for each piece. This greatly improves the
    speed with which an applet can be loaded onto a web page and begin
    functioning. The JAR format also supports compression, which reduces
    the
    size of the file and improves download time still further."
    Unfortunately, we've been unable to get any of these approaches to
    work.
    Has any one used these or other approaches to speed up applet
    download
    time? Or, does anyone know of consulting firms that specialize in
    this
    sort of thing?
    Thanks in advance for your help.
    Mike Nelson, Project Leader
    Metrix, Inc.
    [email protected]
    414-798-8560 x1157
    Billy L. Williams, Jr. | email: [email protected]
    Sage Solutions, Inc. | Tel: (415) 392-7243 (x506) Fax: (415) 391-3899
    | Pager: (415) 605-1791 (page me if urgent)

  • Slow response time with terminal emulator

    We are using Oracle Financials pkg. 10.7 Character mode using Oracle DB 7.3.3 on a IBM (sequent) S5000 running at DYNIX/ptx 4.2.3 (soon to be 4.2.4). On the end user side, the accounting dept. is connecting to the server using EXTRA Personal Client. During the course of the day, the response time of the emulator slows down. I can count to 25 sometimes b/4 the emulator responds (catches up with the key strokes). Some days it does not happen until the end of the work day and other times it can happen after just a few hours. After checking the network, application and server, we can find nothing wrong. If we have the user reboot their p.c., this seems to clear up the problem. Has anyone else seen or heard of this problem??? If so, does anyone know how to correct it??? We have installed and tried a different emulator that seems to be doing the samething, but only not as bad (slow).
    Thanks,
    Tony Dopkins
    UNIX System Administrator
    Andersen Windows

    Never heard of this problem or this emulator product.
    Oracle did/does have their own emulator that sort of similuates a GUI environment.
    It is called OADM (Oracle Display Manager).
    If you call support, they may be able to send it to you. However, it's no longer supported, and is a little buggy. But it has no performance problems.
    If it straight character feel the users need, Kea TERM works 4 me.
    Or, possibly call the your emulators support line.. it could be a known issue with their product..
    Most likely it has nothing to do with Oracle products.

  • High Response Times with 50 content items in a Publisher 6.5 portlet

    Folks,
    Have set up a load test, running with a single user, in which new News Article content items are inserted into a Publisher 6.5 portlet created of the News Portlet template. Inserts have good response times through 25 or so content items in the portlet. Then response times become linearly longer, until it takes ten minutes to insert a content item, when there are 160 content items already.
    This is a test system that is experiencing no other problems. There are no other users on the system, only the single test user in LoadRunner, inserting one content item at a time. The actual size of the content item is tiny. Memory usage in the Publisher JVM (as seein on the Diagnostics page) does not vary from 87% used with 13% free. So I asked for a DB Trace, to determine if there were long-running queries. I can provide this on request, it zips to less than 700k.
    Have seldom seen this kind of linear scalability!
    Looked at the trace through SQL Server Profiler. There are several items running for more than one second, the Audit Logout EventClass repeatedly occurs with long durations (ten minutes and more). The users are publisher user, workflow user, an NT user and one DatabaseMail transaction taking 286173 ms.
    In most cases there is no TextData, and the ApplicationName is i-net opta 2000 (which looks like a JDBC driver) in the longest-running cases.
    Nevertheless, for the short running queries, there are many (hundreds) of calls to exec sp_execute and IF @@TRANCOUNT > 0 ROLLBACK TRAN. This is most of what fills the log. This is strange because only a few records were actually inserted successfully, during the course of the test. I see numerous calls to sp_prepexec related to the main table in question, PCSCONTENTITEMS, but very short duration (no apparent problems) on the execution of the stored procedures. Completed usually within 20ms.
    I am unble to tell if a session has an active request but is being blocked, or is blocking others... can anyone with SQL Server DBA knowledge help me interpret these results?
    Thanks !!!
    Robert

    hmmm....is this the ootb news portlet? does it keep all content items in one publisher folder? if so then it is probably trying to re-publish that entire folder for every content item and choking on multiple republish executes. i dont think that ootb portlet was meant to cover a use case of multiple content item inserts so quickly. by definition newsworth stuff should not happen to need bulk inserts. is there another way to insert all of the items using publisher admin and then do one publish for all?
    i know in past migration efforts when i've written utilities to migrate from legacy to publisher the inserts and saves for each item took a couple of seconds each. the publishing was done at the end and took quite a long time.

  • Anyone experiencing diminished battery life and delayed response times with iOS 5 on iPad 1?

    Since installing iOS 5 on my iTouch and iPad, the battery life of both devices has been terrible! Before I could get 1-1/2 or more days use, now I'm down to hours without using the device. . .and I've turned off all of the locations services except, find my phone. Next, I'm going to try turning off the auto time zone setting.
    I've also noticed diminished response on my iPad when opening Settings, Notes, etc. --like 10+ second delay before anything happens. I'm really considering restoring my devices back to the older OS.

    Downgrading the iOS is not supported. My iPad is a bit slower that it used to be, but I havn't noticed any change in battery life.
    In terms of response times you could try closing all your apps completely and then do a reset and if that improves things. To close all apps : from the home screen (i.e.not with any app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of each app to close them, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    To reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.
    For battery life have you done a charge cycle since you updated :
    For proper reporting of the battery’s state of charge, be sure to go through at least one charge cycle per month (charging the battery to 100% and then completely running it down).

  • Average support response time with free support plan

    Some time ago I noticed that I have 3 Adobe ID's.
    2 of them are correct
    2 of them have products registered to them
    1 that has a product registered to it is erroneous: has the wrong country in its registration details
    I contacted support and was assisted promptly and accurately. I needed to provide a few more details that I had to take a moment to collect. The support agent opened up a support case where I could later place the missing information.
    I informed the support agent that I would be away on holiday for a week. And immediately after I added the information that'd come in in the meantime.
    This was 1st of may. All has been silent since then.
    I tried to open up a chat to ask what the average response times are for free support plan subscribers, but I no longer get access to the chat... I guess I was probably just lucky the first time.
    Anybody here know when (on average) I could expect an update to that support case?

    Up to 2 weeks and given the current madness after the CS7/ CC announcment possibly longer.
    Mylenium

  • Times ten not scaling how to speed up.

    Hello Everyone,
    I am doing evaluation of times ten to use it as cache but it is not scaling in my test bed:
    From the http://vimeo.com/28397753 demo it seems it can do 5 million transaction per minute by in my test bed which is 4 gb machine it is taking sweet 140 seconds to insert 100 K records almost 120 times slower!
    I have only one table with a integer column and only one index on that column which is not unique.
    TermSize: 1024m
    PermSize: 2024m
    We want a scallable solution that can go upto 250 Million records in a table (and we will have two such table other will be smaller) is it possible with times ten?
    Our queries will generally requst 50K results and we will have 12 fields in this table numeric and integer that we are going to separately index.
    Look up also on a one integer table are taking about 100 milliseconds.
    I am using a TimesTenDataSource ds = new TimesTenDataSource();
    String URL = "jdbc:timesten:direct:TT_1121";
    I tried doing batch inserts of 25,100,500,100 rows per insert with not much improvement.
    Is oracle times ten even fit for such a case?
    thanks and regards,
    sumit

    You say that your machine has 4 GB RAM but you have allocated over 3 Gb to TimesTen. That's fine if there is pretyt much nothing else running o nthe machine but if you have otjer things (such as Oracle DB maybe?) running o nthe machine at the same tiem then you are likely running low on memory. Are you seeing significant page in and pageout acticity when the test runs? If so this will seriously impact performance.
    Can you please provide:
    1. A description of the overall hardware and software environment that you are using for the test.
    2. The exact TimesTen version (output of ttVersion) command.
    3. The DSN configuration (from sys.odbc.ini)
    4. The actual table (or cache group) defintiion including any indexes.
    5. Details of the Java test program. In particular; are you using parameterised INSERT statements? Are you preparing them just once and executing them many times? How often do you commit during the bulk load? etc.
    Thanks,
    Chris

  • Pages very slow response time with the typing

    Page is not keeping up with my 25 word a minute typing speed. Text Edit seems to be okish. Whats the problem anyone know? I'm Timer 4.2, 768 RAM, and not too long ago a 60G HD which currently allows 28G of HD space spare. Whats going on???

    This issue has been discussed in the iWork forum. You'd probably have better luck posting there.

  • SMTP send fails first time with exchange server. how about you?

    I run a 2007 Exhcange server at our business...never an issue with OSX working with it.
    Now that I've upgraded to mavericks anytime I have an attached of any good size (screenshots, photos) it fails the first time...and when I try to resend it goes. This issue doesn't exist with small attached (signatures for example) or blank emails.
    Anyone have this issue with Maverick/Mail.App?
    Before you start to tell me that I need to increase the attachment size on my exchange server it already permits up to 99,999KB and if it was being blocked due to size the 2nd attempt would not work either.

    Ok, so I've gotten Cups and wicd autostarting, set the static ip from my router because else it wasnt getting DNS etc details and left it asking for that by dhcp.
    Still having issues with the DE
    pedro_sland wrote:
    If DE is required, Xorg must be started in tty1, startlxde ran in tty2, and then manually switch to tty7 for the DE.
    I run xfce4 sometimes. I just run startxfce4 and it starts Xorg and displays the DE. I think that startx runs twm which you probably don't want so you might want to take a look at that. startx has a script it runs somewhere (I forget where but the wiki will know). When I'm done with xfce I just log out and it exits.
    For me, this isnt working. startlxde on its own just goes to
    [root@yomiko ~]#
    in tty1, and leaves me with a blank screen when i switch to tty7
    I literally must call Xorg in one tty, startlxde in another and then manually shift to tty7 to see it.
    startx itself:
    -bash: startx: command not found
    Even Xorg isnt happy being called on its own, that too goes to a blank screen, though it does at least switch to tty7
    With Xorg called in tty1, when i call startlxde in tty2 i get dbug errors from pcmanfm though these seem to be just it informing its detected the HDD partitions.
    there is a grumble early on in the process, before the debug errors, saying:
    Importing pynotify failed, notifications disabled.
    Finally, I did add the line to .xinitrc the LXDE page in the wiki said to to allow startx to run:
    exec ck-launch-session startlxde
    This is the only line in this file.
    Currently running as root... I'm not going to complicate matters by adding a user until im sure i got it all running as root, bad practice or not!
    Edit: A friend helped me solve it.
    The package xorg-xinit held the startx script that was missing. I now get LXDE when i want and only when I want.
    Last edited by Rhiadratech (2011-05-20 23:09:16)

  • Got premium with Facebook login - how do i set a username/password for regular login

    Hello all,i got the student premium whilest logged in with facebook, but i would like to set a usename/password to log in 'normally'. how can i do that?thank you!

    Hey there , welcome to the community!
    I apologize for the late reply. The workaround for this would be to create a new account. If you contact the accounts team through the online contact form they can set you up with a new account and transfer over all your content. If you receive an automated reply directing you back to the community, just reply to it and you will be connect with an agent that can assist you.

  • Requirement: Siebel URL availability   and response time with load  balance

    Hi,
    I Would like to ask a open help about creating a alert for siebel URL downtime (URL Availability), I Should get an alert whenever Siebel URL un-available.
    Any Idea of automating from OEM (Oracle Enterprise Manager).
    Regards,
    Vignesh.

    I am not sure about OEM but you can use the default email trigering mechanism that comes with lastest siebel version when component goes down.
    http://docs.oracle.com/cd/B40099_02/books/SystAdm/SystAdm_ConfigServer23.html#wp1096046

  • How to speed a select statement with the NOT EXISTS where condition ?

    Hi all,
    I created a view : create or replace view view_name as select * from table_1,table_2 where join_condition and some conditions.
    Now I have added in the view "where" clause two NOT EXISTS conditions based on one another different table respectively.
    Before I added these two conditions the response time was fast ; but after I added these two conditions then the response time deteriorated.
    So how to optimize the select statement ? Hints and so on ...
    Thank you very much indeed
    Message was edited by:
    andrianiaina

    Just run the script :
    SQL> explain plan for select * from dual;
    Explained.
    SQL> @$ORACLE_HOME/rdbms/admin/utlxpls.sql
    PLAN_TABLE_OUTPUT
    | Id  | Operation            |  Name       | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT     |             |       |       |       |
    |   1 |  TABLE ACCESS FULL   | DUAL        |       |       |       |
    Note: rule based optimization
    9 rows selected.
    SQL>Nicolas.

  • Drop Down Menu - Response Time

    I am experiencing a slow response time with the drop down menus in FCP 7.0.3.
    I experienced this with my old Mac Pro Intel (1st Gen.) but now I have a new 8-core Mac Pro (1 month old) and have the same delay.
    I click in the window I need to activate then I click on a drop down menu and it seems like it may take up to 5 seconds for the menu to open. Changing tools with the keyboard or tool bar is no problem.
    Any idea how can I solve this?
    Thanks!
    Tony

    Are you running any other programs at the same time?  Do you have any OS "enhancements" installed? 
    Try disconnecting from the interenet by either unplugging ethernet or turning the airport off.
    Try deleting fcp preferences
    https://discussions.apple.com/docs/DOC-2491
    and here are some more troubleshooting tips
    https://discussions.apple.com/docs/DOC-2591

  • Response time too slow.. 9i database

    Hi friends,
    well we have installed 9i database on our server. It was running fine for about two months. But now suddenly from yesterday the response time is toooooooooo slow. it takes a long time even to connect.
    when we check the processes in task manager oracle.exe is consuing 99% cpu resources which slows down the system and response time is very slow.
    how can we identify and resolve our problem. please help in details and thru commands.
    Best regards,
    Imran Baig
    [email protected]

    In my opinion it is good that you check immediately the SGA.
    do the following:
    SQL>show parameters shared_
    and see the parameter SHARED_POOL_SIZE
    and contrast it with the result of this SQL:
    select * from v$sgastat where name='free memory';
    if the free memory is very low regarding the value
    of the SHARED_POOL_SIZE parameter you can do this
    to fix it without to shutdown the database:
    ALTER SYSTEM FLUSH SHARED_POOL;
    The others gave are good too.
    Joel P�rez

Maybe you are looking for

  • Error while changing CRM Sales Document in R/3

    Hi All, I have done the download of customizing, condition & business objects in CRM 4.0. Now when I create a sales order in CRM, it gets replicated in R/3. I can see the order in tcode VA03. But when I try changing the same sale order in R/3 using t

  • Error in running juit test case for struts2 action class

    Hi, I am getting error when i am running my junit test case for struts2 action class. Here is the code. public class RoleMasterNewActionTest extends StrutsTestCase {      public void setUp() throws Exception {         super.setUp();         ObjectFac

  • BBC iPlayer wont play in full screen

    Playback starts fine, but within 5 seconds I get this error: This happens everytime. I have the latest Flash on board. Can anyone suggest a solution?

  • Need expert advice to import and convert video using Windows COM SDK

    Hi, Does anybody know can I import a video file and convert the footage to iPod compatible format using vbscript? I found a COM function 'convertfile', but it seems only work with audio and doesn't work with mpg files. Does the current version of COM

  • Is there a way to forward an entire iPhone text thread to an email account?

    I want to copy two or three threads and share them with a few parents to help them see and understand how thier kids are communicating.  The threads span several months and are group texts that are being forced into a few phones (my son's for one) an