Devolutions / Devolutions/UniGetUI

[BUG] Scoop install fails: `Test-Path` / `Get-Command` cannot resolve relative `bin` paths through directory junction when executed from UniGetUI context

Open
#4,717 8 comments 6 reactions 0 assignees View on GitHub
bug
Dominant language
C#
Stars
26.1k
Forks
924
Avg merge
15h 52m
Merged PRs (30d)
52

Description

### Please confirm these before moving forward

- [x] I have searched for my issue and have not found a work-in-progress/duplicate/resolved issue.
- [x] I have tested that this issue has not been fixed in the latest [(beta or stable) release](https://github.com/Devolutions/UniGetUI/releases/).
- [x] I have checked the [FAQ](https://github.com/Devolutions/UniGetUI#frequently-asked-questions) section for solutions.
- [x] This issue is about a bug (if it is not, please use the [correct template](https://github.com/Devolutions/UniGetUI/issues/new/choose)).

### UniGetUI Version

2026.1.9

### Windows version, edition, and architecture

Windows 11 24H2 (build 26100)

### Describe your issue

## UniGetUI fails to install/update Scoop packages when manifest uses `bin` with relative path through directory junction

### Description

When installing or updating a Scoop package via UniGetUI, the operation succeeds up to extracting files and creating the `current` directory junction, but **fails at the shim creation step** with the error:

```
Get-Command: \current\lib\install.ps1:191
The term 'bin\.exe' is not recognized as a name of a cmdlet, function, script file, or executable program.
Can't shim 'bin\.exe': File doesn't exist.
```

The **same package installs successfully when running `scoop install` directly from a terminal** (PowerShell or CMD). This indicates the failure is specific to UniGetUI's execution context.

---

### Steps to Reproduce

1. Use UniGetUI to install or update **neovim-nightly** from the Scoop `versions` bucket
2. Observe that extraction succeeds, `current` junction is created, but shim creation fails
3. Then run `scoop install versions/neovim-nightly` directly in a terminal ÔÇö it succeeds

**Other packages likely affected:** any Scoop manifest where `bin` uses a **relative path** and the install involves an `extract_dir` that goes through the `current` directory junction.

---

### Root Cause Analysis

Scoop's `install.ps1` shim creation logic (abbreviated) is:

```powershell
$dir = link_current $dir # returns /current (a directory junction)
$target = "bin\nvim.exe" # from manifest's "bin" field

if (Test-Path "$dir\$target" -PathType leaf) {
$bin = "$dir\$target" # FIRST: absolute via junction
} elseif (Test-Path $target -PathType leaf) {
$bin = $target # SECOND: relative
} else {
$bin = (Get-Command $target).Source # THIRD: PATH lookup
}
```

When tested **manually** from a terminal or WSL via `pwsh.exe`, all three checks pass:

| Check | Expression | Result |
|-------|-----------|--------|
| 1st | `Test-Path "C:\...\neovim-nightly\current\bin\nvim.exe"` | `True` |
| 2nd | `Test-Path "bin\nvim.exe"` (relative) | `True` |
| 3rd | `Get-Command "bin\nvim.exe"` | succeeds |

But when **UniGetUI** executes the same scoop command, the working directory, execution policy, or permission context causes `Test-Path` and `Get-Command` to fail resolving paths through the directory junction.

---

### Environment

| Item | Version |
|------|---------|
| **OS** | Windows 11 24H2 (build 26100) |
| **Scoop** | 0.5.3 |
| **PowerShell** | pwsh.exe (PowerShell Core, via WindowsApps) |
| **Package** | neovim-nightly 0.13.0-440 (bucket: `versions`) |
| **UniGetUI** | __ |

### Manifest (neovim-nightly.json)

```json
{
"version": "0.13.0-440",
"architecture": {
"64bit": {
"url": "https://github.com/neovim/neovim/releases/download/nightly/nvim-win64.zip",
"hash": "...",
"extract_dir": "nvim-win64"
}
},
"bin": "bin\\nvim.exe"
}
```

The extracted structure resolves correctly on disk:

```
\neovim-nightly\
Ôö£ÔöÇÔöÇ current -> 0.13.0-440 (directory junction)
ÔööÔöÇÔöÇ 0.13.0-440\
Ôö£ÔöÇÔöÇ bin\
Ôöé ÔööÔöÇÔöÇ nvim.exe (exists, 6.3 MB)
Ôö£ÔöÇÔöÇ lib\
ÔööÔöÇÔöÇ share\
```

---

### Expected Behavior

Scoop packages should install/update successfully through UniGetUI, identical to running `scoop install` in a terminal.

### Actual Behavior

Shim creation fails because `Test-Path` and `Get-Command` cannot resolve the file path through the `current` directory junction when executed from UniGetUI's context.

### Workaround

Run Scoop package operations directly in a terminal instead of through UniGetUI:

```
scoop update neovim-nightly
scoop install neovim-nightly
```

### Steps to reproduce the issue

_No response_

### UniGetUI Log

```text
[06/05/2026 16:09:52] __ __ _ ______ __ __ ______
/ / / /___ (_) ____/__ / /_/ / / / _/
/ / / / __ \/ / / __/ _ \/ __/ / / // /
/ /_/ / / / / / /_/ / __/ /_/ /_/ // /
\____/_/ /_/_/\____/\___/\__/\____/___/
Welcome to UniGetUI Version 2026.1.9
[06/05/2026 16:09:52]
[06/05/2026 16:09:52] Build 107
[06/05/2026 16:09:52] Data directory C:\Users\iopdev\AppData\Local\UniGetUI
[06/05/2026 16:09:52] Encoding Code Page set to 850
[06/05/2026 16:09:54] Loaded language locale: pt_BR
[06/05/2026 16:09:55] PowerShell is enabled and was found on C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe
[06/05/2026 16:09:55] PowerShell7 is enabled and was found on C:\Users\iopdev\AppData\Local\Microsoft\WindowsApps\pwsh.exe
[06/05/2026 16:09:55] vcpkg is enabled and was found on C:\Users\iopdev\scoop\shims\vcpkg.exe
[06/05/2026 16:09:55] Npm is enabled and was found on C:\WINDOWS\system32\windowspowershell\v1.0\powershell.exe
[06/05/2026 16:09:55] Cargo is enabled and was found on C:\Users\iopdev\.cargo\bin\cargo.exe
[06/05/2026 16:09:55] Chocolatey is enabled and was found on C:\ProgramData\chocolatey\bin\choco.exe
[06/05/2026 16:09:55] Scoop is enabled and was found on C:\Users\iopdev\AppData\Local\Microsoft\WindowsApps\pwsh.exe
[06/05/2026 16:09:55] Command pinget.exe was not found on the system
[06/05/2026 16:09:55] ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█▀▀▀▀▀▀▀▀▀▀▀▀▀ MANAGER LOADED ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
█ Name: vcpkg (aka vcpkg)
█ Executable name: "vcpkg"
█ Executable path: "C:\Users\iopdev\scoop\shims\vcpkg.exe"
█ Call arguments: ""
█ Version: %VCPKG_ROOT% = C:\Users\iopdev\scoop\apps\vcpkg\current

█ vcpkg is enabled and ready to go.
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
[06/05/2026 16:09:55] Randomly-generated background API auth token: z4sdnitghpm1ctin1efa8hohp8m0gmvv2on9jqudrextt9r5g6kt726c7is178lr
[06/05/2026 16:09:55] An error occurred while initialising package manager Cargo
[06/05/2026 16:09:55] Pip is enabled and was found on C:\Users\iopdev\AppData\Local\Programs\Python\Python314\python.EXE
[06/05/2026 16:09:55] ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█▀▀▀▀▀▀▀▀▀▀▀▀▀ MANAGER LOADED ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
█ Name: PowerShell 7.x (aka PowerShell7)
█ Executable name: "pwsh.exe"
█ Executable path: "C:\Users\iopdev\AppData\Local\Microsoft\WindowsApps\pwsh.exe"
█ Call arguments: " -NoProfile -Command"
█ Version: PowerShell 7.6.1

█ PowerShell 7.x is enabled and ready to go.
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
[06/05/2026 16:09:55] .NET Tool is enabled and was found on C:\Program Files\dotnet\dotnet.exe
[06/05/2026 16:09:56] System.ComponentModel.Win32Exception (448): An error occurred trying to start process 'C:\Users\iopdev\.cargo\bin\cargo.exe' with working directory 'C:\Users\iopdev\AppData\Local\Programs\UniGetUI'. O caminho não pode ser atravessado porque contém um ponto de montagem não confiável.
at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
at UniGetUI.PackageEngine.Managers.CargoManager.Cargo._loadManagerVersion(String& version) in D:\a\UniGetUI\UniGetUI\src\UniGetUI.PackageEngine.Managers.Cargo\Cargo.cs:line 186
at UniGetUI.PackageEngine.ManagerClasses.Manager.PackageManager.Initialize() in D:\a\UniGetUI\UniGetUI\src\UniGetUI.PackageEngine.PackageManagerClasses\Manager\PackageManager.cs:line 102
[06/05/2026 16:09:56] The built-in triplet directory C:\Users\iopdev\scoop\apps\vcpkg\current\triplets does not exist; triplets will not be loaded.
[06/05/2026 16:09:56] The community triplet directory C:\Users\iopdev\scoop\apps\vcpkg\current\triplets\community does not exist; community triplets will not be loaded.
[06/05/2026 16:09:56] Connected to WinGet API using packaged COM activation.
[06/05/2026 16:09:56] WinGet activation mode selected: packaged COM registration | Source: system COM registration
[06/05/2026 16:09:56] Winget is enabled and was found on C:\Users\iopdev\AppData\Local\Microsoft\WindowsApps\winget.exe
[06/05/2026 16:09:56] ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█▀▀▀▀▀▀▀▀▀▀▀▀▀ MANAGER LOADED ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
█ Name: PowerShell 5.x (aka PowerShell)
█ Executable name: "powershell.exe"
█ Executable path: "C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe"
█ Call arguments: " -NoProfile -Command"
█ Version: Name Value
█ ---- -----
█ PSVersion 5.1.26100.8313
█ PSEdition Desktop
█ PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
█ BuildVersion 10.0.26100.8313
█ CLRVersion 4.0.30319.42000
█ WSManStackVersion 3.0
█ PSRemotingProtocolVersion 2.3
█ SerializationVersion 1.1.0.1

█ PowerShell 5.x is enabled and ready to go.
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
[06/05/2026 16:09:56] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[06/05/2026 16:09:56] ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█▀▀▀▀▀▀▀▀▀▀▀▀▀ MANAGER LOADED ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
█ Name: .NET Tool (aka .NET Tool)
█ Executable name: "dotnet tool"
█ Executable path: "C:\Program Files\dotnet\dotnet.exe"
█ Call arguments: "tool "
█ Version: 10.0.203

█ .NET Tool is enabled and ready to go.
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
[06/05/2026 16:09:56] ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█▀▀▀▀▀▀▀▀▀▀▀▀▀ MANAGER LOADED ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
█ Name: WinGet (aka Winget)
█ Executable name: "winget.exe"
█ Executable path: "C:\Users\iopdev\AppData\Local\Microsoft\WindowsApps\winget.exe"
█ Call arguments: ""
█ Version: System WinGet (CLI) Version: v1.28.240
█ Using Native WinGet helper (COM Api)
█ Activation mode: packaged COM registration
█ Activation source: system COM registration

█ WinGet is enabled and ready to go.
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
[06/05/2026 16:09:56] ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█▀▀▀▀▀▀▀▀▀▀▀▀▀ MANAGER LOADED ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
█ Name: Npm (aka Npm)
█ Executable name: "npm"
█ Executable path: "C:\WINDOWS\system32\windowspowershell\v1.0\powershell.exe"
█ Call arguments: "-NoProfile -ExecutionPolicy Bypass -Command "C:\tools\nodejs\npm.cmd" "
█ Version:

█ Npm is enabled and ready to go.
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
[06/05/2026 16:09:57] ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█▀▀▀▀▀▀▀▀▀▀▀▀▀ MANAGER LOADED ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
█ Name: Pip (aka Pip)
█ Executable name: "pip"
█ Executable path: "C:\Users\iopdev\AppData\Local\Programs\Python\Python314\python.EXE"
█ Call arguments: "-m pip "
█ Version: pip 26.1.1 from C:\Users\iopdev\AppData\Local\Programs\Python\Python314\Lib\site-packages\pip (python 3.14)

█ Pip is enabled and ready to go.
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
[06/05/2026 16:09:57] ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█▀▀▀▀▀▀▀▀▀▀▀▀▀ MANAGER LOADED ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
█ Name: Chocolatey (aka Chocolatey)
█ Executable name: "choco.exe"
█ Executable path: "C:\ProgramData\chocolatey\bin\choco.exe"
█ Call arguments: ""
█ Version: 2.7.1

█ Chocolatey is enabled and ready to go.
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
[06/05/2026 16:09:58] Api running on http://localhost:7058
[06/05/2026 16:10:00] ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█▀▀▀▀▀▀▀▀▀▀▀▀▀ MANAGER LOADED ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
█ Name: Scoop (aka Scoop)
█ Executable name: "scoop"
█ Executable path: "C:\Users\iopdev\AppData\Local\Microsoft\WindowsApps\pwsh.exe"
█ Call arguments: "-NoProfile -ExecutionPolicy Bypass -Command "C:\Users\iopdev\scoop\shims\scoop.ps1" "
█ Version: Current Scoop version:
█ b588a06e chore(release): Bump to version 0.5.3 (resync) (#6436)

█ 'main' bucket:
█ a7f71c8747 yara-x: Update to version 1.16.0

█ 'extras' bucket:
█ 8862f70dae zed: Update to version 1.1.5

█ 'versions' bucket:
█ 412332da14 rclone-beta: Update to version 1.75.0-beta.9715.0c8d098b7

█ 'nirsoft' bucket:
█ dc94d95 Update url list [ci skip]

█ 'sysinternals' bucket:
█ b16bc2f8 sysinternals-suite: Update to version 2026.04.09

█ 'php' bucket:
█ 4198781 ci: fix issue handler permissions

█ 'nerd-fonts' bucket:
█ f5f31f92 LXGWNeoZhiSong: Update to version 1.063

█ 'nonportable' bucket:
█ 861e828c teamviewer-np: Update to version 15.76.6

█ 'java' bucket:
█ dae336c2 temurin17-jre: Update to version 17.0.19-10

█ 'games' bucket:
█ c1c8cbba1 hlae: Update to version 2.190.0

█ Scoop is enabled and ready to go.
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
[06/05/2026 16:10:04] LoadComponentsAsync finished executing. All managers loaded. Proceeding to interface.
[06/05/2026 16:10:04] Unable to retrieve secret for resource 'UniGetUI/GitHubAccessToken': Elemento não encontrado.

Não é possível obter credencial do Cofre
[06/05/2026 16:10:04] Found 0 installed packages from vcpkg
[06/05/2026 16:10:07] Found 2 installed packages from .NET Tool
[06/05/2026 16:10:08] Found 97 installed packages from Pip
[06/05/2026 16:10:08] Found 0 available updates from vcpkg
[06/05/2026 16:10:08] Dependency Scoop-Search for manager Scoop is present
[06/05/2026 16:10:08] Found 0 installed packages from Npm
[06/05/2026 16:10:08] Dependency Git for manager Scoop is present
[06/05/2026 16:10:08] Dependency Git for manager vcpkg is present
[06/05/2026 16:10:08] Found 0 available updates from Npm
[06/05/2026 16:10:09] Found 10 installed packages from PowerShell7
[06/05/2026 16:10:09] Found 10 installed packages from PowerShell7
[06/05/2026 16:10:09] Downloaded new icons and screenshots successfully!
[06/05/2026 16:10:10] Found 19 installed packages from Chocolatey
[06/05/2026 16:10:10] Icon download attempt at https://i.postimg.cc/2y15VgpK/starlette.png failed with code NotFound
[06/05/2026 16:10:10] Found 2 installed packages from .NET Tool
[06/05/2026 16:10:11] Found 0 available updates from .NET Tool
[06/05/2026 16:10:12] Icon download attempt at https://github.com/devblackops/Terminal-Icons/raw/master/media/icon_256.png failed with code NotFound
[06/05/2026 16:10:12] Found 0 available updates from Chocolatey
[06/05/2026 16:10:12] Found 3 installed packages from PowerShell
[06/05/2026 16:10:12] Found 3 installed packages from PowerShell
[06/05/2026 16:10:13] Found 0 available updates from PowerShell
[06/05/2026 16:10:14] Icon download attempt at https://github.com/devblackops/Terminal-Icons/raw/master/media/icon_256.png failed with code NotFound
[06/05/2026 16:10:18] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[06/05/2026 16:10:20] Found 177 installed packages from Winget
[06/05/2026 16:10:21] Found 1 available updates from Winget
[06/05/2026 16:10:27] Found 2 available updates from Pip
[06/05/2026 16:10:28] Found 2 available updates from PowerShell7
[06/05/2026 16:10:34] Integrity check passed successfully!
[06/05/2026 16:10:40] Found 46 installed packages from Scoop
[06/05/2026 16:10:40] Found 46 installed packages from Scoop
[06/05/2026 16:10:55] Found 5 available updates from Scoop
[06/05/2026 17:09:56] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[06/05/2026 17:10:56] Found 0 available updates from vcpkg
[06/05/2026 17:10:57] Found 2 installed packages from .NET Tool
[06/05/2026 17:10:57] Found 0 available updates from Npm
[06/05/2026 17:10:57] Found 10 installed packages from PowerShell7
[06/05/2026 17:10:58] Found 0 available updates from .NET Tool
[06/05/2026 17:11:00] Found 3 installed packages from PowerShell
[06/05/2026 17:11:00] Found 0 available updates from Chocolatey
[06/05/2026 17:11:01] Found 0 available updates from PowerShell
[06/05/2026 17:11:09] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[06/05/2026 17:11:10] Found 2 available updates from Pip
[06/05/2026 17:11:11] Found 1 available updates from Winget
[06/05/2026 17:11:23] Found 2 available updates from PowerShell7
[06/05/2026 17:11:28] Found 46 installed packages from Scoop
[06/05/2026 17:11:43] Found 5 available updates from Scoop
[06/05/2026 18:09:57] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[06/05/2026 18:11:45] Found 0 available updates from vcpkg
[06/05/2026 18:11:46] Found 2 installed packages from .NET Tool
[06/05/2026 18:11:46] Found 10 installed packages from PowerShell7
[06/05/2026 18:11:46] Found 0 available updates from Npm
[06/05/2026 18:11:47] Found 0 available updates from .NET Tool
[06/05/2026 18:11:47] Found 2 available updates from PowerShell7
[06/05/2026 18:11:49] Found 0 available updates from Chocolatey
[06/05/2026 18:11:50] Found 3 installed packages from PowerShell
[06/05/2026 18:11:50] Found 0 available updates from PowerShell
[06/05/2026 18:11:58] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[06/05/2026 18:11:59] Found 2 available updates from Pip
[06/05/2026 18:12:00] Found 1 available updates from Winget
[06/05/2026 18:12:18] Found 46 installed packages from Scoop
[06/05/2026 18:12:33] Found 5 available updates from Scoop
[06/05/2026 19:09:57] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[06/05/2026 19:12:34] Found 0 available updates from vcpkg
[06/05/2026 19:12:35] Found 2 installed packages from .NET Tool
[06/05/2026 19:12:35] Found 0 available updates from Npm
[06/05/2026 19:12:35] Found 10 installed packages from PowerShell7
[06/05/2026 19:12:36] Found 0 available updates from .NET Tool
[06/05/2026 19:12:36] Found 2 available updates from PowerShell7
[06/05/2026 19:12:38] Found 3 installed packages from PowerShell
[06/05/2026 19:12:38] Found 0 available updates from PowerShell
[06/05/2026 19:12:38] Found 0 available updates from Chocolatey
[06/05/2026 19:12:47] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[06/05/2026 19:12:48] Found 2 available updates from Pip
[06/05/2026 19:12:48] Found 1 available updates from Winget
[06/05/2026 19:13:05] Found 46 installed packages from Scoop
[06/05/2026 19:13:19] Found 5 available updates from Scoop
[06/05/2026 20:09:57] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[06/05/2026 20:13:20] Found 0 available updates from vcpkg
[06/05/2026 20:13:21] Found 2 installed packages from .NET Tool
[06/05/2026 20:13:21] Found 0 available updates from Npm
[06/05/2026 20:13:21] Found 10 installed packages from PowerShell7
[06/05/2026 20:13:22] Found 0 available updates from .NET Tool
[06/05/2026 20:13:25] Found 0 available updates from Chocolatey
[06/05/2026 20:13:25] Found 3 installed packages from PowerShell
[06/05/2026 20:13:25] Found 0 available updates from PowerShell
[06/05/2026 20:13:29] Found 2 available updates from PowerShell7
[06/05/2026 20:13:33] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[06/05/2026 20:13:34] Found 2 available updates from Pip
[06/05/2026 20:13:34] Found 1 available updates from Winget
[06/05/2026 20:13:51] Found 46 installed packages from Scoop
[06/05/2026 20:14:05] Found 5 available updates from Scoop
[06/05/2026 21:09:58] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[06/05/2026 21:14:06] Found 0 available updates from vcpkg
[06/05/2026 21:14:07] Found 2 installed packages from .NET Tool
[06/05/2026 21:14:07] Found 0 available updates from Npm
[06/05/2026 21:14:07] Found 10 installed packages from PowerShell7
[06/05/2026 21:14:08] Found 0 available updates from .NET Tool
[06/05/2026 21:14:10] Found 3 installed packages from PowerShell
[06/05/2026 21:14:10] Found 0 available updates from Chocolatey
[06/05/2026 21:14:10] Found 0 available updates from PowerShell
[06/05/2026 21:14:15] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[06/05/2026 21:14:17] Found 1 available updates from Winget
[06/05/2026 21:14:18] Found 2 available updates from Pip
[06/05/2026 21:14:36] Found 46 installed packages from Scoop
[06/05/2026 21:14:50] Found 5 available updates from Scoop
[06/05/2026 21:15:05] Manager PowerShell 7.x failed to list available updates with exception TimeoutException: Task _getInstalledPackages for manager PowerShell7 did not finish after 60 seconds, aborting. You may disable timeouts from UniGetUI Advanced Settings
[06/05/2026 21:15:05] Since this was the first attempt, PowerShell7.AttemptFastRepair() will be called and the procedure will be restarted
[06/05/2026 21:15:06] Found 10 installed packages from PowerShell7
[06/05/2026 21:15:07] Found 2 available updates from PowerShell7
[06/05/2026 22:09:58] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[06/05/2026 22:15:08] Found 0 available updates from vcpkg
[06/05/2026 22:15:09] Found 2 installed packages from .NET Tool
[06/05/2026 22:15:09] Found 0 available updates from Npm
[06/05/2026 22:15:09] Found 10 installed packages from PowerShell7
[06/05/2026 22:15:10] Found 0 available updates from .NET Tool
[06/05/2026 22:15:10] Found 2 available updates from PowerShell7
[06/05/2026 22:15:12] Found 0 available updates from Chocolatey
[06/05/2026 22:15:12] Found 3 installed packages from PowerShell
[06/05/2026 22:15:13] Found 0 available updates from PowerShell
[06/05/2026 22:15:18] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[06/05/2026 22:15:19] Found 1 available updates from Winget
[06/05/2026 22:15:20] Found 2 available updates from Pip
[06/05/2026 22:15:39] Found 46 installed packages from Scoop
[06/05/2026 22:15:53] Found 5 available updates from Scoop
[06/05/2026 23:09:58] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[06/05/2026 23:15:54] Found 0 available updates from vcpkg
[06/05/2026 23:15:55] Found 2 installed packages from .NET Tool
[06/05/2026 23:15:55] Found 0 available updates from Npm
[06/05/2026 23:15:56] Found 10 installed packages from PowerShell7
[06/05/2026 23:15:56] Found 0 available updates from .NET Tool
[06/05/2026 23:15:57] Found 2 available updates from PowerShell7
[06/05/2026 23:15:58] Found 3 installed packages from PowerShell
[06/05/2026 23:15:58] Found 0 available updates from Chocolatey
[06/05/2026 23:15:58] Found 0 available updates from PowerShell
[06/05/2026 23:16:04] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[06/05/2026 23:16:05] Found 1 available updates from Winget
[06/05/2026 23:16:07] Found 2 available updates from Pip
[06/05/2026 23:16:25] Found 46 installed packages from Scoop
[06/05/2026 23:16:39] Found 5 available updates from Scoop
[07/05/2026 00:09:59] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[07/05/2026 00:16:40] Found 0 available updates from vcpkg
[07/05/2026 00:16:41] Found 2 installed packages from .NET Tool
[07/05/2026 00:16:41] Found 0 available updates from Npm
[07/05/2026 00:16:41] Found 10 installed packages from PowerShell7
[07/05/2026 00:16:42] Found 0 available updates from .NET Tool
[07/05/2026 00:16:42] Found 2 available updates from PowerShell7
[07/05/2026 00:16:44] Found 0 available updates from Chocolatey
[07/05/2026 00:16:44] Found 3 installed packages from PowerShell
[07/05/2026 00:16:45] Found 0 available updates from PowerShell
[07/05/2026 00:16:52] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[07/05/2026 00:16:53] Found 2 available updates from Pip
[07/05/2026 00:16:54] Found 1 available updates from Winget
[07/05/2026 00:17:10] Found 46 installed packages from Scoop
[07/05/2026 00:17:24] Found 5 available updates from Scoop
[07/05/2026 01:09:59] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[07/05/2026 01:17:25] Found 0 available updates from vcpkg
[07/05/2026 01:17:26] Found 2 installed packages from .NET Tool
[07/05/2026 01:17:26] Found 0 available updates from Npm
[07/05/2026 01:17:26] Found 10 installed packages from PowerShell7
[07/05/2026 01:17:27] Found 0 available updates from .NET Tool
[07/05/2026 01:17:27] Found 2 available updates from PowerShell7
[07/05/2026 01:17:29] Found 0 available updates from Chocolatey
[07/05/2026 01:17:29] Found 3 installed packages from PowerShell
[07/05/2026 01:17:30] Found 0 available updates from PowerShell
[07/05/2026 01:17:35] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[07/05/2026 01:17:36] Found 1 available updates from Winget
[07/05/2026 01:17:38] Found 2 available updates from Pip
[07/05/2026 01:17:56] Found 46 installed packages from Scoop
[07/05/2026 01:18:10] Found 5 available updates from Scoop
[07/05/2026 02:09:59] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[07/05/2026 02:18:11] Found 0 available updates from vcpkg
[07/05/2026 02:18:12] Found 2 installed packages from .NET Tool
[07/05/2026 02:18:12] Found 0 available updates from Npm
[07/05/2026 02:18:12] Found 10 installed packages from PowerShell7
[07/05/2026 02:18:13] Found 0 available updates from .NET Tool
[07/05/2026 02:18:13] Found 2 available updates from PowerShell7
[07/05/2026 02:18:15] Found 0 available updates from Chocolatey
[07/05/2026 02:18:15] Found 3 installed packages from PowerShell
[07/05/2026 02:18:16] Found 0 available updates from PowerShell
[07/05/2026 02:18:23] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[07/05/2026 02:18:24] Found 2 available updates from Pip
[07/05/2026 02:18:25] Found 1 available updates from Winget
[07/05/2026 02:18:42] Found 46 installed packages from Scoop
[07/05/2026 02:18:56] Found 5 available updates from Scoop
[07/05/2026 03:09:59] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[07/05/2026 03:18:57] Found 0 available updates from vcpkg
[07/05/2026 03:18:58] Found 2 installed packages from .NET Tool
[07/05/2026 03:18:58] Found 0 available updates from Npm
[07/05/2026 03:18:58] Found 10 installed packages from PowerShell7
[07/05/2026 03:18:59] Found 0 available updates from .NET Tool
[07/05/2026 03:19:01] Found 0 available updates from Chocolatey
[07/05/2026 03:19:01] Found 3 installed packages from PowerShell
[07/05/2026 03:19:01] Found 0 available updates from PowerShell
[07/05/2026 03:19:10] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[07/05/2026 03:19:11] Found 2 available updates from Pip
[07/05/2026 03:19:11] Found 1 available updates from Winget
[07/05/2026 03:19:15] Found 2 available updates from PowerShell7
[07/05/2026 03:19:28] Found 46 installed packages from Scoop
[07/05/2026 03:19:42] Found 5 available updates from Scoop
[07/05/2026 04:10:00] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[07/05/2026 04:19:43] Found 0 available updates from vcpkg
[07/05/2026 04:19:44] Found 2 installed packages from .NET Tool
[07/05/2026 04:19:45] Found 10 installed packages from PowerShell7
[07/05/2026 04:19:45] Found 0 available updates from Npm
[07/05/2026 04:19:45] Found 0 available updates from .NET Tool
[07/05/2026 04:19:47] Found 0 available updates from Chocolatey
[07/05/2026 04:19:48] Found 3 installed packages from PowerShell
[07/05/2026 04:19:48] Found 0 available updates from PowerShell
[07/05/2026 04:19:55] Found 2 available updates from PowerShell7
[07/05/2026 04:19:56] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[07/05/2026 04:19:57] Found 2 available updates from Pip
[07/05/2026 04:19:58] Found 1 available updates from Winget
[07/05/2026 04:20:14] Found 46 installed packages from Scoop
[07/05/2026 04:20:28] Found 5 available updates from Scoop
[07/05/2026 05:10:00] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[07/05/2026 05:20:29] Found 0 available updates from vcpkg
[07/05/2026 05:20:30] Found 2 installed packages from .NET Tool
[07/05/2026 05:20:30] Found 0 available updates from Npm
[07/05/2026 05:20:30] Found 10 installed packages from PowerShell7
[07/05/2026 05:20:30] Found 0 available updates from .NET Tool
[07/05/2026 05:20:33] Found 3 installed packages from PowerShell
[07/05/2026 05:20:33] Found 0 available updates from Chocolatey
[07/05/2026 05:20:33] Found 0 available updates from PowerShell
[07/05/2026 05:20:39] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[07/05/2026 05:20:40] Found 1 available updates from Winget
[07/05/2026 05:20:43] Found 2 available updates from PowerShell7
[07/05/2026 05:20:44] Found 2 available updates from Pip
[07/05/2026 05:21:03] Found 46 installed packages from Scoop
[07/05/2026 05:21:17] Found 5 available updates from Scoop
[07/05/2026 06:10:00] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[07/05/2026 06:21:18] Found 0 available updates from vcpkg
[07/05/2026 06:21:19] Found 2 installed packages from .NET Tool
[07/05/2026 06:21:19] Found 0 available updates from Npm
[07/05/2026 06:21:19] Found 10 installed packages from PowerShell7
[07/05/2026 06:21:20] Found 0 available updates from .NET Tool
[07/05/2026 06:21:22] Found 0 available updates from Chocolatey
[07/05/2026 06:21:22] Found 3 installed packages from PowerShell
[07/05/2026 06:21:22] Found 0 available updates from PowerShell
[07/05/2026 06:21:30] Found 2 available updates from PowerShell7
[07/05/2026 06:21:32] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[07/05/2026 06:21:33] Found 2 available updates from Pip
[07/05/2026 06:21:34] Found 1 available updates from Winget
[07/05/2026 06:21:51] Found 46 installed packages from Scoop
[07/05/2026 06:22:05] Found 5 available updates from Scoop
[07/05/2026 07:10:01] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[07/05/2026 07:22:06] Found 0 available updates from vcpkg
[07/05/2026 07:22:07] Found 2 installed packages from .NET Tool
[07/05/2026 07:22:07] Found 0 available updates from Npm
[07/05/2026 07:22:07] Found 10 installed packages from PowerShell7
[07/05/2026 07:22:07] Found 0 available updates from .NET Tool
[07/05/2026 07:22:09] Found 0 available updates from Chocolatey
[07/05/2026 07:22:10] Found 3 installed packages from PowerShell
[07/05/2026 07:22:10] Found 0 available updates from PowerShell
[07/05/2026 07:22:19] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[07/05/2026 07:22:19] Found 2 available updates from Pip
[07/05/2026 07:22:20] Found 1 available updates from Winget
[07/05/2026 07:22:22] Found 2 available updates from PowerShell7
[07/05/2026 07:22:36] Found 46 installed packages from Scoop
[07/05/2026 07:22:50] Found 5 available updates from Scoop
[07/05/2026 08:10:01] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[07/05/2026 08:22:51] Found 0 available updates from vcpkg
[07/05/2026 08:22:52] Found 2 installed packages from .NET Tool
[07/05/2026 08:22:52] Found 0 available updates from Npm
[07/05/2026 08:22:53] Found 10 installed packages from PowerShell7
[07/05/2026 08:22:53] Found 0 available updates from .NET Tool
[07/05/2026 08:22:55] Found 0 available updates from Chocolatey
[07/05/2026 08:22:56] Found 3 installed packages from PowerShell
[07/05/2026 08:22:56] Found 0 available updates from PowerShell
[07/05/2026 08:23:04] Found 2 available updates from Pip
[07/05/2026 08:23:05] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[07/05/2026 08:23:06] Found 2 available updates from Winget
[07/05/2026 08:23:12] Found 2 available updates from PowerShell7
[07/05/2026 08:23:23] Found 46 installed packages from Scoop
[07/05/2026 08:23:37] Found 5 available updates from Scoop
[07/05/2026 08:35:32] Manager Cargo is disabled but yet GetInstalledPackages was called
[07/05/2026 08:35:33] Found 0 installed packages from vcpkg
[07/05/2026 08:35:34] Found 2 installed packages from .NET Tool
[07/05/2026 08:35:35] Found 97 installed packages from Pip
[07/05/2026 08:35:35] Loaded operation parameters for package id=ffmpeg on manager Scoop and operation Update: update main/ffmpeg
[07/05/2026 08:35:35] Found 0 installed packages from Npm
[07/05/2026 08:35:35] Found 10 installed packages from PowerShell7
[07/05/2026 08:35:35] Found 19 installed packages from Chocolatey
[07/05/2026 08:35:38] Found 3 installed packages from PowerShell
[07/05/2026 08:35:41] Loaded operation parameters for package id=markdown-it-py on manager Pip and operation Update: install --upgrade markdown-it-py --no-input --no-color --no-cache
[07/05/2026 08:35:43] Found 177 installed packages from Winget
[07/05/2026 08:35:43] Adding missing package ZedIndustries.Zed to installed packages list
[07/05/2026 08:35:43] Adding missing package MSIX\Microsoft.Winget.Source_2026.506.2217.38_neutral__8wekyb3d8bbwe to installed packages list
[07/05/2026 08:35:49] Loaded operation parameters for package id=mise on manager Scoop and operation Update: update main/mise
[07/05/2026 08:35:55] Loaded operation parameters for package id=neovim-nightly on manager Scoop and operation Update: update versions/neovim-nightly
[07/05/2026 08:35:59] Found 46 installed packages from Scoop
[07/05/2026 08:36:35] Loaded operation parameters for package id=JanDeDobbeleer.OhMyPosh on manager Winget and operation Update: update --id "JanDeDobbeleer.OhMyPosh" --exact --source winget --accept-source-agreements --disable-interactivity --silent --include-unknown --accept-package-agreements --force
[07/05/2026 08:36:56] Loaded operation parameters for package id=opencode on manager Scoop and operation Update: update opencode
[07/05/2026 08:37:07] Loaded operation parameters for package id=pipx on manager Scoop and operation Update: update main/pipx
[07/05/2026 08:37:13] Loaded operation parameters for package id=pydantic on manager Pip and operation Update: install --upgrade pydantic --no-input --no-color --no-cache
[07/05/2026 09:10:01] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[07/05/2026 09:23:38] Found 0 available updates from vcpkg
[07/05/2026 09:23:39] Found 2 installed packages from .NET Tool
[07/05/2026 09:23:39] Found 0 available updates from Npm
[07/05/2026 09:23:39] Found 0 available updates from .NET Tool
[07/05/2026 09:23:40] Found 10 installed packages from PowerShell7
[07/05/2026 09:23:42] Found 0 available updates from Chocolatey
[07/05/2026 09:23:44] Found 3 installed packages from PowerShell
[07/05/2026 09:23:44] Found 0 available updates from PowerShell
[07/05/2026 09:23:49] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[07/05/2026 09:23:51] Found 1 available updates from Winget
[07/05/2026 09:23:55] Found 1 available updates from Pip
[07/05/2026 09:23:58] Found 2 available updates from PowerShell7
[07/05/2026 09:24:14] Found 46 installed packages from Scoop
[07/05/2026 09:24:31] Found 5 available updates from Scoop
[07/05/2026 09:24:34] Manager Cargo is disabled but yet GetInstalledPackages was called
[07/05/2026 09:24:34] Found 0 installed packages from vcpkg
[07/05/2026 09:24:36] Found 2 installed packages from .NET Tool
[07/05/2026 09:24:36] Loaded operation parameters for package id=ffmpeg on manager Scoop and operation Update: update main/ffmpeg
[07/05/2026 09:24:36] Found 10 installed packages from PowerShell7
[07/05/2026 09:24:36] Found 0 installed packages from Npm
[07/05/2026 09:24:37] Found 19 installed packages from Chocolatey
[07/05/2026 09:24:39] Found 97 installed packages from Pip
[07/05/2026 09:24:39] Adding missing package markdown-it-py to installed packages list
[07/05/2026 09:24:39] Adding missing package pydantic to installed packages list
[07/05/2026 09:24:39] Found 3 installed packages from PowerShell
[07/05/2026 09:24:43] Loaded operation parameters for package id=markdown-it-py on manager Pip and operation Update: install --upgrade markdown-it-py --no-input --no-color --no-cache
[07/05/2026 09:24:45] Found 177 installed packages from Winget
[07/05/2026 09:24:45] Adding missing package JanDeDobbeleer.OhMyPosh to installed packages list
[07/05/2026 09:24:45] Adding missing package MSIX\Microsoft.Winget.Source_2026.507.1142.58_neutral__8wekyb3d8bbwe to installed packages list
[07/05/2026 09:24:57] Loaded operation parameters for package id=mise on manager Scoop and operation Update: update main/mise
[07/05/2026 09:25:02] Found 46 installed packages from Scoop
[07/05/2026 09:25:04] Loaded operation parameters for package id=neovim-nightly on manager Scoop and operation Update: update versions/neovim-nightly
[07/05/2026 09:25:37] Loaded operation parameters for package id=opencode on manager Scoop and operation Update: update opencode
[07/05/2026 09:25:42] Loaded operation parameters for package id=pipx on manager Scoop and operation Update: update main/pipx
[07/05/2026 10:10:02] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[07/05/2026 10:24:33] Found 0 available updates from vcpkg
[07/05/2026 10:24:33] Found 2 installed packages from .NET Tool
[07/05/2026 10:24:33] Found 10 installed packages from PowerShell7
[07/05/2026 10:24:34] Found 0 available updates from Npm
[07/05/2026 10:24:34] Found 0 available updates from .NET Tool
[07/05/2026 10:24:36] Found 3 installed packages from PowerShell
[07/05/2026 10:24:37] Found 0 available updates from Chocolatey
[07/05/2026 10:24:37] Found 0 available updates from PowerShell
[07/05/2026 10:24:45] Found 2 available updates from PowerShell7
[07/05/2026 10:24:46] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[07/05/2026 10:24:46] Found 0 available updates from Pip
[07/05/2026 10:24:47] Found 1 available updates from Winget
[07/05/2026 10:25:06] Found 46 installed packages from Scoop
[07/05/2026 10:25:20] Found 5 available updates from Scoop
[07/05/2026 11:10:02] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[07/05/2026 11:25:22] Found 0 available updates from vcpkg
[07/05/2026 11:25:22] Found 2 installed packages from .NET Tool
[07/05/2026 11:25:23] Found 10 installed packages from PowerShell7
[07/05/2026 11:25:23] Found 0 available updates from .NET Tool
[07/05/2026 11:25:24] Found 0 available updates from Npm
[07/05/2026 11:25:26] Found 0 available updates from Chocolatey
[07/05/2026 11:25:27] Found 3 installed packages from PowerShell
[07/05/2026 11:25:28] Found 0 available updates from PowerShell
[07/05/2026 11:25:32] Found 2 available updates from PowerShell7
[07/05/2026 11:25:35] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[07/05/2026 11:25:37] Found 1 available updates from Winget
[07/05/2026 11:25:37] Found 0 available updates from Pip
[07/05/2026 11:25:56] Found 46 installed packages from Scoop
[07/05/2026 11:26:10] Found 5 available updates from Scoop
[07/05/2026 11:58:00] Thread with Id 27488 was assigned as DWM thread
[07/05/2026 11:58:00] DWM Thread was suspended successfully
[07/05/2026 11:58:00] Thread with Id 34084 was assigned as XAML thread
[07/05/2026 11:58:00] XAML Thread was suspended successfully
[07/05/2026 12:01:52] DWM Thread was resumed successfully
[07/05/2026 12:01:52] XAML Thread was resumed successfully
[07/05/2026 12:01:52] Manager Cargo is disabled but yet GetInstalledPackages was called
[07/05/2026 12:01:53] Found 0 installed packages from vcpkg
[07/05/2026 12:01:54] Found 0 installed packages from Npm
[07/05/2026 12:01:54] Found 2 installed packages from .NET Tool
[07/05/2026 12:01:55] Found 10 installed packages from PowerShell7
[07/05/2026 12:01:56] Found 19 installed packages from Chocolatey
[07/05/2026 12:01:57] Found 0 available packages from vcpkg with the query VcXsrv
[07/05/2026 12:01:57] Found 0 available packages from Scoop with the query VcXsrv
[07/05/2026 12:01:58] Found 97 installed packages from Pip
[07/05/2026 12:01:58] Adding missing package markdown-it-py to installed packages list
[07/05/2026 12:01:58] Found 0 available packages from .NET Tool with the query VcXsrv
[07/05/2026 12:01:58] Found 3 installed packages from PowerShell
[07/05/2026 12:01:58] Found 0 available packages from Npm with the query VcXsrv
[07/05/2026 12:02:00] Found 3 available packages from Winget with the query VcXsrv
[07/05/2026 12:02:01] Found 2 available packages from Chocolatey with the query VcXsrv
[07/05/2026 12:02:02] Found 0 available packages from Pip with the query VcXsrv
[07/05/2026 12:02:03] Found 0 available packages from PowerShell with the query VcXsrv
[07/05/2026 12:02:05] Found 176 installed packages from Winget
[07/05/2026 12:02:05] Adding missing package MSIX\Microsoft.Winget.Source_2026.507.1538.57_neutral__8wekyb3d8bbwe to installed packages list
[07/05/2026 12:02:21] Found 0 available packages from PowerShell7 with the query VcXsrv
[07/05/2026 12:02:24] Found 46 installed packages from Scoop
[07/05/2026 12:10:02] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[07/05/2026 12:26:11] Found 0 available updates from vcpkg
[07/05/2026 12:26:12] Found 2 installed packages from .NET Tool
[07/05/2026 12:26:13] Found 0 available updates from Npm
[07/05/2026 12:26:13] Found 10 installed packages from PowerShell7
[07/05/2026 12:26:13] Found 0 available updates from .NET Tool
[07/05/2026 12:26:15] Found 3 installed packages from PowerShell
[07/05/2026 12:26:16] Found 0 available updates from Chocolatey
[07/05/2026 12:26:16] Found 0 available updates from PowerShell
[07/05/2026 12:26:22] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[07/05/2026 12:26:23] Found 1 available updates from Winget
[07/05/2026 12:26:25] Found 0 available updates from Pip
[07/05/2026 12:26:28] Found 2 available updates from PowerShell7
[07/05/2026 12:26:44] Found 46 installed packages from Scoop
[07/05/2026 12:26:58] Found 5 available updates from Scoop
[07/05/2026 13:10:03] Updater source 'ProductInfo' returned version 2026.1.9.0 (upgradable=False)
[07/05/2026 13:11:15] Manager Cargo is disabled but yet GetInstalledPackages was called
[07/05/2026 13:11:15] Found 0 installed packages from vcpkg
[07/05/2026 13:11:18] Found 2 installed packages from .NET Tool
[07/05/2026 13:11:18] Found 10 installed packages from PowerShell7
[07/05/2026 13:11:19] Found 97 installed packages from Pip
[07/05/2026 13:11:19] Found 0 installed packages from Npm
[07/05/2026 13:11:19] Found 19 installed packages from Chocolatey
[07/05/2026 13:11:23] DWM Thread was suspended successfully
[07/05/2026 13:11:23] XAML Thread was suspended successfully
[07/05/2026 13:11:23] Found 3 installed packages from PowerShell
[07/05/2026 13:11:29] Found 177 installed packages from Winget
[07/05/2026 13:11:29] Adding missing package ARP\Machine\X64\O365SmallBusPremRetail - pt-br to installed packages list
[07/05/2026 13:11:29] Adding missing package OpenJS.NodeJS to installed packages list
[07/05/2026 13:11:29] Adding missing package MSIX\Microsoft.Office.ActionsServer_16.0.19929.20136_neutral__8wekyb3d8bbwe to installed packages list
[07/05/2026 13:11:29] Adding missing package MSIX\Microsoft.OfficePushNotificationUtility_16.0.19929.20136_neutral__8wekyb3d8bbwe to installed packages list
[07/05/2026 13:11:43] Found 46 installed packages from Scoop
[07/05/2026 13:18:12] DWM Thread was resumed successfully
[07/05/2026 13:18:12] XAML Thread was resumed successfully
[07/05/2026 13:18:12] Manager Cargo is disabled but yet GetInstalledPackages was called
[07/05/2026 13:18:13] Found 0 installed packages from vcpkg
[07/05/2026 13:18:14] Found 2 installed packages from .NET Tool
[07/05/2026 13:18:14] Found 97 installed packages from Pip
[07/05/2026 13:18:14] Found 0 installed packages from Npm
[07/05/2026 13:18:15] Found 10 installed packages from PowerShell7
[07/05/2026 13:18:15] Loaded operation parameters for package id=ffmpeg on manager Scoop and operation Update: update main/ffmpeg
[07/05/2026 13:18:15] Found 19 installed packages from Chocolatey
[07/05/2026 13:18:17] Found 3 installed packages from PowerShell
[07/05/2026 13:18:20] Loaded operation parameters for package id=mise on manager Scoop and operation Update: update main/mise
[07/05/2026 13:18:23] Found 177 installed packages from Winget
[07/05/2026 13:18:27] Loaded operation parameters for package id=neovim-nightly on manager Scoop and operation Update: update versions/neovim-nightly
[07/05/2026 13:18:38] Found 46 installed packages from Scoop
[07/05/2026 13:19:00] Loaded operation parameters for package id=pipx on manager Scoop and operation Update: update main/pipx
[07/05/2026 13:19:04] Loaded operation parameters for package id=opencode on manager Scoop and operation Update: update opencode
[07/05/2026 13:20:19] Manager Cargo is disabled but yet GetInstalledPackages was called
[07/05/2026 13:20:19] Found 0 installed packages from vcpkg
[07/05/2026 13:20:21] Found 2 installed packages from .NET Tool
[07/05/2026 13:20:21] Found 97 installed packages from Pip
[07/05/2026 13:20:21] Found 10 installed packages from PowerShell7
[07/05/2026 13:20:22] Found 0 installed packages from Npm
[07/05/2026 13:20:22] Found 19 installed packages from Chocolatey
[07/05/2026 13:20:24] Found 3 installed packages from PowerShell
[07/05/2026 13:20:29] Found 177 installed packages from Winget
[07/05/2026 13:20:43] Found 46 installed packages from Scoop
[07/05/2026 13:24:34] Loaded operation parameters for package id=neovim-nightly on manager Scoop and operation Uninstall: uninstall versions/neovim-nightly
[07/05/2026 13:27:00] Found 0 available updates from vcpkg
[07/05/2026 13:27:01] Found 2 installed packages from .NET Tool
[07/05/2026 13:27:02] Found 0 available updates from Npm
[07/05/2026 13:27:02] Found 0 available updates from .NET Tool
[07/05/2026 13:27:02] Found 10 installed packages from PowerShell7
[07/05/2026 13:27:04] Found 3 installed packages from PowerShell
[07/05/2026 13:27:05] Found 0 available updates from PowerShell
[07/05/2026 13:27:06] Found 0 available updates from Chocolatey
[07/05/2026 13:27:15] Found 2 available updates from PowerShell7
[07/05/2026 13:27:17] WinGet package CreativeTechnology.OpenAL not being shown as an updated as this version has already been marked as installed
[07/05/2026 13:27:20] Found 2 available updates from Winget
[07/05/2026 13:27:21] Found 1 available updates from Pip
[07/05/2026 13:27:32] Found 46 installed packages from Scoop
[07/05/2026 13:27:45] Found 5 available updates from Scoop
[07/05/2026 13:29:30] Loaded operation parameters for package id=neovim-nightly on manager Scoop and operation Install: install versions/neovim-nightly
[07/05/2026 13:46:06] Manager Cargo is disabled but yet GetInstalledPackages was called
[07/05/2026 13:46:06] Found 0 installed packages from vcpkg
[07/05/2026 13:46:08] Found 2 installed packages from .NET Tool
[07/05/2026 13:46:08] Found 97 installed packages from Pip
[07/05/2026 13:46:08] Found 0 installed packages from Npm
[07/05/2026 13:46:08] Found 10 installed packages from PowerShell7
[07/05/2026 13:46:09] Found 19 installed packages from Chocolatey
[07/05/2026 13:46:10] Found 3 installed packages from PowerShell
[07/05/2026 13:46:16] Found 177 installed packages from Winget
[07/05/2026 13:46:20] Found 46 installed packages from Scoop
[07/05/2026 13:46:20] Adding missing package neovim-nightly to installed packages list
[07/05/2026 13:51:21] DWM Thread was suspended successfully
[07/05/2026 13:51:21] XAML Thread was suspended successfully
[07/05/2026 13:52:35] DWM Thread was resumed successfully
[07/05/2026 13:52:35] XAML Thread was resumed successfully
[07/05/2026 13:52:35] Manager Cargo is disabled but yet GetInstalledPackages was called
[07/05/2026 13:52:35] Found 0 installed packages from vcpkg
[07/05/2026 13:52:37] Found 2 installed packages from .NET Tool
[07/05/2026 13:52:37] Found 97 installed packages from Pip
[07/05/2026 13:52:37] Found 0 installed packages from Npm
[07/05/2026 13:52:37] Found 10 installed packages from PowerShell7
[07/05/2026 13:52:38] Found 19 installed packages from Chocolatey
[07/05/2026 13:52:39] Found 3 installed packages from PowerShell
```

### Package Managers Logs

```text
Logged subprocess-based task on manager Scoop. Task type is ListUpdates
Subprocess executable: "C:\Users\iopdev\AppData\Local\Microsoft\WindowsApps\pwsh.exe"
Command-line arguments: "-NoProfile -ExecutionPolicy Bypass -Command "C:\Users\iopdev\scoop\shims\scoop.ps1" status -l"
Process start time: 07/05/2026 13:27:32
Process end time: 07/05/2026 13:27:45

-- Process STDOUT
Name  Installed Version Latest Version Missing Dependencies Info
----  ----------------- -------------- -------------------- ----
ffmpeg 8.1 8.1.1 Install failed
mise 2026.5.0 2026.5.1
neovim-nightly 0.13.0-375 0.13.0-440 Install failed
opencode 1.14.33 1.14.40
pipx 1.11.1 1.12.0

Return code: SUCCESS (0)
```

### Relevant information

_No response_

### Screenshots and videos

_No response_

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.