winapp-identity

Activer l'identité de package Windows pour les applications de bureau afin d'accéder aux API Windows comme les notifications push, les tâches en arrière-plan, la cible de partage et les tâches de démarrage. Utiliser lorsque…

npx skills add https://github.com/microsoft/winappcli --skill winapp-identity

When to use

Use this skill when:

  • The exe is separate from your app code — e.g., Electron apps where electron.exe is in node_modules, not your build output
  • Testing sparse package behavior specifically — AllowExternalContent, TrustedLaunch, etc.
  • Registering identity without copying files — create-debug-identity leaves the exe in place

Prefer winapp run for most frameworks. If your exe is inside your build output folder (.NET, C++, Rust, Flutter, Tauri), use winapp run <build-output> instead — it registers a full loose layout package and launches the app, simulating an MSIX install. Use create-debug-identity only when winapp run doesn't fit your scenario.

Prerequisites

  1. Package.appxmanifest in your project — from winapp init or winapp manifest generate
  2. Built executable — the .exe your app runs from

What is package identity?

Windows package identity enables your app to use restricted APIs and OS integration features:

  • Push notifications (WNS)
  • Background tasks
  • Share target / share source
  • App startup tasks
  • Taskbar pinning
  • Windows AI APIs (Phi Silica, OCR, etc.)
  • File type associations registered properly in Settings

A standard .exe (from dotnet build, cmake, etc.) does not have identity. create-debug-identity registers a sparse package with Windows — the exe stays in its original location and Windows associates identity with it via Add-AppxPackage -ExternalLocation. This is different from winapp run, which copies files into a loose layout package.

Usage

Basic usage

# Register sparse package for your exe (manifest auto-detected from current dir)
winapp create-debug-identity ./bin/Release/myapp.exe

# Specify manifest location
winapp create-debug-identity ./bin/Release/myapp.exe --manifest ./Package.appxmanifest

Keep the original package identity

# By default, '.debug' is appended to the package name to avoid conflicts with
# an installed MSIX version. Use --keep-identity to keep the manifest identity as-is.
winapp create-debug-identity ./myapp.exe --keep-identity

Generate without installing

# Create the sparse package layout but don't register it with Windows
winapp create-debug-identity ./myapp.exe --no-install

What the command does

  1. Reads Package.appxmanifest — extracts identity, capabilities, and assets
  2. Creates a sparse package layout in a temp directory
  3. Appends .debug to the package name (unless --keep-identity) to avoid conflicts
  4. Registers with Windows via Add-AppxPackage -ExternalLocation — makes your exe "identity-aware"

After running, launch your exe normally — Windows will recognize it as having package identity.

Recommended workflow

  1. Setup — winapp init . --use-defaults (creates Package.appxmanifest)
  2. Generate development certificate — winapp cert generate
  3. Build your app
  4. Register identity — winapp create-debug-identity ./bin/myapp.exe
  5. Run your app — identity-requiring APIs now work
  6. Re-run step 4 whenever you change Package.appxmanifest or Assets/

Tips

  • You must re-run create-debug-identity after any changes to Package.appxmanifest or image assets
  • The debug identity persists across reboots until explicitly removed
  • To remove: Get-AppxPackage *yourapp.debug* | Remove-AppxPackage
  • If you have both a debug identity and an installed MSIX, they may conflict — use --keep-identity carefully
  • For Electron apps, use npx winapp node add-electron-debug-identity instead (handles Electron-specific paths)

Debugging: winapp run vs create-debug-identity

winapp runcreate-debug-identity
What it registersFull loose layout package (entire folder)Sparse package (single exe)
How the app launchesLaunched by winapp (AUMID activation or execution alias)You launch the exe yourself (command line, IDE, etc.)
Simulates MSIX installYes — closest to production behaviorNo — sparse identity only
Files stay in placeCopied to an AppX layout directoryYes — exe stays at its original path
Debugger-friendlyAttach to PID after launch, or use --no-launch then launch via aliasLaunch directly from your IDE's debugger — the exe has identity regardless
Console app supportLaunched through an execution alias automatically, so stdin/stdout stay in this terminalRun exe directly in terminal
Best forMost frameworks (.NET, C++, Rust, Flutter, Tauri)Electron, or when you need full IDE debugger control (F5 startup debugging)

