New Drive Snapshot build released.

Discussion in 'backup, imaging & disk mgmt' started by Aaron Here, Dec 10, 2010.

  1. Mr.X

    Mr.X Registered Member

    Joined:
    Aug 10, 2013
    Posts:
    4,973
    Location:
    .
    No afaik.
     
  2. Mr.X

    Mr.X Registered Member

    Joined:
    Aug 10, 2013
    Posts:
    4,973
    Location:
    .
  3. EASTER

    EASTER Registered Member

    Joined:
    Jul 28, 2007
    Posts:
    11,365
    Location:
    U.S.A. (South)
  4. Mr.X

    Mr.X Registered Member

    Joined:
    Aug 10, 2013
    Posts:
    4,973
    Location:
    .
  5. kennyboy

    kennyboy Registered Member

    Joined:
    Oct 4, 2006
    Posts:
    431
    In case its of any interest, I have just used "Ventoy" to add my licensed v1.49 DS version to a HBCD and it was incredibly easy, fast, and hassle free. Booted up quickly, imaged, explored, and restored the image (and Diff) with no problems or errors. Cant believe how easy it was, from such a tiny download.
    Hope this will help someone.
     
  6. Mr.X

    Mr.X Registered Member

    Joined:
    Aug 10, 2013
    Posts:
    4,973
    Location:
    .
    What exact version, these ones? These are the last builds for version 1.49
    Code:
    snapshot64  v.1.49.0.19135
    snapshot v.1.49.0.19134
    
    Did you compare it to the newer versions/builds?
     
  7. Mr.X

    Mr.X Registered Member

    Joined:
    Aug 10, 2013
    Posts:
    4,973
    Location:
    .
  8. pb1

    pb1 Registered Member

    Joined:
    Apr 4, 2014
    Posts:
    1,317
    Location:
    sweden
    Hi

    I am trying to create a recovery possibilty from usb but with no luck. I have a usb drive with Macrium recovery media on, after booting into that and browsing to Snapshot.exe via the file explorer i try to open Snapshot.exe, but get the message - Cannot open file. The file is not associated with any program.

    What can be wrong, or missing?

    Except the above possibility, is there any other way to do it except using other programs recovery media or DOS?
     
  9. TheRollbackFrog

    TheRollbackFrog Imaging Specialist

    Joined:
    Mar 1, 2011
    Posts:
    5,069
    Location:
    The Pond - USA
    I believe that error is associated with running the wrong architecture application (x86/x64) in the wrong WinPE (x86/x64).

    You probably need Snapshot64.exe...
     
  10. TheRollbackFrog

    TheRollbackFrog Imaging Specialist

    Joined:
    Mar 1, 2011
    Posts:
    5,069
    Location:
    The Pond - USA
    When running Snapshot on your LIVE System, either version will work but not under WinPE... FYI.
     
  11. pb1

    pb1 Registered Member

    Joined:
    Apr 4, 2014
    Posts:
    1,317
    Location:
    sweden
    Ha, thanks for being awake.
     
  12. TheRollbackFrog

    TheRollbackFrog Imaging Specialist

    Joined:
    Mar 1, 2011
    Posts:
    5,069
    Location:
    The Pond - USA
  13. pb1

    pb1 Registered Member

    Joined:
    Apr 4, 2014
    Posts:
    1,317
    Location:
    sweden
    Hi

    If i give the necessary facts, is there anyone who could help me with creating a script for restoring a backup of DS that bypasses all the questions, like - reboot when done etc?
     
  14. Mr.X

    Mr.X Registered Member

    Joined:
    Aug 10, 2013
    Posts:
    4,973
    Location:
    .
  15. Brian K

    Brian K Imaging Specialist

    Joined:
    Jan 28, 2005
    Posts:
    12,322
    Location:
    NSW, Australia
    pb1, I've been away.

    Create an Entire Drive backup like this...

    Code:
    snapshot64.exe HD1:* D:\DS_backup\$DISK -Go -R -o --UseVSS -L0
    DS creates an image file for each partition.

    Files needed for the restore...

    autorun.cmd is...

    Code:
    CD /d %~dp0
    call "DS-restore.cmd"
    DS-restore.cmd is...

    Code:
    snapshot64.exe --EntireDisk D:\Image\C.sna HD1 -Y
    wpeutil reboot
    
    You will need to edit D:\Image to point to C.sna.
    Confirm the drive to restore is HD1.

    Put the two cmd files and snapshot64.exe in the same folder in your WinPE UFD. Run autorun.cmd.

    Best of luck. Have a good entire drive backup eg IFW. I last used this method in a UEFI system 8 years ago.
     
  16. pb1

    pb1 Registered Member

    Joined:
    Apr 4, 2014
    Posts:
    1,317
    Location:
    sweden

    Hi Brian, thanks for responding.

    My aim is to accomplish something like with IFW, simple and fast restores without much clicking to accomplish them. So no Usb, just files on E: with DS and its backups. So to do away with as much as possible when starting a restore is the goal. Even the 10sec waiting before commencing and even when restarting would be good but that i believe is not possible with these actions.

    I have 6 partitions, first the boot, then the reserved - os on C:, programs on D:, backups and extra on E: and then Windows recovery. Out of these i only want to backup with DS the 3 first. I suppose that tells you that the initial string should be different.

    Files needed for restore...
    How, on what, do i construct these - Notepad?

    I am a total noob on this so you will have to explain each step detailed.
     
  17. Brian K

    Brian K Imaging Specialist

    Joined:
    Jan 28, 2005
    Posts:
    12,322
    Location:
    NSW, Australia
    To create a batch file, type the text into Notepad. Then change the txt file extension to cmd.
    To edit a .cmd file, right click the file, click Show more options, Edit.

    A sample DS multi-partition (not an Entire drive) backup...

    Code:
    @echo off
    CD /d %~dp0
    snapshot64.exe HD3:1+HD3:2+HD3:3 "D:\DS\aaa\$disk.sna" -L0 --UseVSS -o -R
    

    I wasn't able to create a batch file to restore a multi-partition backup. I did try on many occasions.
     
  18. pb1

    pb1 Registered Member

    Joined:
    Apr 4, 2014
    Posts:
    1,317
    Location:
    sweden
    If your last comment is a fact, then the whole project falls.

    If so, i thank you anyway for your input and competent existence.
     
  19. Brian K

    Brian K Imaging Specialist

    Joined:
    Jan 28, 2005
    Posts:
    12,322
    Location:
    NSW, Australia
    This might work from a WinPE UFD. To restore your first 3 partitions. It's up to you. I haven't tried this batch file.

    restore.cmd

    Code:
    @echo off
    CD /d %~dp0
    
    snapshot64.exe "H:\dsbackup\C.sna" HD1:3 -W
    
    snapshot64.exe "H:\dsbackup\1-1.sna" HD1:1 -W
    
    snapshot64.exe "H:\dsbackup\1-2.sna" HD1:2 -W
    
    wpeutil reboot
     
  20. pb1

    pb1 Registered Member

    Joined:
    Apr 4, 2014
    Posts:
    1,317
    Location:
    sweden
    To restore from a WinPE UFD, would not that take longer then from within the pc?

    As said, my goal with this is to get it done faster, and with less clicking.
     
  21. Brian K

    Brian K Imaging Specialist

    Joined:
    Jan 28, 2005
    Posts:
    12,322
    Location:
    NSW, Australia
    You need to restore from a boot environment.
     
  22. pb1

    pb1 Registered Member

    Joined:
    Apr 4, 2014
    Posts:
    1,317
    Location:
    sweden
    You mean from another then the one DS uses when installing it, make a backup and later on restore. Namely Windows own RE.
     
  23. Brian K

    Brian K Imaging Specialist

    Joined:
    Jan 28, 2005
    Posts:
    12,322
    Location:
    NSW, Australia
    Were you thinking of using Shift/Restart to get into the RE? Yes, you can run DS in that situation. But a UFD could be a faster method as you don't have to use a Command Prompt.

    The RE can be a little confusing (similar to some WinPE) in that drive letters may not be the same as in Windows. My Win11 has the E: drive letter.
     
    Last edited: Feb 4, 2024
  24. Brian K

    Brian K Imaging Specialist

    Joined:
    Jan 28, 2005
    Posts:
    12,322
    Location:
    NSW, Australia
    I tried my multi-restore script. It works.
    From the RE. I didn't use a UFD.
     
    Last edited: Feb 4, 2024
  25. pb1

    pb1 Registered Member

    Joined:
    Apr 4, 2014
    Posts:
    1,317
    Location:
    sweden
    Hm, i do not understand what you mean. As far as i know i will have to go through RE to reach that UFD.

    Besides faster, unattended is of course of basic interest. This method, if i get it correctly, needs to be supervised, if so, i might as well do it the way i do it now. Do the initial multiclicking and then lean back and effortlessly watch the action.

    Ha, Shift/Restart, i did not know about that one. Thank you. Smooth and simple way of doing it. I have been going through, Start menu - Setting - System - Restore. S/R is way more conveniant and - timesaving!
     
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.