Rename powershell command

This commit is contained in:
Manuel Thalmann 2023-06-30 12:19:54 +02:00
parent 8e4f0ccd9a
commit 9758a6428f
16 changed files with 35 additions and 35 deletions
scripts/Windows/Scripts

View file

@ -11,7 +11,7 @@ function Get-BackupCandidates() {
return $candidates;
}
function Invoke-FileBackup([Context] $context) {
function Backup-PersonalFiles([Context] $context) {
Write-Host "Backing up Personal Files";
foreach ($candidate in Get-BackupCandidates) {
@ -19,7 +19,7 @@ function Invoke-FileBackup([Context] $context) {
}
}
function Invoke-FileRestore([Context] $context) {
function Restore-PersonalFiles([Context] $context) {
Write-Host "Restoring Personal Files";
foreach ($candidate in Get-BackupCandidates) {