When to use which

Default to winapp run for most development — it simulates a real MSIX install with full identity, capabilities, and file associations:

winapp run .\build\output          # GUI and console apps alike; a console app
                                   # gets an execution alias automatically

Use create-debug-identity when:

  • Debugging startup code — your IDE launches + debugs the exe directly; identity is attached from the first instruction
  • Exe is separate from build output — e.g., Electron where electron.exe is in node_modules/
  • Testing sparse package behavior — AllowExternalContent, TrustedLaunch
winapp create-debug-identity .\bin\Debug\myapp.exe
# Now launch any way you like — F5, terminal, script — the exe has identity

Common debugging scenarios

ScenarioCommandNotes
Just run with identitywinapp run .\build\DebugSimplest workflow; a console app gets an execution alias automatically
Attach debugger to running appwinapp run .\build\Debug, then attach to PIDMisses startup code
Register identity, launch via AUMIDwinapp run .\build\Debug --no-launchLaunch with start shell:AppsFolder\<AUMID> or the execution alias (not the exe directly)
F5 startup debuggingwinapp create-debug-identity .\bin\myapp.exeIDE controls process from first instruction; best for debugging activation/startup code
Capture debug outputwinapp run .\build\Debug --debug-outputCaptures OutputDebugString; on crash, writes minidump and analyzes managed exceptions automatically. Blocks other debuggers (one debugger per process)
Run and auto-cleanwinapp run .\build\Debug --unregister-on-exitUnregisters the dev package after the app exits
Launch and detach (CI)winapp run .\build\Debug --detachReturns immediately after launch; use --json to get PID for scripting
Clean up stale registrationwinapp unregisterRemoves dev packages for the current project (auto-detects from manifest; pass a .cs for a file-based app)

Using Visual Studio with a packaging project? VS already handles identity, AUMID activation, and debugger attachment from F5. These workflows are most useful for VS Code, terminal-based development, and frameworks VS doesn't natively package (Rust, Flutter, Tauri, Electron, C++).

For full details including IDE setup examples, see the Debugging Guide.

Production sparse packaging (init --sparse / pack / embed-identity)

create-debug-identity is for developer-time debugging (requires Developer Mode, registers a raw manifest). For production — shipping identity to an app distributed by an existing installer (Inno Setup, WiX, NSIS) — use the sparse packaging workflow, which produces a signed identity-only .msix:

# 1. Create the sparse identity manifest for your exe (skips SDK install)
winapp init --exe ./bin/Release/MyApp.exe --sparse --use-defaults

# 2. Build and sign the identity-only .msix (just the manifest, no binaries)
winapp pack ./sparse/appxmanifest.xml --cert ./devcert.pfx

# 3. Embed the <msix> identity element into the exe's fusion manifest
winapp embed-identity ./bin/Release/MyApp.exe

Then your installer registers the package against the install directory: Add-AppxPackage -Path MyApp.identity.msix -ExternalLocation <install-dir>.

Assets are resolved from the external (install) location at runtime, not bundled into the .msix. winapp embed-identity also supports an XML mode (winapp embed-identity ./app.manifest) for updating a checked-in side-by-side manifest. See the Sparse Packaging Guide and the sparse-app sample.

Related skills

  • Need a manifest? See winapp-manifest to generate Package.appxmanifest
  • Need a certificate? See winapp-signing — a trusted cert is required for identity registration
  • Ready for full MSIX distribution? See winapp-package to create an installer
  • Having issues? See winapp-troubleshoot for common error solutions

Troubleshooting

