Tecra M5: Applications hang with 50 percentage CPU usage

I have recently received a Tecra M5 which is great except now and again processes hang consuming 50 percentage cpu.
I have installed the update to the fingerprint reader and am starting to suspect it is an issue with the NVIDIA graphics driver.
When the process hangs, if I look at the process using process explorer (sysinternals) I see a low memory event being logged. The laptop has 2Gb of memory and only ~1Gb is being used.
What can be done to find out what is causing this hang?

i know many would be shocked to hear what i'm about to say: "most virus checkers r more trouble than they r worth". Not only do they slow down ur system, u can never "catch up" without the constant update (not to mention u have to trust them as well). all the computers i have re-built i just install a good FIREWALL without any virus checkers: turn off any unnecessary services; allow only wanted applications blocking everything else; n advise users not to click on anything they r not expecting. So far i have not heard any of theirs get infected.
Good Firewalls r rarely free nowadays however (i hear that Zonealarms is good enough). u can download an old Sygate version 5.5.2577 at http://www.oldversion.com/program.php?n=sygate (some users have problems with version 5.6). For non techies, it might b worth paying for a good FIREWALL that includes customer support service.
Lisa
Pls let us know if ur change solves ur problem.

Similar Messages

  • JavaMail application hanged with no error throwed at Transport.send

    JavaMail application hanged with no error throwed at Transport.send,even though I set the timeout property
    import java.util.Date;
    import java.util.Properties;
    import javax.mail.Authenticator;
    import javax.mail.Message;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.mail.internet.MimeUtility;
    public class tt {
         static Properties props=null;
         static boolean needAuth=true;
         static MailAuthenticator authenticator = null;
         static String host="host";
         static String account="account";
         static String password="pwd";
         static String sender="sender";
          * @param args
          * @throws Exception
         public static void main(String[] args) throws Exception{
               if (props == null) {
                     props = new Properties();
                     props.put("mail.smtp.host", host);
                     props.put("mail.smtp.timeout      ", "1000");
                     props.put("mail.smtp.connectiontimeout      ", "1000");
    //                 props.put("mail.debug", "true");
                     props.put("mail.smtp.auth", String.valueOf(needAuth));
                     authenticator = new MailAuthenticator(account, password);
                 MailData mailData = new MailData();
                 mailData.setSubject("altireport mail configuration");
                 mailData.setContent("mail server has been configured successfully.");
                 mailData.setRecipients(new String[]{"[email protected]"});
                 final Session session = Session.getInstance(props, authenticator);
                 final MimeMessage msg = new MimeMessage(session);
                 InternetAddress from = new InternetAddress(sender);
                 msg.setFrom(from);
                 //        msg.setSender(from);
                final InternetAddress[] addressTo = new InternetAddress[mailData.getRecipients().length];
                 for (int i = 0; i < mailData.getRecipients().length; i++) {
                     addressTo[i] = new InternetAddress(mailData.getRecipients());
         msg.addRecipients(Message.RecipientType.TO, addressTo);
         //msg.setSubject(mailData.getSubject());
         msg.setSubject(MimeUtility.encodeText(mailData.getSubject(), "UTF-8", "B"));
         MimeBodyPart bodyPart1 = new MimeBodyPart();
         bodyPart1.setContent(mailData.getContent(), "text/plain; charset=UTF-8");
         MimeMultipart multipart = new MimeMultipart();
         multipart.addBodyPart(bodyPart1);
         msg.setContent(multipart);
         msg.setSentDate(new Date());
    //     msg.saveChanges();
         for(int i=0;i<10;i++){
              new Thread(new Runnable(){
                             public void run() {
                             try {
                                  System.out.println("send...");                                   
                                  Transport.send(msg);
                                  } catch (Exception e) {
                                       e.printStackTrace(System.out);
                        System.out.println("end!");
              }).start();
    class MailData {
    private String[] recipients = null;
    private String subject = null;
    private String content = null;
    private String attachment = null;
    private String attachmentName = null;
    * @return the attachment
    public String getAttachment() {
    return attachment;
    * @param attachment the attachment to set
    public void setAttachment(String attachment) {
    this.attachment = attachment;
    * @return the content
    public String getContent() {
    return content;
    * @param content the content to set
    public void setContent(String content) {
    this.content = content;
    * @return the recipients
    public String[] getRecipients() {
    return recipients;
    * @param recipients the recipients to set
    public void setRecipients(String[] recipients) {
    this.recipients = recipients;
    * @return the subject
    public String getSubject() {
    return subject;
    * @param subject the subject to set
    public void setSubject(String subject) {
    this.subject = subject;
    * @return the attachmentName
    public String getAttachmentName()
    return attachmentName;
    * @param attachmentName the attachmentName to set
    public void setAttachmentName(String attachmentName)
    this.attachmentName = attachmentName;
    class MailAuthenticator extends Authenticator {
    private PasswordAuthentication authentication;
    public MailAuthenticator(String account, String password) {
    authentication = new PasswordAuthentication(account, password);
    protected PasswordAuthentication getPasswordAuthentication() {
    return authentication;
    I have tried use session to get a SMTPTransport instance to use sendMessage ,but still have the same problem.No exception ,No error.
    This problem doesn't appear always. It appears sometimes.
    I hope get help for someone who has the solution for this problem.
    Thanks in advanced.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Ok, I think I see the problem:
         props.put("mail.smtp.timeout      ", "1000");
         props.put("mail.smtp.connectiontimeout      ", "1000");
    Why do you have spaces at the end of the property names?
    Those spaces are not being ignored, which means you've
    set the wrong properties.

  • LCM import of Planning Application Hangs with "In Progress Status"

    Hi,
    LCM import of Planning Application Hangs with "In Progress Status" . its already couple of hours. Earlier it was always within 10 mins.
    Any advise is appreciated.
    Regards,
    Vineet

    It is probably worth trying again, may be useful to first bounce the services.
    If it happens again after bouncing the services then investigate at what staging it is getting stuck at.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • One of the web application is sudendly consumming high cpu usage.

    hi
    there are two web application running on the the standlone server.one of the web application is sudendly consumming high cpu usage. because of this issue, the entire cpu usages become very high and result in HTTP THROTTLING error. please suggest ways to
    resolve this problem.
    in the same standlone server, what are the service that must not run or minimum services that are required.
    server:-
    48 gb ram,
    8 core processor
    thanks in advanced

    Hi jackhill,
    Please check whether you configure Search service in your SharePoint.
    And please use Taskmgr on the server to check which process may be cause this issue.
    In addition, there is an article about high CPU in SharePoint 2013, please check if it is useful for you:
    https://speverything.wordpress.com/2013/03/12/sharepoint-2013-high-cpu-and-memory-utilization-killing-my-server/
    Thanks,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Hanging programs, high Finder CPU usage

    Since early October 2012, programs such as Firefox, Thunderbird and TextEdit have been repeatedly hanging (Not Responding) for a few minutes at a time. Also, Finder CPU usage sometimes surges to 80% even 100% (via Activity Monitor), but not necessarily at the same time. Wondering if these are related. Running OS 10.6.8 (with latest updates) on early 2008 3.06 GHz Core 2 Duo.
    Is anyone else having these problems? Any suggestions?
    Thanks!

    Hi JB,
    See if the Disk is issuing any S.M.A.R.T errors in Disk Utility...
    http://support.apple.com/kb/PH7029
    Open Activity Monitor in Applications>Utilities, select All Processes & sort on CPU%, any indications there?
    How much RAM & free space do you have also, click on the Memory & Disk Usage Tabs.
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.
    In the Memory tab, are there a lot of Pageouts?
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or some USB or Firewire device, or 3rd party add-on, Check System Preferences>Accounts>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Also look in these if they exist, some are invisible...
    /private/var/run/StartupItems
    /Library/StartupItems
    /System/Library/StartupItems
    /System/Library/LaunchDaemons
    /Library/LaunchDaemons

  • Xorg + xf86-video-intel lags with compiz / high cpu usage without it

    I have recently noticed that my X server lags. It happens approximately once per second (it's fairly regular) and it can be easily observed when watching movies, dragging windows or rotating cube. Screen just hangs for some milliseconds. Lags are bigger and happens more often when many windows are opened.
    Even worse things happen when I'm _not_ running compiz. X's cpu usage spikes permanently up to 30-40% and lags are even more noticable.
    My hardware:
    Laptop with Intel GMA 950
    Configuration
    I tried some different xorg.confs but it seems to be irrevelant. It happens even on plain conf created by 'Xorg -configure'
    xorg-server 1.5.3-3
    mesa 7.2-1
    xf86-video-intel 2.4.3-1
    kernel26 2.6.27.8-1
    I also tried downgrading these packages to
    xorg-server 1.4.2-2
    mesa 7.0.3-3
    xf86-video-intel 2.3.2-1
    kernel26 2.6.27-1
    and it seems to resolve cpu usage problem but not the lags.
    Does anybody know what might cause these lags? It's really annoying.

    It turned out that color depth was the issue. I think that 24bit is too big for my graphics card and compiz (although I remember that i810+24bit+compiz worked fine).
    So changing DefaultDepth in xorg.conf to 16 fixed the problem. Is there any other way to workaround this without decreasing color depth?

  • Macbook getting how with very little cpu usage

    So my macbook pro with retina display is getting oddly hot.
    I run a few applications, about 5 or so, and the CPU reached about 95C, then was pulled back by the fans to 80C. I then played 1 game, (and left other aps open), and the CPU reached 101c. I've then closed everything but two aps, an IRC client, and safari with 6 tabs.
    Current CPU usage:
    16 - 19%
    CPU temps:
    Average is 80C
    Fan speed:
    3710 rpm
    Program I'm using to record temps:
    Temperature Guage
    I've also let the vents on the side of the computer containing the cpu/gfx chip be suspended in air so they aren't onstructed by anything.
    Is there something wrong with my MBP? Apple's tests said everything was alright but it's getting VERY hot compared to many stories I've seen across the net.

    ThePilotGuy wrote:
    Also, when I restart the comp, should the temps stay the same, even after idling for a minute? They do for me.
    Also, restarted my comp, same dock issue persists.
    EDIT: Also, when I restart my computer, the background always changes to this grey backgroundless color and I have to re-set it.
    And, when I log in, the screen quickly flashes white then takes maybe 5 to 9 secs to login. It hasn't done this until recently.
    EDITEDIT: When the background is colorless, the bar at the top of the screen is just black, I cna't read any of the text.
    The white flash is normal. That's the end of launchd process and the start of the loginwindow process.
    The delay in the appearance of the loginscreen indicates that either
    1. you're running something in
     > System Preferences.. Users & Groups | Login Items
    that is causing the problem every time you bootup and login. If either Skype or Limechat are in that list, get them out. Ideally, get everything out of that list.
    or
    2. if there's nothing in your Login Items, you may have a corrupt plist file. Force the system to make a new one by running this command in Terminal (beware that it will reset your Dock to default prefs, so if you've added any other icons to the Dock you'll have to do that again afterwards):
    rm ~/Library/Preferences/com.apple.dock.plist
    press 'return' on the keyboard and restart the mac.

  • Problem with paintComponent, and CPU usage

    Hi,
    I had the weirdest problem when one of my JDialogs would open. Inside the JDialog, I have a JPanel, with this paintComponent method:
    public void paintComponent(Graphics g) {
    super.paintComponent(g);
    Color old = g.getColor();
    g.setColor(Color.BLACK);
    g.drawString("TEXT", 150, 15);
    g.setColor(old);
    parent.repaint();
    now when this method is called, the CPU usage would be at about 99%. If i took out the line:
    parent.repaint();
    the CPU usage would drop to normal. parent is just a reference to the Jdialog that this panel lies in.
    Anyone have any ideas on why this occurs?
    Thanks!

    1) I never got a stack overflow, and i have had this in my code for quite sometime...If you called paint() or paintComponent(), I'm betting that you would see a stack overflow. The way I understand it, since you are calling repaint(), all you are doing is notifying the repaint manager that the component needs to be repainted at the next available time, not calling a paint method directly. good article on how painting is done : http://java.sun.com/products/jfc/tsc/articles/painting/index.html#mgr
    2) If this is the case, and the two keep asking eachother to paint over and over, .....
    see above answer

  • My T400 with its 100% CPU Usage

    hi, i have problem with my T400 approximately for 10 days. Windows xp was installed and it has been heating very much, about 80 degree and higher. i think of virus possibility andI formatted and install Windows 7. However, problem werent solved, it was heating again. And, i install a clean windows xp now but its cpu usage at !00% rate always even if there is nothing works hard. screen shots of tsk manager are at attachment.
    what do you suggest? help please....

    Reinstall Lion, Mountain Lion, Mavericks or Yosemite without erasing drive
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported then click on the Repair Permissions button. When the process is completed, then quit DU and return to the main menu.
    Reinstall Lion, Mountain Lion, Mavericks, or Yosemite
    OS X Yosemite- Reinstall OS X
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • 3620 router 16/64 with ISDN t1 CPU usage

    All
    If only few voip call, the cpu will about 10 percent
    if 10 voip call, 30~40
    and 20 voip call, cpu about 70%
    is it correct, or so what the fact?
    how can I reduce it?
    i had remove the qos and fair queue command.
    only the necessary voip command
    CPU utilization for five seconds: 31%/24%; one minute: 33%; five minutes: 29%
    PID Runtime(ms) Invoked uSecs 5Sec 1Min 5Min TTY Process
    41 262836 153701 1710 2.45% 1.94% 1.78% 0 IP Input
    4 23900 2104 11359 1.47% 0.19% 0.13% 0 Check heaps
    129 162520 32517 4998 1.14% 1.12% 0.97% 0 CCH323_CT
    45 40324 1452100 27 0.90% 0.35% 0.63% 66 Virtual Exec
    111 83260 61061 1363 0.57% 0.53% 0.48% 0 VTSP
    115 66696 62562 1066 0.49% 0.65% 0.50% 0 VOIP_RTCP
    100 35084 3195825 10 0.24% 0.22% 0.16% 0 SAA Event Proces
    144 32696 23508 1390 0.16% 0.25% 0.20% 0 ISDN L2 Process
    35 4340 252718 17 0.16% 0.04% 0.01% 0 CSAP PLX TX proc
    104 57408 7856 7307 0.08% 0.40% 0.37% 0 ISDN
    33 876 52477 16 0.08% 0.00% 0.00% 0 e1t1 Framer back
    113 22124 12695 1742 0.08% 0.15% 0.12% 0 Session Applicat

    IOS (tm) 3600 Software (C3620-J1S3-M), Version 12.2(15)T10, RELEASE SOFTWARE (fc2)
    and running h323 gw

  • 6380 wireless finds Vista machine but not XP machine - scan from XP hangs - hpqdstcp.exe hogging cpu

    Hello,
    Having some trouble with my new 6380 all-in-one.
    Installation is wireless on 802.11g Linksys router. One machine is Windows Vista Home the other a laptop running XP. 
    When I scan from the 6380 it does not offer me a choice of computer - it simply scans over to the Vista machine.It does not appear to know the XO machine is there.
    If I attempt to run the scanner via "Solution Center" from my XP machine and attempt to run scan or access scan settings the application hangs with its initial popup window. Other settings unrelated to scanning ARE accessible from the XP running Solution Center.
    I have also repeatedly had the XP machine slow to a crawl and Process Manager indicates hpqdstcp.exe using 70-90% of cpu.
    I AM able to print to the 6380 from the XP machine.
    I AM ALSO able to scan to the XP if I am running my paint program (Paintshop Pro) and select the 6380 as the TWAIN device.
    On the XP machine: I have Avast Antivirus running, Windows Firewall and Spybot Resident. Firewall has a long list of hpq*.* programs on its exception list and I have added a few more from the bin directory just in case.
    I have tried running the "Solution Center" with the antivirus and spybot disabled and the firewall OFF - no change.
    I have tried uninstalling and re-installing the software on the XP to no avail.
    Had a Canon LidoScan scanner connected to the XP machine via USB prior to this. Removed it and uninstalled.
    Have a Dell color Laser connected to the router via USB.
    Ran a registry cleaner having read somewhere that this problem had to do with a registry error.
    I would surely appreciate your thoughts.
    thanks,
    Daryl

    I hope this document helps resolve this issue.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00457223&cc=us&dlc=en&lc=en&jumpid=reg_R1002_USEN 
    Make it easier for other people to find solutions, by marking my answer with \'Accept as Solution\' if it solves your problem.
    Click on the BLUE KUDOS button on the left to say "Thanks"
    I am an ex-HP Employee.

  • APEX application problem with Apple's Safari browser

    Hello Everyone,
    I'm working on Apple Safari (version 4.0.5) with Oracle APEX 4.0, the APEX development environment is working fine, but when we try to run our application, after login, while switching tabs, our application hangs with the following URI in the browser
    xxx.xxx.x.xxx/apex/wwv_flow.accept
    and page is rendered blank, even the page source view is blank.
    Our page also carry some JQuery related code functionality, along with regular HTML and Stylesheet.
    No idea what is causing this behavior?
    Our application is running smooth with browsers like IE, FF, Opera.
    Sample applications provided in-bundled with APEX 4.0, are running good on Safari as well.
    So kindly suggest, what could be the possible reason behind this?
    Regards,
    Krishna

    Hi Patrick,
    Yes, I'm using my own custom made theme also involved JQuery javascripts & functionality on apex pages.
    I'm using Safari 4.0.5, didnt checked with the latest version yet.
    Yes I've tried it on Google Chrome, its working fine, except with the already know issue, that on each page's post-back, chrome prompts for the XDB Username and Password, which is also a very major issue with my application.
    I've gone through various threads from OTN to look out for the possible fix to this issue, but not helpful so far. Have tried few alternatives suggested on OTN, after which landed up in more complex issues causing my application to prompt XDB credentials on all the browsers. Now some how have brought the application back to the previous state, with the help of OTN indeed. Presently my application execute fine with IE, FF & Opera, except Safari & Chrome (XDB credentials prompt).
    It would be really not an easy task for me to replicate the same scenario on apex.oracle.com, because it involves various database tables too.
    I'm wondering, you asked me the 'theme' subject for the issue, kindly would you please educate me more, how themes can cause an improper functionality on Safari and not in rest of the browsers?
    Thank you so much Patrick, I'm partially relieved knowing that you responded me. Great pleasure learning from you.
    Regards,
    Krishna

  • High CPU usage with BT NetProtect plus

    Anyone else getting this problem? With no applications running I'm getting CPU usage of up to 100%

    I'm an IT engineer and have used McAfee since the early 90's without a problem but there is a problem with mcshield.exe slowing my machine down of in the past few months,  and after being unable to get any sense out of McAfee (as I am no longer their customer, I'm BT's), I thought I’d take a look at it myself.
    The problem has been all over the net for months and in my case, I traced the issue to a program called “Trusteer Rapport” which many banks are advising customers to install as extra online protection.  A part of its program that runs in the background called “RapportManagementConsul.exe” seems to be conflicting with mcshield.exe causing it to use up most of the CPU.
    I trust McAfee to protect me from the viruses and I wouldn’t like to uninstall Rapport in case my bank decides to use it as a get out clause if my account was hacked, and so what I do not is disable report unless I’m going onto a financial site that Rapport is monitoring but to be honest, it’s a lot of faffing about as it’s not just a matter of turning Rapport off, you then have to stop the “RapportManagementConsul.exe” file running in the background so it’s not a job for the non-technical.
    Hopefully, somebody will pass this onto the BT Tech guys and they will escalated the problem before both BT and McAfee get any more bad press and fix this on-going problem.

  • Unusually high cpu usage with iMovie 6.0.3

    I'm having trouble with very high cpu-usage. Just the open imovie app is taking up about 50%, during playback it sometimes peaks over 100%! The project file is pretty big (about 30 gig), but that is mainly because of the amount of footage imported into it. The movie itself is about 25 minutes in length. There is some audio editing going on: some soundeffects, musicfiles (no drm-protection), audio commentary that i recorded within imovie. I know that imovie has trouble when there is a lot of audio/audio editing involved and this project is probably a little more complex than other stuff i did in imovie, but i never had such problems. i can hardly use playback anymore. I recently updated Quicktime to 7.6.4 and Perian to version 1.2.1. Any ideas what's going on or how to work around the problems? Since the movie is about 80% finished i don't really want to start all over again. Thanks in advance for your input!

    Hi Klaus1
    I have several plug-ins by cfx and the slick volumes 4, 6 8 and 10. I can post a list of all of them if you like. Up to now they never made any trouble, but you'll never know...
    The edit in the timeline is about 25 minutes long. But the project file contains captured dv-footage of about 2 hours, so that alone adds up to something like 26 GB. Then there are a few rendered effect-clips done with some of the plug-ins like stabilizing or color correction which also add to the 30 GB, as well as some audio-files (some music, my voice-over commentary). I emptied the trash several times while working on the movie. At this moment there are only a few MB of erased audio in it.
    It all sounds a bit like this is an insanely huge and complex project, but as i said, i have done projects like this in imovie without the massive cpu-usage. I'd like to continue to use imovie, but if this problem keeps coming up with future projects, i might as well take the step and switch to Final Cut Express.
    For now I will try your idea of exporting the movie as it is now and open it in a new project file.
    Thanks for your help and input so far!

  • MobileClient.exe holds 100% CPU usage in Citrix

    Hi
    We have successfully got Mobile Sales 5.0 SP11 working on Citrix but unfortunately, as soon as we have more than 10 people working on it, the application hangs with 100% CPU usage
    This server has 4 CPU's and should not max out with so few users.
    The infrastructure is set out with the application and the database sitting on different virtual servers with a gigabit connection between them.
    The locking point always seems to be on the application server.
    Any ideas?
    James

    Another question:
    How did you get it work?
    I want to do this for CRM7.0 and I don't know how...
    Thank you in advance
    Simone

Maybe you are looking for

  • 755p Voice Dial with BlueTooth

    I've searched all over the place for help with my quest to make my Treo 755p "Smart" phone have bluetooth voice dial capabilities.  What seems to be out-of-the-box functionality for many normal phones (no "smart" in their name) is apparently difficul

  • How to play offline content using Smooth Streaming Client SDK for Windows 8.1 and/or Windows Phone 8.1

    Hi there, The Smooth Streaming Client SDK for Windows 8.1 at https://visualstudiogallery.msdn.microsoft.com/0170c67c-c183-4fee-8dd4-c2b44d710d40 specifies "Offline playback scenarios via Downloader Plugin*". I have been searching the web to find info

  • Update in back ground indicator "VERSION COMPLETED"

    Hi, All. How can I change for PO in back ground indicator "version completedu201D to u201Cxu201D. for PO version 0? I know  that  in customizing  I can do it  for plant . In my case I need to do it only for some purchase groups in the plant and for s

  • Searching by file size

    Hi all, I've searched and searched for an answer to this, but didn't have any luck. I'm trying to search files by size. I've tried a smart folder, but size isn't listed as a searchable attribute. And I'm clueless when it comes to Spotlight (at least

  • Access to user management  with j2ee_admin

    Hello, All I have a problem I'm trying to access  to user management ()  with  j2ee_admin user, but when I log on with this users  in the  screen don't shown anything, only the fiels of usuername and password are cleaned and I enter other password in