2020-04-14 19:51:48 +02:00
#scriptpfad ermitteln
function Get-ScriptDirectory {
$Invocation = ( Get-Variable MyInvocation -Scope 1 ) . Value
Split-Path $Invocation . MyCommand . Path
}
$scriptpfad = Get-ScriptDirectory
#restic variablen
### pfad zu restic, wird mit & $pfad aufgerufen
2021-04-23 08:49:49 +02:00
$pfad = " C:\Users\mg\Desktop\NextCloud\code\restic\bin\restic.exe "
2020-04-14 19:51:48 +02:00
### repository
2020-07-19 12:52:04 +02:00
$repository = " \\fileserver2.grote.lan\backup\restic "
2020-04-14 19:51:48 +02:00
### passwordfile
2021-04-23 08:49:49 +02:00
$passwordfile = " C:\Users\mg\Desktop\NextCloud\code\restic\config\password.txt "
2020-04-14 19:51:48 +02:00
### exclude file
2021-04-23 08:49:49 +02:00
$excludefile = " C:\Users\mg\Desktop\NextCloud\code\restic\config\exclude.txt "
2020-04-14 19:51:48 +02:00
2020-05-11 10:38:20 +02:00
#ausgabe der varriablen und einfaerben der werte mit -foregroundcolor
2020-04-14 19:51:48 +02:00
#`n ist zeilenumbruch
write-host " ==================================== "
2020-04-26 19:01:26 +02:00
write-host " Repository: "
2020-04-14 19:51:48 +02:00
write-host -ForegroundColor Yellow $repository
2020-04-26 19:01:26 +02:00
write-host " Pfad zu Restic: "
2020-04-14 19:51:48 +02:00
write-host -ForegroundColor Yellow $pfad
2020-04-26 19:01:26 +02:00
write-host " Passworddatei: "
2020-04-14 19:51:48 +02:00
write-host -ForegroundColor Yellow $passwordfile
write-host " ==================================== "
2020-05-11 10:38:20 +02:00
write-host -ForegroundColor Red " Auschluesse: "
2020-04-14 19:51:48 +02:00
get-content $excludefile
write-host " ==================================== `n `n "
2020-04-26 19:01:26 +02:00
do
2020-04-14 19:51:48 +02:00
{
write-host " ==================================== "
write-host " Befehl eingeben: "
Write-Host " 1 = Check `n 2 = Forget(Standard...) `n 3 = Prune `n 4 = Snapshots anzeigen `n 5 = Befehl absetzen `n 6 = unlock `n 7 = Befehlszeile ausgeben "
Write-Host " 8 = Restore - komplett `n 9 = Restore - nur bestimmte Daten `n 10 = Restore - alles bis auf bestimmte Daten "
2020-05-23 14:50:59 +02:00
Write-Host " 11 = Snapshot loeschen `n 12 = Rebuild-Index `n 13 = Statistiken - Groesse nach wiederherstellen `n 14 = Statistiken - Groesse auf Storage "
2020-06-15 12:56:27 +02:00
Write-Host " 15 = Cache leeren `n 16 = Alle Snapshots eines Hosts löschen `n 99 = Beenden "
2020-04-14 19:51:48 +02:00
write-host " ==================================== "
$aktion = Read-Host
switch ( $aktion )
2020-05-11 10:38:20 +02:00
# switch, default faengt alle nicht eingetragen eingaben ab
2020-04-14 19:51:48 +02:00
{
1 { & $pfad -r $repository - -password -file $passwordfile check ; break }
2020-07-28 20:43:43 +02:00
2 { & $pfad -r $repository - -password -file $passwordfile forget - -keep -daily 7 - -keep -weekly 4 - -keep -monthly 1 ; break }
2020-04-14 19:51:48 +02:00
3 { & $pfad -r $repository - -password -file $passwordfile prune ; break }
4 { & $pfad -r $repository - -password -file $passwordfile snapshots ; break }
2020-04-26 19:01:26 +02:00
5 {
2020-05-26 22:40:23 +02:00
$befehl = Read-Host -Prompt " Befehl? " ;
2020-04-26 19:01:26 +02:00
& $pfad -r $repository - -password -file $passwordfile $befehl ;
2020-04-14 19:51:48 +02:00
break
}
99 { exit ; break }
6 { & $pfad -r $repository - -password -file $passwordfile unlock ; break }
2020-04-26 19:01:26 +02:00
7 {
2020-05-26 22:40:23 +02:00
$befehl = Read-Host -Prompt " Befehl? " ;
write-host -nonewline $pfad -r $repository - -password -file $passwordfile $befehl ` n ;
2020-04-14 19:51:48 +02:00
break
2020-04-26 19:01:26 +02:00
}
2020-04-14 19:51:48 +02:00
8 {
2020-05-26 22:40:23 +02:00
$snapshot = read-host -Prompt " Snapshot(latest/id) " ;
$target = read-host -Prompt " Zielpfad: " ;
2020-04-26 19:01:26 +02:00
& $pfad -r $repository - -password -file $passwordfile restore $snapshot - -target $target
2020-04-14 19:51:48 +02:00
}
9 {
2020-05-26 22:40:23 +02:00
$snapshot = read-host -Prompt " Snapshot(latest/id) " ;
$target = read-host -Prompt " Zielpfad: " ;
2020-04-14 19:51:48 +02:00
write-host " Include: "
write-host " ==================================== "
write-host -Foregroundcolor red " Beispiele: "
write-host -ForegroundColor yellow " Dateitypen: *.exe `n Datei: C\Users\mg\Desktop\rclone\datei.exe `n Ordner: C\Users\mg\Desktop\rclone\ "
write-host " Alles ist Case-Sensitive! "
write-host " ==================================== "
$include = read-host
& $pfad -r $repository - -password -file $passwordfile restore $snapshot - -target $target - -include $include
}
10 {
2020-05-26 22:40:23 +02:00
$snapshot = read-host -Prompt " Snapshot(latest/id) " ;
$target = read-host -Prompt " Zielpfad: " ;
$exclude = read-host -Prompt " Exclude: " ;
2020-04-14 19:51:48 +02:00
& $pfad -r $repository - -password -file $passwordfile restore $snapshot - -target $target - -exclude $exclude
}
2020-04-26 19:01:26 +02:00
11 {
2020-05-26 22:40:23 +02:00
$snapshot = read-host -Prompt " Snapshot(latest/id) " ;
2020-04-14 19:51:48 +02:00
& $pfad -r $repository - -password -file $passwordfile forget $snapshot
}
2020-04-26 19:01:26 +02:00
12 { & $pfad -r $repository - -password -file $passwordfile rebuild-index ; break }
2020-05-04 14:29:05 +02:00
13 { & $pfad -r $repository - -password -file $passwordfile stats - -mode restore-size ; break }
14 { & $pfad -r $repository - -password -file $passwordfile stats - -mode raw-data ; break }
2020-05-23 14:50:59 +02:00
15 { & $pfad -r $repository - -password -file $passwordfile cache - -cleanup ; break }
2020-06-15 12:56:27 +02:00
16 {
2021-05-02 18:08:49 +02:00
$zaehler_del_hosts_delete = 0 # setzte die beiden zählvariablen
$zaehler_del_hosts_print = 0
2020-06-15 12:56:27 +02:00
write-host " ==================================== "
2021-05-02 18:08:49 +02:00
write-host " Es wird alles bis auf jeweils einen Snapshot pro Host gelöscht. "
2020-06-15 12:56:27 +02:00
write-host " Der letzte muss händisch gelöscht werden. "
2021-05-02 18:08:49 +02:00
write-host " Eine leere Eingabe beendet die Abfrage der Hosts. "
2020-06-15 12:56:27 +02:00
write-host " ==================================== "
2021-05-02 18:08:49 +02:00
$del_hosts = @ ( ) #erstellt array leer
do { #schriebt solange die eingabe in das array bis ein leerer eintrag erfolgt
$eingabe = ( Read-host " Computername eingeben... " )
if ( $eingabe -ne '' ) {
$del_hosts + = $eingabe }
} until ( $eingabe -eq '' )
while ( $zaehler_del_hosts_delete -lt $del_hosts . length ) { #löscht einträge bis ende rray
Write-Host $del_hosts [ $zaehler_del_hosts_delete ]
& $pfad -r $repository - -password -file $passwordfile forget - -host $del_hosts [ $zaehler_del_hosts_delete ] - -keep -last 1
$zaehler_del_hosts_delete + +
}
write-host -ForegroundColor yellow " `n Diese Snapshots muessen haendisch geloescht werden! "
while ( $zaehler_del_hosts_print -lt $del_hosts . length ) { # druckt rest-ids ab die zum händisch löschen benötigt werden
& $pfad -r $repository - -password -file $passwordfile snapshots - -host $del_hosts [ $zaehler_del_hosts_print ]
$zaehler_del_hosts_print + +
}
2020-06-15 12:56:27 +02:00
}
2020-05-11 10:38:20 +02:00
default { write-host " `n Ungueltige Eingabe! " }
2020-04-14 19:51:48 +02:00
}
2020-05-11 10:38:20 +02:00
#der auskommentiert absatz ist ob nochmal extra gefragt werden soll ob das script weiterausgefuehrt werden soll, entfaellt da option 99 jetzt beende ist
2020-04-14 19:51:48 +02:00
#write-host "===================================="
#Write-Host "Abbrechen (j/n)?"
#write-host "===================================="
#$abbrechen = read-host
}
#while($abbrechen -eq "n")
2020-05-11 10:38:20 +02:00
#fuehrt die schleife immer wieder aus
2020-04-14 19:51:48 +02:00
while ( 1 -eq 1 )
2021-05-02 18:08:49 +02:00