ErrorCauseSolution
"Package.appxmanifest not found"No manifest in current directoryRun winapp init or winapp manifest generate, or pass --manifest
"Failed to add package identity"Previous registration stale or cert untrustedRun winapp unregister to remove stale packages, then winapp cert install ./devcert.pfx (admin)
"Access denied"Cert not trusted or permission issueRun winapp cert install ./devcert.pfx as admin
APIs still fail after registrationApp launched before registration completedClose app, re-run create-debug-identity, then relaunch

CLI reference

Run winapp <command> --help for current command options, or winapp --cli-schema for the complete machine-readable command schema.

Plus de skills de microsoft

oss-growth
microsoft
Persona de growth hacker OSS
agent-framework-azure-ai-py
microsoft
Créez des agents Azure AI Foundry à l’aide du SDK Python Microsoft Agent Framework (agent-framework-azure-ai). À utiliser lors de la création d’agents persistants avec AzureAIAgentsProvider, de l’utilisation d’outils hébergés (interpréteur de code, recherche de fichiers, recherche web), de l’intégration de serveurs MCP, de la gestion de fils de conversation ou de l’implémentation de réponses en streaming. Couvre les outils de fonction, les sorties structurées et les agents multi-outils.
development
airunway-aks-setup
microsoft
Configurez AI Runway sur AKS — du cluster nu au modèle en cours d'exécution. Couvre la vérification du cluster, l'installation du contrôleur, l'évaluation GPU, la configuration du fournisseur et le premier déploiement. QUAND : « configurer AI Runway », « intégrer un cluster AKS », « installer AI Runway », « configuration airunway », « déployer un modèle sur AKS », « inférence GPU sur AKS », « configuration KAITO sur AKS », « exécuter LLM sur AKS », « vLLM sur AKS », « configurer le service de modèles sur AKS », « contrôleur AI Runway ».
devops
appinsights-instrumentation
microsoft
Conseils pour instrumenter les applications web avec Azure Application Insights. Fournit des modèles de télémétrie, la configuration du SDK et des références de configuration. QUAND : comment instrumenter une application, SDK App Insights, modèles de télémétrie, qu'est-ce qu'App Insights, conseils sur Application Insights, exemples d'instrumentation, bonnes pratiques APM.
devops
applicationinsights-web-ts
microsoft
Instrumentez les applications navigateur/web avec le SDK JavaScript Application Insights (@microsoft/applicationinsights-web). Utilisez-le pour la surveillance des utilisateurs réels (RUM) — vues de page, clics, dépendances AJAX/fetch, exceptions, événements personnalisés et traces d’agents GenAI côté navigateur corrélées aux traces OpenTelemetry backend. Couvre le script de chargement du SDK et la configuration npm, les extensions de framework (React, React Native, Angular), Click Analytics, les initialiseurs de télémétrie et les conventions sémantiques OTel GenAI pour les spans d’agents/outils/modèles émises depuis le navigateur.
devops
azure-ai-anomalydetector-java
microsoft
Créez des applications de détection d'anomalies avec le SDK Azure AI Anomaly Detector pour Java. Utilisez-le lors de l'implémentation de la détection d'anomalies univariées/multivariées, de l'analyse de séries temporelles ou de la surveillance basée sur l'IA.
development
azure-ai-language-conversations-py
microsoft
Implémentez la compréhension du langage conversationnel (CLU) à l’aide du SDK Python azure-ai-language-conversations. Utilisez-le lorsque vous travaillez avec ConversationAnalysisClient pour analyser l’intention et les entités d’une conversation, créer des fonctionnalités de NLP ou intégrer la compréhension du langage dans des applications.
development
azure-ai-ml-py
microsoft
SDK v2 d’Azure Machine Learning pour Python. Utiliser pour les espaces de travail ML, les tâches, les modèles, les jeux de données, le calcul et les pipelines. Déclencheurs : « azure-ai-ml », « MLClient », « espace de travail », « registre de modèles », « tâches d’entraînement », « jeux de données ».
development