Wyklucz niektóre rozszerzenia plików w skrypcie kopii zapasowej PowerShell

0

Jestem nowy w skryptowaniu PowerShell i potrzebuję pomocy z kodem. Kod zawiera większość parametrów, których szukam przy tworzeniu kopii zapasowych profili użytkowników, ale muszę ustawić wyjątki dla rozszerzeń plików, takich jak .mp3 i .exe.

Jak mogę dostosować skrypt, aby to zrobić?

$destination = "D:\CODs"

$folder = "Desktop",
"Downloads",
"Favorites",
"Documents",
"Music",
"Pictures",
"Videos",
"AppData\Local\Mozilla",
"AppData\Local\Google",
"AppData\Roaming\Mozilla"




###############################################################################################################

$username = gc env:username
$userprofile = gc env:userprofile
$appData = gc env:localAPPDATA


###### Restore data section ######
if ([IO.Directory]::Exists($destination + "\" + $username + "\")) 
{ 

    $caption = "Choose Action";
    $message = "A backup folder for $username already exists, would you like to restore the data to the local machine?";
    $Yes = new-Object System.Management.Automation.Host.ChoiceDescription "&Yes","Yes";
    $No = new-Object System.Management.Automation.Host.ChoiceDescription "&No","No";
    $choices = [System.Management.Automation.Host.ChoiceDescription[]]($Yes,$No);
    $answer = $host.ui.PromptForChoice($caption,$message,$choices,0)

    if ($answer -eq 0) 
    {

        write-host -ForegroundColor green "Restoring data to local machine for $username"
        foreach ($f in $folder)
        {   
            $currentLocalFolder = $userprofile + "\" + $f
            $currentRemoteFolder = $destination + "\" + $username + "\" + $f
            write-host -ForegroundColor cyan "  $f..."
            Copy-Item -ErrorAction silentlyContinue -recurse $currentRemoteFolder $userprofile

            if ($f -eq "AppData\Local\Mozilla") { rename-item $currentLocalFolder "$currentLocalFolder.old" }
            if ($f -eq "AppData\Roaming\Mozilla") { rename-item $currentLocalFolder "$currentLocalFolder.old" }
            if ($f -eq "AppData\Local\Google") { rename-item $currentLocalFolder "$currentLocalFolder.old" }

        }
        rename-item "$destination\$username" "$destination\$username.restored"
        write-host -ForegroundColor green "Restore Complete!"
    }

    else
    {
        write-host -ForegroundColor yellow "Aborting process"
        exit
    }
}

###### Backup Data section ########
else
{

    Write-Host -ForegroundColor green "Outlook is about to close, save any unsaved emails then press any key to continue ..."

    $x = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")

    Get-Process | Where { $_.Name -Eq "OUTLOOK" } | Kill

    write-host -ForegroundColor green "Backing up data from local machine for $username"


    foreach ($f in $folder)
    {   
        $currentLocalFolder = $userprofile + "\" + $f
        $currentRemoteFolder = $destination + "\" + $username + "\" + $f
        $currentFolderSize = (Get-ChildItem -ErrorAction silentlyContinue $currentLocalFolder -Recurse -Force | Measure-Object -ErrorAction silentlyContinue -Property Length -Sum ).Sum / 1MB
        $currentFolderSizeRounded = [System.Math]::Round($currentFolderSize)
        write-host -ForegroundColor cyan "  $f... ($currentFolderSizeRounded MB)"
        Copy-Item -ErrorAction silentlyContinue -recurse $currentLocalFolder $currentRemoteFolder
    }



    $oldStylePST = [IO.Directory]::GetFiles($appData + "\Microsoft\Outlook", "*.pst") 
    foreach($pst in $oldStylePST)   
    { 
        if ((test-path -path ($destination + "\" + $username + "\Documents\Outlook Files\oldstyle")) -eq 0){new-item -type directory -path ($destination + "\" + $username + "\Documents\Outlook Files\oldstyle") | out-null}
        write-host -ForegroundColor yellow "  $pst..."
        Copy-Item $pst ($destination + "\" + $username + "\Documents\Outlook Files\oldstyle")
    }    

    write-host -ForegroundColor green "Backup complete!"

} 
Andrew Kasaija
źródło
Cześć Ben, mam kilka wymagań, które wymagają twojego wkładu ... w jaki sposób mogę zrobić ten sam skrypt, zwiększać wartości w oparciu o datę ostatniej modyfikacji wszystkich plików między źródłem a miejscem docelowym, usuwać stare pliki z folderu docelowego na podstawie data ze źródła po określonym czasie. Dzięki
Andrew kasaija,
To staje się trochę bardziej skomplikowane. Możesz sprawdzić dokumentację poleceń cmdlet Remove-Itemi Rename-Item. Pamiętaj, że możesz potrzebować samodzielnie Get-ChildItem -Recursepodejmować indywidualne decyzje dotyczące kopiowania, jeśli potrzebujesz dokładnej kontroli. Jeśli napotkasz jakieś problemy, sugeruję opublikowanie nowego pytania w celu lepszej widoczności.
Ben N

Odpowiedzi:

1

Można użyć Copy-Item„s -Excludeparametr. Pobiera zbiór nazw plików, które mogą zawierać symbole wieloznaczne i unika ich kopiowania. Więc możesz zmienić ten wiersz:

Copy-Item -ErrorAction silentlyContinue -recurse $currentLocalFolder $currentRemoteFolder

Do tego (zwróć uwagę na dodatkowy parametr na początku):

Copy-Item -Exclude '*.mp3', '*.exe' -ErrorAction silentlyContinue -recurse $currentLocalFolder $currentRemoteFolder

Możesz dodać dowolną liczbę wykluczeń.

Ben N.
źródło
Udało się