Windows OS Hub
  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux

 Windows OS Hub / Windows 10 / How to Download Offline Installer (APPX/MSIX) for Microsoft Store App

March 12, 2024 PowerShellWindows 10Windows 11

How to Download Offline Installer (APPX/MSIX) for Microsoft Store App

Universal Windows Platform (UWP) applications from the Microsoft Store require you to install them online. However, when you actually install a UWP application, the Microsoft Store client downloads and installs application package files in .Appx, .AppxBundle, .Msix, or .Msixbundle format on your computer. In this article, we’ll look at how to manually download and install the APPX/MSIX file of any UWP application without Microsoft Store on Windows 10 and 11.

Contents:
  • Download APPX/MSIX App Packages without the Microsoft Store
  • How to Download APPX/MSIX Files from Microsoft Store with Fiddler
  • Installing APPX/MSIX App Files on Windows without Store
  • How to Use WinGet to Install Microsoft Store Apps

You can use this guide to deploy APPX apps on computers that don’t have access to the Microsoft Store (offline, isolated systems, or corporate segment), as on LTSC Windows editions (where the Store app is missing by design), and when creating your custom Windows installation images.

Download APPX/MSIX App Packages without the Microsoft Store

To download the installation files (APPX and MSIX) for the UWP packages and their dependencies from the Microsoft Store, you must obtain direct links to download them.

  1. Start your browser, go to the Microsoft App Store (https://apps.microsoft.com/), and use search to find the application you need. Copy the URL of the app in the store from your browser’s address bar. As an example, we are going to download the MSIX and APPX package files to install WhatsApp on an offline Windows computer. The URL of this app is https://apps.microsoft.com/detail/9NKSQGP7F2NH?hl=en-us&gl=en;
  2. Navigate to the website https://store.rg-adguard.net/ (this online service allows you to get direct download links to APPX/MSIX installation files in the Store). Paste the WhatsApp link into the URL search bar and select Retail (it is the default Windows channel) from the drop-down list;
  3. You will see a list of links to the app installation files and required dependencies. Dependencies are applications and libraries that need to be installed for your application to work properly;
  4. As you can see, there are a lot of links to download files in the list. There is no need to download them all. First, check the bitness of the version of Windows installed on your computer. For Windows 10 x64, you need packages whose names end in x64(for the 32-bit version of Windows, you need to download x86packages; and for an ARM version of Windows – arm); get direct download link on microsoft store app
  5. Also note the versions of the dependency files. No need to download all the files. It is usually sufficient to download the latest version of the package. For example, in this example, you should only download the latest version of the Microsoft.VCLibs.140.00.UWPDesktop library.
    Direct downloads of APPX files from the MS Store may be blocked by the built-in Microsoft Edge browser. Allow download of these files.ms edge browser blocks appx and msix files download
  6. Packages with *.appxbundle, *.msixbundle (MSI installer) and *.EAppx (appx application update) extensions may be included in the resulting list of files. If the downloaded file does not have an extension, manually add the .appxbundle extension;
  7. Download APPX, MSIX, APPXBUNDLE, and MSIXBUNDLE files. In my example, the list of files looks like this:
    5319275A.WhatsAppDesktop_2.2401.5.0_neutral_~_cv1g1gvanyjgm.Msixbundle 
    Microsoft.NET.Native.Framework.2.2_2.2.29512.0_x64__8wekyb3d8bbwe.Appx 
    Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x64__8wekyb3d8bbwe.Appx 
    Microsoft.UI.Xaml.2.8_8.2310.30001.0_x64__8wekyb3d8bbwe.Appx 
    Microsoft.VCLibs.140.00.UWPDesktop_14.0.33519.0_x64__8wekyb3d8bbwe.Appx 
    Microsoft.VCLibs.140.00_14.0.33519.0_x64__8wekyb3d8bbwe.Appx
    

ms store app ofline installer files with dependencies

You can also restore a deleted Microsoft Store app in Windows using the rg-adguard.net web service. Download the Microsoft.WindowsStore_xxxxx.appxbundle with dependencies using the product link https://www.microsoft.com/store/productId/9wzdncrfjbmp, and install it as an APPX file.

So, you have downloaded all the required APPX or MSIX files for the UWP app from the Microsoft Store. The last section of this post describes how to manually install the app from downloaded APPX files.

This method will not allow you to download protected or paid APPX packages, or previous versions of UWP apps.

To automatically download all the application installation APPX/MSIX files and dependencies from the Microsoft Store using the specified link, you can use the PowerShell function Download-AppxPackage from our GitHub repo (https://github.com/maxbakhub/winposh/blob/main/WindowsDesktopManagement/Download-AppxPackage.ps1):

Download-AppxPackage "https://apps.microsoft.com/detail/9NKSQGP7F2NH" "$ENV:USERPROFILE\Desktop"

powershell script to download ms store offline appx/msix installers

The script uses the built-in Invoke-WebRequest cmdlet to download files from the URL.

How to Download APPX/MSIX Files from Microsoft Store with Fiddler

Use the Fiddler tool to inspect and debug the HTTP traffic of the Microsoft Store application to get a direct link to download the application’s APPX/MSIX installation files (this method is slightly more complicated than the previous one). During the installation of the UWP app, a Microsoft Store client on a computer receives a direct HTTPS link to download the .APPX/.MSIX file. With Fiddler, you can capture this URL address.

  1. Download the FiddlerSetup.exe installation file from the official website (https://www.telerik.com/download/fiddler);Download and install Fiddler in windows 10
  2. Run fiddler.exe and click on the WinConfig button in the navigation bar;
  3. In the AppContainer Loopback Utility extension, select the Microsoft Store as the application for which you want to inspect the traffic, and then save the changes; debug microsoft store traffic with appcontainer loopback exemption utility in fiddler
    Note. The list of installed UWP apps can be quite small if all built-in Microsoft Store apps have been removed from the Windows image or manually uninstalled using PowerShell. 
  4. Clear the current log in the Fiddler window: Edit -> Remove -> All Sessions (Ctrl + X);fiddler clear sessions
  5. Run the Microsoft Store app (quick launch command ms-windows-store:), Find the app you need and install it. In this example, we are going to get a link to download the APPX installer of the Calculator Free app;downloading app from microsoft store
  6. Switch to the Fiddler window with a list of Store app HTTP sessions. Search for an event for access to a URL with an application’s APPX file (Find -> type appx ->Find sessions);filter http sessions by keyword appx
  7. Fiddler will highlight URLs with the keyword appx in yellow. Search for a line like: Result: 200, Protocol: HTTP, Host: tlu.dl.delivery.mp.microsoft.com. Copy the received URL to the clipboard by selecting Copy -> Just Url;
    Copy appx url path for a microsoft store application
  8. In my example, the URL looks like this   _http://tlu.dl.delivery.mp.microsoft.com/filestreamingservice/files/33e08cf2-faf3-4e23-a9a3-5d7c0502a6a4?P1=1627653445& P2=404&P3=2&P4=F%2fZeZWLKUurYuEwkJjnfuFc9zUJxjfiKD%2fGpH5OdktlnVwrfdcLsHeQER5c1RA5b%2fwH1ZVPQ8cJLOgWcoKEXjg%3d%3d
  9. Download the APPX file located at the URL you received.Download Microsoft Store appx file
Important. A URL link to the appx file is not permanent and will only be available for a short time. Download the file before the link expires (ERROR 403: Time-Limited URL validation failed). In some cases, the Store app file may have a .zip extension. Rename the file extension to .appx or .appxbundle.

Installing APPX/MSIX App Files on Windows without Store

You can install the resulting APPX (appxbundle) or MSIX (appxbundle) files and their dependencies on Windows offline (bypassing the Microsoft Store). This process is known as a sideload.

Double-click the APPX file and confirm the installation.

manually install ms store app offline

PowerShell cmdlet can also be used to install the APPX application and its dependencies. A separate APPX/MSIX package can be installed from a file using the following command:

add-appxpackage –path "C:\Distr\WhatsApp\5319275A.WhatsAppDesktop_2.2401.5.0_neutral_~_cv1g1gvanyjgm.Msixbundle"

install appx package with PowerShell in Windows 10

You can use PowerShell to install several appx/appxbundle files and their dependencies from the source directory at once:

$Path = 'C:\distr\WhatsApp\'
Get-Childitem $Path -filter *.appx| %{Add-AppxPackage -Path $_.FullName}
Get-Childitem $Path -filter *.appxbundle | %{Add-AppxPackage -Path $_.FullName}

powershell - install uwp appx with dependencies

Check that your application is installed and that its icon appears in the Start menu.

An error will occur if you attempt to install an APPX without first installing the dependencies:

Deployment failed with HRESULT: 0x80073CF3, Package failed updates, dependency, or conflict validation.
Windows cannot install resource package XXXXX because the app package it requires could not be found. Ensure that the app package is installed before installing the resource package.

The graphical MS Store application installer may show the required package names that need to be installed first:

App Installer failed to install package dependencies. Ask the developer for XXXXX package.

Appx installer failed install package dependencies

How to Use WinGet to Install Microsoft Store Apps

You can install UWP apps from the Microsoft Store on Windows 10 and 11 using the built-in WinGet package manager:

  1. Find the application ID in the MS Store: winget search whatsapp --source=msstore
  2. Copy the ID from the target msstore app URL or from the previous command (for WhatsApp it is 9NKSQGP7F2NH);
  3. Install the UWP app using the winget command: winget install 9NKSQGP7F2NH -s msstore winget: install msstore appx from cmd
49 comments
21
Facebook Twitter Google + Pinterest
previous post
How to Convert (Upgrade) Windows Server Evaluation to Full Version
next post
Hyper-V: Enabling Routing Between Internal Networks (Subnets)

Related Reading

How to Cancel Windows Update Pending Restart Loop

May 6, 2025

View Windows Update History with PowerShell (CMD)

April 30, 2025

Change BIOS from Legacy to UEFI without Reinstalling...

April 21, 2025

Remove ‘Your License isn’t Genuine’ Banner in MS...

April 21, 2025

Uninstalling Windows Updates via CMD/PowerShell

April 18, 2025

49 comments

Jason July 24, 2015 - 3:47 am

Great tutorial.
Have you tried this in Windows 10, by chance?  I tried it, and I never could find the APPX file, whereas in Windows 8.1 I did find it.  Not sure if they changed how this works or what.

Reply
Munkey102 February 16, 2016 - 9:36 am

This works in Windows 10 – You just have to click the Install button to install the application then the APPX urls are getting captured 🙂

Reply
PH August 26, 2015 - 9:23 am

Couldn’t find the appx with Windows 10 final with this method. Any ideas ?

Reply
Raghu October 7, 2015 - 11:39 am

I worked thanks for the step by step instructions, but unable to download the apps from Windows 10 store. 
Do anyone know how to get the appx apps from Windows 10

Reply
Jason January 19, 2016 - 2:15 am

Update: you can’t do this on Windows 10.
However, Windows Store for Business has a new feature called “offline licenses.”  Essentially, if an app developer opts-in, you can download an app.  Distributing it isn’t as easy as in this tutorial, though.   As always with Microsoft: one step forward, two steps back.

Reply
Jeetkml January 23, 2016 - 1:57 am

it’s still working fine on Windows 1o, Yesterday I download NitroNation by fdm and install by Powershell command

Reply
Nobody123 March 28, 2024 - 5:44 pm

This not correct. If you install on PC without Internet access then App will not start. You will get error 0x800704CF, because newer Windows 10 builds try to acquire license automatically. So either you connect PC to Internet and restart App. Or need offline license file.

BTW Apps can be installed also with DISM. Just check Dism /Online /Add-AppxProvisionedPackage /?

Reply
Jason January 23, 2016 - 2:21 am

Jeetkml, that’s funny because everyone else agrees that it doesn’t work on Windows 10.

Reply
Farrukh February 15, 2016 - 7:41 pm

How to do the same thing in mac, to download from app store?
I used WireShark to get the link, and downloaded the file. The file extension is .pkg
But I am not able to install it. Here is the error message.

The operation couldn’t be completed. (com.apple.installer.pagecontroller error -1.)
Couldn’t open “lvf8020466847238593771.pkg”.

Reply
Hmousa February 22, 2016 - 7:35 pm

Hey guys – it worked for me on Windows 10
The thing is there are URLs captured which don’t lead to an .appx file, so you might have to go through two or three of the URLs before you find one that leads to a URL which downloads the correct file.
For me it was the second URL, and it downloaded an .appx file (no need to change extension) which actually had the name of the app in it.

Reply
yaseen shaik March 8, 2016 - 5:40 pm

what are dependencies and how can i get them…i was unable to install asphalt 8 through power shell for missing dependencies…

Reply
Vahid April 3, 2016 - 9:18 pm

This method definitely works for Windows 10, but you absolutely need to install every dependency as well. Links for dependencies are in fiddler list too.

Reply
orestes April 7, 2016 - 8:13 pm

Hi.. It work for windows 10. I download 5 apps and work fine but just on the same pc. If i take the files to another computer and install it gave me a licenses error  and don’t open. so … how can i fix this….??

Reply
STR8ARROW April 18, 2016 - 8:52 pm

Hi – two questions:
1-How do I install these on another PC? (I need to circumvent the expected licensing error .)
-Windows Store provides an Activation license with each app installed.  Don’t know how to manipulate this – other users are finding this error prohibits  app installation/ use.
2- how do I install fiddler dependencies (ie where can I find them, how to install)…have Windows 10 so I need to install these!
Please help!!
 

Reply
STR8ARROW April 18, 2016 - 9:05 pm

To clarify my question (sorry , can’t edit)-
1) Re: app dependencies:
-I know that some apps have dependencies which must be installed before installation (and before trying to download the .appx file with/thru Fiddler)….but do the appx files for these dependencies ALSO need to be copied to some other location/does anything more need to be done before trying to download the application’s .appx file?
2) My 2nd question about licensing stands – how to circumvent licensing issues during/after appx installation.

-str8arrow

RUNNING WINDOWS 10 PRO x64

Reply
STR8ARROW April 18, 2016 - 9:08 pm

CLARIFICATION re#1 (SORRY, CAN’T EDIT)
-I understand some apps have dependencies which need to be installed prior to app installation/attempting to download .appx thru Fiddler.
Do we need to also copy the dependencies’ appx files to another location /or do anything else before downloading the desired .appx file?
-str8arrow
RUNNING WINDOWS 10 PRO x64

Reply
jj May 10, 2016 - 9:25 am

I have captured the files on one device and installed them on another successfully but when you actually click to open the app it says Error “This app can’t open. Check the Windows Store for more info”. The dependencies just downloaded at the same time as the main app.
The event logs says “Activation of app failed with error: The application cannot be started. Try reinstalling the application to fix the problem. See the Microsoft-Windows-TWinUI/Operational log for additional information.”
This is for free download apps on Windows 8.1 Enterprise, so it doesn’t need a side load product key.
I have also tried the ‘Allow all trusted apps to install’ and ‘Allow development of Windows Store apps’ group policy settings, but still can’t get this to work.
 

Reply
edwaine May 10, 2016 - 10:05 am

This method works even on Windows 10. You can use Internet Download Manager so you can Pause & Resume the download. Be advise that every time you restart your PC, you need to do exactly the same thing in order to resume it.

Reply
STR8ARROW May 25, 2016 - 7:49 am

I can’t get this to work on Windows 10.
I get error 0x80245006 (in Windows Store) – it starts download then stops /presents this error.
When Fiddler is NOT capturing traffic I do not get an error from the Windows store. It seems that Windows is getting stuck as this address: sls.update.microsoft.cdm:443
Please help! -str8arrow
 
(NOTE – browser traffic is fine so Fiddler isn’t stopping internet access…it’s an isolated problem with Windows Store/Fiddler.)

Reply
Carl June 9, 2016 - 4:25 pm

It worked for me on Windows 10 as well. Downloaded the APPXPACKAGE, stored it on a share, then wrote a line of powershell code to install it from the share. Worked like a charm
 

Reply
jeetkml June 10, 2016 - 7:27 am

Sorry,  I’m late but i ‘m not regular user of this site, so sorry, BTW It’s works good on windows 10 but Asphalt ,dh5  needed some special certification file, so start download on windows store and download these files  through store, but when store start actually original appx or appxbundle then try to deploy. 
like as to  deploy Dungeon hunter 5 :
download start through Store, ( it’s show you downloading stat as ::: 1mb outof 8mb)
then  6 mb outof 10MB OR SO-ON………….
After few minutes you will see:,
stats show like  0 mb of 1.8gb or more ( exactly original file size shows in description on store) 
then cancel it and try 
powershell command deploy files by add-appxpackage “filelocation ” 
 
thanks. 
i’m realy very sorry no more on site explain more here because i’m not regular user…sorry

Reply
jeetkml June 10, 2016 - 7:33 am

btw it’s works definitely, but if want deploy games like temple run no need to do anything just deploy it by simple only PS Commands 

Reply
AJ September 8, 2016 - 10:13 pm

anyone got the link for halo 5 and halo 5 forge??
 
really interested to see if it works without shitty anniversary update
 

Reply
Andrew Calstrom September 13, 2016 - 5:31 am

The links of store apps are not permanent, I could get te link of halo 5. You only have to follow the instructions.

Reply
Mnd September 28, 2016 - 6:59 pm

Windows 10 Store on my office computer is blocked. So I downloaded desired App at my home cComputer as described. Works well, I can install the App on my home computer without difficulties (no dependencies).
However installation at office (Windows 10 corporate version) fails. Error-message says that there are missing dependencies or missing .Net (but .Net is there).
Have you any idea what the problem could be? Is it possible to install the appx on other computers? Is it possible to install the appx on corporate OS?

Reply
abderrahime June 8, 2018 - 10:56 pm

worked fine for me
but the store is not showing in the winconifg area
but still can get the url so tnx you’re awesome

Reply
EP June 29, 2018 - 6:02 pm

abderrahime

“Store” in Winconfig area of Fiddler is changed to “Microsoft Store” in newer versions of the MS store found in RS3/RS4 versions of Windows 10.

Reply
Arno Smith March 13, 2019 - 11:02 am

Your method does not work for a dummy like me, is there not some simpler way?

Reply
admin March 14, 2019 - 11:23 am

You can try to search for the application you need in Google, maybe someone has already downloaded this app file. Of course, this is not recommended, because you can download the infected file … I on your place would ask about the help of any acquaintance sysadmin

Reply
Jaya June 21, 2019 - 3:27 am

Trying to get Snip&Sketch on server 2016. If I manage to download and install on one server, will it work on other clones servers?

Reply
Silver_Shadow_Believer January 8, 2020 - 7:53 pm

Como siempre, Microsoft dando por saco, en vez de poner un puñetero .exe, te deja un .appx y a fastidiarse… A ver si dejan en paz a Linux, es un sistema operativo bueno, ojalá no lo contaminen… Aunque me da que lo terminarán contaminando.

Reply
Jim September 8, 2021 - 12:02 am

here we are in fall of 2021 …
Does this work on Win10, or is there perhaps an easier way now?
Apple will be removing functionality from iTunes in future releases that is important to me,
so I want to save a copy of the current version!

Thanks for any help!
Jim

Reply
admin September 8, 2021 - 12:17 pm

Everything described here is tested on the current Windows 10 builds.

Reply
Jack H. October 28, 2021 - 2:53 am

This continues to work on Windows 11. Finding the URL in the new Microsoft Store app is as easy as clicking the “share” button at the bottom of an app in the store, then choosing “link”. Then, paste it into https://store.rg-adguard.net/ as stated in the article, copy the link, go to the computer you want to install it on, paste in run command (or browser), download, rename with .appx extension, double click to run, boom. Installed.

Reply
Anwar Ullah January 5, 2023 - 9:39 am

Hi Jack
https://store.rg-adguard.net/ link is blocked by cyber security team. Is there any other way around we can use to get the MS Store App.
Any help will be much appreciated.

Reply
Tứ Bảnh March 1, 2022 - 2:39 am

Cái link của adguard có thể tải được mấy app trả phí nè, nhưng mà tải một nuồi về xong cài méo vô

Reply
Charlie May 1, 2022 - 2:59 am

I am on WS2022 and I tried this first and it started like it would instal and then said could not install on this OS ver.
I return try again and this is what I get: PS C:\Users\Administrator> add-appxpackage path C:\Users\Administrator\Downloads\Microsoft.YourPhone_2021.728.2332.70_neutral___8wekyb3d8bbwe.EAppxBundle
Add-AppxPackage : A positional parameter cannot be found that accepts argument
‘C:\Users\Administrator\Downloads\Microsoft.YourPhone_2021.728.2332.70_neutral___8wekyb3d8bbwe.EAppxBundle’.
At line:1 char:1
+ add-appxpackage path C:\Users\Administrator\Downloads\Microsoft.YourP …
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Add-AppxPackage], ParameterBindingException
+ FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackag
eCommand

