First commit
This commit is contained in:
commit
c6a55eb2d5
8
CreateBackup.ps1
Normal file
8
CreateBackup.ps1
Normal file
@ -0,0 +1,8 @@
|
||||
[string]$backup_path="C:\Users\roger\SynologyDrive\Archiv\Backups\WSL\"
|
||||
[string]$distro_name="Ubuntu-22.04"
|
||||
|
||||
Write-Output "Creating WSL Backup of distribution $distro_name..."
|
||||
|
||||
Get-ChildItem -Path $backup_path | Sort-Object LastWriteTime -Descending | Select-Object -Skip 3 | Remove-Item
|
||||
#wsl --export $distro_name $backup_path\$distro_name_$((Get-Date).ToString('yyyy-MM-dd')).tar
|
||||
wsl --export $distro_name $backup_path\$distro_name.tar
|
Loading…
Reference in New Issue
Block a user