Donc, si j'ai un répertoire stocké dans une variable, dites :
$scriptPath = (Get-ScriptDirectory);
Maintenant, j'aimerais trouver le répertoire deux niveaux parent plus haut.
J'ai besoin d'une belle façon de faire :
$parentPath = Split-Path -parent $scriptPath
$rootPath = Split-Path -parent $parentPath
Puis-je accéder au rootPath en une seule ligne de code ?