I need to install link phone or phone link or what ever on WS 2022 Can someone please clue me in on what I am doing wrong and also can you tell me is there a way to install apps on WS2022? ty Charlie

Reply
Charlie May 1, 2022 - 3:10 am

add-appxpackage : Deployment failed with HRESULT: 0x80073CFD, A Prerequisite for an install could
not be satisfied.
Windows cannot install package Microsoft.YourPhone_1.21071.104.70_x64__8wekyb3d8bbwe because this
package is not compatible with the device. The package can only be installed on the following
device families: Windows.Xbox
NOTE: For additional information, look for [ActivityId] ff0e5187-5b00-0018-1a66-0eff005bd801 in
the Event Log or use the command line Get-AppPackageLog -ActivityID
ff0e5187-5b00-0018-1a66-0eff005bd801
At line:1 char:1
+ add-appxpackage “.\Microsoft.YourPhone_2021.728.2332.70_neutral___8w …
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (C:\Users\Admini…bwe.EAppxBundle:String) [Add-AppxP
ackage], Exception
+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddA
ppxPackageCommand

Now here again. is WS2022 not Windows?

Reply
srg April 12, 2023 - 12:57 pm

How to select the correct channel you want to download from?
Fast: Windows Insider Fast
Slow: Windows Insider Slow
RP: Release Preview
Retail: Default OS

