12 Mart 2020 Perşembe

Powershell Test-Path

Örnek
Şöyle yaparız
Test-Path "\\xx.xxx.xx.xxx\c$\App_configuration.txt"
-LiteralPath seçeneği
Şöyle yaparız
$isExeOnly = Test-Path -LiteralPath $uninstallString
-Path seçeneği
Şöyle yaparız
$7zipPath = "$env:ProgramFiles\7-Zip\7z.exe"

if (-not (Test-Path -Path $7zipPath -PathType Leaf)) {
    throw "7 zip file '$7zipPath' not found"
}

Set-Alias 7zip $7zipPath

$Source = "c:\BackupFrom\backMeUp.txt"
$Target = "c:\BackupFolder\backup.zip"

7zip a -mx=9 $Target $Source

Hiç yorum yok:

Yorum Gönder