
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
Executes a Windows Store application (Appx).
This library requires PowerShell 5.0 (or higher) and support for the Windows Store.
npm install exec-appx
execAppx(appID, args = [], options = {})
Example usage in script:
import { execAppx } from 'exec-appx';
try {
await execAppx('Mozilla.Firefox');
} catch (err) {
console.error(err);
}
[!IMPORTANT]
For some applications, the AppX manifest specifies multiple executables. To deal with this special case, pass an object as the first argument.await execAppx({ appId: 'Mozilla.Firefox', specifier: 'firefox.exe' // or the index in the filenames array })
See child_process.spawn documentation for details.
This work is licensed under The MIT License.
FAQs
Executes a Windows Store application (Appx)
We found that exec-appx demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.