Autorun suddenly stops

Hello I recently ran into an issue when I plug my Lg vortex into my PC to manage files on SD card  I get a message that reads, 
"The application AUTORUN (process com.lge.autorun) Has stopped unexpectedly please try again" 
at the bottom of the above message there is a button "force close".
Can't seem to get around this issue, if anybody can send me in the correct direction to fix this issues it would be very helpful 
This is a rooted lg vortex (only rooted to remove bloatware never had an issue till four days or so ago.. It has been rooted since day two..5/1

I have around 122 GB, so.. I've used like half of the harddisk. And it doesn't just happen while I'm gaming; but when I DO game it almost every time happens.
It can happen like "randomly" when Im just surfing on the internet, or doing stuff at my computer programs..
But if the problem are that I have filled up the harddisk with to much so I just have to go around and clean up with the things I dont need ^o^

Similar Messages

  • Photoshop CS4 64bit suddenly stop working

    Having problems with Photoshop CS4 64bit version stop running for me giving me this error message  with these details:
    Problem signature:
      Problem Event Name:    APPCRASH
      Application Name:    Photoshop.exe
      Application Version:    11.0.1.0
      Application Timestamp:    499bfd16
      Fault Module Name:    StackHash_0b5f
      Fault Module Version:    6.1.7600.16385
      Fault Module Timestamp:    4a5be02b
      Exception Code:    c0000374
      Exception Offset:    00000000000c6cd2
      OS Version:    6.1.7600.2.0.0.256.1
      Locale ID:    4105
      Additional Information 1:    0b5f
      Additional Information 2:    0b5f2ed00a0371f4956b3b2a23be79e0
      Additional Information 3:    a274
      Additional Information 4:    a2747fd43e73092b139f32555a88633d
    It seems when i do something simple as typing text, it'll stop working and give me a "Adobe Photoshop suddenly stop working". My CS4 32bit version seems to working fine with whatever i'm working on. I'm running a fresh install of Windows 7 64bit Ultimate on a new computer Intel quad core with 4gig of ram if that helps. Sorry if this have been asked before but i couldn't find anything on these forums. Thanks in advance.

    i deleted the prefs file and now i can open photoshop. but it seems as if it crashes if i open ANY file with ANY text, no matter what the font is.

  • HT201317 Photos from my iphone and ipad are going into my photo stream on the devices but aren't going into the folder on my windows PC. They used to but they suddenly stopped. Has anyone else had this same problem?. I have checked all settings and they a

    Photos from my iphone and ipad are going into my photo stream on the devices but aren't going into the folder on my windows PC. They used to but they suddenly stopped. Has anyone else had this same problem?. I have checked all settings and they appear OK

    Hi AP_In_Surbiton,
    I am really sorry that you have had so much trouble getting your Caller ID up and going.  I'll be happy to help you out with this and get it working for you.
    Could you drop me in an email please? Use the 'contact us' form in my forum profile under the 'about me' section. You can find it by clicking on my username.
    Thx
    Craig
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)”
    td-p/30">Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Bouncing Ball Just Suddenly Stops Mid Bounce

    I have a application where each time you click the add ball button a new randomly colored ball is added to the jpanel. It works fine except that the balls suddenly stop at the same spot. I want them to continue to bounce for a longer period of time instead of like 8 bounces. It was going around withoutstopping prior to my getting the add new ball part working. I cannot seem to figure out what I did wrong. Also curious if anyone new of a tip as to how to get the balls to disappear once a button is clicked or their cycle runs out. Below is my code:
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.util.*;
    import javax.swing.*;
    public class BounceBall{
        public static void main(String[] args) {
            JFrame frame = new BounceFrame();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOS  E);
            frame.setVisible(true);
    class BounceFrame extends JFrame {
        private BallCanvas canvas;
        public static final int WIDTH = 450;
        public static final int HEIGHT = 350;
        public BounceFrame() {
            setSize(WIDTH, HEIGHT);
            setTitle("BounceThread");
            Container contentPane = getContentPane();
            canvas = new BallCanvas();
            contentPane.add(canvas, BorderLayout.CENTER);
            JPanel buttonPanel = new JPanel();
            addButton(buttonPanel, "Add Ball",
                    new ActionListener() {
                public void actionPerformed(ActionEvent evt) {
                    addBall();
            addButton(buttonPanel, "Exit",
                    new ActionListener() {
                public void actionPerformed(ActionEvent evt) {
                    System.exit(0);
    class BallThread extends Thread {
        private BouncingBall b;
        public BallThread(BouncingBall aBall) { b = aBall; }
        public void run() {
            try {
                for (int i = 1; i <= 1000; i++) {
                    b.move();
                    sleep(5);
            } catch (InterruptedException exception) {
    class BallCanvas extends JPanel {
        private ArrayList balls = new ArrayList();
        public void add(BouncingBall b) {
            balls.add(b);
        public void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            for (int i = 0; i < balls.size(); i++) {
                BouncingBall b = (BouncingBall)balls.get(i);
                b.draw(g2);
    class BouncingBall {
        private Component canvas;
        private static final int XSIZE = 15;
        private static final int YSIZE = 15;
        private int x = 0;
        private int y = 0;
        private int dx = 2;
        private int dy = 2;
        public BouncingBall(Component c) { canvas = c; }
        Color color = getColor();
        public void draw(Graphics2D g2) {
            g2.setColor(color);
            g2.fillOval(x,y,30,30);   // adds color to circle
            g2.drawOval(x,y,30,30);   // draws circle
        public void move() {
            x += dx;
            y += dy;
            if (x < 0) {
                x = 0;
                dx = -dx;
            if (x + XSIZE >= canvas.getWidth()) {
                x = canvas.getWidth() - XSIZE;
                dx = -dx;
            if (y < 0) {
                y = 0;
                dy = -dy;
            if (y + YSIZE >= canvas.getHeight()) {
                y = canvas.getHeight() - YSIZE;
                dy = -dy;
            canvas.repaint();
        private Color getColor() {
            int rval = (int)Math.floor(Math.random() * 256);
            int gval = (int)Math.floor(Math.random() * 256);
            int bval = (int)Math.floor(Math.random() * 256);
            return new Color(rval, gval, bval);
        }Edited by: wnymetsfan on Dec 2, 2007 2:01 PM

    wnymetsfan wrote:
    Actually it is comiliable as I ran it numerous times today asI tried to fix it. No, it does not compile. Besides the obvious error:
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOS  E);, a large part of the BounceFrame class seems to be missing: I don't see a addButton(...) anywhere.
    I posted here since it says new to java which I am. I also have posted here before with questions relatedto swing and 2D elements like graphs and no one else had an issue. It's not prohibited to post it here, but in the 2d forums, there are more people who know what they're talking about when it comes to 2D animations.
    Thanks for the links to the other forums I will post there. Sorry to bother you guys as I was not aware that New to Java meant only if it doesn't involves things like swing and 2DIt's not a bother: I merely said it for you to get help sooner.

  • How could I solve a recurrent sudden stopping of a Lenovo 3000 N100 laptop?

    Hi everybody,
    I have bought a new laptop Lenovo 300 N100 in November 2007.Since February 2009, it does not work correctly. The problem is the following:
      When I launch the laptop- it's XP which is installed on it- it works approximately between two abd three hours and suddenly stops.When I launch it again, it works approximately 20 minutes and suddenly stops.When I try to launch the laptop again, it  does not start ; but if I let it take 1 week of complete rest , then , when I launch it , it works approximately between two and three hours.
    Please, how could I solve yhis problem?
    Thanks you in advance for your answers.

    Hi Duck3,
    Excuse me to answer only now to your message; it's due to the fact that my Internet connection had problems.
    When I say :
    "but if I let it take 1 week of complete rest , then , when I launch it ,
    it works approximately between two and three hours." , it's when plugged in (my battery no more works since November 2008, the laptop can
    no more work only with battery), the laptop(when it works) indicates that the battery is "charged" at 0% and the problems I have described 
    in my post began in February 2009.
    I haven't done BIOS update since I bought this laptop.
                                                                                 Thanks.

  • My usb that i have been using on my computer for a while suddenly stopped working, but is still glowing and letting me know that it is connected, but not showing up in disk utility

    my usb that i have been using on my computer for a while suddenly stopped working, but is still glowing and letting me know that it is connected, but not showing up in disk utility

    Either the physical drive or the enclosure electronics has failed. The light you are seeing is powered by the USB connection, the power, electricity, all USB ports put out. That doesn't mean the actual physical hard drive or the USB to SATA bus electronics are working properly. If it doesn't show in Disk Utility then it is DEAD.
    Most of the time it is the enclosures electronics that fail. Removing the physical drive from the enclosure and put it in another enclosure or using a SATA to USB adapter, one that has it's own AC power supply, might allow you to get the files off the drive.

  • My mini DVI port suddenly stopped working! :(

    Hi! I hope everyone is doing well. I bought a mini DVI port to connect my macbook pro to the projector. It was working perfectly until yesterday, it suddenly stopped. I mean the laptop won't show on the projector. when I play around with the port and the cord and move them, they show a blue screen like the one that appears when the laptop detects a projector but NOTHING happens then. The laptop normal screen comes agian! I know that there is a problem maybe with the cord or the laptop mini DVI slot! How can I know where the problem is? I don't wanna buy a new port then the problem appears to be from the laptop.
    Peace and thanks in advance!

    They tested it with their cable and mine.  First off, they connected an external screen to the mini port.  With their cable and mine, they could not get the "detect display" to see the screen.
    Then they rebooted the machine from an external drive/os and it immediately recognised the external screen.
    So the diagnosis was that it was a software thing.  I asked them if they could refresh the drivers or clear the settings but they were pretty unhelpful - did not want to go there.  Basically they said rebuild the OS from the ground.
    I find this somewhat frustrating as surely there is some soft settings that can be done without rebuilding.  Are there any "preferences" or similar types of things that I can delete out of the library file.....?  (I am not a Mac tech guy - I am a user.....).
    Mark

  • Satellite L300 suddenly stopped working - new motherboard needed

    My Sat L300 suddenly stopped working the other day.
    It kept freezing to start with, then nothing at all. So, I kill-disked the HDD and tried to re-install Windows (XP).
    During the install it threw up a message that some internal components had been incorrectly installed and needed to be reinstalled.
    I was told to remove the memory cards and re-seat them.
    That did not work. I thought that perhaps the HDD was damaged, so I fitted a new one, and started to reinstall Windows.
    Once again, same message. One of my colleagues at work suggested that the Motherboard was probably U/S.
    So I have been trawling the .net to find a replacement. Laptop out of warranty! I am told that some other serial numbered motherboards will work with this laptop. Don't really want to get a motherboard only to find its never going to work! My unit has an SPS number of: V000138330.
    I am being offered one with an SPS of: V000138390.
    Any ideas? Will this one work?
    And if it does, will it give me the functionality that I used to enjoy?!
    Sorry for the long sob story.
    Any advice gratefully accepted.
    ANDY-N

    Hello Andy
    Sorry but can you tell us more about your notebook? which model do you have exactly (L300-xxx)?
    Do you have European model?
    Has your notebook valid warranty?
    Maybe I have misunderstood something but why you want to exchange mainboard if the warranty is probably still valid?

  • Push notifications and tag subscriptions suddenly stopped

    Push notifications and registrations have suddenly stopped working (working fine for 4 months). I cannot figure out why. Can someone please help?
    The only change I made on the server is to delete the TodoItem table (from azure example, which I'm not using any longer).  Here are errors showing up in the mobile services logs:
    <label style="display:block;font-size:11px;line-height:11px;font-family:'Segoe UI Semibold';text-transform:uppercase;margin-bottom:7px;">ERROR</label>
    The request 'PUT /push/registrations/304RegIdStuff...' has timed out. This could be caused by a script that fails to write to the response, or otherwise fails to return from an asynchronous call in a timely manner.
    Error Sending push: { [Error: 503 - Server Busy. TrackingId:632bfa72-f86c-4675-ba6c-438c03c51b1b_G27,TimeStamp:3/17/2015 2:36:38 AM] code: '503',
    detail: 'Server Busy. TrackingId:632bfa72-f86c-4675-ba6c-438c03c51b1b_G27,TimeStamp:3/17/2015 2:36:38 AM', statusCode: 503 }
    <label style="display:block;font-size:11px;line-height:11px;font-family:'Segoe UI Semibold';text-transform:uppercase;margin-bottom:7px;">ERROR</label>
    The request 'POST /tables/Item' has timed out. This could be caused by a script that fails to write to the response, or otherwise fails to return from an asynchronous call in a timely manner.

    I'm glad it's working for you again.
    It looks like there was some
    potential issue yesterday that includes Service Bus, but I'm not sure if it also affected Notification Hubs.
    It's always a good idea to go and check the
    service status page when anything weird starts to happen.
    Please visit my blog
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • My charger doesn't want to plug in to the phone,it suddenly stopped working.What should I do?, My charger doesn't want to plug in to the phone,it suddenly stopped working.What should I do?

    My charger doesn't want to plug in to the phone,it suddenly stopped working.What should I do?, My charger doesn't want to plug in to the phone,it suddenly stopped working.What should I do? iPhone 5

    Clean the lint/debris from the charging port and plug the cable in.

  • My Western Digital external hard drive suddenly stopped showing up on my Macbook Pro and disappeared from Disk Utility. It works on a PC.

    My Western Digital external hard drive suddenly stopped showing up on my macbook pro and it disappeared from disk utility. I have tried making invisible files visible but nothing has worked and my hard drive shows up on a PC but not my Mac anymore.

    What is the manufacturer of the external and how old is it? Does it have its own AC power supply or is it USB bus powered?

  • The editable rectangles of my still photos in the composition panel suddenly stopped showing up.

    Hi There, Adobe Community!
    I am relatively new to After Effects CC and am using it to create a stop motion film with a large amount of photos.
    Usually, when importing the individual images into my composition panel, a sequence of editable rectangles appears in the compostition panel allowing me to edit the frame length of the still photos.
    After around 950 imported images, the little rectangles suddenly stopped showing up. But when looking at a preview of the project, it's as if the photos are in there, in the sequence they should be. I'm just unable to edit them like the previous ones with recangles showing.
    I probably am not describing this too well, so here is a screen shot which hopefully makes my problem somewhat more clear. The area of issue is where you see the descending sequence of boxes in the comp panel. The red tracking bar is there to show that there are still photos continuing the sequence, I just can't see the boxes for em..
    thank you so much for any help in the matter!

    So I guess you are talking about the layers in the timeline go missing, not the handles in the Comp Window.
    I think you have run into a display bug. Try selecting the top hundred or so layers and pre-compose them. If the missing layers appear then that's the problem. I have had it happen a couple of times before in previous versions of AE..
    Here's a workflow hint for you, break your comps up into short sequences instead of trying to do a 4 or 5 minute piece with 900 layers in a single comp. You'll find editing and changing a lot easier.
    I would also pre-mix your music. AE is a really terrible music mixer....

  • Outlook to iPhone sync failure – Sync suddenly stopped working for calendar events but continued for contacts and notes.   Finally Fixed!!!  SUPPORT TEAM – PLEASE SEE THIS – Complete explanation of cause and correction steps.

    The issue:  Outlook to iPhone sync failure – Sync suddenly stopped working for calendar events but continued for contacts and notes.   Finally Fixed!!! 
    SUPPORT TEAM – PLEASE SEE THIS – Complete explanation of cause and correction steps.
    The cause:  It is now clear what caused this problem.  For years I had several “all-day” events in my Outlook calendar (birthdays, anniversaries, etc.).  In May 2012 I decided to make some of them one hour  events so I could add alerts to remind me of the event.  I did this by dragging them in Outlook to the time I wanted and expanding them to the time slot desired and then adding the alarm.
    The symptom:  Syncing stopped working for the calendar but continued working for contacts and notes.  I didn’t realize sync was failing until months later when I missed two very important phone calls, so when I noticed it the cause was not obvious. 
    The failed attempts:  I’m head of a software firm and my calendar sync is a crucial to my business life so I took this on with a vengeance.  From a quick look at events in Outlook and the iPhone I could see that the problem started in May 2012.  Events before May were in both Outlook and the iPhone but events after May were only one or the other.  Unfortunately I had changed several other things at the same time relating to other events so again the cause was not obvious.  MANY calls with AppleCare proved them incompetent so my internal IT guys assisted trying many things.  We tried a huge number of calendar changes and several versions of iTunes, iPhone OS and Office as well as both iPhone 4 and 5, all without success.
    The fix:  After 18 months of frustration, MANY  hundreds of $ expense and MANY hours of wasted time I saw a blog that had a calendar sync  problem and it indicated all day events were related.  I changed the display of the Outlook calendar to the list view, added columns so I could see “all day” event check marks as well as times of events,  sorted on the “all day” event column to move them to the top, and for all events that were “all day” events AND had a start and end time, I removed recurrence and then added the annual recurrence back…
    After I fixed all events that had BOTH “all day” set and had a start/end time, I tried another sync.  It synced for the first time in 18 months! 
    Problem occurred May 2012 – fixed Nov 2013

    Hi, to remove dummy '_ModGrp' entries, rather than crashing the 'Suppr' key on your keyboard, you can use this basic VBA macro (launched for instance from Excel).
    It will recursively remove all '_ModGrp...' folders
    Sub RemoveFolders_Click()
        Dim oOutlook As Outlook.Application
        Set oOutlook = New Outlook.Application
        Set objNameSpace = oOutlook.GetNamespace("MAPI")
        Call CleanFolders(objNameSpace.Folders)
    End Sub
    Sub CleanFolders(objFolders As Outlook.Folders)
        For i = objFolders.Count To 1 Step -1
            If Left(objFolders(i).Name, 7) = "_ModGrp" Then
                objFolders.Remove( i )
            Else
                If Not objFolders(i).Folders Is Nothing Then
                    Call CleanFolders(objFolders(i).Folders)
                End If
            End If
        Next i
    End Sub

  • HT201263 My iPod touch suddenly stopped working. It was fine, but when I went back the screen had gone black and I was unable to turn it on. It is now unresponsive and my computer does not recognize it when it is plugged in. What should I do?

    My iPod touch suddenly stopped working. It was fine earlier, but when I went back a few hours later, the screen had gone black and I was unable to turn it on. It is now unresponsive and my computer does not recognize it when it is plugged in. I thought it just needed to be charged but there seems to be a larger issue now. What should I do?

    Let your ipod die. Then when it is dead charge it adn turn it back on. After that it should be fine.

  • ITunes Seem to Have Suddenly Stopped Communicating With the CD/DVD Burner

    Hello, I wonder if anybody can help - my itunes application seems to have suddenly stopped communicating with my laptop's cd/dvd burner
    (Generic Name (E: H - T-S D D A S - 20N ATA Device)).
    About 2 years ago, I have experienced a similar problem, but was able to resolve it by downloading 64-bit compatible GEAR drivers to my system. However, the problem has re-appeared when I have updated to iTunes Version 10.1. Funny enough, the cd/dvd burner started getting recognized again when I updated to iTunes Version 10.2, but halfway through me burning a large playlist to multiple cds has suddenly stopped recognizing the cd/dvd burner again, and has never "resolved itself" ever since.
    I have tried multiple approaches to solving this issue, including completely re-installing itunes software and completely re-installing GEAR drivers, but nothing works. I have even tried uninstalling GEAR drivers completely, as I read that it worked for someone on one of the similar forums, but that didn't work either.
    My itunes diagnostics runs all the points of the cd/dvd drive check successfully, except for the last point (Can Not Read Audio CD). Here's what the diagnostics summary looks like:
    Microsoft Windows Vista x64 x64 Home Premium Edition Service Pack 2 (Build 6002)
    Hewlett-Packard HP Pavilion dv9700 Notebook PC
    iTunes 10.2.1.1
    QuickTime 7.6.9
    FairPlay 1.11.16
    Apple Application Support 1.5
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 3.4.0.25
    Apple Mobile Device Driver not found.
    Bonjour 2.0.4.0 (214.3)
    Gracenote SDK 1.8.2.457
    Gracenote MusicID 1.8.2.89
    Gracenote Submit 1.8.2.123
    Gracenote DSP 1.8.2.34
    iTunes Serial Number 0016AB580A7B0C28
    Current user is not an administrator.
    The current local date and time is 2011-04-14 17:52:25.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    NVIDIA, NVIDIA GeForce 7150M / nForce 630M
    ** External Plug-ins Information **
    No external plug-ins installed.
    The drive F: Motorola MB810 Rev 0001 is a USB 2 device.
    iPodService 10.2.1.1 (x64) is currently running.
    iTunesHelper 10.2.1.1 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    ** CD/DVD Drive Tests **
    No drivers in LowerFilters.
    UpperFilters: GEARAspiWDM (2.2.0.1),
    E: H-T-S DDA
    S_-20N, Rev W_05
    Audio CD in drive.
    Found 1 songs on CD, playing time 255:08 on Audio CD.
    Track 1, start time 00:02:00
    Audio CD reading failed. Error Code: 27 27 27 27 27 27 27 27 27 27 27 27 27 27 27 27 0 0 0 0.
    iTunes cannot play or import music from a CD in this drive. The drive may need a firmware update. Check with the manufacturer.
    Get drive speed succeeded.
    The drive CDR speeds are: 3 9 16 24.
    The drive CDRW speeds are: 3.
    The drive DVDR speeds are: 3.
    The drive DVDRW speeds are: 3.
    Error Correction is turned on for importing audio CDs.
    I have noticed that the diagnostics summary containes a suggestion to update firmware of my laptop's cd/dvd drive, but currently there are no such firmware updates available.
    Another frustrating issue that I ran into was trying to convey this issue to Apple Technical Support via e-mail using the Express Lane for the troubleshooting issues. I really fail to understand why I am being asked for the "hardware serial number" when I'm clearly choosing the categories for "iTunes/CD-DVD Import Issues" which are software, not hardware, categories! This prevents me from being able to simply send the description of my problem to the correct Apple Support department, and does not let me do that even when I enter my itunes' Serial Number, which can be found in the diagnostics summary provided above.
    Much Thanks to anyone who can provide any kind of helpful advice, even if it's just on how to be able to convey this problem to Apple Support via e-mail!

    Okay ... checking something else:
    Current user is not an administrator
    Is that true? Or do you in fact have a Windows user account with full administrative rights?
    (It's possible that a permission may have gone astray in your usual user account, which might be causing the burning issues.)

Maybe you are looking for

  • Error message when printing Sales Order

    Hi, I get following error message when printing out a sales order just created. No matching records found 'Document' (RDOC) (ODBC-2028) (Message 131-183) Logged in as super-user, posting periods is unlocked. It is a new company just created. With san

  • IMac Continually Dropping WiFi Connectivity

    Due to appalling wired "broadband" where I am, I have to connect by tethering an iPhone 5 over an HSDPA cellular connection. That's all fine. The trouble is that my late 2012 27" i7 iMac keeps losing connectivity although it continues to be - apparen

  • Loading XML based on User Decision

    Hello- I am working on a Flash project that involves an intro movie, which - when done - leads to a "decision" screen where the user chooses what kind of "visitor" they are. In other words, an intro movie will play and then lead to a screen with thre

  • Opening a document with a dialog open

    I am trying to open a document with a window open created by javascript, but I get an error when the window is open and I try to open the document. See attached: Is there no way to have a window open and the application open a document at the same ti

  • Remotly acess of SQL loader

    We have two oracle servers. Server A. Server B. And end user machine.on this machine we only has net service with server A. We select and insert our data from server B using Db link. Now on end user machine as I mention we don't have connection servi