Help Needed - Step by Step Procedure CMOS / BIOS Reset (MSI GX600)

Hi guys,
I gave my old MSI GX600 laptop to my parents (after I got married) the catch is... they had some virus problems with the laptop (after a few months) and had a technician (just a guy manning a cyber cafe) check the laptop. When they got the laptop back it now has a BIOS password... to make matters worse... the guy gave the wrong password for the BIOS... and insists that - that's the password. (the guy didn't have any rights placing a BIOS password - it's not his laptop to begin with).
So basically we can't boot to Windows since when you turn-on the laptop the first thing you see is the BIOS login. They contacted me to try and resolve the situation. I thought that the best way to reset it to factory default... so I went on the net and looked for ways to do the BIOS reset (factory default) and so far everything I tried still resulted to not having it reset back to faculty default. The BIOS login is still there.
Below are the things I did... any help on this matter will be greatly appreciated.
1. Uplugged the Laptop
2. Removed the batteries
3. Removed bottom panel
4. Un-attach Internal Battery connector to the mainboard (have no idea how to short it... since there are videos on shorting the board [but that's for MSI motherboards and not for laptops])
5. Left it for a few minutes
6. Connected everything again
7. Re-booted the laptop
Anyhow, it still asks for the BIOS login. I even went to the extent of removing all the connectors I can see on the board. But still to no avail. Anyhow, I have no idea what the guy (technician) did to the laptop but it still continues to ask for the BIOS password. Any help regarding this matter... the proper way or procedure of doing it would be greatly appreciated. I just need to remove the BIOS password requirement that is now implemented on the laptop.
Thanks in advanced!

We don't assist with password removal, contact msi at >>How to contact MSI.<<

Similar Messages

  • Help needed In testing a procedure

    Hi,
    This Is My procedure. I need to test this procedure. How can i pass multiple values to this first two parameters and check ?
    CREATE OR REPLACE PROCEDURE testts (
    i_custid IN str_varray,
    i_pymtref IN str_varray,
    i_screen IN VARCHAR2,
    i_rejreason IN VARCHAR2,
    i_userid IN tl_pymt_details.user_id%TYPE,
    i_country_code IN tl_pymt_details.country_code%TYPE,
    i_city_code IN tl_pymt_details.city_code%TYPE,
    o_intrc OUT NUMBER
    IS
    w_intrc NUMBER;
    w_excep EXCEPTION;
    w_time_zone_date TIMESTAMP ( 6 );
    w_custid tl_pymt_details.cust_id%TYPE;
    w_pymtref tl_pymt_details.pymt_ref%TYPE;
    BEGIN
    IF i_screen = 'confirm'
    THEN
    FOR i IN 1 .. i_custid.COUNT
    LOOP
    w_custid := i_custid (i);
    w_pymtref := i_pymtref (i);
    sp_031_process_time_zone_diff (w_time_zone_date);
    UPDATE tl_pymt_details
    SET status_code = 151
    WHERE cust_id = i_custid (i) AND pymt_ref = i_pymtref (i);
    INSERT INTO tl_pymt_details_trk
    (cust_id, pymt_ref, modi_date, status_code,
    payee_charge_status, modi_by, country_code, city_code)
    (SELECT cust_id, pymt_ref, w_time_zone_date, status_code,
    payee_charge_status, i_userid, pd.country_code,
    pd.city_code
    FROM tl_pymt_details pd, tl_sys_parm sp
    WHERE cust_id = i_custid (i)
    AND pymt_ref = i_pymtref (i)
    AND pd.country_code = i_country_code
    AND pd.city_code = i_city_code);
    END LOOP;
    ELSE
    FOR i IN 1 .. i_custid.COUNT
    LOOP
    w_custid := i_custid (i);
    w_pymtref := i_pymtref (i);
    sp_031_process_time_zone_diff (w_time_zone_date);
    UPDATE tl_pymt_details
    SET status_code = 5,
    rejected_reason = i_rejreason
    WHERE cust_id = i_custid (i) AND pymt_ref = i_pymtref (i);
    INSERT INTO tl_pymt_details_trk
    (cust_id, pymt_ref, modi_date, status_code,
    payee_charge_status, modi_by, country_code, city_code)
    (SELECT cust_id, pymt_ref, w_time_zone_date, status_code,
    payee_charge_status, i_userid, pd.country_code,
    pd.city_code
    FROM tl_pymt_details pd, tl_sys_parm sp
    WHERE cust_id = i_custid (i)
    AND pymt_ref = i_pymtref (i)
    AND pd.country_code = i_country_code
    AND pd.city_code = i_city_code);
    END LOOP;
    END IF;
    o_intrc := 1;
    END testts;
    Your Help is highly appreciated.
    Regards,
    SImma....

    Hi,
    I supposed your varray is created by TYPE str_varray IS VARRAY(100) OF VARCHAR2(30); Then you can do the following:
    declare
      l_custid str_varray;
      l_pymtref str_varray;
      l_out number;
    begin
      /* filling of varray */
      l_custid := str_varray('test1','test2');
      l_pymtref := str_varray('test4','test5');
      /* call procedure */
       testts (
           i_custid => l_custid,
           i_pymtref => l_pymtref,
           i_screen =>   ..... , -- set value
           i_rejreason =>   ..... , -- set value
           i_userid =>   ..... , -- set value
           i_country_code =>   ..... , -- set value
           i_city_code =>   ..... , -- set value
           o_intrc => l_out
    end;Herald ten Dam
    http://htendam.wordpress.com

  • Help needed to create a Procedure

    Can anyone help me with a small procedure I have to write?
    Requirement to create Stored Procedure :
    1.  Create tables
         A1
         A2
         B1
         B2
    ----------- this is done------
    Fill the data in those tables
    ------------this is also done----
    Create "Source_table.tx"t file with table names and place them in any location.
    ------------this is also done----
    write a procedure to read the above file "Source_table.txt"  and it should read the tables name 1 by 1 which performs a simple operation inside SP -->  
    Select * from @Table_Name
    Also, it should check if the .txt file is exisiting or not.
    If exists then Read the file and execute the SP.
          SP does this :
             Select * from A1
             Select * from A2
             Select * from B1
             Select * from B2
    After that, write an output file with the counts of records to the same location  where our Source_table.txt exists .
    If doesnt exist then write to a .txt file that "File name and Location doesnt exist"

    What format is the data inside your .txt file?
    If it's just some lines containing the names of the tables then you may as well just use the UTL_FILE package to:
    a) check the existence of the file using the UTL_FILE.FGETATTR procedure
    b) open and read the contents of the file using the UTL_FILE.FOPEN, UTL_FILE.GET_LINE and UTL_FILE.FCLOSE functions/procedures.
    UTL_FILE
    Alternatively you could set up an external table to read the .txt file as though it's a table.
    Managing External Tables
    Once you extract the table names from the .txt file, you'll then have to construct dynamic SQL queries to query the data from them.  Are all of the tables of the same structure or do they change?  If they change you'll have to use the DBMS_SQL package.  If they don't you could do it more statically in PL/SQL code (at least in terms of the structures you're reading the data into), but you may still be better using DBMS_SQL for it.  It depends what you're trying to do exactly and why these table names are being exported to a file and need to be read dynamically in this way.  Often Dynamic coding indicates poor design, but without knowing exactly what you're doing, it's hard to tell if it's really necessary or not.

  • Cmos/bios reset

    How I can reset cmos/bios to factory settings? I try to install win7, and I change sata/ahci settings in bios, and after that I cant access DOS and BIOS... I just need my bios back Please help, my lap-top is g50-30..

    We don't assist with password removal, contact msi at >>How to contact MSI.<<

  • Help needed with build steps

    Hello,
    we want to create an ant script with the following steps included:
    1. compile all model classes
    2. compile all the tests
    3. enhance the model classes
    4. drop / clear all tables corresponding to the enhanced model
    5. re-create all tables corresponding to the enhanced model
    6. run all the tests
    Our Problem with Kodo is in steps 4 + 5. How would we do this?
    When using other JDO Implementations the is a switch for this in the
    Schema- / Mappingtool Tasks.
    Best regards,
    Bernd Knobloch

    If you run the mappingtool with the 'action' and 'schemaAction' both set
    to 'refresh' and 'dropTables' set to 'true', the tool will drop all
    unused columns and tables, add any new columns and tables it needs, and
    update the mappings for all objects (I'm assuming you let Kodo do the
    mapping?)
    If you really want to drop your entire DB, then you can run the
    schematool with the 'action' set to 'dropDB'. To then refresh all the
    mappings and add the necessary schema components, run the mappingtool
    with the 'action' set to 'refresh'.

  • Help need for PL/SQL procedure

    Hi guys,
    I have scenario like this
    Schema     T     LOGTABLENAME          TDIRECTORY
    DEV          DEV.ABC_LOG                    import-abc
    DEV          DEV.GBTSLOG          import-gbts
    DEV          DEV.CLSSBOG     import-cls
    QA          QA.TransactionlOG          import-transaction
    QA1 QA1.tlog import-ess
    QA2 QA2.translog import-trnals
    I have to write a procedure to get the log table data from schema Dev.I have to take Shcema dev and go to DEv.abc_log table and get the record from the dev.abc_logtable. The same way for other schema also with respective logtables .
    I would appreciate your help or suggestions.
    Reards,
    User
    Edited by: user1758353 on Dec 5, 2008 11:43 AM

    hello,
    im also not sure if i get the point but maybe you need sth. like that...
    create table schema_logtable as
    select 'dev' schema, 'dev.abc_log' tlogtable, 'import-abc' tdirectory from dual union all
    select 'dev', 'dev.gbtslog', 'import-gpts' from dual union all
    select 'dev', 'dev.clssbog', 'import-cls' from dual );
    declare
       v_slt_row schema_logtable%rowtype;
       type log_description_table is table of varchar2(1000char);
       v_log_description log_description_table := log_description_table();
    begin
       for v_slt_row in ( select * from schema_logtable )
       loop
          execute immediate 'select log_description from ' || v_slt_row.tlogtable bulk collect into v_log_description;
          for i in v_log_description.first .. v_log_description.last
          loop
             dbms_output.put_Line( 'log_desc: ' || v_log_description(i) );
          end loop;
       end loop;
    end;
    /this reads for every schema in table schema_logtable the name of the logtable.
    for each logtable you fetch all rows of that table into a variable and you can do what-ever you want with that...
    -mario

  • Help needed in TEXT determination procedure - Urgent

    Hi Experts,
    I have defined my own text determination procedure for complaints. This procedure is for the item category for the transaction(complaint).
    The following are the Text ID's that I have include in my procedure :
    1. C001
    2. C002
    3. C003
    My requirment is to have logs(history) for each of the text id's(C001, C002, C003).
    i.e. what ever i do in C001, it has to be loogged only in text id let;s say ZC001, same way C002 shld be logged only in ZC002 and C003 in ZC003.
    I have also defined ZC001, ZC002, ZC003 in the text detrmination procedure.
    Please help me in slving this problem. Can i do it in the config itself or shld i go for development?.
    Regards,
    Arul Jothi A.

    hi,
    This is what exactly i am lloking for, but i tried with your proposal. It didint work.
    Please find the detailos below.
    Text Object      CRM_ORDERI
    Text Det.Proc:   ZCOMP001
    Text Type  Description              Seq.        changes     Transfer      Access Seq.
    C001     Complaints Text     0001     P              -                   -
    Z001     complaints1     0002     R     A     ZC01
    C002     Internal note     0003     P              -                   -
    Z002     original text test     0004     R     A     ZC02
    C003     Recomm. Solution     0005     P              -                   -
    Z003     original text 3     0006     R     A     ZC03
    Access Seq :
    ZC01 :
    Ref. Object     CRM_ORDERI
    Ref. Text Type  C001
    continue chcked.
    ZC02.
    Ref. Object     CRM_ORDERI
    Ref. Text Type  C002
    continue chked
    ZC03.
    Ref. Object     CRM_ORDERI
    Ref. Text Type  C003
    continue chked
    I want to log all C001 text into Z001 only, C002 in Z002 only and C003 in Z003 only.
    hope you got it....
    Please help.
    Regrads,
    Arul Jothi A

  • Help Needed in Xml Stored Procedure

    Hi , i am trying to write one sp which takes xml document as a parameter. I want to update/Insert the data in the xml based on some conditions. So i put the data from xml to a global TEMPORARY table. The i process this data and will update /Insert the data based on the output.
    Right now i am unable to create global TEMPORARY table my stored procedure .When i compile the stored procedure , its showing the following error
    Compilation errors for PROCEDURE SYSTEM.TESTXML
    Error: PLS-00103: Encountered the symbol "CREATE" when expecting one of the following:
    begin case declare exit for goto if loop mod null pragma
    raise return select update while with <an identifier>
    <<
    close current delete fetch lock insert open rollback
    savepoint set sql execute commit forall merge pipe
    Line: 8
    Text: CREATE GLOBAL TEMPORARY TABLE temp
    I am attaching my sp below
    create or replace procedure testxml
    ( xmlDoc IN clob )
    is
    updCtx DBMS_XMLStore.ctxType;
    rows NUMBER;
    begin
    CREATE GLOBAL TEMPORARY TABLE temp
    ( cdcalendar NUMBER,
    cdperiod NUMBER,
    cdsubperiod NUMBER,
    cdglperiod NUMBER,
    dtstartsubperiod date,
    dtendsubperiod date
    ) ON COMMIT PRESERVE ROWS;
    updCtx := DBMS_XMLStore.newContext(temp)
    rows := DBMS_XMLStore.insertXML(updCtx,xmlDoc);
    DBMS_XMLStore.closeContext(updCtx);
    if Not exists
    (Select Distinct cd_calendar from Calendar_Period
    Where cd_calendar = select Distinct cdcalendar from temp )
    Then
    Insert into calendar_period
    cd_calendar,
    cd_period,
    cd_subperiod,
    cd_gl_period,
    dt_start_subperiod,
    dt_end_subperiod
    select cdcalendar,
    cdperiod,
    cdsubperiod,
    cdglperiod,
    dtstartsubperiod,
    dtendsubperiod
    from temp ;
    Else
    Update calendar_period
    Set cdp.cd_calendar = temp.cdcalendar ,
    cdp.cd_period = temp.cdperiod,
    cdp.cd_subperiod = temp.cdsubperiod ,
    cdp.cd_gl_period = temp.cdglperiod,
    cdp.dt_start_subperiod = temp.dtstartsubperiod ,
    cdp.dt_end_subperiod = temp.dtendsubperiod
    From
    calendar_period cdp Inner Join temp
    On
    cdp.cd_calendar = temp.cdcalendar
    cdp.cd_subperiod = temp.cdsubperiod
    cdp.cd_period = temp.cdperiod ;
    End if
    end testxml;
    Kindly guide me !!!!

    Hi,
    "CREATE GLOBAL TEMPORARY TABLE" is not a PL/SQL sommand; it is a SQL command. That explain the error message you're getting.
    Normally, tables (including Global Temporary Tables) are created once for all, without using PL/SQL. After they are created, you can write PL/SQL code to populate and use them. This job doies not seem to be an exception.
    In the rare event that you do need to create a table in PL/SQL, use EXECUTE IMMEDIATE, which can do any SQL command from withiin PL/SQL.
    EXECUTE IMMEDIATE is documented in the PL/SQL manual:
    http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28370/dynamic.htm#sthref857

  • Help needed in writing a procedure

    Guys, i need some more help.
    I am selecting one value using select by passing a parameter to that select statement which are stored in a file using utl_file package.
    Now, I want to use the output of that query and use that value to update a column in the same table.
    for ex:-
    select comm from emp where empno = &empno1;
    I want to use the comm value and update the comm value.
    update emp
    set comm = comm + 10
    where empno = &empno1
    Help Appreciated
    Thanks

    SQL> desc emp
    Name Null? Type
    EMPLOYEE_ID NOT NULL NUMBER(6)
    FIRST_NAME VARCHAR2(20)
    LAST_NAME NOT NULL VARCHAR2(25)
    EMAIL NOT NULL VARCHAR2(25)
    PHONE_NUMBER VARCHAR2(20)
    HIRE_DATE NOT NULL DATE
    JOB_ID NOT NULL VARCHAR2(10)
    SALARY NUMBER(8,2)
    COMMISSION_PCT NUMBER(2,2)
    MANAGER_ID NUMBER(6)
    DEPARTMENT_ID NUMBER(4)
    NET_SALARY NUMBER(12,2)
    SQL> select salary,COMMISSION_PCT,net_salary from emp where employee_id = 198;
    SALARY COMMISSION_PCT NET_SALARY
    2600 .1
    SQL> update emp
    2 set net_salary = salary + (select COMMISSION_PCT from emp where employee_id = &&empno)*salary
    3 where employee_id = &&empno
    4 /
    Enter value for empno: 198
    old 2: set net_salary = salary + (select COMMISSION_PCT from emp where employee_id = &&empno)*salary
    new 2: set net_salary = salary + (select COMMISSION_PCT from emp where employee_id = 198)*salary
    old 3: where employee_id = &&empno
    new 3: where employee_id = 198
    1 row updated.
    SQL> select salary,COMMISSION_PCT,net_salary from emp where employee_id = 198;
    SALARY COMMISSION_PCT NET_SALARY
    2600 .1 2860
    Hope this helps;

  • Help need to call a procedure which is inside a package from TOAD

    Hi,
    I have a procedure as below which resides in a package "A".Can you tell me how to call this from TOAD?
    PROCEDURE getRD(
         resultSet          OUT sys_refcursor)
    IS
    BEGIN
         IF     resultSet%ISOPEN THEN
         CLOSE     resultSet;
         END IF;
         OPEN     resultSet
         FOR
         SELECT DISTINCT(countryKey) AS rd,
         name
         FROM Contr
         ORDER BY countryKey;
    END getRD;
    thanks.

    1. Select Execute Procedure
    2. The Set Parameters dialog comes up with generated code that looks like:
    DECLARE
      P_RC MY_SCHEMA.MY_PKG.sys_refcursor;
    BEGIN
      -- P_RC := NULL;  Modify the code to initialize this parameter
      MY_SCHEMA.MY_PKG.MY_PROC ( P_RC );
      :rc0_P_RC := P_RC;
      COMMIT;
    END;Of course, I can't get Quest to understand that there is no sys_refcursor declaration in your package - it's a built-in - but they insist on generating the code this way because...well, I'll let that be. Change that line to just be:
    P_RC  sys_refcursor;and remove that completely unwanted commit.
    3) Click the Options button and select 'Load into grid from memory (strong and weak)'. Click OK.
    4) Click on OK in the Set Parameters dialog to run the procedure. You should get a new window with the results of the ref cursor displayed.
    -Todd

  • Step by Step document on Guided Procedures for Benefits.......Help Needed..

    Hello Gurus,
    We are in process of implementing Benefits and for which we are using Guided Procedures, want to have understanding of the process can you please provide the step by step documentation and an example process that will be of great help.
    Appreciate your help.
    Thanks in advance for your time.
    Kind Regards,
    Pramod

    Hi Pramod,
    Please have a look at the below links. You will probably get some help.
    First of all, see the following thread, see the answer by shen peng in the end, explained CAF in very simple terms:
    https://www.sdn.sap.com/irj/sdn/thread?threadID=470956&tstart=0
    Now have a look at the following links for understanding about CAF, :
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4277f37b-0601-0010-0597-89e792177e2b">Creating Composite Applications with SAP CAF</a>
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/84df3e36-0301-0010-be9d-b99aad8c81e6">Composite Application Framework in SAP NetWeaver</a>
    <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1122">CAF training material online</a>
    <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1231">Additional CAF Training material online</a>
    See the following links for understanding CAF GP in detail:
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0b1c2eda-0c01-0010-b597-b107502cdc71">CAF Guided Procedures Overview</a>
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/39/198141f906040de10000000a1550b0/frameset.htm">CAF Guided Procedures</a>
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/c7/984942da51690de10000000a155106/frameset.htm">Concepts of the Guided Procedures Framework</a>
    Lastly, see the following links for CAF GP Wiki Home Page and CAF Tutorial Center:
    <a href="https://wiki.sdn.sap.com/wiki/display/BPX/Guided+Procedures">CAF Guided Procedures Wiki Home Page</a>
    <a href="https://www.sdn.sap.com/irj/sdn/nw-composition?rid=/webcontent/uuid/d8dbd703-0801-0010-c9bf-c04bc52f562f">Composite Application Framework Tutorial Center</a>
    You can also have a look at the following thread, you can drill down into many more links:
    https://www.sdn.sap.com/irj/sdn/thread?threadID=405517&tstart=0
    https://www.sdn.sap.com/irj/sdn/thread?threadID=314804&tstart=50
    Bye
    Ankur

  • Have macbook pro with OS X yosemite 10.10.1 that i need step by step procedures to clean so I can give it to someone else, need help

    have macbook pro with OS X yosemite 10.10.1 that i need step by step procedures to clean so I can give it to someone else, need help

    Before you sell or give away your computer, in addition to the steps listed in this support article, take these steps:
    1. Run Apple Diagnostics or the Apple Hardware Test. The buyer will do this (or he should), and you don't want to be surprised by the results.
    2. Reset the PRAM and the SMC, which might contain personal information.
    3. If you set a firmware password, remove it by running Firmware Password Utility in Recovery mode.
    4. If you activated FileVault in OS X 10.7 or later, turn it off.
    5. If you use Boot Camp, the partition must be deleted.
    6. If you created any other data partitions on the internal drive, remove them in Disk Utility.
    7. If the machine has an internal hard drive, erase the one remaining data partition with the option to zero out data. An SSD doesn't need to be zeroed.
    You can't legally or practically transfer any software downloaded from the Mac App Store to the new owner of the machine, even if it was free. That includes OS X, so if you upgraded to OS X 10.7 or later, you must reinstall an older OS, either from the installation media, if applicable, or by starting up in Internet Recovery mode (option-command-R at the startup chime.) If you installed from physical media, deliver those to the new owner.
    If you're selling the machine, or donating it in working order, and it originally shipped with OS X 10.4 or 10.5, then you have the option of installing either from the discs that came with it or from a retail Snow Leopard disc (which you must then transfer to the buyer.) The buyer should understand that if he doesn't get the original discs from you, he won't get the bundled iLife applications or the Apple Hardware Test. Replacements for the original discs can be ordered from Apple.
    The new owner will have to redownload any software that came from the App Store, including OS X upgrades, under his or her Apple ID. If you ever updated the bundled iLife applications (Garage Band, iMovie, and iPhoto) through the App Store, you can't transfer those either. The buyer will have to purchase them.
    Remove the machine from your list of registered products. If it's still covered by an AppleCare Protection Plan, transfer the coverage to the new owner by following the instructions in the AppleCare Terms and Conditions (under the heading "Transfer of Plan.")

  • I need step by step instructions for backing up tiger to external hard drive. I don't have time machine..HELP!

    I am trying to upgrade to Snow Leopard but need to backup before upgrading. How do I backup os x 10.4 tiger on Mac pro  to an external hard drive. Does any one have step by step instruction?

    It would help to know where you are in the processs.  Do you already have a drive?
    Cloning And Backup Tools
    A bootable clone is an exact copy of your drive which is capable of booting your computer.  Making a copy of your computer which is capable of actually starting the computer requires special copying procedures which simply dragging files in Finder won't achieve. Some people just back up data files but if you have problems you have to reinstall all your operating system and all your applications. With a bootable clone you just start up from the backup drive and clone back everything.
    To clone one hard drive to another hard drive you can use:
    [CarbonCopy Cloner|http://www.bombich.com/software/ccc.html] (donationware)
    [SuperDuper|http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html] (shareware)
    [IBackup|http://www.grapefruit.ch/iBackup/index.html] (free)
    The Restore function of Disk Utility included in OS X. [Kappy's directions|http://discussions.apple.com/message.jspa?messageID=8799711#8799711]
    [Tri-Backup (commercial)|http://www.tri-edre.com/english/tribackup.html] (payware)
    [Silverkeeper|http://www.lacie.com/silverkeeper/] (free) - version 2 has some issues (references: [here|http://www.macintouch.com/readerreports/backup/index.html#d12jan2009], and [here|http://www.macintouch.com/readerreports/backup/index.html#d13jan2009]) and it is recommended Tiger users stick with 1.1.4.
    [Kappy's Backup Software Recommendations|http://discussions.apple.com/message.jspa?messageID=9065665#9065665]
    [Overview of Mac OS X Backup Programs|http://8help.osu.edu/1247.html]

  • I need step-by-step procedure for ESS/MSS Security??

    Hi, I need step by step procedure for ESS/MSS security. I know the Structural .Authorization , but i dont know how this ESS/MSS security is. Could you please help me with any step by step notes of your personal. Please i dont want any best practices from help.sap.com. I already gone through those links, but i didnt get how to maintain security for ESS/MSS.

    Hi @mehdijon 
    I can help. There is no full feature software and driver available from HP, but the OS X v10.9 Mavericks driver for your printer is available through Apple Software Update (ASU).
    With this driver you can still print and scan, you just wont have HP software to scan from. Scanning to the computer from the printer control panel is only available when using HP Scan software, thus it will not work because there is no HP scan software as apart of the Apple Software Update driver.
    Instead, you can scan using,
    Method one: Scan from the Print & Scan window   
    Method two: Scan from Apple Preview
    Method three: Scan from Apple Image Capture 
    I hope this helps. If you have any additional questions are have any difficulty using any of these methods, please let me know what method you are trying and what the issue/error is. You may also find the following document helpful; OS X v10.9 Mavericks: Installing and Using the Printer on a Mac
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Need  NetWeaver XI Documents  (Step by step Procedure)

    Hi ALL,
    I  Got the chance to work in XI but i do not have any documents  on XI  , and please guide me how to handle  the XI application ...
    Any one has step by step procedures mail me
    <b>[email protected]</b>
    Please help me ...
    Regards
    Puru

    Hi Purushotham ineni,
    Hi,
    This might help you
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    Further, this thread deals with everything that is needed for a starter on XI. Do check them out,
    JDBC Receiver: exact SQL statement
    /message/527697#527697 [original link is broken]
    And after you are done with the documentation probably you can go through this scenario,
    JDBC Receiver: exact SQL statement
    Also check the following threads which might help you a little more,
    Learning XI
    XI 3.0 Training
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/13926f23-0a01-0010-149c-c1170e7a25db
    Thanks & Regards,
    Agasthuri Doss

Maybe you are looking for

  • Why is the filter gallery not working?

    In my CS6 Photoshop I can access the filter-gallery but as soon I click on a filter to choose it close the window and I get the error message: the process coulnd't finish. I tried it with several files and  and it's always the same message. I already

  • QuickTime/Flip4Mac in separate not browser window

    I use Flip4Mac to watch and listen to Windows media. Prior to 10.6, the content would open in a separate QuickTime window. Now it opens in the Safari browser. How can I change it so it goes back to opening in a QuickTime window?

  • What do i do if i forgot my answers to security questions?

    i'm trying to buy a song but its asking for me to answer security questions. i can't remember my answers to the questions so what do i do??

  • Microsoft Active Server Pages with interMedia

    Can Oracle interMedia text be integrated within ASP's to deliver images to the database, and vice versa. Looking at the sample code, it appears that Oracle uses the clipboard and annotator tools, but I didn't see anything else. The "post method" with

  • Swipe between pages in Safari not working properly

    Lion works perfectly so far, the only known issue I have is that Gesture in Safari to go Back or Forward does not work properly: Swipe between pages (Scroll left or right with two fingers). it means I see the previous page under the actual page, but