How to create Factory Default Recovery Disc with OneKey Recovery 4.0

I have a K430 and before I use it it (as with any machine I have bought) I wanted to make my recovery disc(s).
Throughout this website there are guides to do this with version 7, but this desktop has version 4.0 of OKR
I can save an image of my system partition but need the ability to install on to a clean hard drive in case of hard drive failure. 
I have checked the Kb and forums and been through the Windows 8 programs but nothing points me the right way.
This is compounded by the fact that none of my drive imaging tools like the Seagate drive that was shipped in this machine (Ghost4Linux, CloneZilla, Acronis Easy Migrate) 
Where is my option to create said media? 
Solved!
Go to Solution.

Just to close this one.
I spoke to customer support on the phone as this post remained unanswered,
There are no recovery disc to buy or create for this machine, so should the hard drive fail you would need to source your own discs.
This machine will now be returned, a lost sale for the sake of a DVD.
Must say the guy I spoke to on the phone was really helpful and courteous, sadly held back by company policy.

Similar Messages

  • How to create factory default install disks

    I have been looking for a way to use the hidden area to create system/factory install disks and not just recovery disks.
    Any help would be greatly appreciated.
    Thanks in advance.

    OK, now I feel stupid. I found the request I was looking for under "Think Vantage" software and it worked great. There was two selections (I only saw the one at first) and all is great and well.
    If anyone needs help with this, I would love to help. Email me at [email protected] on how to do this.
    Thanks to all that read this request and those that repliad.
    Cheers and best wishes to you and yours...
    John Freeze

  • How to create a blu-ray disc with multiple source files

    Hello,
    How is it possible to create a blu-ray disc, AVCHD recordable DVD with multiple source files from Final Cut Pro 10. Is it possible to create a menu with several chapters corresponding to the sequences (source files)?
    Thank you in advance for your support.

    Assume you're talking about using the Create Blu-Ray batch template. It's not possible to do with multiple source filles. But if I understand your objectives, you could pretty much get what you think want – discrete movie segments on a single disk with navigation.
    The way I'd approach it is by making multiple projects in FCP and then copying the finished versions into a new project, separated by gaps. (You could also use compound clips but I'm not a fan except for very short sequences, which is why I'm suggesting the copy route.) Then export and bring into Compressor.
    In Compressor mark your chapters at the gaps between your individual sequences. Then choose the AVCHD option in job actions.
    Bear in mind that you'll have to keep the recording time under roughly 30-35 minutes @a5 Mbts/sec
    Good luck.
    Russ

  • How to create a back up disc in itunes 11?

    i need to know how to create a back up disc in the latest version of i tunes the directions in  the article dont apply to  my version it says to go to file then library then to back up to disc from the menu but back up to disc doesnt  appear  in my menu

    Hi and welcome to Forum!
    You should learn RMAN (Recovery Manager) to do your backup with Oracle suggested way
    Then you can restore and recover this backup in any instance
    For more information, you can refer to below listed documentations :
    [Backup and Recovery Basics|http://download.oracle.com/docs/cd/B19306_01/backup.102/b14192/toc.htm]
    [Backup and Recovery Quick Start Guide|http://download.oracle.com/docs/cd/B19306_01/backup.102/b14193/toc.htm]
    [Backup and Recovery Reference|http://download.oracle.com/docs/cd/B19306_01/backup.102/b14194/toc.htm]
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com

  • How to create user editable Crystal Report with dynamic dataset

    What I would like to achieve:
    A program loads a report in runtime updates list of database fields (possibly includes sample data), open report in "Crystal Reports 2011" (or 2008) where user customizes report and saves it. Later on the program loads the report, fills actualized data and displays it in .net report viewer.
    What I do:
    CrReport = New CrystalDecisions.CrystalReports.Engine.ReportDocument
    CrReport.Load(TemplateFilename)
    Dim Results As DataTable
    DataTable is filled from a database
    CrReport.SetDataSource(mResults)
    CrReport.SaveAs(NewReportPath, True)
    The NewReportPath is opened in the default program.
    What are the problems
    The report is open in preview mode (not in design).
    When the field is added to the report the designer asks for XML datasource on preview.

    The short answer is that it is not possible. I broke the question to other two: How to save a report that it opens without preview? and How to create user editable Crystal Report with dynamic dataset, where it is possible to find details. Key answer is Re: How to create an editable previewable report?

  • How to create a default Style for several Content Areas

    Hello,
    I have not been able to figure out how to create default styles/nav bars/etc... that can be used between SEVERAL Content Areas, and/or for any new Content Area. It seems to me that what is created in one Content Area, is not available for use in any other Content Area.
    Being that I'd like to keep the Administrative overhead as low as possible, I wonder if anyone has and/or knows how to create a default style, etc.. and use it with each Content Area across an Enterprise site???
    Many thanks for any information you may have!!
    null

    Kahli,
    check out the Shared Objects node in the Content Area navigator.
    Good luck, Tony

  • How to create a custom function module with the records in SAP R/3?

    Hi All,
    How to create a custom function module with the records in SAP R/3? Using RFC Adapter I have to fetch the custom function module records.
    Regards
    Sara

    Hi
    goto se37...here u need to create a function group... then u need to create a function module. inside assign import/export parameters. assign tables/exceptions. activate the same. now write ur code within the function module
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm
    Look at the below SAP HELP links, These links will show you the way to create a Function Module
    http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm

  • How to create Using Formatted Text Field with multiple Sliders?

    Hi i found the Java Sun tutorial at http://java.sun.com/docs/books/tutorial/uiswing/components/slider.html very useful, and it tells how to create one Formatted Text Field with a Slider - however i need to create Formatted Text Field for multiple Sliders in one GUI, how do i do this?
    my code now is as follows, and the way it is now is scroll first slider is okay but scrolling second slider also changes value of text field of first slider! homework due tomorrow, please kindly help!
    // constructor
    label1 = new JLabel( "Individuals" );
    scroller1 = new JSlider( SwingConstants.HORIZONTAL,     0, 100, 10 );
    scroller1.setMajorTickSpacing( 10 );
    scroller1.setMinorTickSpacing( 1 );
    scroller1.setPaintTicks( true );
    scroller1.setPaintLabels( true );
    scroller1.addChangeListener(this);
    java.text.NumberFormat numberFormat = java.text.NumberFormat.getIntegerInstance();
    NumberFormatter formatter = new NumberFormatter(numberFormat);
            formatter.setMinimum(new Integer(0));
            formatter.setMaximum(new Integer(100));
    textField1 = new JFormattedTextField(formatter);
    textField1.setValue(new Integer(10)); //FPS_INIT
    textField1.setColumns(1); //get some space
    textField1.addPropertyChangeListener(this);
    //React when the user presses Enter.
    textField1.getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0),  "check");
            textField1.getActionMap().put("check", new AbstractAction() {
                public void actionPerformed(ActionEvent e) {
                    if (!textField1.isEditValid()) { //The text is invalid.
                        Toolkit.getDefaultToolkit().beep();
                        textField1.selectAll();
                    } else try {                    //The text is valid,
                        textField1.commitEdit();     //so use it.
                    } catch (java.text.ParseException exc) { }
    label2 = new JLabel( "Precision" );
    scroller2 = new JSlider( SwingConstants.HORIZONTAL, 0, 100, 8 );
    scroller2.setMajorTickSpacing( 10 );
    scroller2.setMinorTickSpacing( 1 );
    scroller2.setPaintTicks( true );
    scroller2.setPaintLabels( true );
    scroller2.addChangeListener(this);
    textField2 = new JFormattedTextField(formatter);
    textField2.setValue(new Integer(10)); //FPS_INIT
    textField2.setColumns(1); //get some space
    textField2.addPropertyChangeListener(this);
    //React when the user presses Enter.
    textField2.getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0),  "check");
            textField2.getActionMap().put("check", new AbstractAction() {
                public void actionPerformed(ActionEvent e) {
                    if (!textField2.isEditValid()) { //The text is invalid.
                        Toolkit.getDefaultToolkit().beep();
                        textField2.selectAll();
                    } else try {                    //The text is valid,
                        textField2.commitEdit();     //so use it.
                    } catch (java.text.ParseException exc) { }
    // State Changed
         public void stateChanged(ChangeEvent e) {
             JSlider source = (JSlider)e.getSource();
             int fps = (int)source.getValue();
             if (!source.getValueIsAdjusting()) { //done adjusting
                  if(source==scroller1)   {
                       System.out.println("source ==scoller1\n");
                       textField1.setValue(new Integer(fps)); //update ftf value
                  else if(source==scroller2)     {
                       System.out.println("source ==scoller2\n");
                       textField2.setValue(new Integer(fps)); //update ftf value
             } else { //value is adjusting; just set the text
                 if(source==scroller1)     textField1.setText(String.valueOf(fps));
                 else if(source==scroller2)     textField2.setText(String.valueOf(fps));
    // Property Change
        public void propertyChange(PropertyChangeEvent e) {
            if ("value".equals(e.getPropertyName())) {
                Number value = (Number)e.getNewValue();
                if (scroller1 != null && value != null) {
                    scroller1.setValue(value.intValue());
                 else if (scroller2 != null && value != null) {
                    scroller2.setValue(value.intValue());
        // ACTION PERFORMED
        public void actionPerformed(ActionEvent event) {
        if (!textField1.isEditValid()) { //The text is invalid.
            Toolkit.getDefaultToolkit().beep();
            textField1.selectAll();
        } else try {                    //The text is valid,
            textField1.commitEdit();     //so use it.
        } catch (java.text.ParseException exc) { }
             if (!textField2.isEditValid()) { //The text is invalid.
            Toolkit.getDefaultToolkit().beep();
            textField2.selectAll();
        } else try {                    //The text is valid,
            textField2.commitEdit();     //so use it.
        } catch (java.text.ParseException exc) { }
    ...

    if :p3_note_id is null
    then
    insert into notes (project_id, note, notes_month, notes_year) So, p3_note_id is NULL.
    Another option is that you have a trigger on table NOTES that generates a new note_id even for an update.

  • How to Create an Input Schedule Comparison with Data Using EVDRE

    Hello,
    I try implement the scenario described in "How to Create an Input Schedule Comparison with Data Using EVDRE".
    Once I am using the "Insert Function" from the panel and selecting the EVTIM function Excel crashes (see page 8 How to paper).
    Systems:
    BPC 7.0 NW SP02
    Office 2007
    BPCADminClient and BPCOfficeClient up to date
    Have anyone a solution?
    Thanks
    Oktay

    Hi Oktay -
    This function works in my BPC70NW SP02 system. Your issue might be that you are trying to access a TIME member that does not exist. Please make sure the offset value is a valid dimension member.
    I can confirm that EVTIM does allow the offset for base members (such as 2009.MAY) as well as parent nodes (such as 2009.Q1 or 2008.TOTAL)... BUT...the offset result of the EVTIM function needs to be a valid dimension member!
    Regards,
    Sheldon

  • How to creat the Varient for 1099MISC With Holding Tax

    How to create the Variant for 1099MISC With Holding Tax ?

    HI,
    please follow the below steps to create variant at report.
    tcode se38
    report RFIDYYWT
    pass all the parameters
    press save icon
    give variant name
    retrive the variant in report
    tcode se38
    report name RFIDYYWT
    press : shift + F5
    or get varinat icon.
    I hope above will resolve your issue.
    Regards
    Madhu M

  • How to create new view without interlinking with gantt chart or resource views

    ok clear
    one another question
       In msp how to create new view without interlinking with gantt chart or resource views

    Hi Shiv PMC--
    I splitted your question above in another thread in order not to have  a huge thread with many topics in it.
    That being said, I'm not sure to understand. A view is just a manner to display MS Project data with columns. A view can have a table with column (left part) associated with a Gantt chart. It can also just contain a table with no Gantt chart (like the task
    table) or a table with a timephased grid (resource and task usage).
    Please give us more information, maybe with a concrete example so we can help you.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • How to create labeled table of Content with expand and collapse

    Hi All,
    Can somebody help me how to create labeled table of Content with expand and collapse as example given below:
    User1
    Template1
    Template2
    User2
    +
    User3
    Template1
    Template2
    Like when we see expand (+) and collapse (-) button when we click on 'about this page' link.
    Thanks
    Bhupendra

    Hi,
    Tou can use Table inside table to show the details this way but I'm not sure about Expand/Collapse.
    Expand/Collapse are part of HGRID.
    I think we can develop this functionality with little manipulation.
    Regards,
    Reetesh Sharma
    Edited by: Reetesh Sharma on Jun 28, 2010 4:56 AM

  • How to create tcode for modulepool program with selection screen?

    hi,
       How to create tcode for modulepool program with selection screen?
    thanks,
    sagar

    Hi,
    We need to goto SE80.
    In our program we right click on object name and goto create
    -> transaction. Enter the module pool program and screen number and save and activate.
    Or by SE93 also we can create a transaction code for our program.
    Hope ths helps.
    plz reward if useful.
    thanks,
    dhanashri..
    Edited by: Dhanashri Pawar on Jul 22, 2008 8:29 AM

  • Problem creating Recovery Discs with HP Probook 4530s Notebook PC.

    I have a HP ProBook 4530s Notebook computer my daughter gave me. It is 5 months out of warranty. I had to recover it using Recovery Manager and the recovery partition.  The OS is W7 Home Premium 64 bit.
    An HP support document says that I can create Windows 7 recovery discs using DVD-R media. It says to click Start, then All Programs, then Recovery Manager.
    The problem is there is no Recovery Manager in All Programs. I want to create recovery discs instead of relying on the recovery partition.
    I called HP and they had no explanation. I asked them if the instructions were wrong or were they right but for some reason Recovery Manager was missing from All Programs. All they could tell me is to recover it using the recovery partition by restarting the computer and then pushing F11 for the Recovery Manager. That works to recover the computer but NOT to create recovery discs.
    Is there any way to create Recovery discs?

    Hi
    Not without the recovery manager, which is not included on every HP business notebook.
    My HP Elitebook 6930p came with a recovery partition but no recovery disks, recovery manager program to make recovery disks.
    And it cannot be downloaded.
    If you live in the USA, call HP at this number, 1-800-334-5144 and order a set of recovery disks.
    You will need to provide the model number and serial number to the customer support rep.
    Since the notebook is out of warranty, there will be a charge of $10 for the set of recovery disks.

  • How to use recovery discs with Satelite Pro 300?

    Hello,
    I have a Satelite Pro 300 with recovery disc, I would like to give this to my daughter I've copied all i need from it and would like to wipe it,
    would be very greatful if you could give me step by step instuctions on how to use recovery disc.
    Thanks

    To use recovery disc is very simply.
    Just do the follow:
    - Start your notebook and press F12
    - When the boot menu is shown put recovery media into optical disc drive
    - Choose CD/DVD drive on the list and press ENTER
    - Follow the menu on the screen
    - There is nothing you can choose or set. Just follow menu steps and confirm with OK
    After recovery image installation leave notebook to complete installation.
    Please note: recovery procedure will erase whole HDD and all saved data will be deleted. So, before you start installation back up all your important data.
    Thats all!

Maybe you are looking for

  • How to populate/persist right-side of Shuttle in apex 3.1.2 after submit

    In the new Shuttle I can only specify one LOV (select empname, empid from emp where empid not in (1,3,4)) but I also want to populate the right-side of the shuttle to show values which the non-members (select empname, empid from emp where empid in (2

  • Flex 4.5.1 iOS project very slow

    Hi, A few things. I read that 4.5.1 Flex Mobile automatically used AIR 2.7  .  I have not done any overlaying b/c of this but my app on the device is slow. When I click a list item or Back button, it takes like 2 seconds to respond.  Also, there is a

  • Can not open 7.1 program in labview 8.5.1 -- handler error

    I made a program in labview 7.1 And I wanted to open it in labview 8.5.1, but it opens with errors, and I can not run it. In every sub vi, till the lowest level, I got the error "handler error". Can somebody help me? 

  • Code doubt

    Hello people i've got a login app here that connects to a database, validates de username and password. How do i get the Submit button to get what's in the fields ? I tried to use getText(); but since i'm on the JDK SE 6, Netbeans says that "getText

  • Clamxav always crashes when I'm trying to do a scan

    Hello everybody, I'm having a problem with Clamxav. It always crashes (first saying there's an error and then immediately shutting down) whem I'm trying to scan. Can Anyone help me out? This is the report: Process:         ClamXav [977] Path: