winapp-identity

作者: microsoft

啟用 Windows 套件身分識別,讓桌面應用程式能存取 Windows API,例如推播通知、背景工作、共用目標及啟動工作。在以下情況使用…

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.

來自 microsoft 的更多技能

oss-growth
microsoft
開源增長駭客角色
agent-framework-azure-ai-py
microsoft
使用Microsoft Agent Framework Python SDK(agent-framework-azure-ai)构建Azure AI Foundry代理。适用于使用AzureAIAgentsProvider创建持久化代理、使用托管工具(代码解释器、文件搜索、网络搜索)、集成MCP服务器、管理对话线程或实现流式响应。涵盖函数工具、结构化输出和多工具代理。
development
airunway-aks-setup
microsoft
在AKS上設定AI Runway——從裸叢集到執行模型。涵蓋叢集驗證、控制器安裝、GPU評估、供應商設定及首次部署。時機:「設定AI Runway」、「上線AKS叢集」、「安裝AI Runway」、「airunway設定」、「部署模型至AKS」、「在AKS上進行GPU推論」、「在AKS上設定KAITO」、「在AKS上執行LLM」、「在AKS上使用vLLM」、「在AKS上設定模型服務」、「AI Runway控制器」。
devops
appinsights-instrumentation
microsoft
使用Azure Application Insights檢測Web應用程式的指南。提供遙測模式、SDK設定與組態參考。適用時機:如何檢測應用程式、App Insights SDK、遙測模式、什麼是App Insights、Application Insights指南、檢測範例、APM最佳實踐。
devops
applicationinsights-web-ts
microsoft
使用Application Insights JavaScript SDK(@microsoft/applicationinsights-web)為瀏覽器/Web應用程式進行檢測。適用於真實使用者監控(RUM)——頁面檢視、點擊、AJAX/fetch依賴、例外、自訂事件,以及與後端OpenTelemetry追蹤關聯的瀏覽器端GenAI代理追蹤。涵蓋SDK載入器指令碼與npm設定、框架擴充(React、React Native、Angular)、點擊分析、遙測初始化器,以及從瀏覽器發出的代理/工具/模型span的OTel GenAI語意慣例。
devops
azure-ai-anomalydetector-java
microsoft
使用適用於 Java 的 Azure AI 異常偵測器 SDK 建置異常偵測應用程式。在實作單變量/多變量異常偵測、時間序列分析或 AI 驅動監控時使用。
development
azure-ai-language-conversations-py
microsoft
使用 azure-ai-language-conversations Python SDK 實作對話語言理解(CLU)。當使用 ConversationAnalysisClient 分析對話意圖與實體、建置 NLP 功能,或將語言理解整合至應用程式時使用。
development
azure-ai-ml-py
microsoft
Azure Machine Learning SDK v2 for Python。用於機器學習工作區、作業、模型、資料集、計算資源與管線。 觸發詞:「azure-ai-ml」、「MLClient」、「workspace」、「model registry」、「training jobs」、「datasets」。
development