rem R E S T O R E   S O M E   F I L E S   F R O M   H O T   B A C K U P
rem recover pad files from hot backups.
rem extract files from backup.
rem WinZip is the Winzip archiver from WinZip.com.
rem -e mean extract (copy files from archive)
rem -o means overwrite old files without prompt
rem G:\bks\website.zip is the name of the hot backup created with BackuptoZip.
rem E:\mindprod\pad is where restored files will go
rem mindprod\pad\*.xml and mindprod\pad\*.html are files to recover. (without drive letter)
wzunzip.exe -e -o G:\bks\website.zip E:\mindprod\pad  mindprod\pad\*.xml mindprod\pad\*.html
rem -30-