The Technology2Reality Blog Feed

 
 

Please help if you can…
Video Rating: 5 / 5

Tagged with:
 

bootmgr is missing – windows 7?

Question by Jamie: bootmgr is missing – windows 7?
whenever i try to boot up my computer it says bootmgr is missing, i was looking on google and it said to try boot from cd and run startup repair i tried doing this but the computer wouldnt boot from cd it would just come up saying “press any key to boot from cd” then straight away again come up with “bootmgr is missing windows 7″ and not progress any further, when i unplugged the hard drive it booted from cd though.
i already made the cd drive my main booting device and removed the hard drive as one

here are some pictures of the screens to show what i mean

http://img9.imageshack.us/img9/3152/dsc01719ni.jpg this comes up when i try to boot from cd

these are the settings i have in bios right now http://img24.imageshack.us/img24/6328/dsc01720wk.jpg

Best answer:

Answer by SaifCoolx
Make Cd Drive Your First Booting Device
And Hard Drive Second Booting Device………

now if your Disk is still not booting then it means that CD is Not Bootable Try Getting Another one from ane of your friends……………………..

Know better? Leave your own answer in the comments!

Tagged with:
 

Q&A: bootmgr is missing windows 7?

Question by Jamie: bootmgr is missing windows 7?
whenever i try to boot up my computer it says bootmgr is missing, i was looking on google and it said to try boot from cd and run startup repair i tried doing this but the computer wouldnt boot from cd it would just come up saying “press any key to boot from cd” then straight away again come up with “bootmgr is missing windows 7″ and not progress any further, when i unplugged the hard drive it booted from cd though.
must of forgot to add, i already made the cd drive my main booting device and removed the hard drive as one

Best answer:

Answer by gillom123
ya you have to set primary boot method as cd drive on bios like remove your hd but not technically but ya repair should fix it long process tho

What do you think? Answer below!

Tagged with:
 

Question by zuse1000us: windows 7 bootmgr is missing press ctrl+alt +del to restart?
I am getting that error. This is what i have tried so far with no luck.

1: booted from cd and did the option for repair
2: booted from cd and from command prompt did bootrec /rebuildbcd
3: booted from cd and from command prompt did bootrec /fixboot

4: booted from cd and from command prompt did all this
bootrec.exe /fixmbr
del c:\boot\bcd
bcdedit /createstore c:\boot\bcd.tmp
bcdedit /store c:\boot\bcd.temp /create {bootmgr} /d “Windows Boot manager”
bcdedit /import c:\boot\bcd.tmp
bcdedit /set {bootmgr} device partition=c:
bcdedit /timeout 10
del c:\boot\bcd.tmp
bcdedit /create /d “Windows 7″ /application osloader

“this part in the {123} just replace with whatever is on your screen from the previous command
bcdedit /set {123} device partition=c:
bcdedit /set {123} osdevice partition=c:
bcdedit /set {123} path \Windows\system32\winload.exe
bcdedit /set {123} systemroot \Windows
bcdedit /displayorder {123}
exit

————————————————————————————————————–
Anyway all these different ways said they were successful after running them , but i still get the bootmgr is missing error.

What else can i do beside restore to factory?

Best answer:

Answer by tajmox
Try the command SFC /SCANNOW
Since your first step (Repair installation) should have fixed this, you may be forced to backup your data and re-format.

What do you think? Answer below!

Tagged with:
 

Question by Mouse1_19: What I’m missing in this Java program?
/* java1.6\bin\java MinerDemo (for Windows)
java MinerDemo (for Mac OS X)
to run Java interpreter on the MinerDemo.class file provided—can’t do jcr as usual because it kills all .class files first thing)*/

import java.util.Scanner;
import java.util.ArrayList;

