107
Additional features overview/details
Appendix
IND100077-219
Step 6 - Finalize installation
=======================
Reboot the computer and complete normal Windows setup
Activate Windows
Update Windows and install missing drivers
Set up Windows and software to default state
Step 7 - Set up backup
=======================
Aquire Wimlib binaries from https://wimlib.net
Windows 64bit: https://wimlib.net/downloads/wimlib-1.13.0-windows-x86_64-bin.zip
Copy Wimlib les to D:\
Set up a scheduled script to run backup, or manually create snapshots.
See below reference for details.
Wimlib reference scripts:
REM =====================================================
REM ==== Initial backup example ====
REM =====================================================
REM =====================================================
REM ==== Get current time and date ====
REM ==== independent of locale ====
REM =====================================================
for /f “tokens=2 delims=.=” %%i in (‘wmic os get localdatetime ^/value’) do set tmp=%%i & set
td=%tmp:~0,4%-%tmp:~4,2%-%tmp:~6,2%_%tmp:~8,2%.%tmp:~10,2%.%tmp:~12,2%
echo %td%
REM =====================================================
REM ==== Capture initial complete base image ====
REM =====================================================
D:\WimLib\wimcapture.cmd C:\ D:\Backup\Base.wim
******************************************************************
******************************************************************
REM =====================================================
REM ==== Differential backup example ====
REM =====================================================
REM =====================================================
REM ==== Backup changed data to separate le ====
REM =====================================================
D:\WimLib\wimappend.cmd C:\ D:\Backup\%td%.wim --delta-from=D:\Backup\Base.wim