Powershell - Test-Path pour tester la présence d'un objet

Pour me soutenir, vous pouvez vous abonner à la chaîne, partager et liker les vidéos, désactiver votre bloqueur de pub ou encore faire un don. Merci!

Bonjour,

Dans PowerShell, Test-path permet de vérifier l’existence d’un objet quand on utilise des psdrive

# Exemple pour les dossiers et fichiers :
$dossier = 'c:\windows'
$fichier = 'notepad.exe'
test-path -Path $dossier
test-path -Path "$dossier\$fichier"
$dossier2 = 'c:\windows2'
$fichier2 = 'notepad2.exe'
test-path -Path $dossier2
test-path -Path "$dossier\$fichier2"
# Pour le registre :
Test-Path -Path HKLM:\Software\Microsoft
Test-Path -Path HKLM:\Software\Microsoft2
# Pour l'Active Directory :
$dc = (Get-ADDomain).distinguishedname
$ou = 'ordinateurs'
import-module -Name ActiveDirectory
test-path -Path "ad:ou=$ou,$dc"

Liens en relation