

Built into Windows 10, Quick Assist allows you to remotely access another person’s PC in cases wherein you are physically unable to go to the exact site to troubleshoot it. Remove-WindowsCapability -Online -Name ‘~~~~0.0.1.Along with the release of the Anniversary Update of Windows 10 is the new Quick Assist feature. PowerShell -NoProfile -WindowStyle hidden -ExecutionPolicy Bypass -Command “& ”Īdd-AppxProvisionedPackage -online -SkipLicense -PackagePath ‘.\QA.AppxBundle’ Please comment if you have any good ideas for tweaks!įirst, I made a cmd file, put it in all users startup folder: Here’s what I did, not very pretty at all, and I’m sure there’s extra code here that’s unnecessary, but it works. Open PowerShell as admin and navigate to the directory where the script is (remember to make sure the offline installation file is in the same directory as the script!): To execute the script, type:

LogOutput " An error occurred uninstalling The Windows store version of Quick Assist: $($_.Exception.Message)" LogOutput " The Windows store version of Quick Assist has successfully been uninstalled." Get-AppxPackage -allusers MicrosoftCorporationII.QuickAssist | Remove-AppxPackage -allusers #Lets uninstall the Windows Store version of Quick Assist and the old version just in case. LogOutput " Windows Store version of Quick Assist was not found." Also, lets force an uninstall of the old version just in case

#Check to see if the Windows Store version of Quick Assist is installed. $AppXStatus = Get-AppxPackage -allusers MicrosoftCorporationII.QuickAssist LogOutput "***This script is used to uninstall all versions of Microsoft Quick Assist***" This section handles uninstalling the app, in the event you want to remove both the Windows Store version and the legacy version of Quick Assist. LogOutput " An error occurred installing Quick Assist: $($_.Exception.Message)" LogOutput " The Windows store version of Quick assist has successfully installed and the old version has been removed." LogOutput " Attempting to remove the old version of Quick Assist." LogOutput " Installing the Windows Store version of Quick Assist."Īdd-AppxProvisionedPackage -online -SkipLicense -PackagePath '.\' LogOutput " Old version of Quick Assist has been uninstalled" Remove-WindowsCapability -Online -Name '~~~~0.0.1.0' -ErrorAction 'Silentl圜ontinue' LogOutput " lets uninstall the old version" LogOutput " Windows Store version of Quick Assist is already installed"

$InstallAppX = Get-AppxPackage -allusers MicrosoftCorporationII.QuickAssist LogOutput "***This script is used to install the new Quick Assist app that is from the Microsoft Store.