public class Miner
{
private static int LASTID = 0;
private static double STARTPAY = 8.50;

private String name;
private int id;
private long timeEntered;
private double secondsWorked;
private double payRate;
private double totalPay;

public Miner( String nameIn )
{
name = nameIn;
LASTID++;
id = LASTID;
timeEntered = 0;
secondsWorked = 0;
payRate = STARTPAY;
totalPay = 0;
}

public void enterMine()
{
timeEntered = System.nanoTime(); // note time entered which is always > 0
}

public void leaveMine()
{
double time = Math.round((System.nanoTime() – timeEntered)/1000000000.);
secondsWorked += time;
timeEntered = 0; // mark miner as not in mine
}

public String toString()
{
String status;
if( isInMine() )
status = ” in”;
else
status = “out”;

return “Name: ” + format(name,8) + ” ID: ” + format(id,2) +
” status: ” + status + ” Pay rate:” +
format(payRate,6) + ” unpaid seconds: ” +
format(secondsWorked,6) + ” total pay: ” + format(totalPay,6);
}

private static String format( String s, int columns )
{
String r = s;
int m = columns – s.length();
if( m < 0 )
m = 0;
for( int k=1; k<=m; k++ )
r = " " + r;
return r;
}

private static String format( double x, int columns )
{
return format( "" + x, columns );
}

private static String format( int x, int columns )
{
return format( "" + x, columns );
}

public static void main(String[] args)
{
// simulate operation of the mine:

ArrayList list = new ArrayList();

help();

Scanner keys = new Scanner( System.in );
String choice;
int k, j;
double r;
Miner miner;

// repeatedly get and process user request:

do{

// display all the miner info:
System.out.println(“———————–”);
for( k=0; k System.out.println( list.get(k).toString() );
System.out.println(" ");

choice = keys.nextLine();

if( choice.equals( "a" ) )
{// add a miner
System.out.print("Enter name of new miner: ");
choice = keys.nextLine();
list.add( new Miner( choice ) );
}
else if( choice.equals( "p" ) )
{// pay all miners
for( k=0; k list.get(k).figurePay();
}
else if( choice.equals( "r" ) )
{// give a raise to one miner
System.out.print("Enter id of miner to receive raise: ");
j = keys.nextInt(); keys.nextLine();
miner = findMinerById( list, j );
if( miner != null )
{
System.out.print("Enter amount of raise: ");
r = keys.nextDouble(); keys.nextLine();
miner.receiveRaise( r );
}
}
else if( choice.equals( "q" ) )
{// quit the simulation
System.out.println("Exiting simulation");
System.exit(0);
}
else
{// move miner with this id in/out of mine
try{
j = Integer.parseInt( choice );
miner = findMinerById( list, j );
if( miner != null )
{// legal id, change in/out status
if( miner.isInMine() )
miner.leaveMine();
else
miner.enterMine();
}
else
System.out.println( j + " is not a valid id");
}
catch(Exception e)
{
System.out.println("Entry is not a legal integer value");
}
}

}while( true );

}

private static Miner findMinerById( ArrayList list, int targetId )
{
for( int k=0; k if( list.get(k).getId() == targetId )
return list.get(k);
return null; // never found the target id
}

private static void help()
{
System.out.println("Welcome to the Mine Simulation");
System.out.println("(enter");
System.out.println(" id # to move that miner in/out of mine");
System.out.println(" a to add a miner");
System.out.println(" p to pay all the miners");
System.out.println(" r to giv

Best answer:

Answer by Ratchetr
The first thing you are missing is the rest of your code. Yahoo ate it. And they butchered much of the rest of it as well.
When you have this much code, you should use a site like pastebin.com. Post the code there, then post a link to it here.

The second thing you are missing is…we need a hint. What do you think is missing? What is the problem you are trying to solve?
Does the code not compile? If not, which lines generate errors, and what are the errors?
Does the code compile but fail to run at all? If so…what are the errors?
Or does the code run, but not do what you expect it to do? If so…what does it do, and what do you expect it to do?
With that much code, you need to help us know what to focus on.

Give your answer to this question below!

Tagged with:
 

Question by : Windows 7 error “winload.exe is corrupt or missing”?
Hi everyone,

To make answering my question as easy as possible, i’ll organize my issue as follows.

My Problem

* PC Starts, I can get into bios, and mem-test
* A blackscreen shows up and asks me to select which OS I want. I see “Windows 7″ twice.
* If I selected either option, I get the error “winload.exe is missing or corrupt”

What I use

* AMD Quad Core
* 2x 500GB ATA HDD
* GeForce GT graphics
* Windows 7, I think it was 64bit (is there anyway to check, from bios or something?)

What I tried

* I ran startup repair, from my windows 7 disk
* I am unable to run system recovery/restore point
* I entered command prompt and ran all of the bootrec commands (FixBoot, FixMbr, ScanOs)
* I took out my HDD containing the OS, and popped it into another desktop, and tried running bcdedit, but i get the error

This version of F:\Windows\System32\bcdedit.exe is not compatible with the versi
on of Windows you’re running. Check your computer’s system information to see wh
ether you need a x86 (32-bit) or x64 (64-bit) version of the program, and then c
ontact the software publisher.

* I am able to use a LiveCD and boot into ubuntu (i don’t know how this helps tho)

Please help! I Don’t know what else to do!

Best answer:

Answer by WyattEarp
* I entered command prompt and ran all of the bootrec commands (FixBoot, FixMbr, ScanOs)

did you try CHKDSK /r and reboot the system?

Cheers

Add your own answer in the comments!

Tagged with:
 

Getting is often a very trying and worrisome problem, however, you are not alone and it’s possible to get rid of this type of software inconvenience almost instantly. In the following quick article, I will clearly explain to you a simple way that you, by yourself, can solve this problem as well as other bothersome software problems.

As you’ve likely come to know, windows, as is true with most programs, has its flaws; with regular use, you are likely to encounter certain problems and commonly a ‘contaminated’ registry is shown to be at the root of the trouble. I don’t need to go too deeply into a complicated subject, but a quick definition is that the registry is the area where windows keeps track of all your loading, unloading, and updating of applications as well as hardware.

Performing any of these installations, removals, and updates incorrectly can have the result of corrupting your registry, and from the moment this happens, an exe missing in Windows 7 error and similar errors can surface. I’m pleased to report that you can get rid of this problem; and that’s not all – you can do this immediately, even if you are not a computer ace. Let me share something with you – before you call a technician and spend hundreds in order to resolve this or other computer troubles, you need to realize that under these circumstances you can take advantage of special registry “fixers,” which give you the power to automatically scan your entire pc’s registry, identify the problem, and fix it!

Now you know that should you get , examine your computer’s registry with such a software; the bulk of them give you the software to scan your registry, as well as the fix, for free! These things work – many professionals utilize these applications in their day to day computer repair work; it’s a safe and effective process. I suggest that you go ahead and install a registry cleaner right now – not only you’ll be able to repair this problem, this tool will also repair other troubles that you might not even know about and significantly speed up your pc’s performance.

Quickly scan and repair an exe missing in Windows 7 error right now!

Visit: TopRegistrySolutions.com

Find More Must Know Windows Articles

Tagged with:
 

What exactly is bootmgr.Windows 7 error? Have you recently been a victim of this nuisance and every time you try to reboot Windows 7 your display screen in black shows a message that bootmgr missing in Windows 7? The problem gets worse when you have not created the backup and you are not able to boot your computer in any way possible.

In such a situation one waits for some miracle to happen which does not as you have to do something to fix any issue at hand. The same is the case with our problem which has gathered us here to read this information.

I would not waste much of your time in discussing agonies only. Rather here I will share the solution to the problem in the hope that you are successful in fixing the bootmgr.Windows 7 problem.

Here are the things outlined you need to do to achieve this goal and bring your system back to normal working condition:

* Fetch your copy of Windows 7 if you have put it in some deep vault. From today learn to keep important things at safe place where you could find them easily and instantly. You need to have the original Windows 7 DVD in order to find an effective solution.

* Insert the disk into your DVD ROM and then restart your computer manually.

* While you have performed the above task you will see the notifications about knowing Windows 7 and repairing Windows 7. You have to fix the second option in order to proceed with the desired fix for bootmgr missing in Windows 7.

* This option will let the operating system find the installation information stored inside your system.

* Meanwhile you will see the recovery options and from where you will select the start up repair option to fix bootmgr.Windows 7.

* After opting for this option the wizard will perform its function and subsequently asks you to reboot Windows 7.

* Also try to update BIOS because the outdated BIOS information can cause “bootmgr missing in Windows 7″ error.

The above guidelines allow you to fix the problem at hand. If you had installed a thorough registry repair program coupled with PC optimization facilities you could have avoided this situation. As soon you find a fix for bootmgr.Windows 7 install RegInOut registry repairing program. Here is the download location: Download RegInOut Fix.

Alternatively directly visit the web site for quick download:
http://www.reginout.com


Article from articlesbase.com

Related Must Know Windows Articles

Tagged with:
 

Question by m4rocker: my computer says “NTLDR is missing” i know that i must re install windows but how do i back up my files?
my problem is the my computer says “NTLDR is missing” i found out that i have to re install windows.
but how can a back up my files when windows doesnt even start?

Best answer:

Answer by CatNip
When you reload windows, you can use the same partition without reformatting it; thus saving your files.

What do you think? Answer below!

Tagged with:
 

How To Fix “Missing or corrupt windows_root\system32\hal.dll”. Easy instructions showing how to fix this Windows start-up error by Britec. Getting access denied? The reason is and solve this problem are below: 1) ATTRIB C:\windows\system32\hal.dll -h -s -r ————————- please comment and subscribe!!! www.briteccomputers.co.uk http www.pcrepairhertfordshire.co.uk
Video Rating: 0 / 5

www.robbonline.se – See how to fix the problem with flight simulator x (FSX) and Windows 7. FSX stopped responding and crashed to desktop within 30 seconds.The error report said that a fatal error occurred and FSX need to be closed. Visit my site and click the link “Flight simulator x Problem FIX for windows 7″ http The sulotion you will find on my site solved my problems totally. I hope this solve your problems to! Happy flying ;)
Video Rating: 0 / 5

Tagged with: