Н
Size: a a a
Н
P
Н
P
# $folders это пути к директориям
$count = 0
$switch = 0
while ($switch -eq 0) {
if (test-path $folders[$count]) {
copy-item $folders[$count] $destination
$switch = 1
} else {
$count++
}
}
Н
AS
EK
EK
EK
EK
EK
Get-ADUser managerusername -properties *|select @{n='directReports'; e={$_.directReports -join '; '}}
EK
EK
EK
EK
EK
AS
EK
EK
AS