```
$massiv=Get-ChildItem -Path 'd:\delme\OTF\*.otf'
foreach ($a in ($massiv).Fullname)
{
$n=(New-Object -TypeName Windows.Media.GlyphTypeface -ArgumentList $a).Win32FamilyNames.Values
$nn='d:\delme\OTF\'+$n
if (!(Test-Path $nn)){New-Item -Path $nn -ItemType Directory}
Move-Item $a -Destination $nn
}
```
Ебать-копать, этот ваш #PowerShell НЕТОРОПЛИВЫЙ 😠