Msix packaging tool
Author: m | 2025-04-24
Create an MSIX package using MSIX packaging tool. We are going to use MSIX Packaging Tool which will help us repackage the existing application in MSIX format. MSIX Packaging Tool Create MSIX package using MSIX packaging tool. We are going to use MSIX Packaging Tool which will help us repackaging the existing application in MSIX format. MSIX Packaging Tool
MSIX - The MSIX Packaging Tool - signing the MSIX package
The latest build (v1.2023.118.0) of the MSIX Packaging Tool is now available. We have continued to invest supporting the conversion of more legacy applications to the MSIX format, while reducing the effort required during the conversion process. Here is a rundown of the major improvements in the latest release, which you can download from the Microsoft Store.Support for portable appsChild process monitoringExclude servicesPSF – Argument redirectionOther productivity enhancements:MSIX Package Editor enhancementsQuick inclusion of trace fixupMSIX app attach is an efficient way to do application streaming in the enterprise. The MSIX packaging tool now supports packaging portable apps into MSIX format, enabling them to be app attach ready.Zip the folder containing the portable app.Within the Package Creation flow in MSIX packaging tool, select the zip file.Continue the conversion process to create a MSIX package.Animation of packaging portable apps into MSIX formatThe MSIX packaging tool now monitors child processes. It's created by the original application during the capture process, helping increase the accuracy of the conversion.The MSIX Packaging tool now supports the ability to exclude a list of Windows services during the packaging process. Applications that couldn't be packaged because of a dependency on existing Windows services can now be packaged.To leverage this capability, navigate to the Settings icon on the MSIX packaging tool. There you will see a new setting for Service Exclusion. All the default Windows services will be shown in the list and can be managed through this Settings screen.Screenshot of the MSIX packaging tool’s ‘Service Exclusions’ tabThe (Package Support Framework (PSF) runs in an MSIX container. This helps you apply fixes to your existing application when you don't have access to the source code.PSF now supports argument redirection, which redirects createProcess call arguments from the native AppData folder to per user, per app data.Making edits to configurations post conversion will now be easier. No longer will you need to follow the path of unpackaging, editing, and repackaging to make modifications post-conversion.Navigate to the Package editor.Right click on the file you need to modify.Select Edit option in the context menu to help you make modifications faster.Screenshot of 'Package editor' tab showing the option to editThe MSIX packaging tool makes debugging easier. To investigate packages that fail to convert, you can now include trace fixup in your package via the UI screen.Navigate to Package editor and select "Enable tracing of API calls" to include the trace fixup in the package.Screenshot of ‘Package editor’ tab in the MSIX packaging toolThank you to the MSIX community for helping shape the future of the MSIX program. If you have a feature ask you can submit ideas in the MSIX Tech Community or via the Feedback Hub. If you are interested in checking out
MSIX Packaging Tool Overview - MSIX
TMEditX is the licensed and so much more capable tool for fixing up MSIX packages; better than PsfTooling since it doesn’t have to depend on the Microsoft MSIX Packaging Tool to create the final package. [Download_page]Version 5.5 of TMEditX is released on Jan 12, 2025. It contains the following: TMEditX:PSF: Psf v2025.0.1 (See New Psf v2025.01.02 – … Today we have a couple of releases for Microsoft App-V tooling. With the cancellation of the End-Of-Life for the App-V Sequencer and Client, we are updating our tooling to catch up on a few things.Release 5.18 of AppV_ManageAppV_Manage is our free community tool, typically used by someone packaging applications into App-V and wants a quick way to test … TMEditX is the licensed and so much more capable tool for fixing up MSIX packages; better than PsfTooling since it doesn’t have to depend on the Microsoft MSIX Packaging Tool to create the final package. [Download_page]Feature: Improved support for signing using DigiCert KeyLocker cloud service by locating the KeyLocker tools from the registry.Feature: Added support for custom signing … TMEdit (not TMEditX) is our App-V package editor tool, used to improve packages for Microsoft App-V. It’s been a while since we had a release and I had been sitting on a few fixes requested by customers. But rather than just some bug-fixes, we have something new here.First, TMEdit 2.0 is being released as an MSIX package. Why? … TMEditX is the licensed and so much more capable tool for fixing up MSIX packages; better than PsfTooling since it doesn’t have to depend on the Microsoft MSIX Packaging Tool to create the final package. [Download_page]Features and FixesPSF v2024.10.26 added to this version. See What’s new in PSF v2024.10.26? – Confessions of a Guru for details.Feature: Support … TMEditX is the licensed and so much more capable tool for fixing up MSIX packages; better than PsfTooling since it doesn’t have to depend on the Microsoft MSIX Packaging Tool to create the final package. [Download_page]Features and FixesTMEditX:Feature… TMEditX is the licensed and much more capable tool for fixing up MSIX packages, better than PsfTooling since itMSIX - The MSIX Packaging Tool - signing the MSIX package
App5.2.1 Steps to Configure Notepad++Use the MSIX Packaging Tool to create a package from an existing Notepad++ installation.Manually edit the package manifest to include any required capabilities or settings.Use a PowerShell script or additional tool to apply the external configurations post-installation.Sign the package with a trusted certificate and install it for testing.ConclusionThis document has provided an exhaustive guide and detailed insights into using InstallShield for MSIX packaging, automated application conversion, and a thorough comparison with MSIX App for various scenarios. Additionally, it has explored how to manage external configurations for applications like Notepad++Example: Modifying Configuration FilesUsing Scripts to Modify Notepad++ Configuration FilesWhen applications are packaged using MSIX, they are isolated from the rest of the system, which means that direct modifications to their configuration files can be a bit tricky. However, with the use of scripts and a good understanding of the MSIX file structure, we can achieve our goal.MSIX App: Post-Installation Configuration1. Identify the Configuration FileFor Notepad++, the main configuration file is usually named config.xml and is located in the application’s installation directory, under the AppData subfolder.2. Create a PowerShell Script for ModificationCreate a PowerShell script that will modify the config.xml file as per your requirements. Here’s an example script that changes a setting:$ConfigPath = "C:\Program Files\WindowsApps\YourAppPackageFullName\AppData\config.xml"$Content = Get-Content -Path $ConfigPath -Raw$UpdatedContent = $Content -replace 'oldSettingValue', 'newSettingValue'Set-Content -Path $ConfigPath -Value $UpdatedContent3. Execute the Script Post-InstallationAfter installing the MSIX package, run the PowerShell script as an administrator to apply the changes.4. Verify the ChangesLaunch Notepad++ and verify that the settings have been updated as expected.InstallShield: During the Packaging ProcessWith InstallShield, you have the option to modify configuration files directly during the packaging process.1. Create a Transform FileA transform file (MST) can be used to store changes to be made to the installation package. Use a tool like Orca to create an MST file that modifies the config.xml file.2. Apply the Transform During InstallationWhen creating your InstallShield project, add a step to apply the MST file during the installation. This can be done through the InstallShield interface, under the "Transforms" section of the "Releases" view.3. Build and Test the PackageAfter configuring the transform, build your InstallShield project and test the installation package. Ensure that the config.xml file is being modified as expected during the installation.4. Verify the ChangesOnce installed, launch Notepad++ and check that the configuration settings have been applied.External Scripts and FilesPowerShell Script: ModifyConfig.ps1param ( [string]$ConfigPath, [string]$OldValue, [string]$NewValue)try { $Content = Get-Content -Path $ConfigPath -Raw $UpdatedContent = $Content -replace $OldValue, $NewValue Set-Content -Path $ConfigPath -Value $UpdatedContent Write-Output "Configuration updated successfully."} catch { Write-Error "An error occurred: $_"}MST File: NotepadPlusPlusTransform.mstYou would create this file using a tool like Orca, making direct modifications to the config.xml file within the InstallShield project. The exact steps will depend on the specific changes you need to make.Effect of the ChangesMSIX AppThe configuration changes are applied post-installation.Requires administrative privileges to run the script.The changes are more manual and script-based.InstallShieldThe configuration changes are bundled with the installation package.Provides a more automated and integrated solution.Easier to manage for. Create an MSIX package using MSIX packaging tool. We are going to use MSIX Packaging Tool which will help us repackage the existing application in MSIX format. MSIX Packaging Tool Create MSIX package using MSIX packaging tool. We are going to use MSIX Packaging Tool which will help us repackaging the existing application in MSIX format. MSIX Packaging ToolMSIX Packaging Tool Overview - MSIX
Pública: 1.2024.405.0Compatibilidad con PSF mejorada para procesos, biblioteca dinámica, variables de entorno y correcciones de middlewareSe ha mejorado la compatibilidad con directrices para usar la característica de corrección de PSF en la herramientaPuedes ver el historial completo de las notas de la versión de MSIX Packaging Tool aquí.TareasEsto es lo que puedes hacer con esta herramienta:Empaquetar tu aplicación favorita (msi, exe, App-V 5.x y scripts personalizados) en el formato MSIX iniciando la herramienta y seleccionando el icono Application package (Paquete de aplicación).Crear un paquete de modificación para un paquete MSIX iniciando la herramienta y seleccionando el icono Modification package (Paquete de modificación).Abrir el paquete MSIX para ver y editar su contenido o sus propiedades seleccionando el icono Package editor (Editor de paquetes), desplazándote al paquete MSIX y seleccionando Open package (Abrir paquete).PruebaLos artículos siguientes son tutoriales sobre el uso de la herramienta MSIX Packaging Tool para convertir las aplicaciones de escritorio:ArtículoDescripciónCreación de paquetes MSIX desde un archivo MSI/App-VEn este tutorial se explica cómo usar la interfaz de usuario de la herramienta MSIX Packaging Tool para convertir las aplicaciones de escritorio (en especial los instaladores como MSI, EXE o App-V) a un paquete MSIX.Creación de un paquete MSIX con la línea de comandosEn este tutorial se explica cómo usar la línea de comandos y la herramienta de empaquetado MSIX para convertir la aplicación de escritorio a un paquete MSIX.Creación de paquetes MSIX en un dispositivo remotoEn este artículo se indican las instrucciones necesarias para realizar la conversión de aplicaciones de escritorio a paquetes MSIX en un dispositivo remoto. --> Comentarios ¿Le ha resultado útil esta página? Recursos adicionales En este artículoMSIX - The MSIX Packaging Tool - signing the MSIX package
TMEditX is the licensed and so much more capable tool for fixing up MSIX packages; better than PsfTooling since it doesn’t have to depend on the Microsoft MSIX Packaging Tool to create the final package. [Download_page]Version 5.6 of TMEditX is released.DescriptionThis release includes important updates from the Package Support Framework (PSF), improved support for apps with COM … The Package Support Framework (PSF) was originally a Microsoft open-source project to help Win32/DotNet applications run when inside an MSIX Container. TMurgent has taken up the support for the PSF in our own fork here on GitHub.Version 2025.02.22 of the Package Support Framework has been released. So, what is new in it?FeaturesAdded support for “SynnstemApps”, an … I will be hosting an interactive webinar on Tuesday, February 4th at 11:00 AM Eastern Standard Time where we will reveal this year’s Report Card on MSIX. I will be talking about the state of things, of course covering the latest results in Application Compatibility Testing, and of course, taking your questions and comments.Get this onto your calendar:… TMEditX is the licensed and so much more capable tool for fixing up MSIX packages; better than PsfTooling since it doesn’t have to depend on the Microsoft MSIX Packaging Tool to create the final package. [Download_page]Version 5.5 of TMEditX is released on Jan 12, 2025. It contains the following: TMEditX:PSF: Psf v2025.0.1 (See New Psf v2025.01.02 – … PsfTooling is the free tool to work in conjunction with the Microsoft MSIX Packaging Tool. [Download_Page]Release 6.11 NotesThis release includes the TMurgent branch of the PSF Version 2025.01.02. The previous version was from April so there is a lot in here just from the PSF. The relevant release notes for the PSF include the following:New Psf v2025.01.02 … Nov 15, 2024: AppVentiX and TMurgent announce the integration of both TMEdit and TMEditX into the AppVentiX software, a Powerful Deployment & Application Lifecycle Management for App-V and MSIX.AppVentiX customers may now have a single place to manage the packaging and deployment of both App-V and MSIX application packages, for persistent desktops, as well as virtual desktops as diverse … The Package Support Framework (PSF) was originally a Microsoft open-source project to help Win32/DotNet applications run when inside an MSIX Container. TMurgent has taken up the support for the PSF in our own fork here on GitHub.Version v2025.01.02 of the Package Support Framework has been released. This release includes the following:AMSIX Packaging Tool Overview - MSIX
Installers with large amounts of files. The whole process is done step by step through a wizard-like interface, filling in fields and setting up files to finally build your package without any required knowledge.DownloadPACE Suite (MSI Generator)PACE Suite is an advanced application packaging tool with an intuitive user interface and set of features providing successful (re)packaging in Windows Installer (MSI), MSIX, APPX (Universal Windows Platform) and various virtualization formats.FeaturesRepackagingWindows Installer AuthoringApplication VirtualizationMSIX & APPX PackagingReporting & DocumentationAutomationValidation & TestingUse the portable version of PACE Suite wherever you areShare packaging settings with your teamDownloadInstallShieldCreate native MSIX packages, build clean installs, and build installations in the cloud with InstallShield from Revenera. With InstallShield, you’ll adapt to industry changes quickly, get to market faster and deliver an engaging customer experience.FeaturesThe standard for Windows Installer (MSI) and InstallScript InstallationsEffortless Creation of native MSIX Packages or Build MSIX from Existing ProjectsProvides a Fresh, Modern Designer InterfaceBuild installation suites to install multiple products for Windows, MSIX and moreConverts MSIs to Microsoft® App-V™ 5.1Installs Web Applications to Microsoft® Azure™ and Microsoft IIS using Microsoft Web DeployAutomatically Provisions Virtual Machines for Simple Installation TestingMicrosoft Team Foundation Server IntegrationDownloadInstallAnywhereDon’t risk an installation error and poor customer experience. InstallAnywhere is the leading multi-platform solution for developers creating installers for physical, virtual, and cloud environments.InstallAnywhere makes it easy for developers to create professional installation software that performs the same – no matter what the platform. You’ll be able to create reliable installations for on-premises platforms like Windows, Linux, Apple, Solaris, AIX, HP-UX, and IBM, and then deploy them physically, virtually, or to the cloud (you can even package it up into a Docker container) all from a single project file.Whether for standalone instances or integrated into your current systems, with InstallAnywhere, you’ll be able to adapt to industry changes quickly, get. Create an MSIX package using MSIX packaging tool. We are going to use MSIX Packaging Tool which will help us repackage the existing application in MSIX format. MSIX Packaging Tool Create MSIX package using MSIX packaging tool. We are going to use MSIX Packaging Tool which will help us repackaging the existing application in MSIX format. MSIX Packaging ToolComments
The latest build (v1.2023.118.0) of the MSIX Packaging Tool is now available. We have continued to invest supporting the conversion of more legacy applications to the MSIX format, while reducing the effort required during the conversion process. Here is a rundown of the major improvements in the latest release, which you can download from the Microsoft Store.Support for portable appsChild process monitoringExclude servicesPSF – Argument redirectionOther productivity enhancements:MSIX Package Editor enhancementsQuick inclusion of trace fixupMSIX app attach is an efficient way to do application streaming in the enterprise. The MSIX packaging tool now supports packaging portable apps into MSIX format, enabling them to be app attach ready.Zip the folder containing the portable app.Within the Package Creation flow in MSIX packaging tool, select the zip file.Continue the conversion process to create a MSIX package.Animation of packaging portable apps into MSIX formatThe MSIX packaging tool now monitors child processes. It's created by the original application during the capture process, helping increase the accuracy of the conversion.The MSIX Packaging tool now supports the ability to exclude a list of Windows services during the packaging process. Applications that couldn't be packaged because of a dependency on existing Windows services can now be packaged.To leverage this capability, navigate to the Settings icon on the MSIX packaging tool. There you will see a new setting for Service Exclusion. All the default Windows services will be shown in the list and can be managed through this Settings screen.Screenshot of the MSIX packaging tool’s ‘Service Exclusions’ tabThe (Package Support Framework (PSF) runs in an MSIX container. This helps you apply fixes to your existing application when you don't have access to the source code.PSF now supports argument redirection, which redirects createProcess call arguments from the native AppData folder to per user, per app data.Making edits to configurations post conversion will now be easier. No longer will you need to follow the path of unpackaging, editing, and repackaging to make modifications post-conversion.Navigate to the Package editor.Right click on the file you need to modify.Select Edit option in the context menu to help you make modifications faster.Screenshot of 'Package editor' tab showing the option to editThe MSIX packaging tool makes debugging easier. To investigate packages that fail to convert, you can now include trace fixup in your package via the UI screen.Navigate to Package editor and select "Enable tracing of API calls" to include the trace fixup in the package.Screenshot of ‘Package editor’ tab in the MSIX packaging toolThank you to the MSIX community for helping shape the future of the MSIX program. If you have a feature ask you can submit ideas in the MSIX Tech Community or via the Feedback Hub. If you are interested in checking out
2025-04-20TMEditX is the licensed and so much more capable tool for fixing up MSIX packages; better than PsfTooling since it doesn’t have to depend on the Microsoft MSIX Packaging Tool to create the final package. [Download_page]Version 5.5 of TMEditX is released on Jan 12, 2025. It contains the following: TMEditX:PSF: Psf v2025.0.1 (See New Psf v2025.01.02 – … Today we have a couple of releases for Microsoft App-V tooling. With the cancellation of the End-Of-Life for the App-V Sequencer and Client, we are updating our tooling to catch up on a few things.Release 5.18 of AppV_ManageAppV_Manage is our free community tool, typically used by someone packaging applications into App-V and wants a quick way to test … TMEditX is the licensed and so much more capable tool for fixing up MSIX packages; better than PsfTooling since it doesn’t have to depend on the Microsoft MSIX Packaging Tool to create the final package. [Download_page]Feature: Improved support for signing using DigiCert KeyLocker cloud service by locating the KeyLocker tools from the registry.Feature: Added support for custom signing … TMEdit (not TMEditX) is our App-V package editor tool, used to improve packages for Microsoft App-V. It’s been a while since we had a release and I had been sitting on a few fixes requested by customers. But rather than just some bug-fixes, we have something new here.First, TMEdit 2.0 is being released as an MSIX package. Why? … TMEditX is the licensed and so much more capable tool for fixing up MSIX packages; better than PsfTooling since it doesn’t have to depend on the Microsoft MSIX Packaging Tool to create the final package. [Download_page]Features and FixesPSF v2024.10.26 added to this version. See What’s new in PSF v2024.10.26? – Confessions of a Guru for details.Feature: Support … TMEditX is the licensed and so much more capable tool for fixing up MSIX packages; better than PsfTooling since it doesn’t have to depend on the Microsoft MSIX Packaging Tool to create the final package. [Download_page]Features and FixesTMEditX:Feature… TMEditX is the licensed and much more capable tool for fixing up MSIX packages, better than PsfTooling since it
2025-04-07Pública: 1.2024.405.0Compatibilidad con PSF mejorada para procesos, biblioteca dinámica, variables de entorno y correcciones de middlewareSe ha mejorado la compatibilidad con directrices para usar la característica de corrección de PSF en la herramientaPuedes ver el historial completo de las notas de la versión de MSIX Packaging Tool aquí.TareasEsto es lo que puedes hacer con esta herramienta:Empaquetar tu aplicación favorita (msi, exe, App-V 5.x y scripts personalizados) en el formato MSIX iniciando la herramienta y seleccionando el icono Application package (Paquete de aplicación).Crear un paquete de modificación para un paquete MSIX iniciando la herramienta y seleccionando el icono Modification package (Paquete de modificación).Abrir el paquete MSIX para ver y editar su contenido o sus propiedades seleccionando el icono Package editor (Editor de paquetes), desplazándote al paquete MSIX y seleccionando Open package (Abrir paquete).PruebaLos artículos siguientes son tutoriales sobre el uso de la herramienta MSIX Packaging Tool para convertir las aplicaciones de escritorio:ArtículoDescripciónCreación de paquetes MSIX desde un archivo MSI/App-VEn este tutorial se explica cómo usar la interfaz de usuario de la herramienta MSIX Packaging Tool para convertir las aplicaciones de escritorio (en especial los instaladores como MSI, EXE o App-V) a un paquete MSIX.Creación de un paquete MSIX con la línea de comandosEn este tutorial se explica cómo usar la línea de comandos y la herramienta de empaquetado MSIX para convertir la aplicación de escritorio a un paquete MSIX.Creación de paquetes MSIX en un dispositivo remotoEn este artículo se indican las instrucciones necesarias para realizar la conversión de aplicaciones de escritorio a paquetes MSIX en un dispositivo remoto. --> Comentarios ¿Le ha resultado útil esta página? Recursos adicionales En este artículo
2025-03-25TMEditX is the licensed and so much more capable tool for fixing up MSIX packages; better than PsfTooling since it doesn’t have to depend on the Microsoft MSIX Packaging Tool to create the final package. [Download_page]Version 5.6 of TMEditX is released.DescriptionThis release includes important updates from the Package Support Framework (PSF), improved support for apps with COM … The Package Support Framework (PSF) was originally a Microsoft open-source project to help Win32/DotNet applications run when inside an MSIX Container. TMurgent has taken up the support for the PSF in our own fork here on GitHub.Version 2025.02.22 of the Package Support Framework has been released. So, what is new in it?FeaturesAdded support for “SynnstemApps”, an … I will be hosting an interactive webinar on Tuesday, February 4th at 11:00 AM Eastern Standard Time where we will reveal this year’s Report Card on MSIX. I will be talking about the state of things, of course covering the latest results in Application Compatibility Testing, and of course, taking your questions and comments.Get this onto your calendar:… TMEditX is the licensed and so much more capable tool for fixing up MSIX packages; better than PsfTooling since it doesn’t have to depend on the Microsoft MSIX Packaging Tool to create the final package. [Download_page]Version 5.5 of TMEditX is released on Jan 12, 2025. It contains the following: TMEditX:PSF: Psf v2025.0.1 (See New Psf v2025.01.02 – … PsfTooling is the free tool to work in conjunction with the Microsoft MSIX Packaging Tool. [Download_Page]Release 6.11 NotesThis release includes the TMurgent branch of the PSF Version 2025.01.02. The previous version was from April so there is a lot in here just from the PSF. The relevant release notes for the PSF include the following:New Psf v2025.01.02 … Nov 15, 2024: AppVentiX and TMurgent announce the integration of both TMEdit and TMEditX into the AppVentiX software, a Powerful Deployment & Application Lifecycle Management for App-V and MSIX.AppVentiX customers may now have a single place to manage the packaging and deployment of both App-V and MSIX application packages, for persistent desktops, as well as virtual desktops as diverse … The Package Support Framework (PSF) was originally a Microsoft open-source project to help Win32/DotNet applications run when inside an MSIX Container. TMurgent has taken up the support for the PSF in our own fork here on GitHub.Version v2025.01.02 of the Package Support Framework has been released. This release includes the following:A
2025-04-21Ir al contenido principal Este explorador ya no se admite. Actualice a Microsoft Edge para aprovechar las características y actualizaciones de seguridad más recientes, y disponer de soporte técnico. Artículo04/30/2024 En este artículo -->La herramienta de empaquetado MSIX permite volver a empaquetar las aplicaciones de escritorio existentes con el formato MSIX. Ofrece una interfaz de usuario interactiva y una línea de comandos para las conversiones, así como la posibilidad de convertir una aplicación sin disponer del código fuente. Queremos que los profesionales de TI puedan convertir sus recursos existentes al formato MSIX, así como ofrecerles una mejor manera de realizar la administración de aplicaciones y el empaquetado.La herramienta MSIX Packaging Tool está ahora disponible en Microsoft Store. Puedes ejecutar los instaladores de escritorio a través de esta herramienta y obtener un paquete MSIX que puedes instalar en tu equipo.Si te interesa participar en el Programa Insider de la herramienta de empaquetado MSIX, haz clic aquí para obtener más información.Requisitos previosWindows 10, versión 1809 o posterior.Participación en el Programa Windows Insider (si utilizas una compilación de Insider).Un alias de la cuenta de Microsoft válido para acceder a la aplicación desde Microsoft Store.Privilegios de administrador en tu PC para ejecutar la herramienta.InstalarPara instalar la herramienta MSIX Packaging Tool desde Microsoft Store, ve aquí; asegúrate de que has iniciado sesión con la cuenta de Microsoft que utilizas en el Programa Windows Insider. A continuación, ve a la página de descripción del producto y haz clic en el icono de instalación para comenzar la instalación.La herramienta de empaquetado MSIX se puede instalar desde la herramienta de línea de comandos WinGet mediante el comando:PS C:\> winget install "MSIX Packaging Tool"La herramienta de empaquetado MSIX también se puede descargar directamente para su uso sin conexión:Descargar la herramienta de empaquetado MSIX 1.2024.405.0Puede obtener más información sobre el uso de la herramienta de empaquetado MSIX en un entorno desconectado aquí.Una vez que tenga la versión sin conexión de la aplicación, puede usar PowerShell para agregar el paquete de aplicación y la licencia a la máquina.Ejemplo de instalación sin conexiónPS C:\> Add-AppxProvisionedPackage -Path C:\offline -PackagePath C:\MSIX\MyPackage.msix -LicensePath C:\MSIX\MyLicense.xmlÚltima versión
2025-04-05