Help Needed, Recovery Process

Hi, This is just a inquiry on how recovery works. First, I'll just add I have a Satellite L500-ST2522. I've looked through the manual and haven't found any answers. I have just made recovery DVDs, and am expecting a new hard drive either tommorow or Monday. My question is on how these discs work (I've got 3-Rocovery discs, 1 Windows Recovery Environment(64bit) disc, and a Toshiba Applications and Drivers disc.). I'm assuming that the HDD is unformatted on delivery. Am I to boot from one of the discs and if so which one do I boot with, they were burned in the order I listed them above. I'm sorry if this is a stupid question, I just want to have the process run as smoothly as possible. Any response would be greatly appreciated. 
Thanks.
         Dave

The Apps and Drivers disk is totally independent of the recovery process.  It's purpose is to restore an individual driver, utility, or application to an existing installation. 
The Windows Recovery Environment disk is also independent of the Recovery (restore) process. From Wikipedia:  "Windows Recovery Environment (WinRE) is a set of tools included in the Windows Vista, Windows Server 2008, Windows 7, and Windows Server 2008 R2 operating systems to help diagnose and recover from serious errors which may be preventing Windows from booting successfully. WinRE may be installed and/or booted from many media including hard disks (Hidden NTFS partition type 0x27), optical media (such as an operating system installation disc) and PXE (e.g. Windows Deployment Services). WinRE is based on WinPE 2.0.[1]"  It would be used for Startup Repair among other things.  See http://en.wikipedia.org/wiki/Windows_Recovery_Environment  for more information.  
If you don't post your COMPLETE model number it's very difficult to assist you. Please try to post in complete sentences with punctuation, capitals, and correct spelling. Toshiba does NOT provide any direct support in these forums. All support is User to User in their spare time.

