We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cfaf7f commit a45301bCopy full SHA for a45301b
1 file changed
hub/package-manager/winget/winget-mcp-server.md
@@ -146,7 +146,9 @@ $wingetPath = (Get-Command winget).Source
146
# Get the directory containing WinGet
147
$wingetDir = Split-Path $wingetPath -Parent
148
# The MCP server executable is in the same directory
149
-$mcpServerPath = Join-Path $wingetDir "WindowsPackageManagerMCPServer.exe"
+$mcpServerPath = Join-Path -Path $wingetDir `
150
+ -ChildPath "Microsoft.DesktopAppInstaller_8wekyb3d8bbwe" `
151
+ -AdditionalChildPath "WindowsPackageManagerMCPServer.exe"
152
Write-Host "WinGet MCP Server path: $mcpServerPath"
153
```
154
0 commit comments