This repository has been archived on 2024-09-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
powershell_backupscript/etc/example.json
2021-01-15 12:19:10 +01:00

27 lines
733 B
JSON

{
"actions" :
[
{
"name" : "document_backup",
"source" : "C:\\Users\\people\\document",
"dest" : "\\\\backup_srv\\srv01\\",
"type" : "compress",
"options" : {
"-mx" : 3,
"-mmt" : 4,
"-xr@" : "C:\\backup\\etc\\7z\\exclude.txt"
},
"username" : "bkp_example",
"pass" : "test"
},
{
"name" : "project_copy",
"source" : "C:\\Users\\people\\project",
"dest" : "X:\\",
"type" : "clone",
"options" : {
"--exclude" : "*.zip"
}
}
]
}