Types of cloning

1) What are different types of cloning ?
Why to use cloning and in which situation.. plz give example
2) What is difference between synchronization & serialization?
How to do this in java ? Why it is needed ? Where to be used. Give example

1) What are different types of cloning ?Deep and shallow. Look them up
Why to use cloning and in which situation.. plz give
exampleNo. Look them up.
2) What is difference between synchronization &
serialization?A lot.
How to do this in java ? Start by reading a Java tutorial.
Why it is needed ? Where to
be used. The tutorial should hopefully cover that. If it doesn't, find another.
Give exampleNo. Do your work yourself.

Similar Messages

  • Reg:shadow cloning

    Hello friends,
    I know about cloning but not about shadow cloning .... can any one please say about this and when we use this type of cloning....

    Its not shadow cloning, its shallow cloning. Look at the following post : http://forum.java.sun.com/thread.jspa?threadID=5144515&messageID=9539947

  • Clone to multiple hard drives

    Trying to duplicate the contents of one laptop's hard drive to another.
    I'm doing volunteer tech support for a local school, which has about 30 Satellite (C650D) and netbook (NB505).  I would like to update software on one laptop (new anti-virus, update programs, remove random files from prior students), and then clone the contents of that scrubbed laptop onto the hard drives of the matching computers.  Doing manual updates of two sets of 30-ish laptops is not practical.  
    I have USB / Sata cables to make a physical connection between the source laptop if I pull the hard drive of the target laptop.  
    I previously have done this type of cloning with WD hard drives (on old Dell laptops), which was quick and simple.  For that I used the software provided by WD on their website, which is configured to only work on their drives.  I looked but did not find anything similar on Toshiba's site.  
    So,... I am looking for recommendations on cloning software.  I've tried a couple (Macrium Reflect Free; EaseUS), but neither worked well.  EaseUS seems to want the target drive to be internal rather than accessible via USB.  Macrium worked, but took an hour to clone, and corrupted the source disk somehow.  Ignoring the corrupted source, an hour-per-copy won't work if I have 60 laptops to update.  
    As an alternative approach, a friend recommends I do a physical copy using a hard drive replicator.  In his experience these take single digit minutes to copy, which is feasible.  
    Suggestions appreciated, or if you have tried and failed with other approaches.
    Thanks.

    Is having unique software keys a licensing issue, or a 'the laptop may not work' issue?
    I believe it's only a licensing issue. I've done that once with two computers. That is, I created a duplicate of an OEM machine to another and it seemed to work okay online.
    I then explained the situation to Microsoft on the phone and was issued a new product key for the duplicate.
    As I said, best to get better advice in the Microsoft Forums.
    Please let us know what they say over there.
    -Jerry

  • Photoshop CS6 - Screen flickering when using brushes with new MacAir 2013

    Would the Adobe team please respond to the issues reported by several users:
    http://forums.adobe.com/message/5449199
    A number of users experience severe screen flicker in Photoshop CS6 when using any of the larger brush type tools (cloning, eraser, brush, spot healing, burning, and dodging).  As many on this thread are experiencing, it is awfull and unusable! The flicker is screen wide black boxes, sometimes the whole screen goes black.  It only seems to happen when we put the cursor over the image to edit.
    Hardware:  MacBook Air 13", Haswell 1.7 GHz, 8GB, 512 SSD Software:
    Photoshop CS6 v13.1.2 20130105.r.224, OS X v10.8.4 (and perhaps others)
    Looks like a CS6 is not compatible with teh new MacAir. Please look into this and advise.
    Adobe Photoshop Version: 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00) x64 Operating System: Mac OS 10.8.4 System architecture: Intel CPU Family:6, Model:69, Stepping:1 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading       
    Message was edited by: GSVAI

    An update:
    I went to the Apple store and brought myself a more recent MacBook Air (13", 4/256 FYI, they were out of the 8/512 model).    I can't reproduce *exactly* what you're showing, but got the flicker to happen by resizing the cursor.    Also, while painting, the screen seems to stop updating except for the cursor -- not only is Photoshop unable to draw, but other applications stop drawing as well.  And a few times it hasn't even updated the cursor (while all other apps seem frozen).  That's not normal.
    When I see the flickering, I frequently see the menubar and other UI elements draw at the wrong location on the LCD, then black, then redraw in the correct location -- repeat in different positions and lots of "static" until I stop changing the cursor.  That's more evidence of a hardware or and odd driver issue.  The odd thing is: it doesn't happen all the time.  It's possible that the one we have at the office also shows the problem, but we didn't test long enough.
    I'm trying to reach out to my hardware contacts at Apple - but it's a weekend before a holiday, so we may not make progress immediately.
    One thing that would be useful here: the model of MacBook Air that you have that shows (or doesn't show) the problem. 

  • Database refresh without using RMAN duplicate

    Hi All,
    I am planning to refresh my test instance to a PIT using RMAN backups from PROD. I would like to know the process without connecting to PROD database and without using RMAN duplicate command.
    Thanks.

    imran khan wrote:
    Can you please show the demo first then we will discuss on it more.. what if the folk wants to refresh it ten times then we have to change the database name ten times using NID?
    >Can you please show the demo first then we will discuss on it more.. what if the folk wants to refresh it ten times then we have to change the database name ten times using NID?
    1) You use nid only to change the dbid.
    2) I have done this type of cloning much more than 50 times.
    3) As Iordan Iotzov pointed out, in 11gR2 you can run DUPLICATE database without being connected to the PROD
    Here is a sample code of how to do it assuming both file system are the same:
    # -- RMAN Restore to another server
    rman <<EOF2
    CONNECT TARGET /;
    STARTUP NOMOUNT
    SET DBID 987654321;
    CONNECT CATALOG rman/rman@rcvcat
    RUN {
        SET UNTIL SEQUENCE=5678 THREAD=1;
        ALLOCATE CHANNEL ch0 DEVICE TYPE DISK;
        RESTORE CONTROLFILE;
    ALTER DATABASE MOUNT;
    RUN
      SET UNTIL SEQUENCE=5678 THREAD=1;
      ALLOCATE CHANNEL ch0 DEVICE TYPE DISK;
      ALLOCATE CHANNEL ch1 DEVICE TYPE DISK;
      ALLOCATE CHANNEL ch2 DEVICE TYPE DISK;
      ALLOCATE CHANNEL ch3 DEVICE TYPE DISK;
      RESTORE DATABASE;
      RECOVER DATABASE;
    EXIT;
    EOF2:p

  • About abstract classes

    What's the usefulness of declaring methods in an abstract class if they cannot have body?

    Abstract classes are useful if you have a class where it makes no sense to create an instance of that class, but that would make a good class to
    inherit from. For instance, a class called Shape. Nothing is only a shape, but circles, squares, and triangles are all types of shapes.
    If some of the shape methods are generic enough that it makes sense to implement them in the shape class, then the shape class should be made abstract. If all the methods are specific and should only be implemented in the inherited classes then the shape class should be an interface. For example:
    abstract class Shape {
    abstract void draw(); /*each shape is drawn differently */
    void erase(){ /* code for erase method */ }
    abstract int getSize(); /*size calculated diffently for each shape*/
    class Circle extends Shape{
    void draw() { /*code for draw method*/ }
    int getSize() { /*code for getSize method*/ }
    class Square extends Shape{
    void draw() { /*code for draw method*/ }
    int getSize() { /*code for getSize method*/ }
    draw() and getSize() are implemented differently in each derived class, but erase() is the same for every class, so it only needs to be implemented once in Shape. When you have alot of methods that only need to be implemented once for a group of classes, this can save alot of typing.
    Another use of abstract and interface is that they let the user of a class know what to expect from that class. For instance, the Cloneable
    interface has no methods, but a class that implements it is expected to support some type of cloning.
    There is alot more to abstract classes and interfaces. These are just some simple examples. They are basically used to provide a common interface to work with a group of related classes.

  • How do I go about cloning my MBP? What type of external HD will support this?

    I want to backup my MBP prior to installing Lion. Some suggest to clone my HD? Never done this and after reading some posts it sounds like some External HD's will not support Mac? What about 'CCC' - Carbon copy cloner? Any thoughts?
    Looking for some advice... Type, size, etc. I currently have a W/D
    Thanks in advance.
    FYI
    MBP
    Version 10.6.8
    2.66 GHz Intel Core 2 Duo
    4 GB 1067 MHz DDR3
    My HD info says "Used" 54.6 GB
    265.13 GB available

    It makes more sense to use Time Machine to back up your hard drive, because then the Lion software will transfer the right preferences, applications, and files back to your new Lion computer.
    Get a 500GB USB 2.0 external hard drive.  You can find them from around 50-100 if you look around.  Get a portable one, so that you can carry it with you.
    CCC has some specific purposes which doesn't make sense here since you're upgrading your operating system.  If you were going to swap out your internal hard drive, for example, CCC is an absolute requirement.  I use it frequently, but not for what you're doing.

  • Cloning EBS R12.2.4

    Hi all,
    I am cloning our EBS R12.2.4 source CRP to UAT.
    db location    : /home/oracrp/CRP   to  /home/orauat/UAT
    apps location: /home/applcrp/CRP  to /home/appluat/UAT
    The db part is just easy and very fast to complete.
    But the app part take so long at 50% status only and after like 1 hr it thows error as in:
    Beginning application tier Apply - Thu Dec 18 18:36:23 2014
    /home/appluat/UAT/fs1/EBSapps/comn/clone/bin/../jre/bin/java -Xmx600M -DCONTEXT_VALIDATED=true -Doracle.installer.oui_loc=/oui -classpath /home/appluat/UAT/fs1/EBSapps/comn/clone/jlib/xmlparserv2.jar:/home/appluat/UAT/fs1/EBSapps/comn/clone/jlib/ojdbc6.jar:/home/appluat/UAT/fs1/EBSapps/comn/clone/jlib/java:/home/appluat/UAT/fs1/EBSapps/comn/clone/jlib/oui/OraInstaller.jar:/home/appluat/UAT/fs1/EBSapps/comn/clone/jlib/oui/ewt3.jar:/home/appluat/UAT/fs1/EBSapps/comn/clone/jlib/oui/share.jar:/home/appluat/UAT/fs1/FMW_Home/webtier/../Oracle_EBS-app1/oui/jlib/srvm.jar:/home/appluat/UAT/fs1/EBSapps/comn/clone/jlib/ojmisc.jar:/home/appluat/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/weblogic.jar:/home/appluat/UAT/fs1/EBSapps/comn/clone/jlib/obfuscatepassword.jar  oracle.apps.ad.clone.ApplyAppsTier -e /home/appluat/UAT/fs1/inst/apps/UAT_appscrp/appl/admin/UAT_appscrp.xml -stage /home/appluat/UAT/fs1/EBSapps/comn/clone    -showProgress -nopromptmsg
    Log file located at /home/appluat/UAT/fs1/inst/apps/UAT_appscrp/admin/log/clone/ApplyAppsTier_12181836.log
      -     50% completed
    ERROR while running Apply...
    Thu Dec 18 20:04:06 2014
    The I checked the error log and this is what I got:
    +++++++++++++++++++++++++
    configGroup Type name = OPSS_SECURITY
    configGroup Type name = DEPLOYMENT_PLAN_CONFIG
    Writing moveplan xml file
    Updating the deployment plan /home/appluat/UAT/fs1/EBSapps/comn/clone/FMW/WLS/plan/deployment_plans/oafm#1.0.0_plan.xml
    Updating config-root element with val =/home/appluat/UAT/fs1/FMW_Home/Oracle_EBS-app1/deployment_plans/oafm
    Updating the deployment plan /home/appluat/UAT/fs1/EBSapps/comn/clone/FMW/WLS/plan/deployment_plans/forms-c4ws#1.0.0_plan.xml
    Updating config-root element with val =/home/appluat/UAT/fs1/FMW_Home/Oracle_EBS-app1/deployment_plans/forms-c4ws
    Updating the deployment plan /home/appluat/UAT/fs1/EBSapps/comn/clone/FMW/WLS/plan/deployment_plans/forms#1.0.0_plan.xml
    Updating config-root element with val =/home/appluat/UAT/fs1/FMW_Home/Oracle_EBS-app1/deployment_plans/forms
    Updating the deployment plan /home/appluat/UAT/fs1/EBSapps/comn/clone/FMW/WLS/plan/deployment_plans/oacore#1.0.0_plan.xml
    Refreshing the content of help_InitParam_ohwConfigFileURL to file:/home/appluat/UAT/fs1/FMW_Home/Oracle_EBS-app1/common/config/ohwconfig.xml
    Refreshing the content of CGIServlet_InitParam_cgiDir to /home/appluat/UAT/fs1/FMW_Home/Oracle_EBS-app1/common/scripts
    Refreshing the content of CGIServlet_InitParam_*.pl to /home/appluat/UAT/fs1/FMW_Home/webtier/perl/bin/perl
    Refreshing the content of oowa_InitParam_log_main_file to /usr/tmp/oowa.log
    Refreshing the content of oowa_InitParam_log_spl2_file to /usr/tmp/oowa.log
    Refreshing the content of LoopProcServlet_InitParam_ARCHIVE to /usr/tmp
    Refreshing the content of TransmitServlet_InitParam_ARCHIVE to /usr/tmp
    Updating config-root element with val =/home/appluat/UAT/fs1/FMW_Home/Oracle_EBS-app1/deployment_plans/oacore
    Backup domain directory if exists
    Backup applications domain directory if exists
    START: Creating new WLS domain.
    Running /home/appluat/UAT/fs1/FMW_Home/oracle_common/bin/pasteConfig.sh -javaHome /home/appluat/UAT/fs1/EBSapps/comn/util/jdk64 -al /home/appluat/UAT/fs1/EBSapps/comn/clone/FMW/WLS/EBSdomain.jar -tdl /home/appluat/UAT/fs1/FMW_Home/user_projects/domains/EBS_domain_UAT -tmw /home/appluat/UAT/fs1/FMW_Home -mpl /home/appluat/UAT/fs1/EBSapps/comn/clone/FMW/WLS/plan/moveplan.xml -ldl /home/appluat/UAT/fs1/inst/apps/UAT_appscrp/admin/log/clone/wlsT2PApply -silent true -debug true -domainAdminPassword /home/appluat/UAT/fs1/EBSapps/comn/clone/FMW/tempinfo.txt
    Script Executed in 4630161 milliseconds, returning status 255
    ERROR: Script failed, exit code 255
    Please help how to resolve.
    Thanks a million,
    mk

    This is the WebADI - pl post in the EBS forum

  • After cloning form server is not running in r12

    Hi All,
    after cloning form server is not working
    --------------------------------------------------------------+---------
    ias-component | process-type | pid | status
    --------------------------------------------------------------+---------
    OC4JGroup:default_group | OC4J:oafm | 528566 | Alive
    OC4JGroup:default_group | OC4J:forms | N/A | Down
    OC4JGroup:default_group | OC4J:oacore | 327766 | Alive
    HTTP_Server | HTTP_Server | 1163498 | Alive
    i checked logfile.i found below error
    /opmn/bin/opmnctl[31]: unlimited: bad number
    opmnctl: opmn is already running.
    when i check adformsctl.sh status it showing like below
    adformsctl.sh: exiting with status 0
    how to trobleshut this one.
    Thanks.

    Hi,
    did u check all the pre-requisites on the clone server before cloning. Please post contents of logfile here.
    $INST_TOP/logs/ora/10.1.3/opmn/default_group~forms*.log
    $INST_TOP/logs/ora/10.1.3/opmn/forms_default_group*/formsstd.err
    Thanks,
    Taher

  • All Mac apps don't work after cloning on new hd.

    All Mac apps don't work after cloning on new hd.
    I used CCC to clone 10.6.8 then onto new drive. Everything works BUT all Mac apps.
    Error: You can't open the app(s) because it is not supported on this type of Mac. (On MacBook 2011)
    Thanks for your help.

    All good. Just drag and dropped each application and they worked until I did a restart. Then repaired permissions and everything works.

  • Is this method of Cloning old ?

    DB version:10.2.0.4
    This is what we do to Clone our large Production DB(4 TB). Because of some practical issues, we don't do it in one day.
    After the DUPLICATE .... DORECOVER command. We keep the aux db in mount mode and keep applying arch logs generated at primary DB.
    This is what we do currently. Is this method of Cloning Old ?
    === Start====
    After the pre-requisite setup of tnsnames, listener.ora, password file , pfile
    Step1. Take the Full backup of Primary DB
    step2. Creation of stanby control file using -- at primary DB
    run {
    allocate channel d1 TYPE DISK connect 'sys/pass@mydb'  FORMAT   '/u02/bkp/mydb_cntr_%U.rmbk';
    backup current controlfile for standby;
         }Step3.
    Connect to Primary DB using
    rman target sys/pass@myproddb catalog rman/pass@rmancat AUXILIARY/and run
    duplicate target database for standby dorecover;Step4.
    Now at standby DB we issue the following command for Arch redo log apply.
    recover automatic standby database;Step5.
    After applying all the archivedlogs we issue
    alter database recover managed standby database finish force;Don't know exactly what this is for.
    Step6.
    alter database commit to switchover to primary;==== End ===

    No, it's not
    As the clone process takes long time for large databases, it's the best practice to create a standby db and apply archived redo log files that were generated during the clone process

  • How to change the type of a contract

    Hello Gurus
    Our customer has defined 3 contract types (C01, C02 and C03).
    He want to create new type from the original, by example C01 is cloned to C11 and C12. The problem is he want to change the contract type of all the contracts in database. By example, contract 46000001 is type of C01, he want to modify this contract to C12 type. How to do that? What is the better way to do?
    Thanks a lot
    Gregory

    I see some risks (e.g. with archiving, number range conflicts),
    but I see no reason for this change.
    Copiing the contract types and then moving all existing contracts from the old type to the new type .....is just adding a lot work for no change.
    You have the same situation for less money  if you keep the existing situation.
    Copy the contract type to new ones and use the new ones for new process.
    And change just the description of the old types.

  • [SOLVED] Windows Update not working after Cloning Hard Disk!

    Lenovo T61p with Intel Turbo Memory - Cloning HDD with Advanced Format (4K Cluster) HDD
    I have been beating my head against my desk for the past day trying to figure out the problems I am having.
    I have a Genuine Windows 7 Ultimate Installation
    I cloned my old 100GB HDD onto a 500GB HDD to increase space however after doing so I am unable to update windows, turn windows defender on, or install any Microsoft Products. I am even unable to install WindowsActivationUpdate or Microsoft Security Essentials.
    I have tried many FixIt tools to no avail.
    I have run SFC /SCANNOW
    I have run CHKDSK
    I am stumped.
    ****RESOLUTION****
    After doing some digging I found the solution. Since I had cloned the drive, the old AHCI driver wasn't updating Windows with the correct sector size. Updating the AHCI driver with the latest from Intel solved all the issues I was having.
    **Note**
    Install the Lenovo Driver First -- Reboot
    Lenovo Driver: http://support.lenovo.com/en_US/downloads/detail.page?DocID=DS001676
    Install the AHCI Driver Manually (iaAHCI.inf - Do this in Device Manager) -- Reboot
    Intel AHCI RST Driver: http://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=20110
    ***DO NOT INSTALL RST GUI IT WILL REMOVE TURBO MEMORY DRIVERS!!!***
    Windows Update = Working
    Windows Defender = Updating
    Windows Installations = Working
    ****RESOLUTION****
    My MGADiag:
    Diagnostic Report (1.9.0027.0):
    Windows Validation Data-->
    Validation Code: 0x8004FE21
    Cached Online Validation Code: 0x0
    Windows Product Key: *****-*****-9X7JB-XQDHB-C2W6B
    Windows Product Key Hash: Dy1vngm6F92cujl9L9xOYdanfdU=
    Windows Product ID: 00426-292-1299966-85765
    Windows Product ID Type: 5
    Windows License Type: Retail
    Windows OS version: 6.1.7601.2.00010100.1.0.001
    ID: {13F339C5-D5B9-41FD-8A7B-1238231C5332}(3)
    Is Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/A, hr = 0x80070002
    Signed By: N/A, hr = 0x80070002
    Product Name: Windows 7 Ultimate
    Architecture: 0x00000009
    Build lab: 7601.win7sp1_gdr.120503-2030
    TTS Error:
    Validation Diagnostic:
    Resolution Status: N/A
    Vista WgaER Data-->
    ThreatID(s): N/A, hr = 0x80070002
    Version: N/A, hr = 0x80070002
    Windows XP Notifications Data-->
    Cached Result: N/A, hr = 0x80070002
    File Exists: No
    Version: N/A, hr = 0x80070002
    WgaTray.exe Signed By: N/A, hr = 0x80070002
    WgaLogon.dll Signed By: N/A, hr = 0x80070002
    OGA Notifications Data-->
    Cached Result: N/A, hr = 0x80070002
    Version: N/A, hr = 0x80070002
    OGAExec.exe Signed By: N/A, hr = 0x80070002
    OGAAddin.dll Signed By: N/A, hr = 0x80070002
    OGA Data-->
    Office Status: 109 N/A
    OGA Version: N/A, 0x80070002
    Signed By: N/A, hr = 0x80070002
    Office Diagnostics: B4D0AA8B-604-645_025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3
    Browser Data-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default Browser: C:\Program Files (x86)\Mozilla Firefox\firefox.exe
    Download signed ActiveX controls: Prompt
    Download unsigned ActiveX controls: Disabled
    Run ActiveX controls and plug-ins: Allowed
    Initialize and script ActiveX controls not marked as safe: Disabled
    Allow scripting of Internet Explorer Webbrowser control: Disabled
    Active scripting: Allowed
    Script ActiveX controls marked as safe for scripting: Allowed
    File Scan Data-->
    File Mismatch: C:\Windows\system32\wat\watadminsvc.exe[7.1.7600.16395], Hr = 0x80092003
    File Mismatch: C:\Windows\system32\wat\watux.exe[7.1.7600.16395], Hr = 0x80092003
    File Mismatch: C:\Windows\system32\sppobjs.dll[6.1.7601.17514], Hr = 0x80092003
    File Mismatch: C:\Windows\system32\sppc.dll[6.1.7601.17514], Hr = 0x800b0100
    File Mismatch: C:\Windows\system32\sppcext.dll[6.1.7600.16385], Hr = 0x800b0100
    File Mismatch: C:\Windows\system32\sppwinob.dll[6.1.7601.17514], Hr = 0x80092003
    File Mismatch: C:\Windows\system32\slc.dll[6.1.7600.16385], Hr = 0x800b0100
    File Mismatch: C:\Windows\system32\slcext.dll[6.1.7600.16385], Hr = 0x800b0100
    File Mismatch: C:\Windows\system32\sppuinotify.dll[6.1.7600.16385], Hr = 0x80092003
    File Mismatch: C:\Windows\system32\slui.exe[6.1.7601.17514], Hr = 0x80092003
    File Mismatch: C:\Windows\system32\sppcomapi.dll[6.1.7601.17514], Hr = 0x800b0100
    File Mismatch: C:\Windows\system32\sppcommdlg.dll[6.1.7600.16385], Hr = 0x800b0100
    File Mismatch: C:\Windows\system32\sppsvc.exe[6.1.7601.17514], Hr = 0x80092003
    File Mismatch: C:\Windows\system32\drivers\spsys.sys[6.1.7127.0], Hr = 0x80092003
    File Mismatch: C:\Windows\system32\drivers\spldr.sys[6.1.7127.0], Hr = 0x80092003
    File Mismatch: C:\Windows\system32\systemcpl.dll[6.1.7601.17514], Hr = 0x800b0100
    File Mismatch: C:\Windows\system32\user32.dll[6.1.7601.17514], Hr = 0x800b0100
    Other data-->
    Office Details: <GenuineResults><MachineData><UGUID>{13F339C5-D5B9-41FD-8A7B-1238231C5332}</UGUID><Version>1.9.0027.0</Version><OS>6.1.7601.2.00010100.1.0.001</OS><Architecture>x64</Architecture><PKey>*****-*****-*****-*****-C2W6B</PKey><PID>00426-292-1299966-85765</PID><PIDType>5</PIDType><SID>S-1-5-21-2451738923-860975475-1044764223</SID><SYSTEM><Manufacturer>LENOVO</Manufacturer><Model>6459CTO</Model></SYSTEM><BIOS><Manufacturer>LENOVO</Manufacturer><Version>7LETC9WW (2.29 )</Version><SMBIOSVersion major="2" minor="4"/><Date>20110318000000.000000+000</Date></BIOS><HWID>7E6A3B07018400FA</HWID><UserLCID>0409</UserLCID><SystemLCID>0409</SystemLCID><TimeZone>Pacific Standard Time(GMT-08:00)</TimeZone><iJoin>0</iJoin><SBID><stat>3</stat><msppid></msppid><name></name><model></model></SBID><OEM><OEMID>LENOVO</OEMID><OEMTableID>TP-7L </OEMTableID></OEM><GANotification/></MachineData><Software><Office><Result>109</Result><Products/><Applications/></Office></Software></GenuineResults>
    Spsys.log Content: 0x80070002
    Licensing Data-->
    Software licensing service version: 6.1.7601.17514
    Name: Windows(R) 7, Ultimate edition
    Description: Windows Operating System - Windows(R) 7, RETAIL channel
    Activation ID: ac96e1a8-6cc4-4310-a4ff-332ce77fb5b8
    Application ID: 55c92734-d682-4d71-983e-d6ec3f16059f
    Extended PID: 00426-00170-292-129996-00-1033-7600.0000-3502010
    Installation ID: 006331326732895831680071837781562523717002697036843352
    Processor Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338
    Machine Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339
    Use License URL: http://go.microsoft.com/fwlink/?LinkID=88341
    Product Key Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340
    Partial Product Key: C2W6B
    License Status: Licensed
    Remaining Windows rearm count: 4
    Trusted time: 06/19/2012 00:04:42
    Windows Activation Technologies-->
    HrOffline: 0x8004FE21
    HrOnline: N/A
    HealthStatus: 0x000000000001EFF0
    Event Time Stamp: N/A
    ActiveX: Registered, Version: 7.1.7600.16395
    Admin Service: Registered, Version: 7.1.7600.16395
    HealthStatus Bitmask Output:
    Tampered File: %systemroot%\system32\sppobjs.dll
    Tampered File: %systemroot%\system32\sppc.dll|sppc.dll.mui
    Tampered File: %systemroot%\system32\sppcext.dll|sppcext.dll.mui
    Tampered File: %systemroot%\system32\sppwinob.dll
    Tampered File: %systemroot%\system32\slc.dll|slc.dll.mui
    Tampered File: %systemroot%\system32\slcext.dll|slcext.dll.mui
    Tampered File: %systemroot%\system32\sppuinotify.dll|sppuinotify.dll.mui
    Tampered File: %systemroot%\system32\slui.exe|slui.exe.mui|COM Registration
    Tampered File: %systemroot%\system32\sppcomapi.dll|sppcomapi.dll.mui
    Tampered File: %systemroot%\system32\sppcommdlg.dll|sppcommdlg.dll.mui
    Tampered File: %systemroot%\system32\sppsvc.exe|sppsvc.exe.mui
    Tampered File: %systemroot%\system32\drivers\spsys.sys
    HWID Data-->
    HWID Hash Current: OAAAAAEABgABAAEAAQABAAAAAgABAAEA6GFizC3FgIUan7BULghGgwAtOoH6Et7WRgY2FRoIKoU=
    OEM Activation 1.0 Data-->
    N/A
    OEM Activation 2.0 Data-->
    BIOS valid for OA 2.0: yes
    Windows marker version: 0x0
    OEMID and OEMTableID Consistent: yes
    BIOS Information:
    ACPI Table Name OEMID Value OEMTableID Value
    APIC LENOVO TP-7L
    FACP LENOVO TP-7L
    HPET LENOVO TP-7L
    BOOT LENOVO TP-7L
    MCFG LENOVO TP-7L
    SSDT LENOVO TP-7L
    ECDT LENOVO TP-7L
    TCPA LENOVO TP-7L
    SLIC LENOVO TP-7L
    ASF! LENOVO TP-7L
    SSDT LENOVO TP-7L
    SSDT LENOVO TP-7L
    SSDT LENOVO TP-7L
    SSDT LENOVO TP-7L
    Tried this:
    1) Open an Internet Browser
    2) Type: %windir%\system32 into the browser address bar.
    3) Find the file CMD.exe
    4) Right-Click on CMD.exe and select 'Run as Administrator'
    5) Type: net stop sppsvc (It may ask you if you are sure, select yes)
    Note: the Software Protection servive may not be running, this is ok.
    6) Type: cd %windir%\ServiceProfiles\NetworkService\AppData\Roaming\Microsoft\SoftwareProtectionPlatform
    7) Type: rename tokens.dat tokens.bar
    8) Type: %windir%\system32
    9) Type: net start sppsvc
    10) Type: slui.exe
    11) After a couple of seconds Windows Activation dialog will appear. You may be asked to re-activate and/or re-enter your product key or Activation may occur automaticly.
    But it still says Windows 7 Activation was Successful.

    I only discovered this problem a month after replacing my system HDD with an ssd Drive for a Vista sp2 Dell studio 1735 . But in my case all drivers  were  up to date. However this post triggered the right path to a solution. Though it is more
    a workaround ... . Perhaps this will help others, an even more perhaps bring a microsoft engineer to make a small adaption to the vista windows update tool ....
    So the problem seems that Windows Update checks for its datastore if the file is alined with the HDD underneath. But it seems that this check fails for an ssd with a 4K sector size.
    Lucky I had another HDD in my laptop, which is required for this work around to work :-(. So the following shows the problem (and I think Windows Update does an alike test).
    cd \windows\SDold\DataStore (so use cd \windows\SoftwareDistribution\DataStore if you didn't try the "ren" action yet as mentioned in many posts)
    esentutl /g DataStore.edb  -> (result) Operation terminated with error -583 (JET_errSectorSizeNotSupported, The physical sector size reported by the disk subsystem, is unsupported by ESE for a specific file type.) after 0.15 seconds.
    cd D:\        (to a 512 byte sectored HDD )
    esentutl /g C:\Windows\SDold\DataStore\DataStore.edb     -> (succeeds! normal verification output)
    So I tried (the junction tool can be downloaded from sysinternals):
    net stop cryptsvc
    net stop wuauserv
    robocopy /mir C:\Windows\SDold\DataStore D:\DataStore
    robocopy /mir C:\Windows\system32\catroot2 D:\catroot2   (I now think this is not needed, but I started with an Technet post (and many others ...) that put me on the esentutl track... , which is also why the "net stop cryptsvc" is present.) 
    C:
    cd ..\SoftwareDistribution
    rmdir /s /q DataStore
    junction DataStore D:\DataStore
    cd ..\system32   ( again not sure if needed, also counts for the next 2 commands).
    rmdir /s /q catroot2
    junction catroot2 D:\catroot2
    net start cryptsvc
    net start wuauserv
    And windows update worked again ! Check the C:\windows\WindowsUpdate.log
    Of course this is just a workaround, but perhaps this puts another searcher on the right track. And perhaps it makes a Microsoft engineer update the responsible code ... as to be aligned on disk does not seem crucial for the databases used for this "application"
    Sorry had to remove links for sysinternals and cc734083(v=ws.10).aspx (esentutl, which is a vista specific command) both Microsoft links, as Microsoft has not yet verified my account ...

  • What Type Of Hard Drive Do I Have & Backing Up.

    I just got an email from Apple that says I have a Seagate Hard Drive that my fail and it is on recall.  Call them to set up for a hard drive replacement.  This raises questions for me I hope I can get answers here for.
    1.  How can I check to see if I actually have a Segate Drive?
    I assume it is somewhere here, but not sure where:
    "Apple Logo > About This Mac > More Info"
    2. I am told that to swap the hard drive I will need to bring in all of my original install disc plus any other software  I ordered with it (Final Cut Express in my case).  So what is the best way to back everything up so when I get it back  I will not have to re-type all of info for my emails, contacts, passwords and WEP for wifi, ect, ect.
    3. Will Time Machine remember everything or will there still be some items that will require re-entering?
    4. I have a 1TB internal drive that currently only has about 95 GB being used. Can I use a 400 GB external Passport that is MacJournaled as a Time Machine Backup?
    5. What about security issues, since I assume Apple will keep my old seagate drive they recalled.  Should I ask for it back or actually trust them to dispose of the data properly?
    6. Any other tips before I begin this process is apprecitaed.  I am trying to do this with as little headaches as possible.
    Thanks.

    Open Disk Utility which will display that information. However, since you were notified you should have the drive in question.
    I would suggest a cloned backup of the drive on an external HDD:
    Clone using Restore Option of Disk Utility
      1. Select the destination volume from the left side list.
      2. Click on the Restore tab in the DU main window.
      3. Select the destination volume from the left side list and drag it to the Destination
          entry field.
      4. Select the source volume from the left side list and drag it to the Source entry field.
      5. Double-check you got it right, then click on the Restore button.
    Destination means the external backup drive. Source means the internal startup drive.
    After cloning use OPTION booting to startup from the clone:
    Boot Using OPTION key:
      1. Restart the computer.
      2. Immediately after the chime press and hold down the "OPTION" key.
      3. Release the key when the boot manager appears.
      4. Select the external backup disk.
      5. Click on the arrow button below the icon.
    Now erase your internal drive:
    Drive Preparation
    1. Open Disk Utility in your Utilities folder.
    2. After DU loads select your internal hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Erase tab in the DU main window.
    3. Set the format type to Mac OS Extended (Journaled.) Click on the Security button, check the button for Zero Data - one pass - and click on OK to return to the Erase window.
    This will remove all traces of your information from the drive as if it were new from the factory.

  • Problem cloning your old hard drive to a new hard drive / ssd

    I followed the procedure (from Bimmer, and several googled results), on cloning a boot disk for my macbook pro 17" (A1229), circa 2007, and I have a cloned SSD (Kingston ssdnow v300/240GB) that boots in an external drive, but not internally.  The original disk still boots fine internally, any ideas on what could be wrong?
    Yes, I formated it using disk utility, yes carbon copy created a recovery partition for me.
    Runnign latest Mavericks version.

    The procedure for Mavericks is not the same as for Lion or Mountain Lion.
    Make Your Own Mavericks, Mountain/Lion Installer
    After downloading the installer you must first save the Install Mac OS X application. After the installer downloads DO NOT click on the Install button. Go to your Applications folder and make a copy of the installer. Move the copy into your Downloads folder. Now you can click on the Install button. You must do this because the installer deletes itself automatically when it finishes installing.
       2. Get a USB flash drive that is at least 8 GBs. Prep this flash drive as follows:
    Open Disk Utility in your Utilities folder.
    After DU loads select your flash drive (this is the entry with the mfgr.'s ID and size) from the leftside list. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID then click on the OK button. Click on the Partition button and wait until the process has completed.
    Select the volume you just created (this is the sub-entry under the drive entry) from the left side list.
    Click on the Erase tab in the DU main window.
    Set the format type to Mac OS Extended (Journaled.) Click on the Options button, check the button for Zero Data and click on OK to return to the Erase window.
    Click on the Erase button. The format process can take up to an hour depending upon the flash drive size.
       3. Use DiskMaker X to put your installer clone onto the USB flash drive.
    Make your own Mavericks flash drive installer using the Mavericks tool:
    You can also create a Mavericks flash drive installer via the Terminal. Mavericks has its own built-in installer maker you use via the Terminal:
    You will need a freshly partitioned and formatted USB flash drive with at least 8GBs. Leave the name of the flash drive at the system default, "Untitled." Do not change this name. Open the Terminal in the Utilities folder. Copy this command line after the prompt in the Terminal's window:
    sudo /Applications/Install\ OS\ X\ Mavericks.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled --applicationpath /Applications/Install\ OS\ X\ Mavericks.app --nointeraction
    Press RETURN. Enter your admin password when prompted. It will not be echoed to the screen so be careful to enter it correctly. Press RETURN, again.
    Wait for the process to complete which will take quite some time.

Maybe you are looking for

  • Time Machine doesn't open

    Hello, it seems that since I installed OS X 10.8 I need to visit these forums more often... Ok, the problem is just the following screenshot... I've tried restarting, plugging an external HD (with the proper format), but I don't know how to handle th

  • How many updates can be released before I can no longer update??

    I am on iOS 6.1.3 and do not want to update to iOS 7 because I don't like it. My friend has an iPod touch 4, he has obviously missed a few updates and now he can no longer update and he is stuck on iOS 3.1.1. I was wondering how many updates must be

  • Problem backing up system on external hard drive

    Yesterday my Mac kept freezing, so I restarted the system. Since then when I try to boot up it gets stuck on the grey screen with the apple logo, saying it's loading but it sticks there forever. I wanted to save all my data before I reformated my com

  • Sales per Working Days

    I have a requirement to report the average sales per number of working days in the period. I have created a function module that can access the factory calendar and compute the number of working days in a given year/month and have populated a key fig

  • Is it possible to replace the hard drive in my zen ext

    Hi I dropped my player ( yeah I know, I'm an idiot lol ) Is it possible to replace the hard dri've as I think this is the problem, and if it possible will I be able to download the firmware from the creative site? This wouldn't be such a huge problem