Validate that your custom fonts are properly installed and available on target Windows devices.
On a target device, force a sync to check for new applications:
- Open Settings > Accounts > Access work or school
- Click your work account and select Info
- Click Sync to force policy refresh
Verify font installation using PowerShell on the target device:
# Check if font files exist
Get-ChildItem "C:\Windows\Fonts" | Where-Object { $_.Name -like "*YourCompanyFont*" }
# Check registry entries
Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts" | Select-Object *YourCompanyFont*
# Check installation log
Get-Content "C:\Windows\Temp\FontInstall.log" -Tail 20
Test font availability in applications:
- Open Microsoft Word or Notepad
- Click the font dropdown menu
- Search for your custom font names
- Type some text and apply the custom font
Check Intune reporting:
Intune admin center > Apps > Windows > Company Custom Fonts
- Device install status: Should show "Installed"
- User install status: Check for any failures
- App protection status: Monitor for issues
Verification: Your custom fonts should appear in the font list of all Office applications and other programs. Text formatted with these fonts should display correctly.
Pro tip: Some applications may require a restart to recognize newly installed fonts. Include this information in your deployment communications to users.