Reply
JonWeHadAbabyItsABoy March 1, 2024 - 3:13 am

This results in 403 forbidden and does not result in a download of an appx package, can you expand the documentation to include what you did to work around this proble.

Reply
wujie May 1, 2024 - 6:49 am

Download-AppxPackage , Downloads within the file,Invoke-WebRequest ,Can it be replaced,wget.exe,Please teach me how to write it

Reply
Paul W July 2, 2024 - 8:07 am

One of the best articles I’ve ever come across to overcome restrictions on sourcing media for M$ store app’s

Reply
Graeme J W Smith July 9, 2024 - 11:23 am

“This method will not allow you to download…….paid APPX packages……”

Not necessarily true. If the paid package requires activation through the software vendor’s site using your account. The package CAN be downloaded. Just you will need to activate it with your account information when you start it. Example – Adobe Packages

Reply
mikey October 7, 2024 - 8:14 pm

All the apps that I’ve downloaded this way have come as .appxbundle files, and all I have to do is right-click on the file and select “install.” Not sure if this works for all apps, but it’s very convenient.

Reply
admin October 13, 2024 - 1:52 pm

Sure, you can install most of the APPX/Appxbundle apps from the File Explorer GUI.

Reply
Mikie October 17, 2024 - 5:42 am

All of this is no longer necessary. Latest stable Winget client has this capability built in. See here:

