Backup and Restore My Sites

Hi,
I was hoping for a bit of clarity regarding this topic.
As I understand it, there are two sides of MySites, the Site Collections that are created through self-service site creation for users content, and then service application that provisions the site profiles.
For site profiles, I believe that the Farm Backup and Restore procedure in Central Administration takes care of this, and a backup and restore can be done by selecting the service application in the long list of tick boxes available in the Farm Backup options.
Please correct me if I'm wrong.
For the Site Collections, as far as I can tell, you can either back them up individually using the SharePoint native backup tool (not feasible for thousands of site collections), backup the content db using SQL backup, or Powershell. As far as I can tell,
this has the limitation of only allowing you to backup and restore ALL sites collections at once, not individual site collections. Is this correct?
If so, is there a way of backing up the site collections so that an individual site collection can be restored should it be required, without having to painstakingly backup all the site collections individually? I didn't know if there was a script for this
or failing that a 3rd party tool.
Any thoughts and input would be much appreciated.

Re: SQL backups, yes. When you attach the content database it attaches all the site collections in the database.
There is no out of the box method to restore individual site collections unless you perform individual site collection backups. You can automate this with PowerShell.
Something like this would work:
$mysites = Get-SPSite -Webapplication "My Sites"
$Path = "\\path\to\place\backups\"
foreach ($site in $mysite) {
$filename = $($site.ServerRelativeUrl -replace "/", "_") + ".bak"
Backup-SPSite -Identity $site -Path $($Path + $filename)
This creates a site collection backup of every site collection in the My Sites Webapplication (you could customize this as necessary for your environment). Note that it replaces forward slashes ("/") in the site collection URL with underscores
("_") as you can't have the slashes in a filename.
This is a quick and dirty script as well. You'd probably want to add outputs or set the site locks, or whatever.
Alternatively, most third-party SharePoint backup solutions offer more granulated restore options -- with a single backup you can restore everything that an OOB backup would contain, plus you can get lower within the content -- so site collections, sites,
lists, libraries, items, documents.
Jason Warren
Infrastructure Architect
Habanero Consulting Group
habaneroconsulting.com/blog

Similar Messages

  • RMAN backup and restore for Disaster Recovery

    Hi Guys,
    I am very new to Oracle and have a question about RMAN backup and restore feature. I am simulating a disaster recovery scenario by having two VMs running oracle 11g, say hosta and hostb, hosta is sort of production db and the other a disaster recovery db (one that will be made primary when disaster occurs). My goal is to backup production db using RMAN and restore it on the other machine. For some reason when I restore the db on hostb, the command restores the previous backup but not the most recent one e.g. I took a backup yesterday (09/20) and applied it to the hostb that worked fine, but when I try to apply a fresh backup from today (09/21) it always picks up the old backup. Here's a dump of the screen:
    Starting restore at 21-SEP-11
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00001 to /oracle/app/dev/oradata/forums/s
    ystem01.dbf
    channel ORA_DISK_1: restoring datafile 00002 to /oracle/app/dev/oradata/forums/s
    ysaux01.dbf
    channel ORA_DISK_1: restoring datafile 00003 to /oracle/app/dev/oradata/forums/u
    ndotbs01.dbf
    channel ORA_DISK_1: restoring datafile 00004 to /oracle/app/dev/oradata/forums/u
    sers01.dbf
    channel ORA_DISK_1: reading from backup piece /oracle/app/dev/flash_recovery_are
    a/FORUMS/backupset/o1_mf_nnnd0_TAG20110920T040950_77jx3zk7_.bkp
    channel ORA_DISK_1: piece handle=/oracle/app/dev/flash_recovery_area/FORUMS/back
    upset/o1_mf_nnnd0_TAG20110920T040950_77jx3zk7_.bkp tag=TAG20110920T040950
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:05
    Finished restore at 21-SEP-11
    Notice that it reads the backup piece from this location /oracle/app/dev/flash_recovery_are
    a/FORUMS/backupset/
    whereas my latest backups are stored at a different location.
    I am executing following steps at the RMAN prompt on hosta and hostb:
    hosta (production site)
    backup as compressed backupset database plus archivelog
    backup current controlfile format'/oracle/oracle_bkup/ctl_%U'
    backup spfile
    hostb (Disaster site)
    set dbid=13732232063
    startup force nomount
    restore spfile to '/oracle/app/dev/product/11.2.0/dbhome_1/dbs/spfileforums.ora' from '/export/home/dev/restore_db/backupset/2011_09_21/o1_mf_nnsnf_TAG20110921T114945_77ndg9ys_.bkp'
    shutdown immediate
    /* create a init<db_name>.ora file with SPFILE= /oracle/app/dev/product/11.2.0/dbhome_1/dbs/spfileforums.ora */
    startup force pfile='/export/home/dev/restore_db/initforums.ora' nomount
    restore controlfile from '/export/home/dev/restore_db/backupset/2011_09_21/ctl_1hmn3mic_1_1'
    /* restart rman here */
    quit
    alter database mount;
    catalog start with '/export/home/dev/restore_db/backupset/2011_09_21' noprompt;
    /* call the next two commands on run */
    restore database;
    recover database;
    alter database open resetlogs
    quit
    Any help will be greatly appreciated.
    Thanks,
    Rajesh

    Thanks guys, I really appreciate all your help here. I redid everything all over again to get all the information you guys wanted. Since I noticed that more eyes are looking into this I am going to reiterate my steps one more time followed by specific answers to questions. My first backup on Host B is located under ..../restore_db/backupset whereas the subsequent one is under .../restore_db/backupset/backupset2.
    I take backup on Host A using:
    rman target /
    backup as compressed backupset database plus archivelog;
    backup spfile;
    quit;
    I restore the backup on Host B using:
    set dbid=13732232063;
    startup force nomount;
    restore spfile to '/oracle/app/dev/product/11.2.0/dbhome_1/dbs/spfileforums.ora' from '/export/home/dev/restore_db/backupset/o1_mf_nnsnf_TAG20110928T171830_787gbpxh_.bkp'
    shutdown immediate;
    startup force nomount;
    restore controlfile from '/export/home/dev/restore_db/backupset/o1_mf_ncsnf_TAG20110928T171638_787gbkxn_.bkp'
    quit;
    /* restart rman here */
    alter database mount;
    catalog start with '/export/home/dev/restore_db/backupset' noprompt;
    restore database;
    recover database;
    alter database open resetlogs;
    quit;
    I take another backup on Host A using (notice no spfile backup this time):
    backup as compressed backupset database plus archivelog;
    quit;
    I restore the database on Host B using:
    alter database mount;
    catalog start with '/export/home/dev/restore_db/backupset/backupset2' noprompt;
    recover database;
    alter database open;
    quit;
    Output of List Backup of database (I have done this after I recovered the second time, also note that it is referring to backupset2 which is were my second backup is stored)
    RMAN> list backup of database;
    using target database control file instead of recovery catalog
    List of Backup Sets
    ===================
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    89 Full 261.87M DISK 00:01:37 28-SEP-11
    BP Key: 91 Status: AVAILABLE Compressed: YES Tag: TAG20110928T171638
    Piece Name: /export/home/dev/restore_db/backupset/o1_mf_nnndf_TAG2011092
    8T171638_787g77rx_.bkp
    List of Datafiles in backup set 89
    File LV Type Ckp SCN Ckp Time Name
    1 Full 1813849 28-SEP-11 /oracle/app/dev/oradata/forums/system01.dbf
    2 Full 1813849 28-SEP-11 /oracle/app/dev/oradata/forums/sysaux01.dbf
    3 Full 1813849 28-SEP-11 /oracle/app/dev/oradata/forums/undotbs01.dbf
    4 Full 1813849 28-SEP-11 /oracle/app/dev/oradata/forums/users01.dbf
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    97 Full 259.16M DISK 00:00:00 28-SEP-11
    BP Key: 100 Status: AVAILABLE Compressed: YES Tag: TAG20110928T18352
    7
    Piece Name: /export/home/dev/restore_db/backupset/backupset2/o1_mf_nnndf
    TAG20110928T183527787lv0nb_.bkp
    List of Datafiles in backup set 97
    File LV Type Ckp SCN Ckp Time Name
    1 Full 1816853 28-SEP-11 /oracle/app/dev/oradata/forums/system01.dbf
    2 Full 1816853 28-SEP-11 /oracle/app/dev/oradata/forums/sysaux01.dbf
    3 Full 1816853 28-SEP-11 /oracle/app/dev/oradata/forums/undotbs01.dbf
    4 Full 1816853 28-SEP-11 /oracle/app/dev/oradata/forums/users01.dbf
    Output of list backup (done after restoring the control file)
    RMAN> list backup;
    BS Key Size Device Type Elapsed Time Completion Time
    87 89.20M DISK 00:00:26 28-SEP-11
    BP Key: 87 Status: AVAILABLE Compressed: YES Tag: TAG20110928T171526
    Piece Name: /oracle/app/dev/flash_recovery_area/FORUMS/backupset/2011_09
    _28/o1_mf_annnn_TAG20110928T171526_787g50bm_.bkp
    List of Archived Logs in backup set 87
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 34 1302253 20-SEP-11 1306439 20-SEP-11
    1 35 1306439 20-SEP-11 1307647 20-SEP-11
    1 36 1307647 20-SEP-11 1307701 20-SEP-11
    1 37 1307701 20-SEP-11 1311393 20-SEP-11
    1 38 1311393 20-SEP-11 1311511 20-SEP-11
    1 39 1311511 20-SEP-11 1332479 20-SEP-11
    1 40 1332479 20-SEP-11 1344418 20-SEP-11
    1 41 1344418 20-SEP-11 1350409 20-SEP-11
    1 42 1350409 20-SEP-11 1350449 20-SEP-11
    1 43 1350449 20-SEP-11 1350854 21-SEP-11
    1 44 1350854 21-SEP-11 1350895 21-SEP-11
    1 45 1350895 21-SEP-11 1353114 21-SEP-11
    1 46 1353114 21-SEP-11 1353254 21-SEP-11
    1 47 1353254 21-SEP-11 1353865 21-SEP-11
    1 48 1353865 21-SEP-11 1353988 21-SEP-11
    1 49 1353988 21-SEP-11 1375403 21-SEP-11
    1 50 1375403 21-SEP-11 1376149 21-SEP-11
    1 51 1376149 21-SEP-11 1376206 21-SEP-11
    1 52 1376206 21-SEP-11 1376246 21-SEP-11
    1 53 1376246 21-SEP-11 1379990 21-SEP-11
    1 54 1379990 21-SEP-11 1380229 21-SEP-11
    1 55 1380229 21-SEP-11 1380266 21-SEP-11
    1 56 1380266 21-SEP-11 1380528 21-SEP-11
    1 57 1380528 21-SEP-11 1380724 21-SEP-11
    1 58 1380724 21-SEP-11 1380861 21-SEP-11
    1 59 1380861 21-SEP-11 1381033 21-SEP-11
    1 60 1381033 21-SEP-11 1381077 21-SEP-11
    1 61 1381077 21-SEP-11 1402243 22-SEP-11
    1 62 1402243 22-SEP-11 1423341 22-SEP-11
    1 63 1423341 22-SEP-11 1435456 22-SEP-11
    1 64 1435456 22-SEP-11 1454415 23-SEP-11
    1 65 1454415 23-SEP-11 1490903 23-SEP-11
    1 66 1490903 23-SEP-11 1491266 23-SEP-11
    1 67 1491266 23-SEP-11 1491347 23-SEP-11
    1 68 1491347 23-SEP-11 1492761 23-SEP-11
    1 69 1492761 23-SEP-11 1492891 23-SEP-11
    1 70 1492891 23-SEP-11 1493678 23-SEP-11
    1 71 1493678 23-SEP-11 1493704 23-SEP-11
    1 72 1493704 23-SEP-11 1494741 23-SEP-11
    1 73 1494741 23-SEP-11 1494790 23-SEP-11
    1 74 1494790 23-SEP-11 1510154 23-SEP-11
    1 75 1510154 23-SEP-11 1514286 23-SEP-11
    1 76 1514286 23-SEP-11 1531967 24-SEP-11
    1 77 1531967 24-SEP-11 1543266 24-SEP-11
    1 78 1543266 24-SEP-11 1558427 24-SEP-11
    1 79 1558427 24-SEP-11 1566924 24-SEP-11
    1 80 1566924 24-SEP-11 1578292 24-SEP-11
    1 81 1578292 24-SEP-11 1596894 25-SEP-11
    BS Key Size Device Type Elapsed Time Completion Time
    88 84.03M DISK 00:00:30 28-SEP-11
    BP Key: 88 Status: AVAILABLE Compressed: YES Tag: TAG20110928T171526
    Piece Name: /oracle/app/dev/flash_recovery_area/FORUMS/backupset/2011_09
    _28/o1_mf_annnn_TAG20110928T171526_787g63s9_.bkp
    List of Archived Logs in backup set 88
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 82 1596894 25-SEP-11 1609028 25-SEP-11
    1 83 1609028 25-SEP-11 1622303 25-SEP-11
    1 84 1622303 25-SEP-11 1626430 25-SEP-11
    1 85 1626430 25-SEP-11 1634486 25-SEP-11
    1 86 1634486 25-SEP-11 1648398 25-SEP-11
    1 87 1648398 25-SEP-11 1669259 26-SEP-11
    1 88 1669259 26-SEP-11 1686820 26-SEP-11
    1 89 1686820 26-SEP-11 1686959 26-SEP-11
    1 90 1686959 26-SEP-11 1689168 26-SEP-11
    1 91 1689168 26-SEP-11 1704759 26-SEP-11
    1 92 1704759 26-SEP-11 1719597 27-SEP-11
    1 93 1719597 27-SEP-11 1740407 27-SEP-11
    1 94 1740407 27-SEP-11 1750125 27-SEP-11
    1 95 1750125 27-SEP-11 1765592 27-SEP-11
    1 96 1765592 27-SEP-11 1781498 28-SEP-11
    1 97 1781498 28-SEP-11 1802311 28-SEP-11
    1 98 1802311 28-SEP-11 1811009 28-SEP-11
    1 99 1811009 28-SEP-11 1813811 28-SEP-11
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    89 Full 261.87M DISK 00:01:37 28-SEP-11
    BP Key: 89 Status: AVAILABLE Compressed: YES Tag: TAG20110928T171638
    Piece Name: /oracle/app/dev/flash_recovery_area/FORUMS/backupset/2011_09
    _28/o1_mf_nnndf_TAG20110928T171638_787g77rx_.bkp
    List of Datafiles in backup set 89
    File LV Type Ckp SCN Ckp Time Name
    1 Full 1813849 28-SEP-11 /oracle/app/dev/oradata/forums/system01.dbf
    2 Full 1813849 28-SEP-11 /oracle/app/dev/oradata/forums/sysaux01.dbf
    3 Full 1813849 28-SEP-11 /oracle/app/dev/oradata/forums/undotbs01.dbf
    4 Full 1813849 28-SEP-11 /oracle/app/dev/oradata/forums/users01.dbf

  • Ideas for Providing User Level Data Backup and Restore

    I'm looking for ideas for implementing a user level application data backup and restore in an Apex app.
    What would be great is to have a user be provided an export file and a way to import this file. A bit overkill but hopefully never needed.
    Another option that is perfectly doable is a report that simply provides a means to create an export of the data. Since I already have an interface I can use an export to interface an export.
    Any thoughts?
    Hopefully I'm missing something already there for an end user to use.

    jlincoln wrote:
    "Do you mean "export" and "import" colloquially, or in the specific sense of the exp/imp/datapump utilities?"': I mean as in imp/exp Oracle utilities. Generally speaking, it would be neat to be able to export and import via an Apex an application. In this hosted environment I don't have that access but would this be a bad idea if you don't care about the existing data in the schema in which the data resides?I can envisage a mechanism using <tt>exp/imp</tt>, but since it requires <tt>dbms_scheduler</tt> external jobs and access to the file system it's highly unlikely to be possible in a hosted environment. (Unless you're doing the hosting?)
    Backup: Necessary for piece of mind and flexibility. I am working on a VB/Access user who does this today to get to the point when they can be comfortable with the backups occurring regularly and by the hosting site's DBA group.
    Restore: Like I said. I am working on a VB/Access user who does this today to get to the point when they can be comfortable with the backups occurring regularly and by the hosting site's DBA group. This is a very small data set. A restore would simply remove existing data and replace it with the new data.My opinion is that time would be better spent working on the user rather than a redundant backup and restore feature. Involve them in a disaster recovery exercise with whoever is hosting the environment to prove that their data is safe. Normally the inclusion of data in regular, effective database backups is sold as a major feature of APEX solutions.
    "What about security/privacy when this data ends up in uncontrolled environments?": I don't understand the point of this question. The data should not end up in uncontrolled environments. Just like the data in the database or its backups.Again, having data in a central, shared location protected by multiple levels of application, database, and OS security is usually seen as a plus for APEX over VB/Access. Exporting the data in toto to a PC/laptop that can be stolen or lost, and where it can be copied to USB drives/phones/email loses this protection.
    User Level: Because the end user must have access to the backup and restore mechanisms of the application.
    Application Data: The application data. Less than 10MB. Very small. It can be exported in a flat file downloaded by the end user. This file can then be used to upload and import via an existing application interface. For example.
    "I'm struggling to parse this for meaning.": When I say I have an existing interface I am referring to a program residing in the Apex application that will take data from a flat table structure (i.e. interface table), validate the data, derive data, and load into the target table structure.Other than the report export capability linked to above, there's nothing built-in to APEX that comes close to your requirement. If the data is simple enough that it can be handled in such a report, and you have a process that can read and recreate this export, then you have your backup/restore capability. If the data can't be handled in a simple report, then you'll need a more complex PL/SQL process to generate the file.

  • Backup and restore recurring orders

    In light of some recent events at our company, we are looking at the best ways to ensure that we have a robust system for taking responsibility for our own data.
    Webapps, files, ecommerce data, the CRM and regular orders we can see ways to achieve this (we have installed the Backup BC app, which helps with this, but it looks like at the moment that our CRM is too big on 2 of our 3 sites to take adavantage of this).
    I can see that we can back up the order details and that they have the recurring details included, but my question is what would be the process of restoring these recurring orders in the event that we had some kind of error. How would the credit card details be re-instated, as they are not included in the information that you can extract from BC (we understand why that isn't included). I'm assuming that CC details are stored in our payment gateway (eWay), but would you be able to reconnect the payments if the orders were restored from a backup/csv
    Any help is apprecitated.
    Cheers
    Pat

    I use Lenovo Backup and Restore, preinstalled and delivered with the laptop. The external HD has both USB2 and eSATA ports as well. When I backup thru USB ports its OK. But when I connected the same HD to the laptop with its eSATA ports, the software does not recognize HD as a backup media. At the same time, the Windows can use correctly the external HD with eSATA. Therefore I suppose this issue may be because of  the Lenovo software. Thank you
    W520: 428223G, i7-2820QM CPU 2.3 GHz, 8GB RAM, NVIDIA Q 2000M,Seagate 500GB HD, WIN7 64bit Prof. Preinstalled

  • HT4528 My apps store will not go online with verizon network, but on wifi it works. I am on an iphone 4, verizon.  I tried to do a complete, backup and restore on the phone 1 day before i noticed this problem,  The backup finished the RESTORE would fail c

    My apps store will not go online with verizon network, but on wifi it works. I am on an iphone 4, verizon.  I tried to do a complete, backup and restore on the phone 1 day before i noticed this problem,  The backup finished but the RESTORE would fail I had an error, could not access Apple server ( some server name I cant remember).
    I have plenty of space available on the iphone,
    8gb free,
    ios version- 6.1.3 ( 10B329)
    carrier - Verizon 14.0
    Modem Firmware - 3.0.04
    Can someone help.
    I tried doing my backup restore on the same computer as I once did a year ago. and THis time I cant do the restore on the iphone.
    computer osx is 10.5.8
    itunes version 10.
    I do not wish to go to ios 7 at this time.

    Settings > General > Reset > Reset Network Settings.
    Basic troubleshooting is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.
    If the issue continues, contact the carrier to troubleshoot the network connectivity issues.

  • Not able to sign into Blackberry Protect. Backup and Restore function not working. "Your device isn't associated with a Blackberry ID"

    Not able to sign into Blackberry Protect.  Backup and Restore function not working. Message is: "Your device isn't associated with a Blackberry ID."  My Blackberry Messenger and Blackberry World is working fine so I am sure its not an ID issue on the phone.  I can sign into Link, Blackberry.com and Protect.  I see my device in Protect but cannot send messages or view it on a map.  Times out with cannot reach device message.  BB Protect on Device has a swirling circle beside the on/of switch.  Cannot turn off.  
    I have deleted Link and re-installed.
    I have reset phone to default(factory) and signed in. 
    OS level is 10.2.1.3062
    BB Link is 1.2.3.56
    Solved!
    Go to Solution.

    I managed to figure this out myself. I had to delete the device from the Blackberry Protect website.  protect.blackberry.com.  I wiped my device again and signed in with my Blackberry ID.  I dont know if the step of wiping was necessary as I did not try my backup with the current configuration on the device following the delete.  Restore is in progress for me!

  • 2013 Backup and Restore

    When I go to my backup and Restore and check the job status it tells me there is a backup in progress:
    A backup or restore is currently in progress
    How do I reset this as there is no backup that I have run for some time?

    Hi, 
    According to your post, my understanding is that the job status still shown “A
    backup or restore is currently in progress”.
    Did you delete a old search application and recreate a new one before?
    If so, maybe the old object is still existing in SQL, you can used the following stsadm command:
    Stsadm -o deleteconfigurationobject -id “object GUID”
    To find the object GUID, simply go into Central Admin - Manage Service Applications and highlight the offending legacy service application (Search Service
    Application in the case). You should now be able to see the GUID in the IE address bar. Run the command above, and try your backups again and all should be well.
    For more information:
    http://imperfectit.blogspot.com/2010/06/sharepoint-2010-farm-backup-fails.html
    There is a similar thread for your reference.
    http://social.technet.microsoft.com/Forums/en-US/0310b061-ea1c-4576-bb74-a02f5e04a3a0/backup-job-stuck-in-process-in-backup-and-restore-job-status?forum=sharepointadminprevious
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Iphone4 would not restore Error -50. I have tried to restore and it restored it to the point that it created after 5.0 was installed. How can I get it an older restore point from my backups and restore it on another computer? The phone has been wiped out.

    Iphone would not restore---- Error -50. I have tried to restore, and it restored it to the new point that it created after 5.0 was installed. How can I get it an older restore point from my backups and restore it on another computer? The phone has been wiped out. I can see earlier backups in my C:\Documents and Settings\user\Application Data\Apple Computer\MobileSync\Backup folder. There are four subfolders in this address. I need my contacts, photos, and messages back. I know this is a common error but I can not figure it out. I have ran the other troublshoot items in the error steps for 13 and 14 like apple says. Is there a way to call apple and get a step by step of how to restore from another restore point? Does anybody have a solution????

    It tells you to go to Error 13 and 14 if you receive error (-50).
    Here is what I have tried...
    Error 13 and 14: These errors are typically resolved by performing one or more of the steps listed below:
    Perform USB isolation troubleshooting, including trying a different USB port directly on the computer. See the advanced steps below for USB troubleshooting. I have moved it around to different ports.
    Put a USB 2.0 hub between the device and the computer. Didn't change anything.
    Try a different USB 30-pin dock-connector cable.
    Eliminate third-party security software conflicts. Removed all virus protection and firewall.
    There may be third-party software installed that modifies your default packet size in Windows by inserting one or more TcpWindowSize entries into your registry. Your default packet size being set incorrectly can cause this error. Contact the manufacturer of the software that installed the packet-size modification for assistance. Or, follow this article by Microsoft: How to reset Internet Protocol (TCP/IP) to reset the packet size back to the default for Windows.Used the Microsoft fix it.
    Connect your computer directly to your Internet source, bypassing any routers, hubs, or switches. You may need to restart your computer and modem to get online. Doesn't matter.
    Try to restore from another known-good computer and network. I do not know how to do this or how to find the correct/full/complete restore point. There should be more information for this.

  • HT1766 Now, I understand how the backup and restore the backup functions. However, if I don't want to transfer the music that I have on iTunes to my phone, how do I avoid it? How do I not transfer the music or take it out of my iPhone if it is already the

    Now, I understand how the backup and restore the backup features function. However, if I don't want to transfer the music that I have on iTunes to my phone, how do I avoid it? How do I not transfer the music or take it out of my iPhone if it is already there? I really do not want any music on my iPhone because I have an iPod for that. Thanks. Hope someone can help.

    When you connect your phone and start iTunes on the left side you will see your phone listed under devices.Click on te icon next to it that looks like a battery. Click on the music button at the top and uncheck the sync music box.

  • Windows 8 full system backup and restore to new laptop (system with 32GB mSata Cache)?

    Hi, I have a new Envy DV7-7205 which has 2TB storage with 32GB HDD Cache (or mSata, not really sure how it's implemented). I need to return the laptop as it's faulty but I would like to startup on the replacement exactly where I left off.
    Are there any special methods required to backup and restore the system image from the old laptop to the new one, particularly with consideration to the 32GB SSD cache, as this doesn;t seem to appear as a distinct "drive" on the system.
    Please can anybody advise the simplest, safest method to move my entire system from old to the new laptops (should be exactly the same spec machine).
    Many thanks,
    Greg
    HP Envy DV7-7205tx, 2x1TB HDD, 32GB mSata Cache, Windows 8 Pro

    Hi,
    Firstly I don't know how this is going to work on new machine because the Windows 8 lisence would NOT work at all.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Can I backup and restore my itunes media using a hard drive?

    Can I backup and restore files if I used a hard drive?
    I do not want to backup my entire itunes library of >200 GB to individual CDs and DVDs, if I can help it; it will take forever. Hence the above question.
    Thanks!

    The answer to your question is yes, though anyone who posts to this group would not be asking that question. I think you might be looking for the iTunes discussions group?
    RealDave

  • How to backup and restore working Mac OS 9 computer ?

    I have a working G4 running OS 9.0, and I would like to backup and restore that hard disk to a second G4 computer that is OS 9 bootable.
    I have a CD backup taken by Toast v4, of the entire disk, but I do not know how to restore the contents to the second computer. My previous attempt hosed the hard disk inside the second computer.
    I'm thinking I can boot up the second computer via cd-rom or external hard disk, but I'm not sure I can copy the contents from the cd-rom correctly. In particular, I'm guessing the boot sector is challenging to restore.
    I probably have some old OS 9 cd-roms around here, if I need to go that route.
    I've thought about removing the working hard disk, and using dd on a linux machine to make a clone of the drive. I'd prefer not to go that route, as I don't want to touch working hardware.
    I've also thought about hooking up a portable USB disk drive to my working OS 9 machine, and doing some sort of cloning. I'm not sure what program I would need to do that, and whether it's part of the OS 9 suite of tools, or a 3rd party tool. I used to own some various disk tools, but it's been so long I'm not sure I can find the cd's.
    So if anybody can point to some instructions on the net for me to follow, or have any suggestions, I'm all ears.
    Thanks
    mark

    If the second computer originally shipped supporting a newer OS 9.x
    system than the first 9.0, the other computer's OS9 version probably
    won't work since it would be too old. In the case of drag and drop,
    you can get away with a lot more than what an installer package may
    allow, since the installer's software can be avoided with Pacifist. So
    another computer's OS9.2.2 basic system could be used as a boot
    volume even if it is sparse and not the fully complemented OS 9.2.2
    that a full retail build would install from a rich full retail install disc.
    Usually the retail path was an OS 9.2.1 retail and the update to 9.2.2;
    but machines requiring OS 9.2.2 won't like a 9.2.1. Sometimes, since
    a drag and drop is not driven by installer software, you can use older.
    But machine specific bits, some critical for graphic card drivers & etc,
    would be likely missing unless the software used offered that support.
    If you can find one of these, it may work = note, out of stock:
    691-3638-A Apple G3/G4 9.2.2 (CD) System Software
    {This is a Mac OS 9.2.2 full installation CD, color Grey.}
    These do not come in retail packaging.
    http://www.welovemacs.com/6913638a.html
    Have fun, even if it isn't exactly as planned.
    Good luck & happy computing!
    { edited }

  • I lost my music after backup and restore. can i get it back

    is it possible to get my music back after a backup and restore ? i lost all my music.

    Is all your music in iTunes on your computer? If so with your device plugged in make sure the sync music box is checked.

  • Has anyone sucessfully used the new Winclone 3.2 to backup and restore  Bootcamp partittion with Windows 7 Ultimate on MBP with Lion 10.7.3?

    Bought late 2011 MBP 17" with Bootcamp partition (Windows 7 Ultimate) and Lion OS 10.7.3
    I am trying to make a backup of Bootcamp partition before I start using my laptop but it proves to be a difficult task.
    I don’t have any installation disk for Windows 7 and I am afraid that, if a disaster strikes and I loose the HDD, my copy of Windows will be gone. 
    The only way to restore Windows partition according to what I read so far is to do the following:
    • Use Windows to backup data from BootCamp Partition
    • Reinstall OS Lion formatting full hard drive in the process
    • Use BootCamp Assistant to create BootCamp partition
    • Install Windows 7 on bootcamp partion
    • Use Windows 7 to restore data from backup file created in the first step
    The only problem is that I don't any image or disk to re-install Windows 7. With Windows 7 I can create only 'repair disk' (for what it is worth) or system image but according to other users it would format the whole drive including OS Lion partition when reinstalling
    Winclone 3.2 seems like the answer to my prayers but would like to hear from the users if it worked for them (most imprtantly, did the restore work?). 

    Got the response from Winclone regarding my confusion in step 18 of the procedure to create bootcamp backup.  The message displayed on the screenshot under step 18 can be ignored.  It refers to creating a Windows partition using Boot Camp Assistant but in fact this partition has already been created in earlier steps using Disk Utility. 
    I bought Winclone 3.3 as it promises to make backup and restore of Bootcamp partition with Windows 7 on it really easy, the steps to do this task are easy and well documented, and the owner of the program was very prompt responding to my queries.
    I performed the following as an insurance against disaster prior to creating Winclone image:
    Since my Windows 7 came pre-installed but without any installation disk I used Windows 7 to create 'Windows 7 system image' . From what I read on forums the system image created using Windows 7 apparently can't be used to easily restore Boot Camp partition (as it wipes out OS X in the process).  I created this image as a last resort backup rescue - some users reported that it can be used to recover Windows but the process is painful and involve a number of steps, swapping hard drives, and paid software to assist in the process.  I did not bother to make notes on this process - thanks to Winclone I am not suppose to need this backup if everything works as promised
    I also created 'Windows 7 repair disk' prior to running Winclone.  Not sure what the value of it will be but again, this is something I did just in case I need it in the future
    Then I installed Winclone 3.3 and created Windows 7 Ultimate Boot Camp image without any problems (on MBP running Lion 10.7.4).  My Winclone image file of 150GB Windows 7 Boot Camp partition prior to installing any programs and without any data on it ended up being nearly 8GB (saved to the external USB HDD).
    I have not restored and don't plan to restore the Winclone 3.3 image just to test if it works (don't want to risk loosing my perfectly well running Windows 7 in case of any disaster).  So ultimately only time or experience of other users will tell me if I spent my money well buying Winclone 3.3.  I  know it worked for you JBLTZ so hopefully it will work for me when I need it one day.
    Cheers
    Swavek

  • The backup and restore function in windows 8.1 seems is changed!

    hi,
    I don't see the real backup and restore function in windows8.1 .
    I have  in search entered  backup and I see some other things
    thanks
    johan
    h.david

    Here's an article that will help:
    http://windows.microsoft.com/en-us/windows-8/what-happened-to-backup-restore
    In previous versions of Windows, you could use Backup and Restore to back up your files or create and use a system image backup or repair disc.
    Windows 8.1 gives you choices about how you can recover your PC and back up your personal files.
    Reset or refresh your PC
    If you’re having a problem with your PC, you can refresh Windows without losing your photos, music, videos, and other personal files. You can also start over by resetting it to factory settings. For more info, see
    How to refresh, reset, or restore your PC.
    Back up or restore personal files
    You can use File History to back up the files on your PC in the Documents, Music, Pictures, Videos, and Desktop folders. Over time, File History builds a history of your files. You'll first need to set up a File History drive and turn File History on. For
    more info, see
    Set up a drive for File History. If your original files are lost, damaged, or deleted, you can restore them. You can also browse and restore different versions of your files. For more info, see
    Restore files or folders using File History.
    Use System Image Backup
    You can use System Image Backup like you did in previous verison of Windows.
    To open System Image Backup
    Swipe in from the right edge of the screen, and then tap Search.
    (If you're using a mouse, point to the upper-right corner of the screen, move the mouse pointer down, and then click
    Search.)
    Enter File History in the search box, tap or click File History, and then click
    System Image Backup.

Maybe you are looking for

  • Reg : pi scenarios

    Hi Guru's, I am new to sap pi,where i will get real time  scenarios to practice. please help me. Thanks&Regards, kumar.

  • How does apex detect the MIMETYPE of an upload?

    Hello, I need to import a bunch of files from the OS filesystem to my own table (blob). For implementing the download of these files I need to know the mimetype. Now, the files are stored in my table, but I have no clue how to detect the mimetype of

  • How to call javaScripts in pfr() of CO

    HI all I want to call a script in prf() of CO that script is already at same page how can I call?

  • How do I take advantage of high frame rates while editing video in iMovie '09?

    I have a GoPro Hero2 Hi-def video camera. It's capable of shooting up to 120 frames per second. How can I take advantage of that smooth slo-mo in iMovie '09?

  • Implementing methods in a class

    I have a class called Employee that uses getters and seters and methods from another project. I brought the code from the methods into the Employee class to run them in my class. It is supose to calculate an employee's monthly income plus commission