Trying to boot arch from win7 with EasyBCD; "boot device not found"

EDIT: title was 'Dual boot with Win7, easybcd + syslinux, getting "Boot error"'. Narrowed down the issue to something unrelated to Arch, and felt this was more accurate. The Arch install is sound, it's getting win7/EasyBCD to load it that's the issue.
I got a new work computer and am trying to recreate my formerly successful setup, which I documented here some time ago. Unfortunately... I'm having issues. Just a note up front from scouring the internet for ideas: I cannot use syslinux (or any other bootloader) to chainload Win7 vs. the other way around! The computer drive is encrypted with McAfee Endpoint Encryption, and doing anything whatsoever with the MBR from outside of Windows will brick my computer. Just wanted to add that, as almost all issues involving dual boot inevitably bring about the suggestion to "just chainload windows from grub/syslinux/etc."
With that out of the way, here's the process I used:
drive setup
Here's the partition scheme:
- /dev/sda1: SYSTEM (pre-existing)
- /dev/sda2: C:, Win7 (pre-existing)
- /dev/sda3: /boot, ext2 (created)
- /dev/sda4: /, encrypted Arch root, cryptsetup/ext4 (created)
My process for creating the partitions is as follows:
- shrunk C: down from the Win7 built-in partition utility
- created two unformatted partitions with no drive letter using Minitool Partition Wizard, setting the partition ID to 0x83 for both
- booted from USB drive of the Arch installation .iso (downloaded Friday 5/29)
- booted x86_64 arch
# fdisk -l
Disk /dev/sda: 238.5 GiB, 256060514304 bytes, 500118192 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x1e6513b3
Device Boot Start End Sectors Size Id Type
/dev/sda1 * 2048 2101247 2099200 1G 7 HPFS/NTFS/exFAT
/dev/sda2 2101248 177278975 175177728 83.5G 7 HPFS/NTFS/exFAT
/dev/sda3 177278976 177541119 262144 128M 83 Linux
/dev/sda4 177541120 500103167 322562048 153.8G 83 Linux
# modprobe dm_crypt
# cryptsetup -c aes-xts-plain64 -s 512 -h sha512 -i 5000 -y luksFormat /dev/sda4
# cryptsetup open /dev/sda4 root
# mkfs.ext4 /dev/mapper/root
# mkfs.ext2 /dev/sda3
installation
I just followed the Arch installation guide but documented my steps to a text file just to be sure...
# mount /dev/mapper/root /mnt
# mkdir /mnt/boot
# mount /dev/sda3 /mnt/boot
### connect to internet
# pacstrap /mnt base
# genfstab -p /mnt >> /mnt/etc/fstab
# arch-chroot /mnt
# echo arch_zbook > /etc/hostname
# ln -sf /usr/share/zoneinfo/America/Chicago /etc/localtime
### uncomment en_US.utf-8 in /etc/locale.gen
# locale-gen
# echo LANG=en_US.UTF-8 > /etc/locale.conf
### add encrypt before "filesystem" in /etc/mkinitcpio.conf hooks
# mkinitcpio -p linux
# passwd
# pacman -S syslinux
# cp -r /usr/lib/syslinux/bios/*.c32 /boot/syslinux
# extlinux -i /boot
### the above echoes "/boot is device /dev/sda3"
Then I edited /boot/syslinux/syslinux.cfg:
LABEL arch
MENU LABEL Arch Linux
LINUX ../vmlinuz-linux
APPEND root=/dev/mapper/root cryptdevice=/dev/sda4:root crypto=sha512:aes-xts-plain64:512:: rw
INITRD ../initramfs-linux.img
EDIT: I deleted the contents of /boot, reinstalled syslinux, linux, and mkinitcpio, and repeated the above with `extlinux -i /boot/syslinux`, noting that syslinux.cfg points to ../vmlinuz-linux. Same result.
Just to double check proper syslinux setup, here's the dir contents:
# ls /boot
initramfs-linux-fallback.img
initramfs-linux.img
ldlinux.c32
ldlinux.sys
lost+found
syslinux
vmlinuz-linux
# ls /boot/syslinux
cat.c32
chain.c32
cmd.c32
cmenu.c32
config.c32
cptime.c32
cpu.c32
cpuid.c32
cpuidtest.c32
debug.c32
dhcp.c32
disk.c32
dmi.c32
dmitest.c32
elf.c32
ethersel.c32
gfxboot.c32
gpxecmd.c32
hdt.c32
hexdump.c32
host.c32
ifcpu64.c32
ifcpu.c32
ifmemdsk.c32
ifplop.c32
kbdmap.c32
kontron_wdt.c32
ldlinux.c32
lfs.c32
libcom32.c32
libgpl.c32
liblua.c32
libmenu.c32
libutil.c32
linux.c32
ls.c32
lua.c32
mboot.c32
meminfo.c32
menu.c32
pci.c32
pcitest.c32
pmload.c32
poweroff.c32
prdhcp.c32
pwd.c32
pxechn.c32
reboot.c32
rosh.c32
sanboot.c32
sdi.c32
sysdump.c32
syslinux.c32
syslinux.cfg
vesa.c32
vesainfo.c32
vesamenu.c32
vpdtest.c32
whichsys.c32
zzjson.c32
EasyBCD and boot attempt
At this point, exited the arch-chroot, unmounted/closed my partitions, and rebooted into Win7. Using EasyBCD, I added a entry for a syslinux bootloader, pointing it to "Partition 3 (Linux - 128MiB)."
I reboot, get the EasyBCD menu, but then the lone words "Boot error" on a black screen. Any key press takes me to some sort of BIOS boot thingy which tells me to "Please install an operating system!" I think this is something built into the laptop BIOS, not anything from the syslinux side. Selecting "Boot existing OS" from the Arch install USB doesn't give me any options at all.
From what I can tell, I'm using the same procedure that I ended up with on this former troubleshooting exercise.
Thoughts
I'm really struggling to understand what I'm doing wrong. I originally had a couple variations on logical/extended partitions since I need my eventual setup to hold a shared TrueCrypt partition so I can access my work files from both Win7 and arch. I tried /boot as primary and Arch/TC as logicals, as well as a primary TC partition with boot/root as a logical drive combination. I've simplified to just primary partitions (as shown above) to troubleshoot.
It's quite difficult to troubleshoot as I don't know if this is an installation issue or an EasyBCD one. Is there a way to manually try and boot my HD arch install from the install USB? I wanted to try that using the "Boot existing OS" option, but am wondering if it fails since only /dev/sda1 features a bootable flag and it's encrypted so only the HP BIOS can handle it? I thought about making /dev/sda3 bootable, but from my reading I can only have one bootable flag on a Windows system.
On that note, I checked my BIOS settings and the MBR is set to "Legacy mode" vs. the othe UEFI alternatives, so I don't think that's an issue. I also used blkid to confirm that it's using an MBR (output was "dos").
I will try UUIDs in /etc/fstab and syslinux next, as there are some other posts (example) talking about this as a potential issue (and, indeed, I sometimes get my HD as /dev/sdb* when booting from the arch USB drive. I can also try grub2 in case it's a syslinux issue.
Thanks for any ideas/suggestions. Does anything look awry in my description/setup above? I can chroot and do stuff just fine... so I think the install appears to be sound; it's just booting it!
Last edited by jwhendy (2015-06-06 04:38:09)

A bit of progress, though this couldn't be much more awful in my opinion. Installed Arch to an sdcard to use as a bootloader, only to find that I can't boot from an sdcard, even though the HP docs say there's an sdcard boot option in the BIOS (which there's not). If the BIOS were in UEFI mode, there is an sdcard option listed in the boot order, but not in legacy mode. Sigh.
I don't have another sdcard laying around that's big enough to install Arch on, as I'm using my sole 8g drive for the installation media (and no optical drive). Sigh.
I did, however, through trial and error get my sdd arch install to boot using the installation drive's "boot existing OS" option! Took me a while to figure it out. In my opinion the drive/partition numbering is quite odd. Using the Hardware Information tool, the usb stick shows up as the first drive (so I'd assume hd0), but it can't be as "hd0 3" got me into the sdd installation. I'd have assumed hd0 0 was /dev/sda1, but that must be incorrect, as hd0 3 is /dev/sda3.
So, where I'm at now:
- going to re-partition how I originally intended (with truecrypt shared storage as a primary partition and boot/root as logical partitions)
- reinstall arch
- try to boot using the above procedure from the installation media
If that goes well, I'll try to find some teensy tiny usb stick to use as a bootloader device unless someone has any insights on why I can't boot by chainloading from Windows. I think at this point I've narrowed it down to a BIOS or drive numbering or EasyBCD issue, so maybe this post isn't a good fit for the Arch forums after all. Sorry for all the noise/updates... just wanted to provide the updated information as I uncovered it.
Thanks if you have any ideas or things I could try.

