Files
DUTAS/SqlAgent/01_Devl/6_Backup_Restore/Extract_Backup-SQLAgent.ps1
2025-11-02 14:50:48 -05:00

9 lines
371 B
PowerShell

$BackupZip = "\\DOES-RAINVM-DEV\E$\Neeraj\SqlAgent\Backup\SQLAgentJobs_20251018_153000.zip"
$ExtractPath = "\\DOES-RAINVM-DEV\E$\Neeraj\SqlAgent\Restore\"
# Create folder if not exist
if (-not (Test-Path $ExtractPath)) { New-Item -ItemType Directory -Path $ExtractPath | Out-Null }
# Extract the ZIP
Expand-Archive -Path $BackupZip -DestinationPath $ExtractPath -Force