https://learn.microsoft.com/en-us/windows/package-manager/winget/download

Reply
Dive11 December 12, 2024 - 1:24 am

Can someone explained why https://store.rg-adguard.net/ generating non https download link? Isn’t that unsecured?

Reply
MyASUS February 21, 2025 - 12:36 am

Good guide, everything is stated briefly and clearly (with examples).

Helped to install the application MyASUS.

A quote from NOBODY123 also helped:
“This is not correct. If you install on PC without Internet access then the App will not start. You will get error 0x800704CF, because newer Windows 10 builds try to acquire license automatically. So either you connect PC to Internet and restart App. Or need offline license file.”

Reply
Henry S Sibrian April 30, 2025 - 8:32 pm

Hi,

I have a question about an issue with vulnerability article CVE-2021-43890, which shows me this other article with the solution: https://learn.microsoft.com/en-us/windows/msix/app-installer/install-update-app-installer.

The issue is that, as I have more than 100 PCs affected, I need to create a deployment to solve this vulnerability. I need a way to do it offline because, for security reasons, the network is restricted from having free internet access.

The command: Add-AppxPackage -Path C:\IT\Software\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle
I still haven’t found a way to do it.

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMware
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025
  • How to Block Common (Weak) Passwords in Active Directory

    March 25, 2025
  • Fix: The referenced assembly could not be found error (0x80073701) on Windows

    March 17, 2025
  • Exclude a Specific User or Computer from Group Policy

    March 12, 2025
  • AD Domain Join: Computer Account Re-use Blocked

    March 11, 2025
  • How to Write Logs to the Windows Event Viewer from PowerShell/CMD

    March 3, 2025
  • How to Hide (Block) a Specific Windows Update

    February 25, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Install and Manage Windows Updates with PowerShell (PSWindowsUpdate)
  • Configuring Port Forwarding in Windows
  • Get-ADUser: Find Active Directory User Info with PowerShell
  • Start Menu or Taskbar Search Not Working in Windows 10/11
  • Adding Drivers into VMWare ESXi Installation Image
  • Tracking and Analyzing Remote Desktop Connection Logs in Windows
  • Configuring SFTP (SSH FTP) Server on Windows
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top