The error you're encountering during Quick Assist installation ("could not download") might be related to administrative permissions, group policy restrictions, or dependencies like WebView2. Here is a step-by-step guide to troubleshoot and resolve this issue:
1. Run with Elevated Permissions Correctly
Even if running as an administrator, ensure it's done by:
- Right-clicking the installer or application and selecting
Run as Administrator
.
- Verify that your account has full administrative privileges. If not, switch to an admin account.
2. Install WebView2 Runtime
Quick Assist relies on Microsoft Edge WebView2. If it isn’t installed, it will cause the application to fail. To resolve this:
- Download WebView2 Runtime:
3. Check Group Policy or IT Restrictions
In managed IT environments or Remote Desktop Servers (RDS), group policy settings can prevent downloads or installations. Here's what to check:
- Open
gpedit.msc
and navigate to:
Computer Configuration → Administrative Templates → Windows Components → Microsoft Quick Assist
- Enable any settings allowing the installation or execution of Quick Assist.
- Ensure the Microsoft Store is not blocked or restricted.
4. Reset Microsoft Store Cache
Sometimes, a corrupted cache can prevent installations. To reset it:
- Press
Windows + R
to open the Run dialog.
- Type
wsreset.exe
and hit Enter.
- This will clear the Store cache. Restart your system afterward.
5. Ensure Connectivity to Required Endpoints
Quick Assist communicates over the internet, including specific Microsoft endpoints. If a firewall or proxy blocks these, installation may fail:
- Add exceptions for Quick Assist connections or test installation on a direct internet connection.
6. Use the Microsoft Installer (Add-AppxPackage
)
If the store installer still fails, manually deploy Quick Assist using PowerShell:
- Open PowerShell as Administrator.
- Use the command:
Add-AppxPackage -Path "<QuickAssistAppFilePath>"
Replace <QuickAssistAppFilePath>
with the path to the downloaded .Appx
file if available. This might require downloading the appx package separately from the Microsoft resource links.
7. Look for Error Logs
- Run the following in PowerShell to review installation-related logs:
Get-AppxLog | Out-File "C:\Temp\QuickAssistLog.txt"
Check the log file generated for details about the failure. Look for permission issues like 0x80070005
(access denied).
Additional Troubleshooting
- If you're in a corporate or educational environment, reach out to your IT Administrator to ensure that Quick Assist is not blocked by policies or network restrictions.
These steps should resolve most Quick Assist installation issues in an RDS environment. Let me know if you hit further obstacles!