Creazione ricorsiva cartelle con PowerShelll


Get-ChildItem c:\tmp |
Where-Object {$_.PSIsContainer}|
ForEach-Object {new-item  -name GesOff -type directory -path $_.fullname -WhatIf -ErrorAction SilentlyContinue
}

Nessun commento:

Posta un commento

Lascia qui il tuo commento.