added snapcontrol
This commit is contained in:
parent
a9abf4ecec
commit
19b0b47045
@ -2,22 +2,39 @@
|
||||
call check-for-admin
|
||||
if %ERRORLEVEL% neq 0 exit /b
|
||||
|
||||
set T=C:\TEMP
|
||||
set ZIP=..\software\snapcontrol.zip
|
||||
|
||||
if NOT EXIST %ZIP% (
|
||||
echo ERROR: %ZIP% not found!
|
||||
exit /b
|
||||
)
|
||||
set TOOLS=%SystemDrive%\tools
|
||||
set INI_STANDARD=..\scripts\config\snapcontrol.ini
|
||||
set INI_COMPANY=..\company\snapcontrol.ini
|
||||
set INI_TARGET=%TOOLS%\snapcontrol.ini
|
||||
|
||||
echo ####### %0 #######
|
||||
|
||||
7z e -y -aoa -o%T%\snapcontrol %ZIP% 1>nul
|
||||
%T%\snapcontrol\snapcontrol.exe /I
|
||||
copy /Y %T%\snapcontrol\LICENSE.txt c:\snapshot
|
||||
copy /Y %T%\snapcontrol\README.md c:\snapshot
|
||||
rd /S /Q %T%\snapcontrol
|
||||
echo.
|
||||
if EXIST %INI_COMPANY% (
|
||||
|
||||
if NOT EXIST %INI_TARGET% (
|
||||
echo putting COMPANY inifile in place ...
|
||||
copy /Y %INI_COMPANY% %INI_TARGET%
|
||||
%TOOLS%\searchreplace %INI_TARGET% "__COMPUTERNAME__" "%COMPUTERNAME%"
|
||||
%TOOLS%\snapcontrol /I
|
||||
) else (
|
||||
echo inifile already copied. nothing to do!
|
||||
)
|
||||
|
||||
) else (
|
||||
|
||||
if EXIST %INI_STANDARD% (
|
||||
|
||||
if NOT EXIST %INI_TARGET% (
|
||||
echo putting STANDARD inifile in place ...
|
||||
copy /Y %INI_STANDARD% %INI_TARGET%
|
||||
%TOOLS%\snapcontrol /I
|
||||
) else (
|
||||
echo inifile already copied. nothing to do!
|
||||
)
|
||||
|
||||
)
|
||||
|
||||
)
|
||||
|
||||
echo ####### %0 #######
|
||||
pause
|
||||
|
127
scripts/config/snapcontrol.ini
Normal file
127
scripts/config/snapcontrol.ini
Normal file
@ -0,0 +1,127 @@
|
||||
; SNAPCONTROL config file.
|
||||
; https://gitea.exabyte.systems/WINDOWS/snapcontrol
|
||||
;
|
||||
; This tool creates an image backups of windows machines,
|
||||
; it uses the Drive Snapshot tool by Tom Ehlert Software.
|
||||
; Please support this great tool and buy a license.
|
||||
; http://www.drivesnapshot.de/en/order.htm
|
||||
;
|
||||
; Copyright (c) 2019-2021 Michael H.G. Schmidt
|
||||
; EMAIL: michael@schmidt2.de
|
||||
; Released under the MIT license.
|
||||
;
|
||||
; IMPORTANT: DO NOT USE quotation marks in this INIFILE !
|
||||
;
|
||||
|
||||
[BACKUP]
|
||||
; path where snapshot.exe and cmail.exe is located ...
|
||||
BinPath = c:\tools
|
||||
|
||||
; target PATH examples:
|
||||
; - "D:\BACKUP" (LOCAL path on drive d:)
|
||||
; - "\\example\share" (SMB share on server "example")
|
||||
; - "/backup" (some path on FTP server)
|
||||
TargetPath = D:\BACKUP
|
||||
|
||||
; activate FTP backup with "yes"
|
||||
FtpBackup = no
|
||||
|
||||
; name of ftp server
|
||||
FtpServer = ftp.example.com
|
||||
|
||||
; target USER (only for SMB/FTP mode needed)
|
||||
TargetUser = ftpbackup
|
||||
|
||||
; target PASSWORD (only for SMB/FTP mode needed)
|
||||
TargetPassword = mypassword
|
||||
|
||||
; backup schedule modes:
|
||||
; TIME -> absolute start time (format = hh:mm)
|
||||
; LOGIN -> delay before starting the backup after login (format = mmmm:ss)
|
||||
BackupSched = LOGIN
|
||||
BackupStart = 0005:00
|
||||
|
||||
; disks to dump (please use Drive Snapshot format!)
|
||||
; see http://www.drivesnapshot.de/en/commandline.htm
|
||||
Disks2Dump = HD1:*
|
||||
|
||||
; paths to exclude (comma separated list)
|
||||
; spaces in filenames must be enclosed with ""
|
||||
ExcludeList = c:\TEMP,C:\Perflogs
|
||||
|
||||
; maximum size of dumpfiles in MB (reduce for fat32 target drives to 4095)
|
||||
DumpSize = 4095
|
||||
|
||||
; verify the backup ?
|
||||
Verify = yes
|
||||
|
||||
; delete all files in the recycle bin before starting the backup ?
|
||||
BurnTrash = no
|
||||
|
||||
; encrypt the backup ?
|
||||
; no: do NOT encrypt
|
||||
; dynamic: generate a password. will be sent via mail
|
||||
; HINT: Generation happens only ONCE and only in case
|
||||
; that "encryptpw" ist empty. snapcontrol will write
|
||||
; the generated password into the inifile !
|
||||
; yes: use the password in variable "encryptpw"
|
||||
Encrypt = no
|
||||
|
||||
; some hard to guess password ---> WRITE IT DOWN !!!
|
||||
; and DO NOT USE quotation marks !
|
||||
EncryptPW =
|
||||
|
||||
; limit write IO in MB/s
|
||||
LimitIO =
|
||||
|
||||
; should drive/media be ejected after backup ? (yes/no)
|
||||
EjectMedia = yes
|
||||
|
||||
; should we ask for a shutdown after backup ? (yes/no)
|
||||
AskForShutdown = yes
|
||||
|
||||
|
||||
[LOGGING]
|
||||
|
||||
; directory for logfiles
|
||||
LogDir = C:
|
||||
|
||||
; single run logfile
|
||||
LogFile = snapshot-backup.log
|
||||
|
||||
; cumulated logfile
|
||||
HistLog = snapshot-history.log
|
||||
|
||||
|
||||
[MAIL]
|
||||
;
|
||||
; We use "CMail" here because the builtin mail funtions (PureBasic)
|
||||
; are having problems with modern starttls(ssl/tls) communication
|
||||
;
|
||||
|
||||
; shall we send a mail ?
|
||||
MailReport = no
|
||||
|
||||
; maildebugging ? (yes/no)
|
||||
MailDebug = no
|
||||
|
||||
; mail sender...
|
||||
; address formt can be:
|
||||
; john.doe@domain.com
|
||||
; or "<john.doe@domain.com>"
|
||||
; or "john doe <john.doe@domain.com>"
|
||||
; HINT: some mail providers do not accept fictional sender addresses!
|
||||
MailFrom = "MyBackup <john.doe@domain.com>"
|
||||
|
||||
; mail recipient...
|
||||
MailTo = backup@example.com
|
||||
|
||||
; address of SMTP server (TLS/SSL only !)
|
||||
MailServer = smtp.gmail.com
|
||||
|
||||
; user for sending mail
|
||||
MailUser = example@gmail.com
|
||||
|
||||
; password on mailserver
|
||||
MailPass = mypassword
|
||||
|
@ -9,12 +9,13 @@ echo ####### %0 #######
|
||||
for %%E in (
|
||||
|
||||
bfg.jar
|
||||
snapshot64.exe
|
||||
MediaCreationTool20H2.exe
|
||||
putty.exe
|
||||
puttygen.exe
|
||||
rufus.exe
|
||||
snapcontrol.exe
|
||||
snapshot64.exe
|
||||
Windows-ISO-Downloader.exe
|
||||
MediaCreationTool20H2.exe
|
||||
|
||||
) do (
|
||||
|
||||
|
@ -23,7 +23,6 @@ https://download.lenovo.com/lsa/Releases/Rescue_and_Smart_Assistant_v6.1.1.9_sig
|
||||
https://github.com/winauth/winauth/releases/download/3.5.1/WinAuth-3.5.1.zip winauth.zip
|
||||
https://swupdate.openvpn.net/as/clients/openvpn-connect-2.7.1.111_signed.msi openvpn-setup.msi
|
||||
https://cdn-fastly.obsproject.com/downloads/OBS-Studio-27.0.1-Full-Installer-x64.exe obsstudio-setup.exe
|
||||
https://github.com/mhgschmidt/snapcontrol/releases/download/V1.07/snapcontrol.zip snapcontrol.zip
|
||||
https://download.oracle.com/java/17/latest/jdk-17_windows-x64_bin.exe java-setup.exe
|
||||
https://www.ausweisapp.bund.de/fileadmin/user_upload/Software/AusweisApp2-1.22.5.msi ausweisapp2-setup.msi
|
||||
https://updates.tdesktop.com/tx64/tsetup-x64.3.7.3.exe telegram-setup.exe
|
||||
@ -34,4 +33,5 @@ https://download3.pdf24.org/pdf24-creator-11.1.0.msi pdf24-setup.msi
|
||||
https://static.tp-link.com/2019/201911/20191115/Archer-T5E(UN)_V1_191116_Bluetooth.zip archerT5E-bluetooth.zip
|
||||
https://static.tp-link.com/2019/201911/20191115/Archer-T5E(UN)_V1_191116_Wi-Fi.zip archerT5E-wifi.zip
|
||||
https://www.heidisql.com/installers/HeidiSQL_12.3.0.6589_Setup.exe heidisql-setup.exe
|
||||
https://gitea.exabyte.systems/attachments/dde4c70c-7e2f-4edd-b33e-29d928d5a68c snapcontrol.exe
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user