Skip to content

Instantly share code, notes, and snippets.

@ebalders
Created September 7, 2024 03:39
Show Gist options
  • Select an option

  • Save ebalders/d6c25bc1d21fe15ddbcc1d00417dba38 to your computer and use it in GitHub Desktop.

Select an option

Save ebalders/d6c25bc1d21fe15ddbcc1d00417dba38 to your computer and use it in GitHub Desktop.
if (Test-Path -Path "$env:TEMP\QuickAssist") { Remove-Item -Path "$env:TEMP\QuickAssist" -Recurse -Force }
New-Item -Path "$env:TEMP\QuickAssist" -ItemType Directory -Force
$splat = @{
Uri = 'http://tlu.dl.delivery.mp.microsoft.com/filestreamingservice/files/8d0b9e7a-4003-4ac6-be5f-e404017dcfaf?P1=1725680910&P2=404&P3=2&P4=FnHO4V8KKLtnpEBRswocNrNVRwp8mYxhexd5ChhGdnR0Y2P7285LX4gI%2fOBSUd891u02SvKsx%2bMIwRoHViqCdw%3d%3d'
OutFile = "$env:TEMP\QuickAssist\QuickAssist.AppxBundle"
}
Invoke-WebRequest @splat
$splat = @{
Uri = 'http://tlu.dl.delivery.mp.microsoft.com/filestreamingservice/files/27ca12bc-f81d-45ff-95d0-12ad79f15735?P1=1725680911&P2=404&P3=2&P4=n0o75D67i0VFCoq8qI%2bkL9LPFLS0YqPHpaNHaGAOJHxvklTTt9g89hQA6y7aXRFKKYupwVARt%2bqRsDEg5o66cQ%3d%3d'
OutFile = "$env:TEMP\QuickAssist\VCLibs.Appx"
}
Invoke-WebRequest @splat
Add-AppPackage -Path "$env:TEMP\QuickAssist\VCLibs.Appx"
Add-AppxPackage -Path "$env:TEMP\QuickAssist\QuickAssist.AppxBundle"
$Package = Get-AppxPackage -Name 'MicrosoftCorporationII.QuickAssist'
Start-Process 'explorer.exe' -ArgumentList "shell:AppsFolder\$($Package.PackageFamilyName)!App"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment