Boot Back Into Windows With Boot Camp

Hello,
I am running Boot Camp on a Mac Book Pro. It runs extremely well except for one issue. When the mac goes to sleep for a short time minutes to a few hours, and I click a button, the Windows screen is there ready to use. But, if it sleeps over night, I can not click a button to wake it, I have to click the power button and wait for the boot cycle again holding down the option button so I can choose the Windows drive again. Am I missing something is settings so no matter how long the system sleeps it will wake back into the last running operating system?
Thanks Jr

Check on the hibernate settings by going to the advanced power options as posted by Loner T above. Look under the sleep heading, see pic.
While sleep puts your work and settings in memory and draws a small amount of power, hibernation puts your open documents and programs on your hard disk, and then turns off your computer.
It can be disabled.  http://support.microsoft.com/kb/920730

Similar Messages

  • [SOLVED] Can't boot back into windows

    Been a while since I had to install Arch but my previous PC died so I tried installing it on my new one. When I installed it last time, there was no EUFI and it was a simple Grub installation. When I installed it, I disabled eufi from my bios to legacy grub. I installed Arch like normal but os-probe didn't seem to work. Although it detected my OS, it did not make an entry for windows in the grub, When I re-enable EUFI from bios, it just goes straight to GRUB cmd line.
    Here's the output for fdisk:
    Disk /dev/sda: 946.4 GiB, 1016218828800 bytes, 1984802400 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 4096 bytes
    I/O size (minimum/optimal): 4096 bytes / 4096 bytes
    Disklabel type: gpt
    Disk identifier: A3D81761-F777-4399-9F81-01E346CDC93F
    Device Start End Size Type
    /dev/sda1 2048 1988607 970M BIOS boot partition
    /dev/sda2 1988608 3708927 840M Windows recovery environment
    /dev/sda3 3708928 4241407 260M EFI System
    /dev/sda4 4241408 4503551 128M Microsoft reserved
    /dev/sda5 4503552 1123987926 533.8G Microsoft basic data
    /dev/sda6 1905238016 1953523711 23G Windows recovery environment
    /dev/sda7 1953525168 1984798127 14.9G unknown
    /dev/sda8 1123989504 1900040191 370.1G Linux filesystem
    /dev/sda9 1900040192 1905238015 2.5G Linux swap
    and os-prober
    $ sudo os-prober
    No volume groups found
    /dev/sda3:Windows 8 (loader):Windows:chain
    Arch is installed on sda8/sda9 and wndows is on sda3/4/5/6. There also seems to be a seperate "boot" drive sdb that only shows up when eufi is enabled. Can anyone help me figure out how to boot into my windows partition? thanks
    edit: here's grub.cfg
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    if [ "${next_entry}" ] ; then
    set default="${next_entry}"
    set next_entry=
    save_env next_entry
    set boot_once=true
    else
    set default="0"
    fi
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    if [ x$feature_default_font_path = xy ] ; then
    font=unicode
    else
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt8'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 6a6f6015-3793-4978-8c19-5abd44c63aea
    else
    search --no-floppy --fs-uuid --set=root 6a6f6015-3793-4978-8c19-5abd44c63aea
    fi
    font="/usr/share/grub/unicode.pf2"
    fi
    if loadfont $font ; then
    set gfxmode=auto
    load_video
    insmod gfxterm
    set locale_dir=$prefix/locale
    set lang=en_US
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=5
    # Fallback normal timeout code in case the timeout_style feature is
    # unavailable.
    else
    set timeout=5
    fi
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_archlinux ###
    menuentry "Arch Linux pkg-linux kernel" --class arch-linux --class arch --class gnu-linux --class gnu --class os {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    fi
    set gfxpayload=keep
    insmod ext2
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 6a6f6015-3793-4978-8c19-5abd44c63aea
    else
    search --no-floppy --fs-uuid --set=root 6a6f6015-3793-4978-8c19-5abd44c63aea
    fi
    echo 'Loading Arch Linux pkg-linux kernel ...'
    linux /boot/vmlinuz-linux root=UUID=6a6f6015-3793-4978-8c19-5abd44c63aea rw
    echo 'Loading Arch Linux pkg-linux kernel initramfs ...'
    initrd /boot/initramfs-linux.img
    menuentry "Arch Linux pkg-linux kernel (fallback initramfs)" --class arch-linux --class arch --class gnu-linux --class gnu --class os {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    fi
    set gfxpayload=keep
    insmod ext2
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 6a6f6015-3793-4978-8c19-5abd44c63aea
    else
    search --no-floppy --fs-uuid --set=root 6a6f6015-3793-4978-8c19-5abd44c63aea
    fi
    echo 'Loading Arch Linux pkg-linux kernel ...'
    linux /boot/vmlinuz-linux root=UUID=6a6f6015-3793-4978-8c19-5abd44c63aea rw
    echo 'Loading Arch Linux pkg-linux kernel fallback initramfs ...'
    initrd /boot/initramfs-linux-fallback.img
    ### END /etc/grub.d/10_archlinux ###
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-6a6f6015-3793-4978-8c19-5abd44c63aea' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt8'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 6a6f6015-3793-4978-8c19-5abd44c63aea
    else
    search --no-floppy --fs-uuid --set=root 6a6f6015-3793-4978-8c19-5abd44c63aea
    fi
    echo 'Loading Linux linux ...'
    linux /boot/vmlinuz-linux root=UUID=6a6f6015-3793-4978-8c19-5abd44c63aea rw
    echo 'Loading initial ramdisk ...'
    initrd /boot/initramfs-linux.img
    submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-6a6f6015-3793-4978-8c19-5abd44c63aea' {
    menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-6a6f6015-3793-4978-8c19-5abd44c63aea' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt8'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 6a6f6015-3793-4978-8c19-5abd44c63aea
    else
    search --no-floppy --fs-uuid --set=root 6a6f6015-3793-4978-8c19-5abd44c63aea
    fi
    echo 'Loading Linux linux ...'
    linux /boot/vmlinuz-linux root=UUID=6a6f6015-3793-4978-8c19-5abd44c63aea rw
    echo 'Loading initial ramdisk ...'
    initrd /boot/initramfs-linux.img
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f ${config_directory}/custom.cfg ]; then
    source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    ### BEGIN /etc/grub.d/60_memtest86+ ###
    if [ "${grub_platform}" == "pc" ]; then
    menuentry "Memory Tester (memtest86+)" --class memtest86 --class gnu --class tool {
    search --fs-uuid --no-floppy --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 6a6f6015-3793-4978-8c19-5abd44c63aea
    linux16 /boot/memtest86+/memtest.bin
    fi
    ### END /etc/grub.d/60_memtest86+ ###
    Last edited by giok13 (2014-04-24 15:20:31)

    dice wrote:
    As you have disabled UEFI during arch installation your grub was installed in mbr mode and not EFI.
    Your Windows installation is probably installed in UEFI mode.
    So when you enable UEFI grub doesn't work correctly. And in legacy mode Windows won't boot.
    See here for details https://wiki.archlinux.org/index.php/UEFI
    Yea, I figured it out last night after spending hours on it. For anyone that might be having the same problem as me: Re-installed grub with os-prober and it detected windows successfully. Added the entry into grub correctly as well. But when I tried to boot into windows, it said my bcd was corrupted. Apparently when I was trying everything, I formatted the entire /boot partition so there was no way for windows to boot. After hours of trying to figure out how to restore the partition, I went into bios and re-enabled UEFI, safe boot, fast boot. It restored the /boot partition and let me get into windows. Then disabled safe boot and fast boot, booted arch live cd and installed gummiboot.

  • Can't boot back into OSX after installing windows 8.1

    I have a late 2013 MacBook pro 15 inch with retina display.
    After I got windows 8.1 up and running  with a disk copy I tried to go back to the mac os side, but after I held down option/alt after restarting and clicked on the osx partition but all that happened was a white "no sign" showed on the screen and my computer began to boot back into windows.
    I don't know if all my mac stuff is gone, so should I try and use osx recovery?

    Try this first. Do a backup. Boot to the Recovery Volume (command - R on a restart or hold down the option/alt key during a restart and select Recovery Volume). Run Disk Utility Verify/Repair and Repair Permissions until you get no errors. Then re-install the OS.
    OS X Recovery
    OS X Recovery (2)

  • Problem on early 2009 iMac with OS 10.5.8 500gb hdd after uninstalling Windows with boot camp there is still no more disc space available

    I had a partioned HDD 250 gb Mac and 250 gb Windows. I have uninstalled Windows with boot camp but still dont have the extra 250 gb available. What to do now?

    You need to remove the partition you created when you set up BootCamp.
    http://www.macworld.com/article/1156195/delete_boot_camp.html

  • Macbook Pro running Windows with Boot Camp, wanting to use iMac as second monitor.

    I am using a Macbook Pro that is running Windows with Boot Camp. I want to connect it to my iMac so that I can use the iMac as a second monitor. 
    If it is not possible, I also have a TV that I could use using an HDMI, however when I tried this my Macbook Pro running Windows 8.1 did not detect it in the Display Settings.
    What are my options? I just want to use my iMac or TV as a second monitor!!
    Any help is appreciated, tMachanks!

    See if your equipment qualifies:
    http://support.apple.com/kb/HT3924
    http://support.apple.com/kb/PH14264
    Ciao.

  • Booting into Windows with Unsupported Video Card

    I'm looking to buy a Windows-only video card. I'm currently using the Apple branded 8800GT and want to use an nVidia GTX 290. If I change my target drive to my Windows partition, will the system boot normally into Windows if I only have the GTX 290 installed or will I still be required to have the 8800GT in place in order for the EFI to launch normally?

    Set your sits on PC 285 maybe? Your 295 will require more power than available and has been a stumbling block for all that tried.
    http://forums.macrumors.com/forumdisplay.php?f=1
    No mixing with ATI cards allowed.

  • Black Screen following install, can't boot back into Lion

    Hi all,
    I just tried to install Windows 7 Ultimate 64 via Bootcamp on my Late 2010 iMac (21").
    Following installation (it completed installation fine) right before the part where the dialogue says 'Setting up your computer for the first time', the screen goes black and nothing appears to be happening.
    I cannot boot back into Lion by holding Alt- it does nothing.
    Holding C to boot from disk keeps brigning me to the same Windows Error Recovery screen where I am prompted to 'Start Windows Normally' or in the various Safe Modes.
    Trying to start it normally results in this hanging black screen, trying to start it in safe mode results in a dialogue saying 'Setup cannot be completed in Safe Mode' and restarts the computer.
    Obviously this is quite a tricky situation, I'd appreciate any help to make some part of my Mac usable again,
    Thanks in advance for any input.
    tl;dr:
    Can't boot into Lion
    Any action available to me in Windows results in the same loop of black screen hanging.
    I'm not even sure where I can go to try and change any settings...

    Reboot, hold the option key down when you hear the chime, release it when the boot manager appears. Select OSX as the startup. Once started go to Apple>System Preferences>Startup Disk and make OSX the permanent choice until you get the Winjunk running, even better, remove the Winjunk partition and stay in the light.
    You might find it useful to read this, all kinds of basic information regarding OSX, no need to not know what to do next.

  • AMD/ATI fglrx and 3d, only after booting first into windows

    I have a x1600pro agp and I can only get 3d acceleration to work if I first boot into windows. Every time after i turn off my PC, i first have to boot into windows or 3d wont work. It also happened with a 9600xt agp card.
    I'm wondering if it has happened to somebody else, and if it is because they are agp cards?
    It happens connecting with the vga or the dvi outputs of the cards.
    Is there a way around this? It gets really annoying having to boot first into windows.
    I also think many people having trouble getting they're 3d to work is because of this.
    Last edited by tacita (2007-11-07 18:05:45)

    tacita wrote:MrWeatherbee: thank you for the link, i have searched high and low (maybe in the wrong places) and didnt find anything before.
    Cerebral: yes, but then i guess it is a nice excuse to upgrade. And stay away from the Nforce3.
    I congratulate you for making the connection between Windows and 3D functionality in your Linux installation. That's the hardest part to figure out. Loss of hair can result wondering why 3D comes and goes without any apparent reason. However, once you know the secret, the behavior is 100% consistent. I rarely notice it because I rarely turn off the PC in question, and once the correct settings are locked-in by a single boot to Windows, 3D acceleration in your Linux distros will remain through any number of reboots. The only thing that requires a repeat of the Windows touch-n-go is when you power-off.

  • If i create a partition for Windows 7, and boot up in Windows using Boot Camp, can I still access the files from the Mac partition (Photo's Music etc.)

    If i create a partition for Windows 7, and boot up in Windows using Boot Camp, can I still access the files from the Mac partition (Photo's Music etc.)

    JDFitch wrote:
    Ok Great,
    Will installing Boot Camp drivers allow me to both read and write to the OS X Volume from windows?
    This is important as if it will it means i can make the windows partition a lot smaller and keep all my files on the OS X partition which would be preferable.
    Jon
    No, OSX will be read only (from Windows) and vice versa. (you can install 3rd party utilities on either or both partitions, to make read/write possible)

  • IMac boots straight into Windows 7

    I installed Windows 7 Ultimate x64 using Bootcamp on an iMac 9,1. Now when I turn my computer on, it boots straight into Windows 7 by default. If I hold down Option while booting and select Mac then it does boot correctly into OS X 10.6.1. Is there a way for me to configure the iMac to boot into Snow Leopard by default?

    Use the Startup Disk pane of System Preferences in Mac OS X or the Startup Disk control panel in Windows.
    (48479)

  • Black screen when log into windows with microsoft account enabled

    Hi everybody,
    if i login into windows with my microsoft account enabled, then my screen is black for a while and then windows will show my desktop. Anyone with the same problem?

    TC
    Can we assume 9926 ?  We could use more info.  Did it do this since install?  Was the install an upgrade?  Did you have problems in the previous Os, etc, etc, etc.....
    Wanikiya and Dyami--Team Zigzag

  • When I boot up my iMac and hold down ALT it boots straight into windows 7 without giving me the option to boot OSX back up. Have I lost OSX and all my files completely? Please help

    I set up boot camp for my iMac with windows 7. All was fine and it gave me the option to boot into windows.. I then used windows for a few hours and shut down the mac to boot back onto OSX when I was done.. This time my mac booted straight to windows 7 even with me holding down the ALT key it gave me no choice.
    I'm assuming the boot camp set up was wrong somewhere but is there a way to get back on to OSX now?? Please help

    1. Have you tried both Alt keys - maybe your Alt key is dead.
    2. Do you have wireless keyboard? Have you tried to change batteries? USB Keyboard?
    3. If your Win is installed correctly then you have also installed all windows support software.
    There should be Startup manager like on the Mac (next to the clock little bootcamp app or in control pannel) to restart your Mac into the Mac partition.

  • Problems installing Windows with Boot Camp

    Hello,
    i am having this strange issue with boot camp. i have my windows 7 install dvd and go through all the standard boot camp procedure's, but once its finished partitioning the disk and restarts it just opens up to the apple logo on a grey screen, no spining logo, no status bar, nothing! ive left it for 6 hours on this screen 2-3 times now and nothing is happening. when i turn off and on again it just goes to a black screen telling me to install a bootable device and press any key. BUT THE INSTAL DISC IS IN!!! its driving me insane!
    windows was burned to a dvd using disc aid and the .iso copied over fine and was verified and everything. the machine im trying to get this to run on is a 15 mbp 2.66 i7. the optical drive has been replaced with a 120gb ssd and there is a 1tb internal sitting in the hdd bay. i dont know if that has any relavance to this issue? i boot osx 10.7 (mountain lion) off the ssd and am trying to boot camp my hdd, but that couldent cause issues could it?
    ive had a look around the other disscussions and fourums for 4 days now and i think i have seen nearly every bootcamp related youtube video there is! AND IT STILL DOSENT WORK!
    if any one has ANY idea or sugesstion on how i can rectify this issue it would be greatly appriceated.
    thanks for your time!
    Harry.

    "You can't do both boot drive and storage drive on the same drive.
    A boot drive requires (all data off first) it to be formatted GUID and OSX Extended Journaled, then OS X installed, then option key at boot to select that HD OS X boot drive, then BootCamp proceedure ran and install into the partition it creates on the HD."
    THANKS AGAIN, i think im getting closer to a solution, i really dident think that simple old bootcamp could become so complicated!.
    so i couldent (boot off the ssd as normal) and then create a seperate partition on the hdd of about 30gb, install osx on it, boot from that (with the optical bay back inside), create a thrid partition on the hdd via bootcamp then instal windows?
    its just that erasing and reformating the hdd sounds a bit scary, its taken months of getting the permissions and fixing rouge ubd processes all right so everything works perfectly and seamlessly together with the ssd+hdd combo
    "You can replace the data back into OS X on the HD and use that as extra storage, but your main use OS X user(s) needs to remain on the boot SSD.
    To do this you need to use Carbon Copy Cloner to clone the OS X boot partition of the SSD to the blank/empty of data HD, this will copy all the Users accounts accuratly so you can access them from the SSD.
    As you can see here, I can access the same user folders of my cloned partition from the original partition, no "-" minus signs on the folders as I'm the exact same user.
    I am currently booted into Macintosh HD and accessing my same named user folder on the clone on Macintosh HD 2.
    So basically OS X on HD will become your new "Storage Drive"
    this is pretty much exactly how im set up at the moment! with the user account and applications on the SSD and libarys like iphoto, itunes etc are on the HDD and i symlinked some others like the downloads off to the hdd aswell.
    thanks for your help again, ive given you some more stars for your time!
    Harry.

  • Trying to boot into Windows with no Windows Partition

    So I tried Windows XP on boot camp and ofcourse it says it's not installed when it clearly is >_>
    So I restored and when I boot up it tries to boot into windows, when it loads it says Disk Error insert boot disk. When I hold alt it only shows Macinstosh HD.
    I've just re-partitioned and restored to Mac full partition again so I need to reboot and see if that works...
    Any help?

    Ubuntuz wrote:
    So I tried Windows XP on boot camp and ofcourse it says it's not installed when it clearly is >_>
    So I restored and when I boot up it tries to boot into windows, when it loads it says Disk Error insert boot disk. When I hold alt it only shows Macinstosh HD.
    I've just re-partitioned and restored to Mac full partition again so I need to reboot and see if that works...
    Any help?
    The last line in your post says "I've just re-partitioned and restored to Mac full partition again so I need to reboot and see if that works"
    Rebooting should take you to OSX provided you removed the BC partition correctly (using Boot Camp Assistant)
    I am not sure what you mean by the rest of the post "So I restored" restored what?
    It sounds as though XP was either not installed or not installed correctly, what happens now when you reboot?

  • X79A GD45 Slow start and slow boot into windows with SSD

    Im having some major issues with my X79A GD45 board, When I start the system it takes about 30 seconds sometimes more for something to appear on the screen and from cold boot it starts stops and then starts again before loading.
    Once its loaded it is taking forever to get into windows Im running 2 6gb/s SSD's in raid and the windows logo is able to appear and flash 3 or 4 times before I even get into windows.
    Ive tried it with just a single drive and re installations of windows but get exacly the same thing its driving me mad as Ive spent so much money on this machine. Details of my system are below:
    MSI X79A GD45 v1.0 Bios 1.6
    Intel I7 3820
    Corsair Vengeance 16gb 1600 Cl9
    2 x GTX 680 in SLi
    Creative Soundblaster 3D Recon Fatality Sound Card
    2 x Sandisk Extreme 240gb in Raid 0
    Silvertone Strider 850w PSU
    LG Bluray Writer

    Updated the SSD Firmwares and it made no difference. Ive already tried single drives and the same. The drives are installed into SATA 1 and SATA2 ports the 6gb/s ones. The hang time is atleast 20 seconds at the splash screen alone before loading into windows. I checked the event log for booting and this is what it showed:
    Log Name:      Microsoft-Windows-Diagnostics-Performance/Operational
    Source:        Microsoft-Windows-Diagnostics-Performance
    Date:          18/10/2012 22:07:07
    Event ID:      100
    Task Category: Boot Performance Monitoring
    Level:         Warning
    Keywords:      Event Log
    User:          LOCAL SERVICE
    Computer:      Steve-PC
    Description:
    Windows has started up:
         Boot Duration      :   22130ms
         IsDegradation      :   false
         Incident Time (UTC)   :   ‎2012‎-‎10‎-‎18T21:05:20.624800300Z
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Diagnostics-Performance" Guid="{CFC18EC0-96B1-4EBA-961B-622CAEE05B0A}" />
        <EventID>100</EventID>
        <Version>2</Version>
        <Level>3</Level>
        <Task>4002</Task>
        <Opcode>34</Opcode>
        <Keywords>0x8000000000010000</Keywords>
        <TimeCreated SystemTime="2012-10-18T21:07:07.018586500Z" />
        <EventRecordID>11</EventRecordID>
        <Correlation ActivityID="{02EB6910-F800-0002-44BE-684874ADCD01}" />
        <Execution ProcessID="1268" ThreadID="1336" />
        <Channel>Microsoft-Windows-Diagnostics-Performance/Operational</Channel>
        <Computer>Steve-PC</Computer>
        <Security UserID="S-1-5-19" />
      </System>
      <EventData>
        <Data Name="BootTsVersion">2</Data>
        <Data Name="BootStartTime">2012-10-18T21:05:20.624800300Z</Data>
        <Data Name="BootEndTime">2012-10-18T21:07:04.226181600Z</Data>
        <Data Name="SystemBootInstance">8</Data>
        <Data Name="UserBootInstance">4</Data>
        <Data Name="BootTime">22130</Data>
        <Data Name="MainPathBootTime">12230</Data>
        <Data Name="BootKernelInitTime">13</Data>
        <Data Name="BootDriverInitTime">696</Data>
        <Data Name="BootDevicesInitTime">4960</Data>
        <Data Name="BootPrefetchInitTime">1575</Data>
        <Data Name="BootPrefetchBytes">228585472</Data>
        <Data Name="BootAutoChkTime">0</Data>
        <Data Name="BootSmssInitTime">4198</Data>
        <Data Name="BootCriticalServicesInitTime">190</Data>
        <Data Name="BootUserProfileProcessingTime">36</Data>
        <Data Name="BootMachineProfileProcessingTime">0</Data>
        <Data Name="BootExplorerInitTime">205</Data>
        <Data Name="BootNumStartupApps">1</Data>
        <Data Name="BootPostBootTime">9900</Data>
        <Data Name="BootIsRebootAfterInstall">false</Data>
        <Data Name="BootRootCauseStepImprovementBits">2308</Data>
        <Data Name="BootRootCauseGradualImprovementBits">0</Data>
        <Data Name="BootRootCauseStepDegradationBits">0</Data>
        <Data Name="BootRootCauseGradualDegradationBits">0</Data>
        <Data Name="BootIsDegradation">false</Data>
        <Data Name="BootIsStepDegradation">false</Data>
        <Data Name="BootIsGradualDegradation">false</Data>
        <Data Name="BootImprovementDelta">0</Data>
        <Data Name="BootDegradationDelta">0</Data>
        <Data Name="BootIsRootCauseIdentified">true</Data>
        <Data Name="OSLoaderDuration">511</Data>
        <Data Name="BootPNPInitStartTimeMS">13</Data>
        <Data Name="BootPNPInitDuration">5049</Data>
        <Data Name="OtherKernelInitDuration">1426</Data>
        <Data Name="SystemPNPInitStartTimeMS">6472</Data>
        <Data Name="SystemPNPInitDuration">607</Data>
        <Data Name="SessionInitStartTimeMS">7083</Data>
        <Data Name="Session0InitDuration">3095</Data>
        <Data Name="Session1InitDuration">259</Data>
        <Data Name="SessionInitOtherDuration">843</Data>
        <Data Name="WinLogonStartTimeMS">11282</Data>
        <Data Name="OtherLogonInitActivityDuration">706</Data>
        <Data Name="UserLogonWaitDuration">133</Data>
      </EventData>
    </Event>

Maybe you are looking for

  • Wrong allocation of GL account for Billing Docs

    Hi friends, In A sales Org there are 4 sales order types& for each sales order types we have different GL accounts. When SAP issues the Billing document for each type of Sales Order, the amount gets wrong allocation. Please suggest me. Regards, Suman

  • Problem while installing SAP netweaver developer workplace

    hi, I hav a problem while installing SAP netweaver developer workplace .An error has occured while processing service ´developer workplace installation´.This error occured in phase 14 of 25 ie while unpacking SCS Client.error is as follows:- [Cannot

  • Why can't I import these classes?

    Generic problem to do with finding classes: My problem lies in the field of web services (I want to setup a simple web service), but I've fallen at the first hurdle when trying to use the Apache admin tool for deploying web services. Basically, I'm u

  • Survey portlet multilingual settings

    Hi, I would like to know if I can use the Survey portlet with the language portlet. I want to have the questions, the choices and the welcome message in the survey portlet translated in all of the languages that my portal application supports. So whe

  • Dynamic JTable and rendering column as JComboBox

    I originally posted this to the "Java Programming" topic, but it was suggested that I move it over here. I'm new to cell renderers and editors, so I'm hoping someone can put me on the right path. I've got a JTable that is initially empty. I've set on