Random crashes in settings

Hi i bought a  new ipad mini (not retina) a two days ago and from the first launch settings start crashing. They crash if you tap fastly on various items in settings or fast switch categories in settings.
Is that ios 7 problem and i need wait for fix or its a defect?

Quote from: Iceman22 on 11-August-13, 06:14:42
Hello!
I also want everyone here to know that I got my z68a gd65 G3 working with an evga 780 classified, without flashing to the newer ivy bioses.
I had a very old bios at first when I tried 780gtx for first time, believe it was N44.. so I got the same issue like on this thread.
So I did some research, and decided to update my bios first, I flashed to the N88 version.
After that I put in the 780gtx, and it worked ! Didn't have to update the bios on the 780 because the stock classified bios is already the newest one.
So Z68A is still the king, no need to upgrade yet :D
But if you have this board and thinking about getting a 7series nvidia, you should go for EVGA since they release the newest bioses for their gpu's, and probably it will be the easist brand to flash a gpu.
You can't be serious? You post this BS at an MSI forum? 

Similar Messages

  • Random Crashes with MSI x48c Platinum

    Hello everyone.
    After crabbing some new hardware and putting it together, Im having trouble with these annoying random crashes. It does not happen often however, maybe a few times in a day. The screen turns black and the sound just loops forever. Then I have to restart it manually. Sometimes it will boot right up again, but other times I have to restart twice, because I dont even get the POST screen up, the screen just stays black.
    Motherboard: MSI x48c Platinum
    Graphic Card: Asus EAH4870
    RAM: OCZ DDR3 4 GB Platinum XTC DualChannel (PC3-12800 2x2048MB 1600MHz.)
    CPU: Intel Core 2 Quad Q9550 2.83GHz 1333Mhz
    PSU: Corsair CMPSU-750TXEU 750W
    OS: Windows Vista x64 Ultimate
    I have a clean installation of Vista x64 and all the drivers are updated.
    No overclocking, everything is running on default (Except I adjusted the graphic card fan, because it was hitting over 80 freaking Celsius when idling..!)
    The temp for the CPU is 35-50c, and with the fan fix for my graphic card, its running on 50c. So overheating shouldnt be a problem.
    Im really out of ideas here.. However, it does not say that my RAM is compedable with the motherboard in the manual, but doesnt that just mean its not tested with it? I think a new card like x48c should be able to run it just fine..
    Any help would be much appreciated.
    Thanks in advice.

    Still having the same problem, but it seems to happen more frequently now though.
    I set the following options in BIOS to:
    Clock speed: 1066 MHz
    Voltage: 1.57V
    CAS# Latency(CL): 9
    RAS# to CAS# Delay (tRCD): 9
    RAS# Precharge (tRP): 9
    RAS# Activate to Precharge: 24
    It was something like, 7 7 7 38..
    Is these the right settings?
    When I run CPUZ again after the changes, its still saying 7 7 7 20.. Also went into the BIOS again, and the settings were set to 9 9 9 24, am I missing out on something here?
    Here is a screenshot of what the menu looks like; http://www.xbitlabs.com/images/mainboards/msi-x48-platinum/timings.jpg (Not my screen)
    I also had to disable STD to get those menu-options.
    So I tried to flash my BIOS instead, but the problem still remains. I used BIOS version 2.4, located here: http://global.msi.com.tw/index.php?func=downloaddetail&type=bios&maincat_no=1&prod_no=1392 (I used the forum tool btw, works great, thanks alot for that!)
    Also tried to reset the CMOS, run default bios settings...
    By the way, since I'm using DDR3 ram I had to use slot 1, and 3. Because the motherboard supports DDR2 as well.
    (Sorry for bringing this old topic up, but its getting really annoying now)

  • Camera video preview - Random crashes and green screens

    Hello everyone,
    I am currently working on a Windows Phone 8.1 app and I need to preview video from the phone's back camera. For quite some time I've been struggling with random crashes and green screens. When these green screens appear, all camera apps become affected and
    the device needs to be restarted. Occasionally the phone freezes and only recovers after battery removal. I test the app on my Lumia 620.
    After some web search, I found references to the same problem by many users/developers of different apps. I'm really frustrated as I've tried many possible solutions with no avail.
    Here is part of my code:
    //in App.xaml.cs:
    MediaCaptureInitializationSettings settings;
    public static MediaCapture captureMgr;
    public static bool UnableToInitializeCamera = false;
    public async Task InitializeVideoCapture()
    DeviceInformation backWebcam = await GetCameraDeviceInfoAsync(Windows.Devices.Enumeration.Panel.Back);
    if(captureMgr!=null) captureMgr.Dispose();
    captureMgr = new MediaCapture();
    settings = new MediaCaptureInitializationSettings();
    settings.StreamingCaptureMode = StreamingCaptureMode.Video;
    settings.PhotoCaptureSource = PhotoCaptureSource.VideoPreview;
    settings.AudioDeviceId = "";
    if (backWebcam != null)
    settings.VideoDeviceId = backWebcam.Id;
    else
    var _messageDialog = new MessageDialog("Back panel camera not found");
    _messageDialog.Commands.Add(new UICommand("OK"));
    _messageDialog.ShowAsync();
    try
    await captureMgr.InitializeAsync(settings);
    captureMgr.SetPreviewRotation(VideoRotation.Clockwise90Degrees);
    UnableToInitializeCamera = false;
    catch
    UnableToInitializeCamera = true;
    Debug.WriteLine("HANDLED EXCEPTION: camera could not be initialized");
    var _messageDialog = new MessageDialog("Unable to initialize camera");
    _messageDialog.Commands.Add(new UICommand("OK"));
    _messageDialog.ShowAsync();
    protected override async void OnLaunched(LaunchActivatedEventArgs e)
    //.... other app initialization code
    await InitializeVideoCapture();
    Window.Current.Activate();
    private async void OnResuming(object sender, object e)
    AppIsResuming = true;
    FinishedCameraInitialize = false;
    await Task.Delay(TimeSpan.FromSeconds(0.5));//this makes crashes less frequent
    await InitializeVideoCapture();
    FinishedCameraInitialize = true;
    if(WasPreviewingCamera)
    WasPreviewingCamera = false; //the following line allows time for SetupPage._captureElement to be assigned before video preview starts while (!SetupPage.CaptureElementSourceAssigned) await Task.Delay(TimeSpan.FromMilliseconds(1));
    SetupPage.CaptureElementSourceAssigned = false;
    try
    Debug.WriteLine("trying to restart video preview");
    await captureMgr.StartPreviewAsync();
    SetupPage.PreviewingCamera = true;
    catch
    Debug.WriteLine("HANDLED EXCEPTION: unable to start previewing");
    SetupPage.PreviewingCamera = false;
    GC.Collect();
    AppIsResuming = false;
    private async void OnSuspending(object sender, SuspendingEventArgs e)
    var deferral = e.SuspendingOperation.GetDeferral();
    while (AppIsResuming) await Task.Delay(TimeSpan.FromMilliseconds(1));//prevents crash when app is suspended right after it is resumed
    await CleanupCaptureResources();
    TimeOfLastSuspend = DateTime.Now;
    FinishedCameraInitialize = false;
    GC.Collect();
    deferral.Complete();
    public async Task CleanupCaptureResources()
    if (SetupPage.PreviewingCamera)
    await captureMgr.StopPreviewAsync();
    WasPreviewingCamera = true;
    SetupPage.PreviewingCamera = false;
    else WasPreviewingCamera = false;
    if (captureMgr != null) captureMgr.Dispose();
    //in SetupPage.xaml.cs
    void OnSuspending(object sender, Windows.ApplicationModel.SuspendingEventArgs e)
    var deferral = e.SuspendingOperation.GetDeferral();
    _captureElement.Source = null;
    CaptureElementSourceAssigned = false;
    GC.Collect();
    deferral.Complete();
    private async void OnResuming(object sender, object e)
    ProgressRing2.Visibility = Visibility.Visible;
    ProgressRing2.IsActive = true;
    while (!App.FinishedCameraInitialize) await Task.Delay(TimeSpan.FromMilliseconds(1));
    App.FinishedCameraInitialize = false;
    captureElement.Source = App.captureMgr;
    CaptureElementSourceAssigned = true;
    GC.Collect();
    ProgressRing2.Visibility = Visibility.Collapsed;
    ProgressRing2.IsActive = false;
    Any help towards a solution will be greatly appreciated.
    Thank you

    I will also advice that you start by following the
    Windows Store app sample.
    Is this a Windows Phone app?
    The crash/green screen only manifests itself when I suspend my app and switch to the default camera app (could be any other camera app perhaps). It happens roughly 1 out of 8 times. That's why I posted the suspension and resuming handlers, which I wrote
    according to the msdn instructions.
    I found
    this page with a sample that demonstrates the MediaCapture API for Windows Phone. Some developers have reported problems similar as mine. Has Microsoft dealt with this issue?
    I've spent quite a few weeks trying to investigate this problem, without actually knowing if it is my code that needs to be debugged. That's why I'm asking if other developers are facing similar problems.
    Thank you
    Edit: It seems that the crash/green screen can appear when suspending/switching to any app (regardless if it uses the camera or not). Also, all works fine when the app is running on the debugger.

  • Premiere Pro random crashing since update to 2014.2

    Been working on the SAME big project over 18 months, in Pr Pro CC, 2014, working on the SAME PC:
    Win 7 SP1 pro 64bit, i7-3770K, 32GB fast memory (25.7 available for Pr), Intel HD 4000 graphics on Asus motherboard with 30" NEC Multisync screen at 2560 x 1600 (same as for years)
    42GB free on my SSD drive C: and 54GB free on my SSD drive S: for preview files, 24GB free on my SSD drive T: for caching files.  Project files etc stored on a normal hard drive F: (for Files!) 1.25TB free.
    NOW last update to 2014.2 and I get constant RANDOM crashes (Windows encountered a fault and had to close this program) despite updating graphics driver and trying different settings in preferences, use mercury etc.  No particular action causes it  - sometimes I am just watching it play a sequence and it just stops. Though of course it may be rendering the last edit at the time.
    Sometimes it runs for all of 15 mins and I think the problem has sorted then it goes again and I have to restart the project, find where I was and re-do my last edits.  If I remember to press Ctrl-S very frequently (every few seconds) it seems to run for a while then I forget for 5 mins and it crashes.
    Grrrr what did you do to the latest version, Adobe??  I need to get this project finally finished in a hurry.... I wish I had not updated the program!  Of course I cannot go back as it says the saved copy is now incompatible with earlier Pr Pro versions.
    I then tried running a previous version at the same time, as simonray suggested in his post - it worked!  So I am able to continue as normal provided I do this stupid bodge fix.
    So it really is down to Adobe as it is the same project, same PC, just different version update.  You did something to a great, stable, program that made it unstable, Adobe...
    To ANSWER RAMEEZ from previous thread:
    A variety of issues can cause PPRO to crash:
    a problem with the Preferences, or some other pref-related file in the Profile-<USERNAME> bin. >>  DIDN'T CHANGE ANYTHING since 1½ years running previous PrPro versions on SAME PROJECT on SAME PC
    the graphics driver  Checked for latest version - didn't stop the crashing
    third-party plug-ins - don't have any
    a problem with the cache files. I am using the same 2 x SSD I have been using for years for autosave and caching. 54GB free space / 24GB free space (current cache in place)
    a problem with the project file (if you're loading a project...)  Doesn't apply
    the Preferences files be set to read-only  How would that happen? Never happened before on any other update and I can change it.
    the user not having administrator rights  Only one user on PC since installation, full rights
    a conflict/incompatibility with some OS setting  Haven't changed anything
    a problem on the licensing/authentication side.  I'm signed up to full Adobe CC. Everything else works, Ps, Lr, Id ...
    A log file might help identify the cause of the crash. Please right-click 'My Computer', select "Manage," look under 'Event Viewer->Windows Logs->Application' to see if there's an event there from Premiere Pro. If so, copy the contents of that log and paste them here.
    >>>>>>>>>>>>>>
    Faulting application name: Adobe Premiere Pro.exe, version: 8.2.0.65, time stamp: 0x5486db4a
    Faulting module name: VideoFilterHost.dll, version: 8.2.0.65, time stamp: 0x5486bf85
    Exception code: 0xc0000005
    Fault offset: 0x000000000006d692
    Faulting process id: 0x19d0
    Faulting application start time: 0x01d022d29c3e2d43
    Faulting application path: C:\Program Files\Adobe\Adobe Premiere Pro CC 2014\Adobe Premiere Pro.exe
    Faulting module path: C:\Program Files\Adobe\Adobe Premiere Pro CC 2014\VideoFilterHost.dll
    Report Id: 1097ced4-8ec8-11e4-aaaf-08606e6e6383
    <<<<<<<<<<<<<<<
    Thanks,
    Rameez

    Problem Solved! (with a small catch)
    While searching crashing issues I came across this thread,"Premiere Pro random crashing since update to 2014.2"
    Marc_Lec  Answered (and I paraphrase here)"...I had the same problem and this is what I did. In 'Preferences Memory'  I increased the memory reserved for other application to at least half the installed and changed the optimize render from 'performance' to 'memory."
    Thank You Marc_Lec for what has been a game changer for me since my last computer and the beginning of PremiereCC problems.
    I changed my Memory reserved for Other Applications from the default 7gigs to 1/2 of my approx.31 available Gigs = 16Gigs. Viola!
    No more crashing what-so-ever!
    I still have to purchase an older  GTX 980 graphics card to take advantage of Adobe's approved code to utilize X=Cuda Cores and GPU, but I think I'll hang onto my new TitanX, in hopes that Adobe will write code and approve it someday in the near future.
    Now why doesn't Adobe say this officially about Memory Settings? (I don't know maybe they do and I missed I somewhere)
    Mine and probably many peoples computers problems here on this board may be attributed to a simple Memory adjustment, because the computer needs more than 7Gigs to run itself, not to mention Premiere.

  • Premier Elements 12 randomly crashing

    Premier Elements 12 randomly crashing, WIndows 8.1, Dell 9020 AIO
    event viewer shows;
    Application: Adobe Premiere Elements.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: exception code c0000005, exception address 000000000AD443D5
    Faulting application name: Adobe Premiere Elements.exe, version: 12.0.0.0, time stamp: 0x52251824
    Faulting module name: TitlerCreator.dll, version: 12.0.0.0, time stamp: 0x5225108b
    Exception code: 0xc0000005
    Fault offset: 0x00000000000043d5
    Faulting process id: 0x27c4
    Faulting application start time: 0x01cf50362d4954b8
    Faulting application path: C:\Program Files\Adobe\Adobe Premiere Elements 12\Adobe Premiere Elements.exe
    Faulting module path: C:\Program Files\Adobe\Adobe Premiere Elements 12\TitlerCreator.dll
    Report Id: 272de427-be53-11e3-be81-c81f66abbe4a
    Faulting package full name:
    Faulting package-relative application ID:
    Faulting application name: Adobe Premiere Elements.exe, version: 12.0.0.0, time stamp: 0x52251824
    Faulting module name: MSVCR100.dll, version: 10.0.40219.325, time stamp: 0x4df2bcac
    Exception code: 0x40000015
    Fault offset: 0x00000000000761c9
    Faulting process id: 0xf4c
    Faulting application start time: 0x01cf529e81a9051d
    Faulting application path: C:\Program Files\Adobe\Adobe Premiere Elements 12\Adobe Premiere Elements.exe
    Faulting module path: C:\WINDOWS\SYSTEM32\MSVCR100.dll
    Report Id: 422270fa-be96-11e3-be82-c81f66abbe4a
    Faulting package full name:
    Faulting package-relative application ID:

    WhiteLeroy
    Thanks for your recent posts detailing your TImeline issues. Because of the varied remedies and setbacks with which you are dealing with, let us recap for a moment about some basics so as not to take anything for granted.
    Premiere Elements 12 on Windows 8.1 64 bit
    1. What is the video card/graphics card that the computer uses and is it up to date according to the web site of the manufacturer of the card? Does you Device Manager/Display Adapters area show 1 or 2 cards?
    2. Review your settings under Edit Menu/Preferences/Audio Hardware ASIO Settings.
    3. Delete the Adobe Premiere Elements Prefs file, and, if necessary, the whole 12.0 Folder in which it exists.
    Local Disk C
    Users
    Owner
    AppData
    Roaming
    Adobe
    Premiere Elements
    12.0
    and in the 12.0 Folder is the Adobe Premiere Elements Prefs file that you delete. Be sure to be working with Folder Option Show Hidden Files, Folders, and Drives active so that you can see the complete path cited.
    4. Do a ccleaner run through (regular cleaner and registry part)
    https://www.piriform.com/ccleaner
    5. Assure that you do not have pile up of preview files, conformed audio files, or conformed video files.
    See Libraries\Documents\Adobe\Premiere Elements\12.0 and Adobe Premiere Elements Preview Files Folders (for preview files), Media Cache Files Folder (for conformed audio cfa and pek).
    See Edit Menu/Preferences/Media and the Media Cache Database area Clean button.
    6. Generally check Scratch Disks for location and free space at the location to which each is directed.
    See Edit Menu/Preferences/Scratch Disks.
    7. General question...how project specific have these issues become?
    Please review and let us rule these factors in or out.
    Thanks for the follow ups.
    ATR

  • Computer randomly crashing and restarting.

    I recently upgraded my 2010 Macbook Pro to Mountain Lion OSX. Ever since I upgraded my computer has been randomly crashing and restarting itself. I have looked online for many solutions. I have tried editing settings in system prefereneces, a hard drive repair, a fresh instal of the operating system, and even bringing the laptop into a local apple store. They did some diagnostic checks and a hard drive repair and sent me on my way. Even after all this it is still randomly crashing and restarting itself.
    The issue most often happens after being in sleep mode for a little while, atlhough it still occurs randomly throughout the day.I will bring it out of sleep mode and it will restart itself in the next minute or so.
    I copied a crash report since I have seen many people posting them here. I hope that you guys can help me identify the problem and fix it. I need to use this computer for school and I have many urgent projects coming up. I am covered under apple care, so a part replacement is not an issue. Any insight into the issue would be greatly appreciated. Thanks - Andy
    Crash Report
    Interval Since Last Panic Report:  652009 sec
    Panics Since Last Report:          26
    Anonymous UUID:                    01A39A60-7EC3-7EF0-E13B-CB5A3447CA73
    Thu Apr  4 09:53:29 2013
    panic(cpu 3 caller 0xffffff7f8a7637f2): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff808460a000 0x0a5480a2, D0, P3/4
    Backtrace (CPU 3), Frame : Return Address
    0xffffff808387af80 : 0xffffff8008c1d626
    0xffffff808387aff0 : 0xffffff7f8a7637f2
    0xffffff808387b0b0 : 0xffffff7f8a8603b9
    0xffffff808387b110 : 0xffffff7f8a86042e
    0xffffff808387b180 : 0xffffff7f8ab78c82
    0xffffff808387b2b0 : 0xffffff7f8a886fe8
    0xffffff808387b2f0 : 0xffffff7f8a76b567
    0xffffff808387b3a0 : 0xffffff7f8a76905a
    0xffffff808387b5a0 : 0xffffff7f8a76a983
    0xffffff808387b670 : 0xffffff7f8ad68790
    0xffffff808387b730 : 0xffffff7f8ad93f98
    0xffffff808387b7b0 : 0xffffff7f8ad7b308
    0xffffff808387b810 : 0xffffff7f8ad7bbe9
    0xffffff808387b860 : 0xffffff7f8ad7c09b
    0xffffff808387b8d0 : 0xffffff7f8ad7c8d1
    0xffffff808387b910 : 0xffffff7f8ad4834f
    0xffffff808387ba90 : 0xffffff7f8ad78e39
    0xffffff808387bb50 : 0xffffff7f8ad46de8
    0xffffff808387bba0 : 0xffffff80090650c9
    0xffffff808387bbc0 : 0xffffff8009066670
    0xffffff808387bc20 : 0xffffff800906408f
    0xffffff808387bd70 : 0xffffff8008c984a1
    0xffffff808387be80 : 0xffffff8008c20aed
    0xffffff808387beb0 : 0xffffff8008c10448
    0xffffff808387bf00 : 0xffffff8008c1961b
    0xffffff808387bf70 : 0xffffff8008ca5dd6
    0xffffff808387bfb0 : 0xffffff8008ccdd43
          Kernel Extensions in backtrace:
    com.apple.NVDAResman(8.1)[A26D2A3D-C06F-3A0F-BCFF-901A98C93C3D]@0xffffff7f8a706 000->0xffffff7f8aa12fff
    dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f89217000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[38C214C0-83C8-3594-8A4C-DC6AC3FEC163]@0xff ffff7f8a10c000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[74E3E50F-E50A-3073-8C96-06F854292A91]@0 xffffff7f8a074000
    com.apple.nvidia.nv50hal(8.1)[5F021999-8B18-3BD5-9B98-90617E638A63]@0xffffff7f8 aa13000->0xffffff7f8ad34fff
    dependency: com.apple.NVDAResman(8.1.0)[A26D2A3D-C06F-3A0F-BCFF-901A98C93C3D]@0xffffff7f8a7 06000
    dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f89217000
    com.apple.GeForce(8.1)[A15BB65E-3501-340F-87CB-2FD2BAD33E35]@0xffffff7f8ad35000 ->0xffffff7f8ae01fff
    dependency: com.apple.NVDAResman(8.1.0)[A26D2A3D-C06F-3A0F-BCFF-901A98C93C3D]@0xffffff7f8a7 06000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[38C214C0-83C8-3594-8A4C-DC6AC3FEC163]@0xff ffff7f8a10c000
    dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f89217000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[74E3E50F-E50A-3073-8C96-06F854292A91]@0 xffffff7f8a074000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12D78
    Kernel version:
    Darwin Kernel Version 12.3.0: Sun Jan  6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64
    Kernel UUID: 3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6
    Kernel slide:     0x0000000008a00000
    Kernel text base: 0xffffff8008c00000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 36964227183510
    last loaded kext at 31891623958718: com.seagate.driver.PowSecDriverCore            5.2.3 (addr 0xffffff7f8aec6000, size 233472)
    last unloaded kext at 31965341281584: com.apple.iokit.IOFireWireSBP2            4.2.2 (addr 0xffffff7f8aeab000, size 110592)
    loaded kexts:
    com.logmein.hamachi            1.0
    com.Cycling74.driver.Soundflower            1.5.2
    com.razer.common.razerhid            5.52
    com.apple.filesystems.smbfs            1.8
    com.apple.driver.AppleHWSensor            1.9.5d0
    com.apple.iokit.IOUserEthernet            1.0.0d1
    com.apple.driver.AppleUpstreamUserClient            3.5.10
    com.apple.iokit.IOBluetoothSerialManager            4.1.3f3
    com.apple.driver.AppleMikeyHIDDriver            122
    com.apple.driver.AudioAUUC            1.60
    com.apple.driver.AGPM            100.12.87
    com.apple.GeForce            8.1.0
    com.apple.driver.AppleIntelHDGraphics            8.1.0
    com.apple.driver.AppleHDA            2.3.7fc4
    com.apple.Dont_Steal_Mac_OS_X            7.0.0
    com.apple.driver.AppleMikeyDriver            2.3.7fc4
    com.apple.driver.AppleSMCPDRC            1.0.0
    com.apple.iokit.AppleBCM5701Ethernet            3.6.0b1
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport            4.1.3f3
    com.apple.driver.AppleSMCLMU            2.0.3d0
    com.apple.driver.AirPort.Brcm4331            614.20.16
    com.apple.driver.AppleMuxControl            3.3.0
    com.apple.driver.ApplePolicyControl            3.3.0
    com.apple.driver.ACPI_SMC_PlatformPlugin            1.0.0
    com.apple.driver.AppleLPC            1.6.0
    com.apple.driver.AppleIntelHDGraphicsFB            8.1.0
    com.apple.driver.AppleMCCSControl            1.1.11
    com.apple.driver.SMCMotionSensor            3.0.3d1
    com.apple.filesystems.autofs            3.0
    com.apple.driver.AppleUSBTCButtons            237.1
    com.apple.driver.AppleUSBTCKeyboard            237.1
    com.apple.driver.AppleIRController            320.15
    com.apple.driver.AppleUSBCardReader            3.1.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless            1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib            1.0.0d1
    com.apple.BootCache            34
    com.apple.iokit.SCSITaskUserClient            3.5.5
    com.apple.driver.XsanFilter            404
    com.apple.iokit.IOAHCIBlockStorage            2.3.1
    com.apple.driver.AppleUSBHub            5.5.5
    com.apple.driver.AppleAHCIPort            2.5.1
    com.apple.driver.AppleFWOHCI            4.9.6
    com.apple.driver.AppleUSBEHCI            5.5.0
    com.apple.driver.AppleEFINVRAM            1.7
    com.apple.driver.AppleSmartBatteryManager            161.0.0
    com.apple.driver.AppleACPIButtons            1.7
    com.apple.driver.AppleRTC            1.5
    com.apple.driver.AppleHPET            1.8
    com.apple.driver.AppleSMBIOS            1.9
    com.apple.driver.AppleACPIEC            1.7
    com.apple.driver.AppleAPIC            1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient            196.0.0
    com.apple.nke.applicationfirewall            4.0.39
    com.apple.security.quarantine            2
    com.apple.driver.AppleIntelCPUPowerManagement            196.0.0
    com.apple.iokit.IOSurface            86.0.4
    com.apple.iokit.IOSerialFamily            10.0.6
    com.apple.nvidia.nv50hal            8.1.0
    com.apple.NVDAResman            8.1.0
    com.apple.driver.DspFuncLib            2.3.7fc4
    com.apple.driver.AppleUSBAudio            2.9.0f6
    com.apple.iokit.IOAudioFamily            1.8.9fc11
    com.apple.kext.OSvKernDSPLib            1.6
    com.apple.iokit.IOEthernetAVBController            1.0.2b1
    com.apple.iokit.IOFireWireIP            2.2.5
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport            4.1.3f3
    com.apple.driver.AppleHDAController            2.3.7fc4
    com.apple.iokit.IOHDAFamily            2.3.7fc4
    com.apple.iokit.IO80211Family            522.4
    com.apple.iokit.IONetworkingFamily            3.0
    com.apple.driver.AppleBacklightExpert            1.0.4
    com.apple.driver.AppleGraphicsControl            3.3.0
    com.apple.iokit.IONDRVSupport            2.3.7
    com.apple.driver.AppleSMBusPCI            1.0.11d0
    com.apple.driver.IOPlatformPluginLegacy            1.0.0
    com.apple.driver.IOPlatformPluginFamily            5.3.0d51
    com.apple.driver.AppleSMBusController            1.0.11d0
    com.apple.iokit.IOGraphicsFamily            2.3.7
    com.apple.driver.AppleSMC            3.1.4d2
    com.apple.kext.triggers            1.0
    com.apple.driver.IOBluetoothHIDDriver            4.1.3f3
    com.apple.iokit.IOBluetoothFamily            4.1.3f3
    com.apple.driver.AppleUSBMultitouch            237.3
    com.apple.iokit.IOUSBHIDDriver            5.2.5
    com.apple.iokit.IOUSBMassStorageClass            3.5.1
    com.apple.driver.AppleUSBMergeNub            5.5.5
    com.apple.driver.AppleUSBComposite            5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice            3.5.5
    com.apple.iokit.IOBDStorageFamily            1.7
    com.apple.iokit.IODVDStorageFamily            1.7.1
    com.apple.iokit.IOCDStorageFamily            1.7.1
    com.apple.iokit.IOSCSIBlockCommandsDevice            3.5.5
    com.apple.iokit.IOAHCISerialATAPI            2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily            3.5.5
    com.apple.iokit.IOUSBUserClient            5.5.5
    com.apple.iokit.IOAHCIFamily            2.3.1
    com.apple.iokit.IOFireWireFamily            4.5.5
    com.apple.iokit.IOUSBFamily            5.5.5
    com.apple.driver.AppleEFIRuntime            1.7
    com.apple.iokit.IOHIDFamily            1.8.1
    com.apple.iokit.IOSMBusFamily            1.1
    com.apple.security.sandbox            220.2
    com.apple.kext.AppleMatch            1.0.0d1
    com.apple.security.TMSafetyNet            7
    com.apple.driver.DiskImages            345
    com.apple.iokit.IOStorageFamily            1.8
    com.apple.driver.AppleKeyStore            28.21
    com.apple.driver.AppleACPIPlatform            1.7
    com.apple.iokit.IOPCIFamily            2.7.3
    com.apple.iokit.IOACPIFamily            1.4
    com.apple.kec.corecrypto            1.0

    You have the MacBookPro6,2, the Edsel of Macs. You might be able to resolve the problem by reinstalling OS X. Try that first, if you haven't done so already. Otherwise, you may be covered by this program:
    MacBook Pro (15-inch, Mid 2010): Intermittent black screen or loss of video
    Make a "Genius" appointment at an Apple Store to have the machine tested. The routine hardware diagnostics used by service providers may not detect the fault. There is a specific test for this issue.
    Print the first page of the panic report, and the support page linked above, and bring them with you.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you have at least two complete, independent backups, and you know how to restore to an empty drive from any of them.) Don’t erase the recovery partition, if present.
    *An SSD doesn't need to be zeroed.
    You may be able to stop the panics by disabling automatic graphics switching in the Energy Saver preference pane, but that's not a solution. 
    Most likely, the logic board will be replaced. Sometimes the replacement is also defective, so be prepared for that possibility.

  • Smartview causing Excel to randomly crash

    We have recently installed Hyperion Smartview 9.3.1.2 for a number of users who are now experiencing random crashes in Excel. they are not using Smartview at the time but this has only started happening since Smartview was installed and enabled. Disabling the plugin seems to stop this issue from happening. Does anyone have any idea how to resolve this? We are using Excel 2002 (XP) at the moment.
    I have found the following error in the Event Viewer under Office Applications:
    Event Type: Error
    Event Source: Microsoft Office 10
    Event Category: None
    Event ID: 1000
    Date: 22/05/08
    Time: 13:47:56
    User: N/A
    Computer:
    Description:
    Faulting application excel.exe, version 10.0.6841.0, faulting module ole32.dll, version 5.1.2600.2726, fault address 0x00092dd8.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 41 70 70 6c 69 63 61 74 Applicat
    0008: 69 6f 6e 20 46 61 69 6c ion Fail
    0010: 75 72 65 20 20 65 78 63 ure exc
    0018: 65 6c 2e 65 78 65 20 31 el.exe 1
    0020: 30 2e 30 2e 36 38 34 31 0.0.6841
    0028: 2e 30 20 69 6e 20 6f 6c .0 in ol
    0030: 65 33 32 2e 64 6c 6c 20 e32.dll
    0038: 35 2e 31 2e 32 36 30 30 5.1.2600
    0040: 2e 32 37 32 36 20 61 74 .2726 at
    0048: 20 6f 66 66 73 65 74 20 offset
    0050: 30 30 30 39 32 64 64 38 00092dd8
    0058: 0d 0a ..

    I found a fix for this issue and others involving smartview and Excel.
    1. Ensure Excel is closed down and is not in any browser sessions - checking the processes tab in task manager is a good way to ensure there are no hidden sessions of Excel open.
    2. Search the local user's C drive for *.xlb and be sure to check 'Search hidden files and folders' under advanced options.
    3. Delete all files with the xlb extension found. These are normally called 'Excel10.xlb' for Excel XP and are usually found in documents and settings folders under the user however they can be called anything with an xlb extension and can be located anywhere on the local drive and there can be multiple files so be sure to delete all of them - they will be recreated in the next step.
    4. Open up Excel. Any required .xlb files will be recreated when Excel opens.
    These steps have resolved 3 different issues we had after installing Smartview. Hope this helps others.

  • Random crashes with new 120gb classic

    Is anyone experiencing random crashes with the new iPod classic 120gb units?
    Every so often my unit just locks up and shows the Apple screen, only the screen is drawn in what looks like 4 colour mode, and badly drawn at that, requiring a hard reboot of the iPod to resume use (which sadly resets my smart playlists/playcounts by the looks of it).
    This sounds like the problems that plaged the earlier 160gb models, so I changed my settings to not include album art which I've read circumvents the problem, and this seemed fine for a few days but I just had another lock up so maybe not.
    Mark

    My new 120gb classic survived a 7 hour bus ride on Saturday without crashing once, however I was watching videos for most of the trip.
    Over the weekend away I was using my small sound dock and again, no crashes what so ever.
    After picking up my car from the workshop (the reason for the trip away) I plugged the classic into my Alpine IDA-X100 stereo (first time using the USB cable on the X100, as opposed to the older style connector) and no crashes at all during a 6 hour drive home.
    And yet - after an hour of using the classic in the office with just headphones I've just had a crash.
    This confuses me further - if it was firmware I'd have thought I'd have had crashes when using the sound dock, or car as well.
    Have any of you who are also having crashes/skips seen this behaviour?

  • Random crashing of programs

    I am totally new to Mac's and have had my MacBook Pro since January. I have had no issues, but lately my internet is going slow and I have 20g service. Programs like Microsoft word are opening and loading slower. I also play Diablo III and have had no issues running the program until yesterday. Safari is randomly crashing, Diablo III is randomly crashing and my Itunes. I have done the following:
    1. Clear history and cache.
    2. Shut down and restart.
    3. Changed options to lowest settings in Diablo III.
    4. Lowered system settings on desktop.
    Any ideas would be greatly appreciated. I don't know how to reinstall without a disk for programs I have on my laptop, so if anyone has information regarding these issues I'd be a happy camper. Thanks all.
    Kevin Watkins

    Have a look here...
    http://support.apple.com/kb/HT1147
    http://www.thexlab.com/faqs/maintainingmacosx.html
    http://www.thexlab.com/faqs/performance.html

  • Firefox randomly crashes on OSX

    I don't know if it's a Firefox update or OSX update, but I started getting random crashes. Here are a few links to the reports:
    https://crash-stats.mozilla.com/report/index/bp-10a09e1e-0fe6-45ab-9f1c-859812150412
    https://crash-stats.mozilla.com/report/index/bp-e56eacdc-6c88-461f-82ae-546622150412
    https://crash-stats.mozilla.com/report/index/bp-0f2cea19-8b38-40b0-916a-02f972150411
    They all say
    @ nsPluginStreamListenerPeer::GetInterfaceGlobal(nsID const&, void**)
    I tried googling that but I just get results to other crash reports. Could anyone help me out and see if they can tell what the issue is? (I already checked that the plugins are all up to date)

    First try Safe Mode:
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that temporarily turns off hardware acceleration, resets some settings, and disables add-ons (extensions and themes).
    '''If Firefox is open,''' you can restart in Firefox Safe Mode from the Help menu:
    * Click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    '''If Firefox is not running,''' you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".
    ;[[Image:SafeMode-Fx35]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, theme, or hardware acceleration. Please follow the steps in the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • RMBP late 2013 - Random Crashes

    Hi.
    My late 2013 rMBP is having random crashes, and it looks like it is graphic card related:
    It happens randomly when
    - Opening Launchcontrol with the trackpad gesture
    - Scrolling content in safari
    - System events that require zoom
    - Booting up: sometimes it freezes while in the apple logo screen, but most of them happen when the apps are loading up.
    When recovering from the crashes, sometimes the keyboard settings change, it loads the american layout
    There is no time associated with the crashes, it is random. It can crash 10 straight times and then stay one entire day without it.
    There are no kernel panics, only system freezes and it unable to unfreeze unless pressing power button.
    Reset of SMC and PRAM didn't solve, neither did fix permissions and repair disk.
    Any suggestion?

    Hi.
    My late 2013 rMBP is having random crashes, and it looks like it is graphic card related:
    It happens randomly when
    - Opening Launchcontrol with the trackpad gesture
    - Scrolling content in safari
    - System events that require zoom
    - Booting up: sometimes it freezes while in the apple logo screen, but most of them happen when the apps are loading up.
    When recovering from the crashes, sometimes the keyboard settings change, it loads the american layout
    There is no time associated with the crashes, it is random. It can crash 10 straight times and then stay one entire day without it.
    There are no kernel panics, only system freezes and it unable to unfreeze unless pressing power button.
    Reset of SMC and PRAM didn't solve, neither did fix permissions and repair disk.
    Any suggestion?

  • Random crashes/reboots - Neo-FIS2R

    Hello,
    I’m experiencing apparently random crashing on my new system (see sig).  It looks like a power outage – no BSOD or anything.  The screen just goes dead and the system starts rebooting.  All the fans (and the disco lights - thank god) continue to run during the crash.  I haven’t yet been able to discern a pattern as to when it happens, though it only seems to occur while I am using the system – it can run all night by itself with no crashes.
    I’ve been installing a lot of music software and just recently started playing around with it, so I am suspicious of my sound module and drivers (DirectPro 24/96), which haven’t explicitly been tested against the 875P chipset , though the drivers claim compatibility with my OS.
    I am also suspicious of the motherboard/BIOS, which we all know has had a few quality issues.
    Anyway, I was wondering if I could narrow the search a bit based on the type of crash I’m seeing.  If this were a driver problem, wouldn't I be seeing a BSOD?
    Any pointers?  Could the power supply (Thermaltake W0009R ) be a suspect?
    The CPU fan is getting its juice from the PSU directly, not through the mobo.  I used  to have it hooked up to the mobo, but our CoreCenter kept shutting the fan off (and leaving it that way).
    I'm not overclocking, and have not adjusted any voltage/timing settings for the CPU/memory beyond what they're spec'd for.  I've disabled my friendly neighborhood CoreCenter software, so the only MSI software running on my system is the BIOS and drivers.  Currently running v1.2, which is what the board shipped with.

    Legal-Tech,
    Thank you very much for the pointers - that got me my beloved BSOD.  Only thing I had to do after that was to find out which driver was causing the problem, using the TrackLockedPages registry setting (MS KBA's referenced below).
    I think I may have pinpointed the problem, and it's NOT the motherboard or the BIOS.  I will probably need a couple more days of trouble-free operation to be sure, but I think the problem was with my USB Midi Keyboard Controller driver software.  Uninstall/reinstall seems to be working for now.
    For anyone else with XP who might need to go through the same process, if you don't already know, you can follow these Microsoft KBA's (in order) to do your troubleshooting...
    These first two should identify the problematic driver:
    System Failure and Recovery Options
    Track Locked Pages
    You can use this to find out more details about the specific crash:
    Inspecting Minidump Files
    Thanks again...

  • Help! k8n neo2 random crash

    Just built k8n neo2 and updated all bios and drivers using live update. System runs great except for the occasional random crash.  Without any indication, the system will simply reboot, or go to a system level blue screen with lots of error messages for a breif second and then reboot.  Upon reboot, xp reboots as if nothing happend, other times it goes into safe mode (in which case i reboot normal everything works fine for several hours.... or until i run virtually any game software)
    Only one time did windows say it had recovered from a fatal error, but it didnt have an explanation.  The best xp could suggest is that it was "device driver" related but didn't say which device.
    When running internet applications all day it happend only once.  But when running 3-d games it seems to happen every time about 5-30 min into the game at different points in the game.  The same game works fine on my asus system.  I loaded another "doom" type game that even came bundled with the ati 9800 pro, and it also crashes and automatically reboots without notice 5-10 min into the game. I updated all the graphic drivers to the 9800 pro, but to no avail.  
    I didn't mess with any of the Muskin blue 3200 ( 2x512 )memory settings (all default setting) The post test for memory didn't indicate a problem...is anyone using muskin?  
    Any suggestions?  
    Thanks
    gator

    Went to mushkin and finally found their timing page.  
    http://www.mushkin.com/epages/Mushkin.storefront/41e18a17005e60d62740c0a80102061c/Product/View/991158#nforce3
    I have the msi-7025 ver:1  On the mushkin site it lists timings for the nforce3-250  What is the "-250"? are there differn't versions of the nforce3 becuase everywhere I looked..on my system board, on box, on system software, it only references "nforce 3." In anycase, for the mushkin blue 3200 it shows 2-3-3-10 and thats what I have plugged in now. So I hope this is right?
    Im still getting the crashes in the games, but task manager is catching them before the system reboots, so a little improvement.  I am heavily suspecting the ATI all-in-wonder 9800 PRO now.  Is anyone using this board or the regular 9800 pro? I updated the drivers and have been on their site but not much help so far.
    As far as my Diamond max 10 300 HD....no problems with drive recognition. I was using bios 1.3 right out of the box.
    It works in all ports....its currently in sata2 only by chance.
    Most peoples basic mistakes are two fold:
    1. If they are not using RAID, they are mistakenly loading the RAID drivers during xp insallation. (like I did by mistake).  Don't load the drivers that came on floppy  with the board if not using RAID ...the system will automatically load the SATA drivers.
    Simply check in bios or watch during post to see if the SATA diamond max 6b300SO is loaded (or whatever diamond max drive you have).  If its indicated, then you DON'T have a "drive recognition or SATA problem"
    2.  Realize tha Win XP WILL not recognize a drive larger than  ~137 gig. Therefore,  when you install XP it will only say you have a 137gig to be formatted.
    To solve this problem you need to load maxtors "large drive enabler" software AFTER windows is installed...once installed you will "see" the full 300gig.
    The way I solved this was during xp installation when presented with 137gig, I formatted 60gig to be my c: drive (you can make a c: partition up to 137 or as small as you want). I formatted and installed windows on the C: partition as normal leaving the rest of the drive unformatted at this point. Once windows booted I installed service pack 2 (required for large drive support) and installed the Maxtor "large drive enabler" software from the maxtor site.  At this point the rest of the unpartitioned HD was "recognized". I used Win administrator/diskmanagement tools to create and extended partition & and format the logical drive(s) I created.
    In short, never a SATA problem for me.  I have since upgraded to bios 1.4 and no problems either.
    Needless to say Maxtor could have been a little more complete in their explanation on their web site.  For most people, I suspect  it is a "chicken and egg" problem ... how to load software on a drive that will enable you to "recognize" entire drive BEFORE the drive has been recognized and formatted.
    Thanks
    Gator

  • Macbook Air Random crashing

    Hi Folks
    I have been having some major issues with my Macbook Air (mid 2011, Yosemite 10.10.1, 1.6GHZ core i5, 2 GB 1333 MHz DDR3)
    It randomly crashes during use. Programs stop working and then the spinning beachball pops up for a few seconds before everything crashes and I have to power off/on
    I did a number of system resets and reinstallation's and for a while now I have had it running generally ok except a few crashes here and there when I am using it a lot. Just had a few issues tonight and had 3 crashes in quick succession and also the ? folder pop up once.
    For the first time though the system reported an error code and I have pasted it below. Has anyone seen this before or can anyone decipher what it means? I am no expert so it means very little to me. Any help would be much appreciated
    Many thanks
    Anonymous UUID:       8A45F87A-6A15-FD39-8F47-50AEF1598C07
    Sat Jan 31 02:47:51 2015
    *** Panic Report ***
    panic(cpu 2 caller 0xffffff80047c4594): "launchd died\nState at Last Exception:\n\n"@/SourceCache/xnu/xnu-2782.1.97/bsd/kern/kern_exit.c:361
    Backtrace (CPU 2), Frame : Return Address
    0xffffff8065b2be50 : 0xffffff800433a811
    0xffffff8065b2bed0 : 0xffffff80047c4594
    0xffffff8065b2bf40 : 0xffffff80047c425c
    0xffffff8065b2bf50 : 0xffffff800484dcb2
    0xffffff8065b2bfb0 : 0xffffff800443ac46
    BSD process name corresponding to current thread: launchd
    Mac OS version:
    14B25
    Kernel version:
    Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64
    Kernel UUID: 89E10306-BC78-3A3B-955C-7C4922577E61
    Kernel slide:     0x0000000004000000
    Kernel text base: 0xffffff8004200000
    __HIB  text base: 0xffffff8004100000
    System model name: MacBookAir4,1 (Mac-C08A6BB70A942AC2)
    System uptime in nanoseconds: 102440621342
    last loaded kext at 10013304928: com.apple.driver.AudioAUUC 1.70 (addr 0xffffff7f8610c000, size 32768)
    last unloaded kext at 98204576961: com.apple.driver.AppleUSBUHCI 656.4.1 (addr 0xffffff7f85123000, size 65536)
    loaded kexts:
    com.apple.driver.AudioAUUC 1.70
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.driver.ApplePlatformEnabler 2.1.0d1
    com.apple.driver.AGPM 100.14.37
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.3.1f2
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleMikeyDriver 267.0
    com.apple.driver.AppleHDA 267.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.1f2
    com.apple.driver.AppleLPC 1.7.3
    com.apple.driver.AppleBacklight 170.4.12
    com.apple.driver.AppleThunderboltIP 2.0.2
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.driver.AppleMCCSControl 1.2.10
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleHV 1
    com.apple.driver.AppleIntelHD3000Graphics 10.0.0
    com.apple.driver.AppleIntelSNBGraphicsFB 10.0.0
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.5
    com.apple.driver.AppleUSBHub 705.4.1
    com.apple.driver.AirPort.Brcm4331 800.20.24
    com.apple.driver.AppleUSBEHCI 705.4.14
    com.apple.driver.AppleAHCIPort 3.0.7
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0
    com.apple.AppleGraphicsDeviceControl 3.7.21
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.DspFuncLib 267.0
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.iokit.IOAudioFamily 200.6
    com.apple.vecLib.kext 1.2.0
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.3.1f2
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.AppleBacklightExpert 1.1.0
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.driver.IOPlatformPluginFamily 5.8.0d49
    com.apple.driver.AppleHDAController 267.0
    com.apple.iokit.IOHDAFamily 267.0
    com.apple.iokit.IOSurface 97
    com.apple.iokit.IOBluetoothFamily 4.3.1f2
    com.apple.driver.AppleSMC 3.1.9
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.0
    com.apple.driver.AppleUSBMultitouch 245.2
    com.apple.iokit.IOUSBHIDDriver 705.4.0
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.driver.AppleThunderboltDPInAdapter 4.0.6
    com.apple.driver.AppleThunderboltDPAdapterFamily 4.0.6
    com.apple.driver.AppleThunderboltPCIDownAdapter 2.0.2
    com.apple.driver.AppleThunderboltNHI 3.1.7
    com.apple.iokit.IOThunderboltFamily 4.2.1
    com.apple.iokit.IO80211Family 700.52
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOAHCIFamily 2.7.0
    com.apple.iokit.IOUSBFamily 705.4.14
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 389.1
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1
    Model: MacBookAir4,1, BootROM MBA41.0077.B11, 2 processors, Intel Core i5, 1.6 GHz, 2 GB, SMC 1.74f4
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 288 MB
    Memory Module: BANK 0/DIMM0, 1 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54313132533654465238432D48392020
    Memory Module: BANK 1/DIMM0, 1 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54313132533654465238432D48392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xE9), Broadcom BCM43xx 1.0 (5.106.98.100.24)
    Bluetooth: Version 4.3.1f2 15015, 3 services, 27 devices, 1 incoming serial ports
    Serial ATA Device: APPLE SSD TS064C, 60.67 GB
    USB Device: FaceTime Camera (Built-in)
    USB Device: Hub
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: Hub
    Thunderbolt Bus: MacBook Air, Apple Inc., 8.1

    Hello jonny550,
    Based on the information you have provided, it appears your MacBook Air is suffering from repeated crashes. In your post you wrote "Just had a few issues tonight and had 3 crashes in quick succession and also the ? folder pop up once," which leads me to believe your computer needs to be serviced. The following link should help you get started with the process and has links with additional information on topics such as warranty and service pricing, battery replacement, and express replacement service.
    Apple - Support - Service Answer Center
    Thank you for contributing to Apple Support Communities.
    Cheers,
    Bobby_D

  • Illustrator randomly crashes in the middle of a project and sometimes doesn't open files properly?

    Hi,
    So I'm using Adobe Illustrator 5.5 on a relatively new Dell PC with an uprated graphics card.
    Illustrator randomly crashes on me when I'm in the middle of projects saying (Adobe Illustrator is not responding) etc and closes. I lose my work and all the effort I've just put in.
    Also, sometimes it will not open a file, says it's unsupported? But then when I close Illustrator and re-open it, the same file will open perfectly fine.
    Is this an illustrator bug or is there something wrong with my hardware?
    Thanks
    JackintheboxIT

    Right on time, just crashed and found this event log.
    Faulting application name: Illustrator.exe, version: 15.1.0.39, time stamp: 0x4d76c9e3
    Faulting module name: DxfDwg.aip, version: 15.1.128.0, time stamp: 0x4d769c0c
    Exception code: 0xc0000005
    Fault offset: 0x0000e660
    Faulting process id: 0x15f4
    Faulting application start time: 0x01cd4ed44e60e380
    Faulting application path: C:\Program Files (x86)\Adobe\Adobe Illustrator CS5.1\Support Files\Contents\Windows\Illustrator.exe
    Faulting module path: C:\Program Files (x86)\Adobe\Adobe Illustrator CS5.1\Plug-ins\Illustrator Formats\DxfDwg.aip
    Report Id: 967fb7e6-bad1-11e1-a8de-d4bed9c13d91
    Hope you can help!
    Thanks

Maybe you are looking for

  • HT1947 Remote App and the use of the local speakers

    I use the Remote app from my iPad to connect to my iMac's iTunes library.  I then have the option to broadcast that music to 1) an Apple Air Port in my basement, 2) an AppleTV in my living room, and/or 3) the iMac computer speakers (or connected audi

  • I want to change my VAT payment?

    hiiii Pastly i was in spain now i migrate to my home country in asia skype still charge me call rate + Vat i want to remove VAT from my account ... how can i do it pls. help me? bunny

  • File to File - no mapping

    Hi,     I want to transfer files from one FTP location to another FTP location. No Mapping is involved, just file transfer. Please let me know the steps. Is Interface mapping & Message Interface is required ??  Is it possible to transfer without crea

  • Want to execute SQL Queries from Textfile

    I have a text file full of a bunch of sql queries, of the format: select something1, something2 from someplace select something3, something4 from someplace2 select something5, something6 from someplace3 I want to execute these queries one at a time a

  • Showing image located in km folder

    Hi, i'm trying to show an image located in a km folder, i do this binding source property of an image element to an string element in the context, and then i assign the path of the iresource to the context element.     The problem is that when try to