About Recovery ....plz help

i am having a confusion about recovery....when i try to make recovery it says that "the pc will be set to factory state"...........it means does the recovery formates only C drive data or the entire drives data.
This question was solved.
View Solution.

If the recovery type that you choose will format and partition only the Windoiws partition it will state that.
If you choose a factory image recovery, then the entire hard disk will have the partitions deleted, then repartitioned  and formatted as appropriate in the OEM factory partition scheme as delivered.
If you choose minimal system recover then only the C: (Windows) partition will be deleted,formatted and recreated with minimal HP software.
****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
2015 Microsoft MVP - Windows Experience Consumer

Similar Messages

  • Formula on date....plz help

    Hi All,
    I have a reporting requirement in which i have to do compariosn between different dates.
    Mutliptovider contains following fields
    Contract (char)
    Move In date (char DATS)
    Move Out date (char DATS)
    Consumption(key fihure)
    Status(need to calculate)
    There will be user entry which can be any date (report start date & report end date).
    now I have to do following comparison
    Status = active if[ ( Move in date <report start date & report start date <Move out date<report end date) or (move in date < report start date & move out date> report end date) or (report start date< move in date< report end date & move out date > report end date) else In active
    if anyone has any idea about it plz help
    Regards
    Sonal

    Hi Sonal,
    Firstly, create four formula variables
    1) Move In date
    2) Move Out date
    3) Report start date
    4) Report end date
    Now you need to display status as active or inactive. This cannot be done at query level. For this you could create two characteristics 'Status1' with text table value 1-Active  and 'Status2' with text table value 2 - Inactive. And create two formula variables for the same. (This way one formula variable will always show 'Active' and the other 'Inactive')
    Now create the following formula (with formula variables in place of the characteristic descriptions);
    [ ( ( Move in date <report start date) * (report start date <Move out date<report end date)) +
    ((move in date < report start date) * (move out date> report end date)) +
    ((report start date< move in date< report end date) * (move out date > report end date)) * Status1] + Status2
    Try out this formula in case you dont have any simpler solution yet, but this will definitely work.
    Kindly let me know if this was what you required and whether it was helpful.
    Regards,
    Shruti

  • Hi guru's i  am learning ,i am learning user exists plz help me

    hi guru's i  am learning ,i am learning user exists , i don't know anything about that plz help me lie realtime oriented

    Hi
    USER EXIT
    EXIT s are nothing but the R/3 Enhancements which allows you to add your own functionality to SAP’s standard business applications without having to modify the original applications.
    Purpose
    To introduce the techniques of enhancement in standard SAP system. SAP creates customer exits for specific programs, screens, and menus within standard R/3 applications. These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-on functionality onto these hooks.
    Use
    They do not affect standard SAP source code.
    When you add new functionality to your SAP System using SAP’s exits, you do not alter the source code of standard SAP programs in any way. The code and screens you create are encapsulated as separate objects. These customer objects are linked to standard applications, but exist separately from SAP’s standard software package.
    They do not affect software updates.
    When you add new functionality to your SAP System using SAP’s exits, your objects (called customer objects) must adhere to strict naming conventions. When it comes time to upgrade a to a new software release, customer objects’ names ensure that they will not be affected by any changes or new additions to the standard software package.
    Challenges
    Customer exits are not available for all programs and screens found in the SAP System.
    Modifications
    Any change made to an SAP object in a customer system is called a modification. Customers usually modify their systems for one of two reasons. Either they make changes to the SAP standard in order to adjust the R/3 System to their specific business needs (actual modifications), or they alter individual SAP objects in order to correct an error (as recommended in an SAP error note).
    You should only modify the SAP standard if the modifications you want to make are absolutely necessary for optimizing work flow in your company. Be aware that good background knowledge of application structure and flow are important prerequisites for deciding what kind of modifications to make and how these modifications should be designed.
    need
    ABAP DICTIONARY
    Table Enhancements: There are two ways that you can add additional fields to tables without modifying your system.
    Append Structures:
    Append structures allow you to enhance tables by adding fields to them that are not part of the standard. With append structures, customers can add their own fields to any table or structure they want.
    Append structures are created for use with a specific table. However, a table can have multiple append structures assigned to it.
    Customizing Includes:
    If customers know in advance that one of the tables or structures delivered to them by SAP needs to have customer-specific fields added to it, an SAP application developer can include these fields in the table using a Customizing include statement.
    The same Customizing include can be used in multiple tables or structures. This provides for consistency in these tables and structures whenever the itself include is altered.
    Append structures allow you to attach fields to a table without actually having to modify the table itself.
    Append structures may only be assigned to a single table. A table may, however, have several append structures attached to it. Whenever a table is activated, the system searches for all active append structures for that table and attaches them to the table. If an append structure is created or changed and then activated, the table it is assigned to is also activated, and all of the changes made to the append structure take effect in the table as well.
    You can use append structures in ABAP programs just as you would any other structure.
    Note: When you copy tables that have append structures attached to them, the fields that were found in the append structure of the original table become part of the actual body of the target table.
    Some of the tables and structures delivered with the R/3 standard contain special include statements calling Customizing includes. These are often inserted in those standard tables that need to have customer-specific fields added to them.
    In contrast to append structures, Customizing includes can be inserted into more than one table. This provides for data consistency throughout the tables and structures affected whenever the include is altered.
    Customizing include programs are part of the customer namespace: all of their names begin with 'CI_'. This naming convention guarantees that nonexistent Customizing includes do not lead to errors. No code for Customizing includes is delivered with the R/3 standard.
    You create Customizing includes using special Customizing transactions. Some are already part of SAP enhancements and can be created by using project management (see the unit on 'Enhancements using Customer Exits').
    The Customizing include field names must lie in the customer namespace just like field names in append structures. These names must all begin with either 'YY' or 'ZZ'.
    When adding the fields of a Customizing include to your database, adhere to same rules you would with append structures.
    ABAP DICTIONARY
    Field Exits:
    Field exits take you from a screen field with a data element reference to a function module. Field exits can be either global or local.
    Field exit function modules adhere to the following naming convention:
    prefix: FIELD_EXIT_
    name: <data element name>_
    suffix (optional): 0 to 9, A to Z
    Text Enhancements:
    Possible text enhancements include customer keywords and customer documentation of data elements.
    Text enhancements differ from other application enhancements in that they take effect globally in all related SAP applications after activation (global enhancements).
    Customer Exits
    Function Module Exits
    Menu Exits
    Screen Exits
    Function Module Exits
    Function module exits add functions to R/3 applications. Function module exits play a role in both menu and screen exits. When you add a new menu item to a standard pull down menu, you use a function module exit to define the actions that should take place once your menu is activated. Function module exits also control the data flow between standard programs and screen exit fields.
    Menu Exits
    Menu exits add items to the pull down menus in standard SAP applications. You can use these menu items to call up your own screens or to trigger entire add-on applications.
    SAP creates menu exits by defining special menu items in the Menu Painter. These special entries have function codes that begin with "+" (a plus sign). You specify the menu item’s text when activating the item in an add-on project.
    Screen Exits
    Screen exits add fields to screens in R/3 applications. SAP creates screen exits by placing special sub screen areas on a standard R/3 screen and calling a customer sub screen from the standard screen’s flow logic.
    Exits are basically the hooks whcih SAP has provided to add your own code. There are two types of Exits:
    1. Customer exits: Implemented as Function Modules within z includes. Anybody can change it and no access key is required.
    2. User Exit: Implemented as subroutines within includes (any include except y or z includes). You need access for the specific include and then you can any subroutine (user exit) within that Include.
    BADIs are the enhanced version of user exits where the same logic is implemented via classes and object (OOP)
    Enchancement point is the latest once introduces with ECC6.0 . Not very sure about that but you can change it without any access key.
    Please go through the following link which will help you understand the exits in a much better way:
    http://help.sap.com/saphelp_nw04/helpdata/en/bf/ec07a25db911d295ae0000e82de14a/content.htm
    http://www.sap-img.com/abap/what-is-the-difference-between-smod-and-cmod.htm
    http://sap.niraj.tripod.com/id21.html
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/frameset.htm
    http://www.sap-img.com/ab038.htm
    User Exits.
    http://www.erpgenie.com/sap/abap/code/abap26.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    customer exits
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f1a7e790-0201-0010-0a8d-f08a4662562d
    Menu Exit.
    http://www.sappoint.com/abap/spmp.pdf
    http://www.sappoint.com/abap/userexit.pdf
    http://www.sapdevelopment.co.uk/enhance/mod_sapmenu.htm
    http://www.sapdevelopment.co.uk/enhance/enhancehome.htm
    USER EXIT
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    http://www.sap-img.com/ab038.htm
    http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci982756,00.html

  • How to proceed to upgrade from SP9 to SP16? plz help.

    Hi All,
       I am new to MI.
       We have installed WAS6.40(ABAP+J2EE) SR1 installation and on SP9 now.
       We want to move to SP16.
       Can any1 guide us on the following points:
         1) Do we have to do any configuration (of MI) part now and then move to SP16?
         or
         2) Can we apply SP16 patch first on WAS and then do the MI configuration.
    We have gone through some documents on SDN .. but, we are not very sure of how to go about from this point.
    Would be grateful.. if some1 can share us any screenshots of procedure to go about.
    Plz help.
    Thanks.
    Nilesh.

    hi Nileshwar,
    Welcome to MI.
    >>Do we have to do any configuration (of MI) part now and then move to SP16?
    >>2) Can we apply SP16 patch first on WAS and then do the MI configuration.
    If u use the SP16 Config guide, you won't find certain things (missing steps) in SP9 Level. So, if you Upgrade first and then configure, you will be able to do it successfully.
    if you had already done some configuration in SP09, they won't get deleted/corrupted if you upgrade. they will stay. you may cotinue it from that point after upgradation.
    The Config guide that you get from the Service Market Place, is clear enough for any NewBie's to work on.
    regarding the upgradation of WAS, as far as i know there are no documentation available for upgradation.
    The upgradation goes like this :-
    *. Stop the server
    1. Kernal Patch - after this start the server.
    2. SPAM Patch - Transaction code SPAM in client 000 user DDIC.
    3. ABAP Patch - Transaction code SAPM in client 000 user DDIC.
    4. J2EE Patch - A Installable like SAPinst.exe file
    You can jump from sp09 to sp14 for J2EE stack right away.
    But for ABAP patches, you should go step by step. ie. you have to add patches 09,10,11,12,13,14 - all of it can be found from Service.sap.com/swdc. you may do it at one go - by putting them in a queue in SAPM and let the system do it one by one. The same procedure for SPAM Patches (level 19) - yours will be in level 17.
    Kernel patch is just copy pasting the files into its directory. it will get over in no time.
    Regards
    Ak.
    PS: Pl. Post only one question for the problem. i guess you have done more. so please close the other question.

  • My phone stuck  in black screen not go to recovery mond even not rest or dfu....plz help

    hi
    after i try to update my ios to 5.1.1...my phone stuck  in recovery mond>>>
    then i try  dfu and hard reset but no efficient ...then i google srch for a solutions  and heard about redsnow ang some similar  app>...they dont work either ....at first it was in recover mode but now its on a black screen....i cant do anything ...not dfu not anything ....p.s my pc doesn't  recognize my phone anymore ....plz help!

    plz help...its so important

  • My Ipod Classic 160 GB is stuck in Recovery Mode? Plz help!

    Hi, My Ipod is new I just bought it in September about to die done everything for it to recover since it was not syncing now it gave me an error mesage and it's stuck in Recovery Mode plz help!

    sabrinac wrote:
    Hi I tried your method but it doesn't work. I have tried resetting, restoring and it keeps going back to recovery mode. It has been 4 days already ...
    Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first...

  • I was updating my iphone to ios 8 and it went into recovery mode. i went onto itunes to fix it and it said i needed to update my phone. when i clicked on it it said it would take 500  hrs and kept going on, then it would crash. plz help. :(

    yesterday i tried updating to Ios 8. i new there were going to be some problems but i decided to do it. i started the update and less than a half hour into it my phone completely crashed.it went into recovery mode so i connected it to iTunes. i hit restore and update . it gave me and estimated time that kept going up. finally when it got to 800 hours it stopped and said an error occurred. i tried it again and the same error occurred. i am very disappointed in this because i greatly need my phone for school and other important things. i wasn't gonna wait that time anyway. i would like to know if there is anyway i don't have to update, get out of this screen without waiting forever, speed up the time, or get my computer to not crash when it gets to so many hours. (i have windows) plz help me out asap!!!

    I have experienced a similar error with the iPhone 4S.  The new version of iTunes will not let me restore the phone, it must be updated and nothing appears to be happening.  Suffice it to say I am not amused.  Apple needs to work this out - I had trouble updating to 8.0.2 as well.

  • Which is the best for me?plz help me .I've more confusing about my Career.

    I've done B.E Computer Science and Engineering year of 2013. Currently i'm doing IT-Support Engineer job. I've only 7 months experience. But i know how to install,Mounting of the blade server.but i don't know about windows servers.but i can install server
    OS.i have lot of confusion and fear also,about my career.which is suitable for me?plz help me.frnds. 

    Hi, Ravi.
    Based on your experience, you may want to start working your way to earning an MCSA for Windows Server 2012 R2. It requires you to pass three exams. The first exam you may want to take on is 70-410 which is on install Windows Server 2012.
    Here is the MCSA: Windows Server 2012 certification title description:
    http://www.microsoft.com/learning/en-us/mcsa-windows-server-certification.aspx
    As you can see, it will require you to pass three exams. Here they are:
    70-410 Installing and Configuring Windows Server 2012
    http://www.microsoft.com/learning/en-us/exam-70-410.aspx
    70-411 Administering Windows Server 2012
    http://www.microsoft.com/learning/en-us/exam-70-411.aspx
    70-412 Configuring Advanced Windows Server 2012 Services
    http://www.microsoft.com/learning/en-us/exam-70-412.aspx
    Microsoft offers free online training through different web sites. Consider these as a few of the many resources you can use to study for these exams.
    TechNet
    http://technet.microsoft.com/en-US/
    Microsoft Virtual Academy
    http://www.microsoftvirtualacademy.com/
    By the way - if you are still in school and prefer a more entry-level certification, you can also consider the MTA certification track designed for college students:
    http://www.microsoft.com/learning/en-us/mta-certification.aspx
    Good luck!
    Best wishes, Davin Mickelson

  • Hii i m frm BGD. I m using iphone 5. My carrier BGD ROBI AXIATA. When it was ios 6 it works better . But i recently upgrade to ios 7 and i facing the little problem. One of the ussd call. Plz help or suggest ir doing better about itz as soon as possible.

    Hii i m frm BGD. I m using iphone 5. My carrier BGD ROBI AXIATA. When it was ios 6 it works better . But i recently upgrade to ios 7 and i facing the little problem. One of the ussd call. Plz help or suggest ir doing better about itz as soon as possible.

    I'm not trying to minimize your issues, but I have an iPhone 5S and find that I have not had these types of problems on AT&T. I'm wonding if something has gotten stuck in a loop that is continually trying to use data. If you make a good backup of your phone, try restoring it as new, and do not add anything to the phone right away. Let the device run like this for a little while and see what kind of usage you have. You report you phone is showing usage of 21GB. Did you rese this setting on the phone to begin at your billing period? The reason I ask this is some people believe this setting resets on its own with your billing period, it does not. This has to be manually reset by the user, so it might not be that accurate depending on the last time that you reset it.
    If the phone seems to not use so much extra data during the period the device does not have extra apps on it, then try restoring from your backup and see what happens. If this increases your data usage quite fast again, then there is probably something corrupt in the backup that is causing this issue.

  • I gotta problem with security question recovery email I'd, mistakenly I entered wrong email I'd so now I want to edit that I'd plz help me

    I gotta problem with security question recovery email I'd, mistakenly I entered wrong email I'd so now I want to edit that I'd plz help me

    expresslane.apple.com to get a hold of itunes to reset them by email the only way

  • I m a new user plz give me icloud account bt previous owner she dead and i dont know about this information this phone. plz Help me icloud account as early as possible

    i m a new user plz give me icloud account bt previous owner she dead and i dont know about this information this phone. plz Help me icloud account as early as possible

    Apple is not here and will NOT give you the information. Contact the relatives of the "dead" owner.

  • Hi plz help me about Illustrator CS5

    i wanted to know how i turn off my pdf compatibility in Illustrator CS5. i m using the middle east version of CS5. when i m going to save my arabic font it is giving error cannot save the file as the font could not be embedded because of licensing restriction plz turn off your pdf compatibility and then try again.
    plz help me about this error how i solve this error and i can save this file with font.

    Even if you could uncheck the PDF compatibility option--I don't have the Middle Eastern version so cannot look for it--no one would be able to read the PDF except those with the exact font installed on their system.
    Can you use a font that allows embedding?
    Take care, Mike

  • Plz help?????????/tell me e-book of recovery manager. its very urgent

    plz help?????????/tell me e-book of recovery manager. its very urgent
    its very urgent

    Satyaki De was asking how to get the ¿ character. I never said it was how you managed to get it. :))
    Satyaki, I have windows Vista on my laptop. It's very pretty but does little more than windows XP as far as interface goes.
    ;)

  • Plz Help, i downloaded ios8 on my 5s and it went to recovery mode after clicking installation.then downloaded by itunes and loaded but cant find my apple ID as i forgot everything. the phone is useless and cant be activated. wot can i do????plz help

    Plz Help,
    the last night  i downloaded ios8 on my 5s and it went to recovery mode after clicking installation.
    then downloaded the ios8 using itunes and loaded but cant find my apple ID as i forgot everything.
    the phone is useless and cant be activated. wot can i do????plz help

    Apple has a number of ways to help you find your Apple ID and password:
    https://iforgot.apple.com/appleid
    If you forgot your Apple ID password
    Apple ID: Contacting Apple for help with Apple ID account security

  • Plz help me about my Iphone  5s battary life is so bad without using in the night keep on after 6 hours  morning when i open battary  % lose 60 percentage  with out using

    Plz help me about my Iphone  5s battary life is so bad without using in the night keep on after 6 hours  morning when i open battary  % lose 60 percentage  with out using plz help me..

    Maximize iPhone Battery (iOS7):
    1) Turn off Airdrop: Control Center >AirDrop > Off
    2) Limit background app refresh. Turn it off for applications such as Google/Facebook.Settings > General > Background App Refresh
    3) Turn off automatic updates: Settings > iTunes & App Store >  Updates and Apps (off)
    4) Unneccessary Location Services: Settings > Privacy > Location Services > System Services > Off (uncheck as needed)
    5) Turn off Paralax: Settings > General > Accessibility > Reduce Motion
    6) Siri, and her 'raise to speak.' Turn it off: Settings > General > Siri > Raise to Speak
    7) Exclude items from Spotlight search as needed: Settings > General > Spotlight Search
    8) Remove unneccessary notifications: Settings > Notification Center > None (per app basis)
    9) Make sure auto-brightness is on, or reduce the brightness to 25% or less if desired.Settings > Wallpapers & Brightness
    10) Use Still backgrounds only: Settings > Wallpapers & Brightness> Choose Wallpaper
    11) Fetch email instead of "Push":  Settings > Mail, Contacts, Calendar > Fetch New Data >Push(off) & Fetch every 15 minutes
    12) Disable LTE if needed: Settings > Cellular > Enable 4G/LTE (OFF)
    13) Reduce Autolock: Settings > General > Auto-Lock > 1 Minute
    14) Disable Vibrations with Ring: Settings > Sounds > Vibrate on Ring (off)
    15) Close Applications regularly: Double Tap Home Button > Swipe up on App to close

Maybe you are looking for