Similar Messages

  • Help needed in Process Orders

    Dear All
    I have to track changes made in Process order in transaction COR2. I have the user exit, but I dont know which field would hold the changed value.
    Can anybody help.
    Points for sure..
    Regards
    Dinesh

    Solved on my own

  • F4 help needed in Process on value-request

    Hi,
    I have two fields on screen: region and its description in a dialog program. I want region description to be populated as soon as I  select F4 help for region. Description field is output only . I want to do it using a module in Process On value-request. Field p_region MODULE GET_REGION_DESCRIPTION.
    Using standard F4 help I can do it. If in my table I assign search help at field level for region. For example :
    Search Help: ZREGION_SHLP.  Selection method: ZREGION. Fields: Region and Description.
    Table name : ZREGION.
    i)   1st Fields:  REGION , Data Element - ZREGN, Domain: ZZREGN ( CHAR2), Value table: ZREGN. Assign Search help at field level instead of data element level.
    ii)   2nd Field: REGION_DESC, Data Element - BEZEI30.
    in program:  DATA: p_region like zregion-region. So if I press F4 help and select one region, description field gets populated.
    I don't want to use standard functionality but want to write code in POV event. If I use F4IF_INT_TABLE_VLUE_REQUEST  function module, I will get all the values associated with the field region. Since I don't know which region user has selected, i  can't populate description. How to get the selected value in POV for that particular field. How can I get the value selected for region and then use DYNP_VALUES_UPDATE function module to update the description field. I tried search help exit event return to return the selected value. How to pass that value in POV module  as you cannot use FORM ENDFORM . inside MODULE ENDMODULE.
    Regards,
    DPM

    1st step is:
    choose screen 2000 for the program using t-code se80.
    at the end of the coding enter the below code:
    process ON VALUE-REQUEST.
    FIELD screen field name module f4_zsearchhelp.
    after typing the code double click on f4_zsearch help.
    it ll ask for includes, Choose as main program.
    then enter the below code after choosing:
    DATA : t_dynpro_value TYPE TABLE OF dynpread,
    v_field_value LIKE LINE OF t_dynpro_value,
    lt_fields TYPE TABLE OF dfies,
    t_return_str TYPE TABLE OF ddshretval,
    w_return_str TYPE ddshretval,
    v_text TYPE char25.
    DATA: t_ty_prov_id TYPE STANDARD TABLE OF ty_prov_id,
    w_ty_prov_id TYPE ty_prov_id.
    CLEAR: t_ty_prov_id], w_ty_prov_id, t_return_str[, w_return_str.
    enter the select query from the description table to get the description for the particular code.
    in this i had mentioned with an example that i m getting description for massg :
    p9001-massg ll have the value and v_text ll have the description.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    DDIC_STRUCTURE = 'TY_TAB'
    retfield = 'MASSG'------>returning field
    PVALKEY = ' '
    dynpprog = sy-repid
    dynpnr = sy-dynnr
    dynprofield = 'P9001-ZMASSG'----
    > pass the screen field name
    STEPL = 0
    WINDOW_TITLE =
    VALUE = ' '
    value_org = 'S'
    MULTIPLE_CHOICE = ' '
    DISPLAY = ''
    CALLBACK_PROGRAM = ' '
    CALLBACK_FORM = ' '
    MARK_TAB =
    IMPORTING
    USER_RESET =
    TABLES
    value_tab = t_ty_prov_id
    field_tab = lt_fields
    return_tab = t_return_str
    DYNPFLD_MAPPING =
    EXCEPTIONS
    parameter_error = 1
    no_values_found = 2
    OTHERS = 3.
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    READ TABLE t_return_str INTO w_return_str WITH KEY retfield = 'P9001-ZMASSG'.
    IF sy-subrc IS INITIAL.
    READ TABLE t_ty_prov_id INTO w_ty_prov_id WITH KEY zmassg_desc = w_return_str-fieldval.
    IF sy-subrc eq 0.
    DATA: et_desc(20) TYPE c.
    et_desc = w_ty_agrtx-v_gtext.
    MODIFY SCREEN.
    CLEAR : v_field_value,t_dynpro_value[].
    v_field_value-fieldname = 'P9001-ZMASSG'.
    v_field_value-fieldvalue = w_ty_prov_id-action_resn.
    APPEND v_field_value TO t_dynpro_value .
    CLEAR : v_field_value.
    v_field_value-fieldname = 'V_TEXT'.
    v_field_value-fieldvalue = w_ty_prov_id-zmassg_desc.
    APPEND v_field_value TO t_dynpro_value .
    CLEAR : v_field_value.
    ENDIF .
    ENDIF.
    CALL FUNCTION 'DYNP_VALUES_UPDATE'
    EXPORTING
    dyname = sy-cprog
    dynumb = sy-dynnr
    TABLES
    dynpfields = t_dynpro_value
    EXCEPTIONS
    invalid_abapworkarea = 1
    invalid_dynprofield = 2
    invalid_dynproname = 3
    invalid_dynpronummer = 4
    invalid_request = 5
    no_fielddescription = 6
    undefind_error = 7
    OTHERS = 8.
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    you can add the v_text in layput .
    hope it ll satisfy your requirement.

  • Help needed with process to call an external web service from within ABAP

    Hello,
    I have an understanding of how I can provision web service from within SAP so that it can be consumed by external apps.
    Now, I am in need to know the, how I can call an external non-sap web service (let's say a java application) or even a public domain web service for that matter:
    Is there any lay man's guide out there? which will list following step:
    A sample ABAP program calling an external web service
    List of all the configurations needed within SAP to make this happen (calling an external web service).
    Any help will be greatly appreciated.

    Hi Matesh,
    Please use the following command in Google : site:sdn.sap.com abap consuming web service
    There is many samples of your needs on SDN.
    Like this one :
    http://wiki.sdn.sap.com/wiki/display/Snippets/WebServiceconsumerusingABAP-PROXY
    Regards, Gilles.

  • Help needed on processing-instruction

    Hi,
    I need to "relay" a processing-instruction from the source-message to the target-message. In the transformation-file, I've added the code
    <xsl:processing-instruction name="integration">
    <xsl:value-of select="/processing-instruction('integration')" />
    </xsl:processing-instruction>
    When I test the map from within JDeveloper, and when I run oracle.xml.parser.v2.oraxsl from the commandprompt, it works fine, but when I deploy the project to my esb-server, the processing-instruction is lost during the transformation.
    We run the standalone esb-installation.
    Regards
    Thomas

    I tried compling servlet, but it is raising error
    that coul not find package javax.servletWhat I did not mention... you need to add those JARs in the Classpath explicitly. You will find them in %TOMCAT_HOME%\common\lib. You atleast need to add servlet-api.jar to your Classpath. :)

  • Recovery help needed for Equium A300D-13X

    Hi all,
    After experiencing too many problems to list with my Equium A 300D 13X, both hardware and software, I decided to go ahead with a complete restoration to factory settings.
    My first step was to create 2 dvd recovery discs, using the Toshiba recovery disc creator.
    As far as I can tell, both recovery disc's were successfully created, insofar as the recovery disc creator said as such.
    Not knowing what step to take next, I started the laptop with the fist of the two recovery disc within the disc drive, thinking this would reset the laptop to it's factory settings, however it did not.
    Now when I start up the laptop I get the following message;
    BOOTMGR is missing
    Press Ctrl+Alt+Del to restart
    which restarts the laptop again displaying the above message.
    Pressing F8 on start up does nothing.
    Pressing F12, multi boot selection, brings up a Boot Menu with 3 options;
    HDD1: TOSHIBA MK2046GSX-(S1)
    CD/DVD: MAT****ADVD-RAM UJ-850S-(PM)
    LAN: Marvell Yukon 88E8040T
    If I select the CD/DVD option, a black screen with the text ;
    Windows is loading files
    is shown. I'am guessing this is the correct path to recovery,
    however after the following recovery utility screens regarding language selection etc, a text filled dialogue box
    X:\windows\systems32\cmd.exe
    runs through, but ultimately becomes static at the line:
    Copying F:\06948XSP.swm to V:\HDDRecovery\SWImg 1/6
    without successfully finishing the recovery process.
    Any help in resolving this problem would be greatly appreciated.
    Kind regards,
    Kev.

    > My first step was to create 2 dvd recovery discs, using the Toshiba recovery disc creator.
    > As far as I can tell, both recovery disc's were successfully created, insofar as the recovery disc creator said as such.
    What to say buddy you have done everything correctly.
    The recover disk has been created successfully (did you see a message saying this??).
    Booting from recovery disk should start the recovery procedure and you should follow the installation on the screen.
    Usually this should function.
    The error; BOOTMGR is missing says that boot manager on HDD has been deleted and its not possible to boot from HDD.
    You should boot from CD as you did; pressing F12 choosing CD/DVD drive
    Try to format the HDD again using another Windows CD.
    In such case you will need to set SATA mode to compatible in BIOS and then you could boot from WinXP CD.
    After that try the recovery disk again

  • HT5631 how do I verify my apple id? I can't sign in to it in mail and I can't make a new one because it just will not process I'm trying to set up iCloud between iPad and iPhone and having ALOT of difficulty pleAse help need it done by later on today!!!!!

    how do I verify my apple id? I can't sign in to it in mail and I can't make a new one because it just will not process I'm trying to set up iCloud between iPad and iPhone and having ALOT of difficulty pleAse help need it done by later on today!!!!!

    In order to use your Apple ID to create an iCloud account, the primary email address associated with the ID must first be verified.  To do this, Apple will send a verification email to your account and you must respond to the email by clicking the Verify Now link.  Make sure you are check the spam/junk folder as well as the inbox.  If it isn't there, go to https://appleid.apple.com, click Manage your Apple ID, sign in, click on Name, ID and Email addresses on the left, then to the right click Resend under your Primary Email Address to resend the verification email.

  • Compaq CQ56 154 laptop windows 7 recovery process fails. PLEASE HELP

    Compaq CQ56 laptop windows 7 recovery process fails because RM component runtime and no valid RP index. PLEASE HELP
    I have tried the recovery process on this laptop over 10 times now and with multiple new hdds and it seems like it comes to a fail at the very end.I have posted the error log that I get. Please help me out in regards to this. 
    The process completes unit and at the very end the error log gives this:
    Error encountered during RM component run time            
    Please contact RM team for investigation            
                        CopyRight @   SRD.cpp :   12                      CopyRight @   SRD.cpp :   13 SRD 1.1.0.0115 System Recovery Deployment, provided by CyberLink. (cNB)       
                        CopyRight @    SRD.cpp :  14           DeployRp:etSRDMode @ DeployRp.cpp : 3571 SetSRDMode 1          
                            wmain @    SRD.cpp :  73 Executing call 'L"drp.SetConfigIni('deployrp.ini')"'        
            DeployRp:etectMedia @ DeployRp.cpp :  371 Start to detect disks ...         
                  DeployRp:etUp @ DeployRp.cpp :  630 Get User Partition drive letter : c.        
            DeployRp:etectMedia @ DeployRp.cpp :  563 Disk Index : [HDD] 0, [N/A] -1         
          DeployRp:etTargetDisk @ DeployRp.cpp :  571 Start to load ini ...          
                  DeployRp:etUp @ DeployRp.cpp :  630 Get User Partition drive letter : c.        
                 DeployRp:etBp @ DeployRp.cpp :  643 Start to find Build Partition drive letter.        
                  DeployRp:etBp @ DeployRp.cpp :  650 Build Partition drive letter : c.         
          BuildConfig::LoadConfig @ BuildConfig.cpp :   28 Loading C:\RM\Tools\DeployRP\build.ini ...        
          BuildConfig::LoadConfig @ BuildConfig.cpp :  111 C:\RM\Tools\DeployRP\build.ini loading complete.       
                            wmain @    SRD.cpp :  83 Executing call 'L"drp.LoadBuildIni()"'         
           DeployRp::CheckRpExist @ DeployRp.cpp :  713 Start to check whether Rp exists.        
           DeployRp::CheckRpExist @ DeployRp.cpp :  750 Recovery Partition doesn't exist.        
    DeployRp::CheckSystemRecoveryDoneFlag @ DeployRp.cpp : 757 Start to check whether SystemRecoveryDone.flg exists.     
    DeployRp::CheckSystemRecoveryDoneFlag @ DeployRp.cpp : 794 SystemRecoveryDone.flg doesn't exist.      
           DeployRp::InstallMSXML @ DeployRp.cpp : 1248 Start to install MSXML6.dll         
           DeployRp::InstallMSXML @ DeployRp.cpp : 1292 Install MSXML6.DLL complete.        
          DeployRp::CreateLangIni @ DeployRp.cpp :  331 Create Lang.ini command: C:\RM\Tools\DeployRP\CreateLangIni.exe c     
         DeployRp::CheckSSRDFlags @ DeployRp.cpp : 1044 Start to check if SSRD flags exist        
         DeployRp::CheckSSRDFlags @ DeployRp.cpp : 1061 SSRD flags do not exist         
         DeployRp::CheckSSRDFlags @ DeployRp.cpp : 1063 Check if SSRD flags exist complete        
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1363 Creating BootRM.wim ...         
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1374 Start to do setting.         
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1377 SetWimImageDstPath.         
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1382 Check tool existence.         
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1385 Tool Path: c:\RM\Tools\opktools\dism.exe       
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1389 Dism.exe exists.         
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1392 SetWimMountPath.         
        CWimMgr:etWimMountPath @ WimMgr.cpp :  199 Wim File Mounting Path = C:\RM\Tools\DeployRP\mount\      
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1397 SetLanguagePacksPath.         
       DeployRp::CreateBootRMWim @ DeployRp.cpp : 1402 SetToolsPath.          
            CWimMgr:etToolsPath @ WimMgr.cpp :  213 [SetToolsPath] lpszToolsPath = c:\RM\Tools\opktools\      
          CWimMgr:etToolsPath @ WimMgr.cpp :  220 [SetToolsPath] m_szDISMExeFullPath = c:\RM\Tools\opktools\dism.exe     
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1406 Setting complete.         
       DeployRp::CreateBootRMWim @ DeployRp.cpp : 1411 Start to do Initialization.         
             CWimMgr::InitWimMgr @ WimMgr.cpp :  358 Windows PE Source Path = c:\RM\RP\sources\boot.wim      
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1420 Initialization complete.         
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1423 Start to mount WIM image.        
           CWimMgr::MountWimImage @ WimMgr.cpp :  437 Temp Working Path = C:\RM\Tools\DeployRP\temp\      
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1426 Mount WIM image complete.        
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1431 Start to setup language packs...        
       DeployRp::GetSupportedLang @ DeployRp.cpp : 1639 Lang.ini path: c:\RM\Tools\DeployRp\lang.ini       
       DeployRp::GetSupportedLang @ DeployRp.cpp : 1678 Supported Languages :           
        CWimMgr:etWinPELanguage @ WimMgr.cpp : 1134 CWimMgr:etWinPELanguage - Enter       
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1437 Setup language packs complete.        
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1443 Start to setup tool's language packages...       
            CWimMgr:etupPackage @ WimMgr.cpp : 1327 Package does not exist: c:\RM\Tools\DeployRp\WinPE_LangPacks\64\winpe-setup.cab   
            CWimMgr:etupPackage @ WimMgr.cpp : 1327 Package does not exist: c:\RM\Tools\DeployRp\WinPE_LangPacks\64\winpe-Scripting.cab   
            CWimMgr:etupPackage @ WimMgr.cpp : 1327 Package does not exist: c:\RM\Tools\DeployRp\WinPE_LangPacks\64\winpe-SRT.cab   
            CWimMgr:etupPackage @ WimMgr.cpp : 1327 Package does not exist: c:\RM\Tools\DeployRp\WinPE_LangPacks\64\winpe-WMI.cab   
            CWimMgr:etupPackage @ WimMgr.cpp : 1327 Package does not exist: c:\RM\Tools\DeployRp\WinPE_LangPacks\64\winpe-wds-tools.cab   
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1450 Setup tool's language packages complete.       
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1452 Start to un-mount WIM image...        
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1455 Un-mount WIM Image complete.        
            DeployRp::CalculateRp @ DeployRp.cpp : 1696 Start to estimate recovery partition size ...       
            DeployRp::CalculateRp @ DeployRp.cpp : 1709 base.wim.wim size : 12452203405 bytes.        
            DeployRp::CalculateRp @ DeployRp.cpp : 1725 install.log file size : 623780 bytes.        
            DeployRp::CalculateRp @ DeployRp.cpp : 1735 WinRE and WinPe files size : 281055618 bytes.       
            DeployRp::CalculateRp @ DeployRp.cpp : 1740 RM Software size : 63933517 bytes.        
            DeployRp::CalculateRp @ DeployRp.cpp : 1745 BootRM.wim size : 268793098 bytes.        
            DeployRp::CalculateRp @ DeployRp.cpp : 1750 Patch Folder size : 369308088 bytes.        
            DeployRp::CalculateRp @ DeployRp.cpp : 1755 File4Rp Folder size : 0 bytes.         
            DeployRp::CalculateRp @ DeployRp.cpp : 1761 Extra space : 2371154178 bytes.        
            DeployRp::CalculateRp @ DeployRp.cpp : 1766 Prevented Extra size : 0 bytes.        
            DeployRp::CalculateRp @ DeployRp.cpp : 1776 Recovery Partition estimated size : 15807695464 bytes.      
            DeployRp::CalculateRp @ DeployRp.cpp : 1777 Recovery partition estimation complete.        
               DeployRp::CreateRp @ DeployRp.cpp : 2072 Start to create recovery partition ...        
                    DetToolRpInfo @ DeployRp.cpp :  122 PartitionCount: 4. PartitionType: 0. PartitionNumber: 0. PartitionStartAddr: 0 bytes. PartitionLength: 0 bytes  
                    DetToolRpInfo @ DeployRp.cpp :  122 PartitionCount: 4. PartitionType: 12. PartitionNumber: 3. PartitionStartAddr: 79917219840 bytes. PartitionLength: 108093440 bytes
                    DetToolRpInfo @ DeployRp.cpp :  122 PartitionCount: 4. PartitionType: 7. PartitionNumber: 2. PartitionStartAddr: 209715200 bytes. PartitionLength: 73013395456 bytes
                    DetToolRpInfo @ DeployRp.cpp :  122 PartitionCount: 4. PartitionType: 7. PartitionNumber: 1. PartitionStartAddr: 1048576 bytes. PartitionLength: 208666624 bytes
                    DetToolRpInfo @ DeployRp.cpp :  156 Can't find valid Rp index.         
               DeployRp::CreateRp @ DeployRp.cpp : 2090 Invalid Rp index          
                            wmain @    SRD.cpp :  93 Executing call 'L"drp.Deploy()"'         
                            wmain @    SRD.cpp :  38 Output            
    ERROR: call L"drp.Deploy()" failed.             
                           wmain @    SRD.cpp :  38 Output - Returned HRESULT = 0xe0ef002f    

    Hello k877
    I am sorry to hear you are having issues reinstalling your operating system. I am providing you with a link here to a document titled Recovery Disk Creation Error Codes (Windows 7). Now document is for creating the recovery disks but the error is showing up in your error log (0xe0ef002f). The error according to the document is the File/directory does not exist. It looks like a function call Deploy() is attempting to access this File/directory and is unable to.
    This leads me to think that it is the disks that you are using. It would stand to reason anyways as you state you have tried this on multiple hard drives. A good test would be to check to see if your error in the error log is the same every time. If it is happening at the same point each time then simply order a new set of discs from here.
    I hope this resolves your installation issue. Thank you for posting your question on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • [HELP] need TX2 recovery DVD/Image

    [HELP] need TX2 recovery DVD/Image HP won't repair it b/c i dont have the original software....can someone provide me an image or i will pay $ for DVD plz full model is TX2-1024CA

    That is a notebook PC. Maybe this document will help? http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00810334&cc=us&dlc=en&lc=en&jumpid=reg_R1002_US...
    ... an HP employee expressing his own opinion.
    Please post rather than send me a Message. It's good for the community and I might not be able to get back quickly. - Thank you.

  • I need recovery a photos that I losse from one comparting secuence that I have This is posible?? Thanks for any help.

    I need recovery a photos that I losse from one comparting secuence that I have This is posible?? Thanks for any help

    Hello:
    The password should be your administrator password.
    Barry

  • URGENT HELP NEEDED - iPhone 3Gs no longer detected or charged by MacBook

    My iPhone 3Gs (3.1) has been running fine, until several hours ago today, when I plugged it to my MacBook, the iPhone is no longer detected - it doesn't show up in iTunes, nor it is charged. I tried opening iPhoto, and it wasn't there too. Not with Image Capture too. I tried charging it using the out-of-box wall charger using the same out-of-box USB cable I use for MacBook, and it can be charged without any problem. Then I put it into Recovery mode, and there iTunes can see it. I don't want to restore it before I figure out exactly what went wrong, as I don't want the restore process somehow gets stuck in the middle that the connection is lost again.
    I've tried reinstalled iTunes, including completely removal of Apple Mobile Device Support, as instructed by Apple. But still no luck.
    I've tried switching to another USB port of my MacBook. No luck.
    My iTunes is the latest 9.0.1, and my Mac OSX is 10.6.1. My iPhone is on 3.1, upgraded from 3.0.
    I've read from web that it seems I'm not the only one out there having this problem. But none of them seem having any real working solution.
    Urgent help needed & appreciated. Millions of thanks in advance.
    Gary

    1. I used both cables - theirs & mine ... and on several macs
    2. yes, same cable for wall & mac
    3. as said, i did completely remove & install itunes (incl. apple mobile device support), as instructed on the apple webpage
    anyway, did a restore just now. it seems okay now. but the problem is i have no idea what cause this, and i can't replicate the problem. so i don't know when it will happen again ... maybe a bug with os 3.1 ... others on web said os 3.1 is quite buggy ...

  • Satellite Pro L300-152: Deleted reocvery folder - But need Recovery DVD

    Hi, i recently purchased a laptop from toshiba*
    I accidently deleted the folder on my 'data' drive via formating the drive.
    I was told i needed that folder within the hard drive to create my recovery disk
    Now that folder is gone.
    Is there any way in which i can still CREATE the disk or DOWNLOAD/AQUIRE the folder to use for the recovery process to create disk ??
    Without resorting to paying for a new disk - [ which costs nearly &pound;30 !!
    Please try to help as i am stuck here ...
    Thanks

    There is nothing you can do. Either you order new copy or use Microsoft installations DVD for clean OS installation.
    The drivers, tools and utilities you can find on Toshiba support page under http://eu.computers.toshiba-europe.com > Support & Downloads.
    Good luck!

  • Start recovery process on standby database after Windows reboot

    Hi all,
    I have a data guard configuration on Oracle 10.2.0.4 for Windows.
    What I need is to mount and start recovery process automatically after Windows Server restart.
    How can I do that ?
    Thanks in advance.

    Here's what I found :
    sleep 60
    REM Start the database
    %ORACLE_HOME%\bin\sqlplus -s "/ as sysdba" @startup.sql
    exit
    startupmount.sql -- Copy this under ORACLE_HOME/bin directory
    -- start the database
    startup mount
    alter database recover managed standby database disconnect from session;
    exitSorry, no way to test on my end.
    The other thought is to hack oradim
    But I'm thinking this might only do the startup mount.
    Best Regards
    mseberg
    Edited by: mseberg on Feb 15, 2012 1:10 PM
    This would need some work but it may help
    @echo off
    sc query "OracleOraDb11g_home1TNSListener" | findstr /i running
    IF "%ERRORLEVEL%"=="0" (GOTO :RUNNING) ELSE (GOTO :STOPPED)
    :STOPPED
    ECHO NOT RUNNING
    net start "OracleOraDb11g_home1TNSListener" | sc query "OracleServiceSCT" | findstr /i running | if NOT "%errorlevel%"=="0" net start oracleservicesct
    GOTO :END
    :RUNNING
    ECHO RUNNING
    net stop "OracleOraDb11g_home1TNSListener" | sc query "OracleServiceSCT" | findstr /i running | if "%errorlevel%"=="0" net stop oracleservicesct
    GOTO :END
    :ENDEdited by: mseberg on Feb 15, 2012 1:17 PM

  • Recovery process

    I am trying to understand the oracle recovery process.
    Let's say User.dbf file got lost.. I made a back up copy last night.. ( currently DB is in the archived log mode)
    Here is the steps that I am going to follow to recover the DB
    1) shutdown the DB
    2)copy the back up file to the data file location
    3)startup mount
    4)set autorecovery on
    5)recover database;
    6) alter database open;
    are these all steps that I need to follow to bring the DB back online?
    I Am trying to recover DB up to the current point in time.. if I say set autorecovert on, will it recover to the curent pont it time by using redo logs?
    what about the archived log files? when does these files are going to be used during the recovery process? I am trying to recover DB for the yesterday's backup file..
    I am trying to understand the recovery process and make sure no data got lost since the last backup...

    First try to learn about archive-log files. Archive-log files are the offline copies of your redo-log files, archive-log files generates when one redo-log file filled and switch to other redo-log file, during this period, then archiver back ground
    process copies the content of your redo-log file to archive location. When you fire
    recover database, the oracle automatically looks out for the redo-log files and archiive-log files, whic ever required with the help of controlfile, because all the it stores the location of your redo-log and archve-log files.If I still miss some-thing, your can get back to us.
    hare krishna
    Alok

  • Recovery processes

    Hi All,
    Please help me in solving below issue
    Recovery processes
    A recovery process needs to be developed in B2B
    PO transaction or PO change errors out in B2B
    PO changes which updates the above PO is received
    The recovery process must insure that:
    a.     Dependent transactions to the errored transaction are not sent out of sequence
    b.     Once the correction is made to the transaction that has dependent all transactions are to be sent in the correct sequence

    Hi CNU,
    I reviewed the log you sent. Your B2B is not at all trying to send back the MDN because incoming message errored out before agreement identification with error "AIP-50083: Document protocol identification error". This error is coming beacuse your supplier is not sending payload in proper format (as you mentioned, he is sending only "this is a test file").
    If you want to do a connectivity test, please ask your supplier to send a message from his B2B and this message should be in a proper format and all the required headers should be present.
    and also while i am trying to do telent to that server it showing below result....The telnet results show that your machine is not able to connect to the target endpoint. This may be due to that your supplier has a firewall which is not allwing you to access that link. Make sure that your supplier has opened the port (at his firewall) for your B2B system's IP range. This is a typical n/w issue.
    Regards,
    Anuj

Maybe you are looking for

  • PLANNING CALENDER IN LOT SIZE

    Hi What is the function of Planning Calender in Lot Sizing procedure in SNP.

  • Ipad mini retina low volume

    I just got the mini ipad w/retina. I noticed that the volume is toooooooo low. I barely hear the sound. So disappoint. Can I return it? I have an engrave version though. Or can anyone tell me how to fix it?

  • Updated to iOs5 lost everything! Help?

    So I updated my phone to iOS5 and this is what happens. I lose everything. Cannot restore from backup, nothing. Heres the rundown : This is the message I get when I plug it in "iTunes was interrupted while restoring the contents of the iPhone "Gayla'

  • Is there anymore updates for Nokia 5800 XM??

    Hi, I would like to know if there is anymore firmware updates for Nokia 5800 XM after V52.0.007? Can anyone provide me with the news? I am a huge fan of Nokia and their Symbian platform.. But I am getting more and more disappointed with them. I canno

  • Menubar not changing when app changes.

    Sometimes when I switch applications, the menubar does not change to the menubar of the current application. The actual menu items are there, but what I see is the previous app's text menus. It seems most often it is Finder's menu that I see instead