Windows > Software Development for Windows Client Forums > General Windows Development Issues > How to create an image of the FULL system (OS and data)?
Ask a questionAsk a question
 

QuestionHow to create an image of the FULL system (OS and data)?

All Replies

  • Tuesday, November 03, 2009 9:55 PMBrian MuthMVPUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    One commonly used approach is to read raw disk sectors one at a time and store them in a giant backup file. You can find code examples on the internet: here is one promising one on Code Project.

    If the intention is to be able to restore to the same raw drive, your job is pretty much done. If you want to assign this to a new raw drive, there is additional complexity, since I suspect the boot sector will also need to be touched. I'm afraid these details are outside my realm of experience, but probably you can get more help from the microsoft.public.win32.programmer.kernel newsgroup. This is actually a bit OT for a Visual C++ newsgroup.

  • Wednesday, November 04, 2009 11:39 AMRong-Chun ZhangMSFTUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Hello Javier,

    Please take a look at this page:
    http://msdn.microsoft.com/en-us/library/dd851907.aspx

    Since this forum is for VC++ related question, I am moving this thread to General Windows Development Issues forum.

    Thanks,
    Rong-Chun Zhang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.
    Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.
  • Thursday, November 05, 2009 12:49 PMJavierAndresCaceresalvis Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Thanks Rong.

    Any other option?