SOLVED

Updating Quick assist

Copper Contributor

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.

5 Replies
best response confirmed by TimKlein121 (Copper Contributor)
Solution
Hello,
I have explained exactly that in my blog post. Hope this helps you.

https://jannikreinhard.com/2022/06/17/how-to-update-quick-assist-with-intune/

@Jannik_Reinhard 

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,

@gerardoamadeus : Microsoft will fix this bug with a newer version.

 

 

Jannik_Reinhard_0-1655534411534.png

 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
    }
}

 

I have include this in my blog (Update 18.06.2022): https://jannikreinhard.com/2022/06/17/how-to-update-quick-assist-with-intune/
Awesome, thanks!
1 best response

Accepted Solutions
best response confirmed by TimKlein121 (Copper Contributor)
Solution
Hello,
I have explained exactly that in my blog post. Hope this helps you.

https://jannikreinhard.com/2022/06/17/how-to-update-quick-assist-with-intune/

View solution in original post