Jun 17 2022 08:41 AM
Hello all,
I have just implemented Intune management at my company and I am still quite new to the topic. We currently have the problem that when opening Quick assist, the message comes up that it must be uploaded via the Windows Store. Is there a way to do this via Intune.
Jun 17 2022 08:57 AM
SolutionJun 17 2022 10:05 AM
How do you remove the older quickassist? When trying to use the new one during autopilot deployment using "quickassist" command the older one still pops up even if the new one is already instaled as a Offline application during ESP.
Regards,
Jun 17 2022 11:45 PM
@gerardoamadeus : Microsoft will fix this bug with a newer version.
You can deinstall the old version first via this powershell or you can delete the shortcut via a remediation scrip. Let me add this to my blog:
$checkQuickAssist = Get-WindowsCapability -online | where-object {$_.name -like "*QuickAssist*"} if($checkQuickAssist.state -eq 'Installed'){ try{ Remove-WindowsCapability -online -name $checkQuickAssist.name -ErrorAction Stop } catch{ $error[0].Exception.Message } }
Jun 18 2022 12:24 AM