Similar Messages

  • Trying to add album from iphoto into idvd slideshow.  Not all photos are loading.  Message "creating thumbnail images...(31 remaining).  Been there a long time.  What is wrong?

    trying to add album from iphoto into idvd slideshow.  Not all photos are loading.  Message "creating thumbnail images...(31 remaining).  Been there a long time.  What is wrong?

    Open your iPhoto Library, go to that particular album and verify that you can view the full sized version of each image by double clicking on them.  Report back with the results.
    OT

  • I can't lock screen on Ipad mini. My lock screen button is working for shutdowning Ipad, but don't working for lock screen. Also I tried to lock screen from Assistive Touch and it's not working. When I click lock screen on assistive it nothing happens.

    I can't lock screen on Ipad mini. My lock screen button is working for shutdowning Ipad, but don't working for lock screen. Also I tried to lock screen from Assistive Touch and it's not working. When I click lock screen on assistive touch it nothing happens.

    Thank you for that update.
    I would next backup your device to iTunes with this article:
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    And restore it first as a new device, and verify that it works properly, then restore from your backup with the same article below to ensure that it is still working.
    Use iTunes to restore your iOS device to factory settings
    http://support.apple.com/kb/ht1414
    If it does not work correctly when you set up the phone as a new device, I would next seek service for your iPad:
    http://www.apple.com/support/ipad/repair/other/
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • Start-up problem with hp pavilion dv6t-7000‏: "Boot Device Not Found. Hard Disk (3F0)" error

    I started getting start-up problems with my hp pavilion dv6t-7000‏.  It happens intermittently. 
    The boot error is:
       Boot Device Not Found
       Please install an operating system on your hard disk.
       Hard Disk (3F0)
       F2 System Diagnostics
       For more information, please visit: www.hp.com/go/techcenter/startup
    Could a faulty BIOS update cause this problem?
    Anyone else who may have experienced a similar problem?
    I'd appreciate any help about this problem.  Thanks.

    Hi
    Please find the link given below might help you to fix your issue.
    Resolve Boot Device not Found Error Message
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • How do I delete Apple TV from syncing with my other devices

    How do I delete Apple TV from syncing with my other devices?

    What do you mean syncing?  The ATV does not sync with other devices.

  • My Mother in law messed up my Adobe reader some how to the point that it is no longer in my computer. I have tried to download it from the internet but it is not working. What am I missing? what else do I need to do? I am not even able to watch youtube...

    My Mother in law messed up my Adobe reader some how to the point that it is no longer in my computer. I have tried to download it from the internet but it is not working. What am I missing? what else do I need to do? I am not even able to watch youtube...

    Soccerdm,
    a direct download of Adobe Reader X 10.1.4 (which seems to be the most recent standalone version that runs on Mac OS X 10.5.8) is here.

  • Boot up from other node's boot disk

    Hi,at the moment I got problem to boot up one of two nodes-cluster, because its boot disk seems to be damaged. Is it possible to boot up from other node's boot disk? If yes,how to do it? If not,are there any ideas,beside replacing the damaged boot disk? Because the machines are in testbed, I think my compay doesn't want spend much money to replace the disk in this short time =)
    The version is SOLARIS 8 and SUN Cluster 3.0.

    Hi,
    Sorry to disappoint you but you cannot in Sun Cluster have one node boot from the boot disk of the other node. Do you have a backup of the boot disk?
    Your best option is to replace it I guess
    Kristien

  • Trying to transfer a video clip from iPhone to iPad using transfer app it says device not found, I have used this before wifi is fine and both  devices are connected ?

    Trying to transfer a video clip from iPhone to iPad using transfer app it says device not found, I have used this before wifi is fine and both  devices are connected ?

    That does not involve iPhoto for the Mac in any way - try the iPad forum
    I will request your post be moved
    LN

  • Boot device not found. "Hard disk not exist". windows not booting

    Product: HP G72-110SA
    OS: Win7
    two days ago, I was installing updates on my computer and when it was about to restart, it froze. After waiting for 10 minutes, I had to turn it off by pressing the off button. From then on, the computer turns on but shows a message "Boot device not found".
    I have tried all the BIOS tests that I could find on the net for the hard disk, eg: http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01443465&tmp_task=solveCategory&cc=uk&dlc=en&la...
    This gives me a "Hard disk not exist" error. I tried resetting the BIOS, that didn't work. I tried taking out and putting back in the battery, the memory and the hard disk. Still no luck.
    I then booted ubuntu from cd on the computer. It works just fine, including the internet etc EXCEPT the HDD is still not detected.
    I had some pretty important stuff and no back up, so would appreciate if someone can help me get back the data. If not, even if I know its just a HDD failure and not a motherboard/BIOS problem, it will be a relief as its probably fixable.
    Thanks

    Hi there ,
    Thank you for visiting the HP Support Forums and Welcome! This is a great site to get answers and ask questions. I would be happy to assist you. As there are many models of HP Notebooks, I would need the model number. (How Do I Find My Model Number or Product Number?) When I went to www.hp.com/go/techcenter/startup, it gave me documentation and troubleshooting steps to follow. One of the documents it provided is called Hard Disk Error Displays before the Computer Starts. NOTE: I recommend at this point you make an immediate backup of all important data and files. Here are instructions on how to Backing Up Your Files (Windows 8). Please follow the troubleshooting steps provided, re-post with the results of the troubleshooting in detail. Thank you.

  • HP Device Not Found Error when trying to print or scan wireless- HP Officejet Pro L7590

    Have had HP Officejet Pro L7590 All-In-One Printer for years.  Always worked fine and I had no issues printing via wireless connection.  Several months ago..  Possibly after a Windows 8 update.  From Windows 8 to Windows 8.1 I have not been able to use the printers wireless feature.  When I try to print or scan it shows the printer as offline.  Also get an error message that tells me "HP Imaging device is not found".  I can still print when connected to USB.  Cannot scan or use features of the HP software suite.  I have tried several times to correct.  Reloading the software and drivers several times, but no success.  I just tried again and was able to print the test page wireless, so got all excited and thought I fixed it.  Then tried to print something and got the same error message I have seen in the past.  I have talked to certain supports saying that it may be a firewall setting within Windows.  Any other suggestions?  Thanks

    Hi @rfjones002,
    Welcome to the HP Support Forums! I see you are not able to print or scan wirelessly to your HP Officejet L7590 and your computer running the Windows 8.1 Operating system. You get a 'Printer offline' or 'HP Imaging device not found' errors.
    I would like you to start with the steps listed below:
    Hold down the Windows Logo key () on the keyboard and the 'R' to open the run box, type %temp%
    Delete all files and folders from the temp folder. Choose skip if any pop ups appear saying any of the files could not be deleted
    Uninstall the software again - Uninstall the Printer Software Instructions
    When the uninstall has completed restart the computer
    Follow these steps to reset the registry settings and options for Windows Installer.
    Hold down the Windows Logo key on the keyboard and the 'R' to open the run box
    In the Open box, type
    msiexec /unregister
    and then click OK.
    Hold down the Windows Logo key on the keyboard and the 'R' to open the run box
    In the Open box, type
    msiexec /regserver
    and then click OK
    *Note: there is a space between the c and the /
    If you have any difficulty with this step, please use this link to perform it another way. Restarting Windows Installer
    Run Disk cleanup from Accessories\ System Tool < How to Delete files using Disk Cleanup
    Download and install the latest version of Adobe flash player http://www.adobe.com/support/flashplayerflashplaye​r/downloads.html
    Perform a clean boot > How to perform a clean boot in Windows
    Download the following SP40669 File Download - if this does not download and or install please proceed to the next step.
    Turn off the Real-Time Scanning and Firewalls; The image below is a McAfee example, if you have a different antivirus program and need help disabling Real-Time Scanning and Firewalls let me know.
    - Image source
    Now you can go ahead and download and install the software here >
    HP Officejet Pro Full Feature Software and Driver
    If you are unable to print a test page, please run the HP Print and Scan Doctor- It was designed by HP to provide users with the troubleshooting and problem solving features needed to resolve many common problems experienced with HP print and scan products connected to Windows-based computers.
    Please let me know if this was successful! I will watch for your reply.
    Thank you,
    HevnLgh
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Boot device not found, hard disk not exist.... does that mean my computer is dead?

    Suspecting that Im in a world of hurt here. I tried turning on my computer and it says "boot device not found" - run in test failed... when I hit F4 and run a hard disk test it says "hard disk not exist". The memory test passes, but under the boot device not found it says in blue "please install an operating system on your hard disk"... and to make matters worse it's making some funny noises when it tries to boot.
    Is there any hope at all that this computer will work again? Is there any chance that any of the things I had on my hard disk can be recovered?
    This question was solved.
    View Solution.

    You're very welcome, Jonathan.
    dv5 still isn't enough info for me to provide the service manual (in case there are differerent ones for the different dv5 models).
    However here is the link to the service manual I randomly pulled.
    http://bizsupport1.austin.hp.com/bc/docs/support/SupportManual/c01550108/c01550108.pdf
    Assume it is safe to say all dv5 models come with SATA notebook drives.
    So, if you want to spring for $15, you can get this enclosure which apparently has very good reviews.
    http://www.newegg.com/Product/Product.aspx?Item=N82E16817182138
    From what you are describing (noise and stuff), I would say you don't have much of a chance to recover data but that is up to you if you want to try the enclosure or not.
    Here is what I recommend:
    Yank the hard drive, and power on the notebook.
    If the odd noise you heard is gone, then you can pretty much safely assume the drive was the cause, and that replacing the drive, and reinstalling the operating system will solve the issue.
    If the noise is still there, then there could be another issue, and it might be risky throwing good money after bad.
    Paul

  • Boot Device Not Found Please Intall an Operating system on your hard disk. Hard Disk - (3F0)

    Hello,
    I tried to re-install de OS from windows 7 to windows 8.1 and when the bios update driever was installed and the laptop was restaring it appeared the folowing window and message:
    Boot Device Not Found Please Intall an Operating system on your hard disk. Hard Disk - (3F0)
    After that i tried a lot of different ways to get to boot device select ...but i couldn't do anything. I removed the HDD and i put it back, i've tried with holding in the same time windows +B and pressing the power button in the same time for 1..2 seconds and then i've waited for at least 1 minute..and it didn't appeared anything on the screen. I've done the hard drive check and it passed. The weirdest thing is that when i want to select a boot device to re-install again the OS, i can't see any boot device to select. I need to mention that i've formatted the HDD in another computer. I dont care about the informations from the HDD beacause i saved all the informations on another device storage.
    Please help me repair this problem!!!  thanks a lot!
    Have a nice evening.!!!

    Whenever you get a message stating that the boot device not found it could be because of bad sectors on the Hard Drive. Its not necessary that the Hard Drive Test should fail to determine if the Hard Drive if its faulty or not. Sometimes even if the Hard Drive Test passes the Hard Drive will still not work because of the bad sectors in it.
    Best way to find out if its the Hard Drive you can try the Hard Deive on a different Notebook which would help you determine if it's faulty or not.
    Could be due to Application or driver conflicts, virus issues, file corruptions due to incompatible applications, improper shutdowns, update failures due to conflicts, sudden power surges, if notebook is dropped etc..
    HP will provide a replacement Hard Disk Drive if the Notebook warranty is Active, If not you need buy a SATA Hard Disk Drive from a retail shop nearby
    Please make sure you are getting at least equal capacity as the original one in order to use Recovery Disks. If you need you can buy a larger, but not smaller capacity Hard Disk Drive. For example if you have a 500GB Hard Disk Drive you can upgrade it to 750GB Hard Disk Drive but not 320GB Hard Disk Drive
    Please try the below shown troubleshooting steps once:
    Step 01. Remove the battery and unplug the AC/Power Adapter
    Step 02. Press and hold the Power button for more than 30 Seconds
    Step 03. Plug in the AC/Power Adapter (leave the Battery out for now)
    Step 04. Press the Power button and check if the Unit works normal
    If the above mentioned steps does not help, then you can try reseating the Hard Drive on your Notebook
    If the issue persists again please Contact HP if your HP Notebook is under warranty, HP would replace the Hard Disk Drive and provide you a Recovery media to restore factory operating system after replacement (if you've not yet created Recovery Discs/USB Media)
    Note: Back up all the personal data to an external drive if it's possible. Otherwise you could connect the failed HDD via SATA to USB adapter with another PC or same PC after replacement of HDD & re-installation of OS and try copying /recovering the files.
    Please click on the link In order to Identify, Prevent, Diagnose & Recover from Drive Failures on HP Notebook Hard Drives & Solid State Drives :
    http://h10032.www1.hp.com/ctg/Manual/c02876562.pdf
    Please check your notebook warranty to verify the status and order a new Hard Disk Drive
    Hope this helps, for any further queries reply to the post and feel free to join us again
    **Click the KUDOS star on left to say Thanks**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.
    Thank You,
    K N R K
    Although I am an HP employee, I am speaking for myself and not for HP

  • I dropped my computer. Boot Device not found?

    I dropped my computer and for some reason when i power it up, it goes straight to a black screen and says "Boot Device Not Found, Please install an operating system on your hard disk. Hard Disk (3F0), f2 System Diagnostics, For more information, please visit: www.hp.com/go/techcenter/startup" I have no clue what to do to fix this. Thanks in  advance.

    diazlourdes wrote:
    I dropped my computer and for some reason when i power it up, it goes straight to a black screen and says "Boot Device Not Found, Please install an operating system on your hard disk. Hard Disk (3F0), f2 System Diagnostics, For more information, please visit: www.hp.com/go/techcenter/startup" I have no clue what to do to fix this. Thanks in  advance.
    My Pavilion dv7-3165dx recently had a total HDD failure, first I tried to order an OEM replacement HDD from the HP parts sales phone line, but they only offered a smaller HDD as their listed replacement for my laptop. I finally got them to inform me that the tech support line might be able to sell me the OEM HDD. On calling the tech support line I was able to order the correct HDD, and it came with a set of recovery DVDs to install Win 7, and the other OEM partitions on my new HDD. This being the case if your HDD has failed you may want to call the tech support line to find out if they have an OEM HDD, and the recovery DVDs to go with your machine.
    IF what I post solves your problem please click the "Problem solved" button on my post.
    Oh, and if I have helped you, clicking the 'Kudos' star on my post would not hurt my feelings ether.

  • Error Message: The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version. The request failed with HTTP status 404: Not Found.

    I have a web page that contains a ReportViewer control.  I am trying to display a report, which is an .rdl file located on the SSRS server, in this ReportViewer control.  I have set the ReportPath and ReportServerUrl correctly.  I am
    getting an error message.
    Am I suppose to use an .rdlc file rather than a .rdl file?  Does the web server configuration need to use a certain account?
     I am getting the following error message:
    The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version.
    The request failed with HTTP status 404: Not Found.

    Hi bucaroov,
    The error "The request failed with HTTP status 404: Not Found." means the ReportServerURL configured in the ReportViewer control is invalid.
    Please follow these steps to solve the issue:
    Logon the Report Server machine.
    Open the Reporting Services Configuration Manager.
    Copy the Report Server URL from 'Web Services URL'.
    Logon the application server(in this case, it is the server that host the web page), check if we can use the URL we got from step 3 to access the Report Server. If so, please replace the ReportServerURL in the ReportViewer control with this URL. If it is
    not available, could you please post the error message.
    Additionaly, we don't need to provide the extension for a server report. The ReportPath should be like: /<reports folder>/<report name>
    For more information, please see:
    Walkthrough: Using the ReportViewer Control in Remote Mode:
    http://msdn.microsoft.com/en-us/library/ms251669(VS.80).aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Jin Chen
    Jin Chen - MSFT

  • I'm receiving error Boot Device Not Found and Hard disk not exist when I boot up my laptop

    I'm receicing the error Boot Device Not Found when i power on my HP G60-235DX laptop.  After following HP's recommended troubleshooting steps, I receive error Hard disk not exist.  Hmmmm....that's a little concerning.  My guess is I need a new hard drive?    I have the 17 recovery disks I made when I setup this laptop, however I'm not sure if they will resolve this issue.  Any suggestions?

    One of 3 things has happened, listed from most likely to least likely
    1. Hard drive has died, replace it with one of the same size or larger, then use the HP recovery discs to re-install windows.
    2, The motherboard has serious problems. (Replace the notebook)
    3. The hard drive cable that connects it to the motherboard has somehow failed, not very likely. (replace the cable)
    Replace the hard drive with a new one and use your recovery discs to get Windows back on it.
    Here is your service manual, will show you how to replace the hard drive
    http://h10032.www1.hp.com/ctg/Manual/c02985882.pdf
    Recovery Instructions for Vista
    Recovery Instructions for Windows 7

Maybe you are looking for