Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Still a pain in the arse.Windows has always done this very well for me, Windows 10 or 11 isn't much different than prior versions.
- Open Settings: Press the Windows Key + I on your keyboard, then select Apps from the left-hand menu.
- Access Default Apps: Click on Default apps.
- Search for the File Type: Type the file extension (e.g., .pdf, .docx, .png) into the search bar.
- Assign the App: Click on the current default app shown for that file extension, and select your preferred application from the list. [1, 2, 3, 4, 5]
Exactly what they mentioned they do not want to have to do, click each file type and assign an app, versus say "select all image formats - set default app for all!"Windows has always done this very well for me, Windows 10 or 11 isn't much different than prior versions.
- Open Settings: Press the Windows Key + I on your keyboard, then select Apps from the left-hand menu.
- Access Default Apps: Click on Default apps.
- Search for the File Type: Type the file extension (e.g., .pdf, .docx, .png) into the search bar.
- Assign the App: Click on the current default app shown for that file extension, and select your preferred application from the list. [1, 2, 3, 4, 5]
$EditorPath = '"C:\Path\To\Your\Editor.exe" "%1"'
$ImageExts = @('.jpg', '.jpeg', '.png', '.gif', '.bmp', '.webp', '.tiff', '.tif', '.ico')
foreach ($ext in $ImageExts) {
# Generate a unique FileType name for the extension
$fileType = "CustomImageEditor$ext"
# Create the file type association
cmd /c "ftype $fileType=$EditorPath" | Out-Null
cmd /c "assoc $ext=$fileType" | Out-Null
}
Write-Host "Image associations complete. You may need to confirm 'Keep current app' or choose your editor once in Windows Settings." -ForegroundColor Green