How to Restore thinkpad t61 with Windows 7

I have a thinkpad t61 laptop and Im using windows 7 . Now when i start my laptop, i see a blue screen and it keeps on restarting and it doesn't boot in to windows.
 I tried to restore to factory settings and i couln't find a option to restore after hitting the blue button.
Any help guys???

To download itunes, go to this link. http://www.apple.com/itunes/download/

Similar Messages

  • RMAN9I HOW TO RESTORE ARCHIVE LOGS WITH LIMITED DISK SPACE

    제품 : RMAN
    작성날짜 : 2002-12-09
    RMAN9I HOW TO RESTORE ARCHIVE LOGS WITH LIMITED DISK SPACE
    ==========================================================
    PURPOSE
    이 자료는 Oracle 9.2 이상의 RMAN에서 사용 가능한 MAXSIZE 기능에 대하여
    설명할 것이다.
    How to restore archive logs with limited disk space
    Old Backup을 사용하여 RMAN으로 database를 recvoery할때, 모든 archived
    redo logfile들을 Restore할 destination의 disk space가 모자란 경우를 종종 만난다.
    이러한 경우 여러 개의 restore and recovery job으로 나누어 수행한다.
    즉, 첫 번째 restore and recovery job이 끝나면 archived redo logfile들을 지우고
    다음 적용될 것들을 restore한다. 그리고 다시 Recovery를 수행한다. 이러한 작업을
    원하는 시점까지 recovery를 하기위해 반복적으로 수행한다.
    Oracle 9iR2(9.2.0.x)부터 RMAN은 MAXSIZE option을 제공하는데 이것은 archive log
    file이 restore될 disk의 space를 control할 수 있게 해 준다.
    만약 disk space가 매우 제한적이라면, 즉 예를 들어 모든 archive log의 size 합보다
    disk free space가 적다면 MAXSIZE option을 사용하는 것은 매우 유용하다.
    이 OPTION이 기술되면 RMAN은 Media Manager에게 disk space 크기에 부합하는 만큼만
    archive log들을 restore하도록 한다. 부가적인 restore operation들은 restore된
    마지막 archive log가 적용될 때마다 발생한다.
    MAXSIZE option은 이러한 작업들을 하나의 rman job으로 처리하게 해 주고
    실수를 하지 않게 해 준다.
    아래는 MAXSIZE를 설명하기 위한 예제이며 총 6 단계로 구성되어 있다.
    STEP 1: Add data to the database to enforce log switches
    STEP 2: Backup the database and archive logs and delete the logs
    STEP 3: Add additional data to enforce new log switches
    STEP 4: Remove the data file and simulate a database crash
    STEP 5: Restore the data file from the backup
    STEP 6: Recover the database using MAXSIZE
    위 예제는 Unix와 Windows 모두에 적용될 수 있다.
    STEP 6 는 다음과 같은 조건으로 두 번 수행될 것이다.
    1) MAXSIZE가 archive log size보다 작은 경우:
    이 경우 RMAN-6558 Error message를 만나게 된다.
    그러므로 MAXSIZE를 archive log보다는 크게 설정해야한다.
    2) MAXSIZE가 archive log size보다 큰 경우:
    예를 들어 여러 개의 archive log를 포함할 수 있을 정도로 크게 설정하면
    restore/recovery는 user에게 transparent하게 수행되어진다.
    즉 archive log들은 restore된 후 applied되고 deleted되어 진다. 다시 새로운
    archive log들이 restore되어지고 applied된 후 deleted 되어 진다. 이러한 작업은
    recovery가 끝날 때까지 반복되어진다. 이러한 작업들이 진행되는 동안 RMAN은
    아무런 Message도 발생시키지 않는다.
    # Step 1: INSERT enough new data to generate log switches
    create table rman_tst (col1 varchar2 (10));
    begin
    for i in 1..30000 loop
    insert into rman_tst values(i,'test');
    commit;
    end loop;
    end;
    # Step 2: BACKUP the database and the archive logs automatically
    # and then delete the input
    run {
    backup database format='/web01/usupport/krosenme/admin/backups/db_%d%s%t'
    plus archivelog format='/web01/usupport/krosenme/admin/backups/arch_%d%s%t'
    delete input;
    # Step 3: INSERT enough new data to generate new log switches
    begin
    for i in 1..30000 loop
    insert into rman_tst values(i,'test');
    commit;
    end loop;
    end;
    # Step 4: REMOVE users01.dbf file and crash the database
    mv users01.dbf users01.org
    shutdown abort
    # Restore is now needed as the data file is deleted. The backup was
    # taken before the new data was added to it, thus archive logs are
    # needed to bring the database up to date
    # Step 5: RESTORE the data file from the full backup
    run {
    restore datafile '/web01/usupport/krosenme/oradata/kro_920/users01.dbf';
    # Step 6: RECOVER
    run {
    recover database delete archivelog maxsize 10 K;
    # This will fail with RMAN-6558 as the archived log has a size of 16 KB,
    # which is bigger than MAXSIZE limit of 10 KB. So the error is expected
    # and MAXSIZE works as designed.
    # Now rerunning STEP 6: but with MAXSIZE 50 K
    run {
    recover database delete archivelog maxsize 50 K;
    RELATED DOCUMENTS
    Recovery Manager Reference, Release 2 (9.2)

    cold backup means offline backup, you shut database normally and copy datafiles to another location.
    i think operating system does not matter that much but it is RedHat Linux Enterprise Server.
    backing up archivelogs whith rman script which is:
    run {
    allocate channel c1 type disk format '$BKUPLOC/arch_%d_%u_%s_%p.bkp';
    change archivelog all validate;
    sql 'ALTER SYSTEM ARCHIVE LOG CURRENT';
    backup archivelog time between 'SYSDATE - (30*60/(60*60*24))' and 'sysdate';
    release channel c1;
    so here is the details.
    1. because everything is lost, we restored all files(datafiles, controlfiles, redologs etc) from offline backup meaning copied all files from another location to corresponding location.
    2. want to apply archive logs which were created after cold backup till disk failure and we have these archive logs with backups which were taken by rman.
    So
    first of all, we want to register these archive log rman backups(because these backup information does not exist in restored controlfile)
    and then restore them and then apply them.
    we need rman commands to register these backups and restore them.
    Regards,
    Kamil

  • How do I install itunes with Windows 7?

    how do I install itunes with Windows 7?  I always get a Windows Installer error or administrator error __

    Have tried: download but do not install iTunes, then turn off virus protection and firewall, restart computer, login as admin, then run the iTunes insallation.  After it installs, restart virus protection and firewall and logout and back in as standard user.
    Windows leaves installers running or still resident which conflict with the iTunes installer.

  • How do i install indesign with windows 8 on a pc

    how do i unstal indesign with windows 8 on a pc?

    Visit this page please: http://www.adobe.com/products/indesign/buying-guide.html and then on the right hand panel of the page you will find InDesign Annual plan to Join Adobe Creative Cloud to leverage the most updated features of InDesign CC. When you've purchased it, you'll be able to download the software through Adobe Download Assistant as a electronic download that you can save to your desktop or any other location. You can then doubleclick the installer executable to proceed with installation and activation later on as the installation completes. If you're having another version of InDesign (older version ) then please let me know if you already downloaded the installer and then waiting to install it on your Windows 8 PC.

  • How can restore my ipad with my mac even though I first reset it with another computer

    how can restore my ipad with my mac even though I first reset it with another computer

    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    Update and restore alert messages on iPhone, iPad, and iPod touch
    http://www.buybuyla.com/tech/view/012953a0d412000e.shtml
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
    iTunes: Specific update-and-restore error messages and advanced troubleshooting
    http://support.apple.com/kb/TS3694
    If you can't update or restore your iOS device
    http://support.apple.com/kb/ht1808
    Unable to restore from backup of a newer device
    http://support.apple.com/kb/ts3682
     Cheers, Tom

  • ThinkPad W530 with Windows 8 x64 Pro BSOD when connecting to projector

    Nine, that only covers Widows 7. Many people in this thread have reported the problem using Windows 8. Has that been addressed by Lenovo yet? Stability problems like this should NEVER be allowed to go so long without a resolution.
    Edit Note : This thread was created base from the previous thread "ThinkPad W530 with Windows 7 x64 Pro BSOD when connecting to projector. As we currently Cx reporting facing the same issue on Win8 I have seperated this thread in order not toconfuse other customer. For cutomers facing this issue please continue posting in this thread.

    Hi shan_mcarthur,
    Thanks for posting. I read through this thread again and noticed that most of customers here do indeed have Windows 7 installed as what the title represented unless I'm mistaken or may have missed out are you or anyone else here facing the same issue on Windows 8. If that is the case I'll be more than happy to bring this up with the teams but it will have to be a new thread though as I'd like to keep the resolution separate based on the OS use just to not confuse other customer .
    For those facing the same issue above on Win8, please do let me know so we can start a discussion around this.
    Do let me know.
    Regards

  • How to open pages documents with windows vista

    Does anyone know how to open pages document with windows vista? i saved it onto a usb stick but when i tried to open it on the computers in my university which support windows vista, it didnt reconise the file and opened with a page of question marks!!!! Im panicking now!!!!!
    Id appreciate any help!!! thanks!!!!!

    beckstarr wrote:
    Does anyone know how to open pages document with windows vista? i saved it onto a usb stick but when i tried to open it on the computers in my university which support windows vista, it didnt reconise the file and opened with a page of question marks!!!! Im panicking now!!!!!
    You cannot open it on Windows Vista. The only application in the world that opens a Pages document is Pages, and it is Mac OS X only.
    Your options:
    1. Find a Mac with Pages installed, and save the document as doc or pdf, which you can open on Vista.
    or, if that is impossible,
    2. Open the files in a texteditor like Notepad.exe on Windows and try to piece text fragments together to get at least part of your original text back. The images should also be available somewhere, even though all formatting is gone.

  • HT1600 how to connect appel tv with windows 7?

    HI how to use appel tv with windows 7???

    Turn on home sharing in iTunes and stream (same network and apple id).  If you want to mirror your pc you need a programme like reflectorapp or airparrot (www.airparrot.com) to do it, a third party app.
    regards
    jules

  • Thinkpad X300 with windows xp sp2 gets blue screen after standby.

    We have a Thinkpad X300 (with windows xp sp2) gets blue screen after standby. I mean after you close the lid then open it. Anyone has see this kind of behave before?
    Thanks,

    I have found the solution to this problem - hope you are still watching the thread.
    Express install in parallels seems to be the culprit. Do a custom install instead and set your own virtual hard disk size. I set mine to 12 Gb (12000 Mb)and made it a fixed size instead of "growing" or whatever the heck parallels calls it. I also chose shared network instead of "bridged" (I read that someone else had identified this as part of the problem).
    After making those changes it worked like a charm.

  • How does adobe encoder work with windows 8?  I can't get it to work.

    How does adobe encoder work with windows 8?  I cant get it to work.

    Flash Media Live Encoder doesn't work with Windows 8.
    The best it gets is Windows 7 64 bit.

  • How can I run MP350 with Windows 8.1 computer? Works OK with Windows 7 machine. Need drivers.

    How can I run MP350 with Windows 8.1 computer?
    It works OK with Windows 7 machine, using drivers from original CD.
    Windows 8,1 machine doesn't find those drivers (which I copied to its C drive).
    It doesn't find needed drivers on the internet.

    Hi Larry-R,
    I see that you made a later post regarding this.  Please refer to the answer on that post regarding your inquiry.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • I currently have a PC with Windows Outlook.  If I add an iPad to the mix, how does the iPad interface with Windows Outlook?

    I currently have a PC with Windows Outlook.  If I add an iPad to the mix, how does the iPad interface with Windows Outlook?

    Isn't Outlook simply an email client or a software application on a computer? You can add an email account - whatever email provider that you use - right on the iPad. You can sync your Outlook contacts and calendar if that is what you are asking about, but Outlook itself has nothing to do with the iPad.
    Message was edited by: Demo

  • How to restore iPhone 3gs with error code 1015 ??

    How to restore iPhone 3gs with error code 1015 ??

    The only advice we can give is to try and put it into DFU mode and restore. If that doesn't fix it, buy a new phone.
    There is a reason that Jailbreaking isn't supported. You have just been kicked in the donkey by it.

  • T61 with Windows 7: Fingerprint reader not working

    I downloaded and installed the fingerprint reader software for my T61 (7659-D22) with Windows 7. At the login screen I see the "Scan your finger" option, but none of my fingerprints is recognized, so I log on with my password.
    In Windows I get the Fingerprint popup inviting me to enroll fingerprints. Three are shown as enrolled already (carry over form WinXP, no doubt), all of which I had tried unsuccessfully at the login screen. I tried enrolling additional fingerprints, but the scans do not register at all.
    How do I solve this problem?
    Solved!
    Go to Solution.

    Hi Z300M,
    Are you using doman account? If you are then please go to
    Control Panel > Hardware and Sound > Biometric Devices > Change biometric settings
    And tick "Allow users to log on to a domain using their fingerprints"
    Fred
    T61 + X201i

  • Does Thinkpad T420 with Windows 7 home Premium support Windows 10 update

    Does the Thinkpad T420 running windows 7 Home Premium support the windows 10 upgrade? Also, my machine is very slow to start (3- 4 minutes). Will the upgrade to windows 10 help this issue?

    The T420 is not supported by Lenovo for Win 10. That doesn't mean that it would not mostly work, but it does mean that you will certainly have some 'adventures, along the way, and may find that some things just don't work with Win 10 - whether those things are important few you will depend very much on how you use your T 420.

Maybe you are looking for