This commit is contained in:
DoTheEvo
2023-09-05 21:51:58 +02:00
parent 4ae63361ee
commit 71ecebfcf6
3 changed files with 34 additions and 24 deletions
+2 -2
View File
@@ -44,6 +44,6 @@ if exist C:\Windows\System32\Tasks\kopia_backup_schedule (
echo.
echo --------------------------------------------------------------
echo.
echo DEPLOYMENT DONE, RUN THE FOLLOWING COMMAND TO INITIALIZE A REPO
echo kopia repo create filesystem --path C:\kopia_repo --password aaa
echo DEPLOYMENT DONE
echo GO READ WHATS WRITTEN IN C:\Kopia\kopia_backup_scipt.ps1
pause
@@ -1,21 +1,21 @@
# Before using this script, initiate the repo
# kopia repo create filesystem --path C:\kopia_repo --password aaa
# useful commands
# kopia repo connect filesystem --path C:\kopia_repo -p aaa
# kopia snap list -all
# kopia mount all K:
# mounting should be used as non-admin user, weird windows thing
# or one does not see the drive, in that case
# net use - shows path that can be pasted to explorer or browser
# useful commands:
# - kopia repo connect filesystem --path C:\kopia_repo -p aaa
# - kopia snap list -all
# - kopia mount all K:
# mounting should be used as non-admin user, weird windows thing
# or one does not see the drive, in that case:
# - net use - shows path that can be pasted to explorer or browser
# \\127.0.0.1@51295\DavWWWRoot
# logs location when run as task scheduler
# logs location when run by task scheduler as SYSTEM
# C:\Windows\System32\config\systemprofile\AppData
# config
# config below
# example of $BACKUP_THIS with multiple paths
# [array]$BACKUP_THIS = 'C:\Test','C:\Test2','C:\Test3'
# - [array]$BACKUP_THIS = 'C:\Test','C:\Test2','C:\Test3'
$REPOSITORY_PATH = 'C:\kopia_repo'
$KOPIA_PASSWORD='aaa'