Install Fonts with Powershell
$ssfFonts = 0x14 $fontSourceFolder = "" $Shell = New-Object -ComObject Shell.Application $SystemFontsFolder = $Shell.Namespace($ssfFonts) $FontFiles = Get-ChildItem $fontSourceFolder $SystemFontsPath = $SystemFontsFolder.Self.Path $rebootFlag = $false foreach($FontFile in $FontFiles) { # $FontFile…