It is hard to find Microsoft.VCLibs.140.00.UWPDesktop #4320

Closed
opened 2026-01-30 23:43:49 +00:00 by claunia · 58 comments
Owner

Originally created by @shalevdad on GitHub (Oct 6, 2019).

Originally assigned to: @DHowett-MSFT, @cinnamon-msft on GitHub.

Hi everyone,
After installing the suggested VClibs at - https://github.com/microsoft/terminal/issues/2369
the installer still shows:
image
(They said to open a new issue report)

Best Regards

Originally created by @shalevdad on GitHub (Oct 6, 2019). Originally assigned to: @DHowett-MSFT, @cinnamon-msft on GitHub. Hi everyone, After installing the suggested VClibs at - https://github.com/microsoft/terminal/issues/2369 the installer still shows: ![image](https://user-images.githubusercontent.com/36129614/66270263-0b8cfa80-e85a-11e9-8164-63c35c07ad76.png) (They said to open a new issue report) Best Regards
Author
Owner

@EmTschi commented on GitHub (Oct 7, 2019):

Build this App on your own and make an appx.
It creates also the dependencies (Microsoft.VCLibs.x64.14.00.appx, Microsoft.VCLibs.x64.14.00.Desktop.appx)

Extract the downloaded msixbundle File and copy the created dependencies (Microsoft.VCLibs.x64.14.00.appx, Microsoft.VCLibs.x64.14.00.Desktop.appx) in the same Folder as the CascadiaPackage_xxx_x64.msix is and install it.

On a new release you can reuse this dependencies. Only extract und copy the files.

@EmTschi commented on GitHub (Oct 7, 2019): Build this App on your own and make an appx. It creates also the dependencies (Microsoft.VCLibs.x64.14.00.appx, Microsoft.VCLibs.x64.14.00.Desktop.appx) Extract the downloaded msixbundle File and copy the created dependencies (Microsoft.VCLibs.x64.14.00.appx, Microsoft.VCLibs.x64.14.00.Desktop.appx) in the same Folder as the CascadiaPackage_xxx_x64.msix is and install it. On a new release you can reuse this dependencies. Only extract und copy the files.
Author
Owner

@DHowett-MSFT commented on GitHub (Oct 8, 2019):

@bitcrazed I'm assigning this one to you per https://github.com/microsoft/terminal/issues/2369#issuecomment-535763987

The link you provided is to the desktop application redistributable, not the UWPDesktop redistributable.

@DHowett-MSFT commented on GitHub (Oct 8, 2019): @bitcrazed I'm assigning this one to you per https://github.com/microsoft/terminal/issues/2369#issuecomment-535763987 The link you provided is to the desktop application redistributable, not the `UWPDesktop` redistributable.
Author
Owner

@EmTschi commented on GitHub (Oct 8, 2019):

Is there a reason why the dependencies are not in the Package?
The app installer needs always the dependencies, also if the dependencies are already installed...

@EmTschi commented on GitHub (Oct 8, 2019): Is there a reason why the dependencies are not in the Package? The app installer needs always the dependencies, also if the dependencies are already installed...
Author
Owner

@DHowett-MSFT commented on GitHub (Oct 8, 2019):

The dependencies are not in the package because the dependencies need to be able to be updated without us releasing an update.

@DHowett-MSFT commented on GitHub (Oct 8, 2019): The dependencies are not in the package because the dependencies need to be able to be updated without us releasing an update.
Author
Owner

@EmTschi commented on GitHub (Oct 8, 2019):

Thanks for the quick reply!
Is it possible to attach the dependencies as seperate download for those who has no access to the store?

@EmTschi commented on GitHub (Oct 8, 2019): Thanks for the quick reply! Is it possible to attach the dependencies as seperate download for those who has no access to the store?
Author
Owner

@tebeco commented on GitHub (Oct 16, 2019):

The dependencies are not in the package because the dependencies need to be able to be updated without us releasing an update.

@DHowett
i think i've seen FluentTerminal managing to handle that as they ship the dependencies respectively (aside the msixbundle) and an installation script that way the install script managed to properly install everything

it also fixes the part where the store could / update be able to install it later on

that seems like it would be the perfect way for users here.

@tebeco commented on GitHub (Oct 16, 2019): > The dependencies are not in the package because the dependencies need to be able to be updated without us releasing an update. @DHowett i think i've seen FluentTerminal managing to handle that as they ship the dependencies respectively (aside the msixbundle) and an installation script that way the install script managed to properly install everything it also fixes the part where the store could / update be able to install it later on that seems like it would be the perfect way for users here.
Author
Owner

@damienleroy commented on GitHub (Nov 13, 2019):

I've got the same issue on my side.
I think the project is too deeply connected to the windows store. It's depend of some package which is not accessible by everyone.
Is it possible to remove the dependance of the store ?

@damienleroy commented on GitHub (Nov 13, 2019): I've got the same issue on my side. I think the project is too deeply connected to the windows store. It's depend of some package which is not accessible by everyone. Is it possible to remove the dependance of the store ?
Author
Owner

@tebeco commented on GitHub (Nov 13, 2019):

@ leroyd
For now, in order to use it, I have to manually

  • build it from vs,
  • right click publish (shame)
  • generate my own certificate to sign it during publish
  • set a specific version, bad because it differs from official package
  • have to do it twice because there is a bug in the CascadiaPackage.??proj (because of the condition testing pfx existing before you need it so the first publish won’t sign the package ...)
  • ship it on a corpo shared server
  • ask user to activate DevMode
  • then manually run install.ps1

@DHowett-MSFT i’m very interested to know how that msbuild check can be fixed without running the assistant twice

Repro :
git clean -fdx > right click : publish
You’d see for example that the “bundle” combo of the wizard is set to “never” because the pfx check if it exists same for Signing

Also does the .vsconfig works on MsBuild tool 2019 ? So that I can build it from a CI ?

@tebeco commented on GitHub (Nov 13, 2019): @ leroyd For now, in order to use it, I have to manually * build it from vs, * right click publish (shame) * generate my own certificate to sign it during publish * set a specific version, bad because it differs from official package * have to do it twice because there is a bug in the `CascadiaPackage.??proj` (because of the condition testing `pfx` existing before you need it so the first publish won’t sign the package ...) * ship it on a corpo shared server * ask user to activate DevMode * then manually run `install.ps1` @DHowett-MSFT i’m very interested to know how that msbuild check can be fixed without running the assistant twice Repro : `git clean -fdx` > `right click : publish` You’d see for example that the “bundle” combo of the wizard is set to “never” because the `pfx` check if it exists same for Signing Also does the `.vsconfig` works on `MsBuild tool 2019` ? So that I can build it from a CI ?
Author
Owner

@bitcrazed commented on GitHub (Nov 13, 2019):

Thanks for your feedback on this everyone. It's very closely related to #3457 but will leave open for now since we're actively looking into several options here.

On the one hand, we'd like to reduce in-package dependencies so that we don't have to ship updates to the Terminal if, in this case, VC140 is updated. But on the other hand, it's not easy to find the correct out-of-package VC140 redist. We're exploring a few things right now. Stay tuned while we figure out some logistics.

@bitcrazed commented on GitHub (Nov 13, 2019): Thanks for your feedback on this everyone. It's very closely related to #3457 but will leave open for now since we're actively looking into several options here. On the one hand, we'd like to reduce in-package dependencies so that we don't have to ship updates to the Terminal if, in this case, VC140 is updated. But on the other hand, it's not easy to find the correct out-of-package VC140 redist. We're exploring a few things right now. Stay tuned while we figure out some logistics.
Author
Owner

@tebeco commented on GitHub (Nov 13, 2019):

What about first before changing anything add an artifact here with the content of the output folder of the build

The exact same step I mentioned earlier but from your CI

  • Update will still not work
  • probably still require devMode
  • Some team does NOT have Visual Studio so they cannot build it
    It’s just the full folder output to zip and push to github
    This will not fix anything but until things are fixed that a good way to embrace users

As I mentioned in a previous comment this is what does FluentTerminal for the exact same issue
And so for it works great for them
another terminal ^^, that can be installed without store access

@tebeco commented on GitHub (Nov 13, 2019): What about first before changing anything add an artifact here with the content of the output folder of the build The exact same step I mentioned earlier but from your CI * Update will still not work * probably still require devMode * Some team does NOT have Visual Studio so they cannot build it It’s just the full folder output to zip and push to github This will not fix anything but until things are fixed that a good way to embrace users As I mentioned in a previous comment this is what does `FluentTerminal` for the exact same issue And so for it works great for them another terminal ^^, that can be installed without store access
Author
Owner

@bitcrazed commented on GitHub (Nov 15, 2019):

@tebeco Appreciate your thoughts here, but we're keen to try to minimize/avoid shipping others' dependencies and binaries for a variety of (predominantly servicing) reasons. We're discussing with several teams as I type and will update this thread with info once we've arrived at a workable solution.

@bitcrazed commented on GitHub (Nov 15, 2019): @tebeco Appreciate your thoughts here, but we're keen to try to minimize/avoid shipping others' dependencies and binaries for a variety of (predominantly servicing) reasons. We're discussing with several teams as I type and will update this thread with info once we've arrived at a workable solution.
Author
Owner

@tebeco commented on GitHub (Nov 15, 2019):

Thx a lot for the “insight view”
Will wait “patiently” here ^^
For now I’ll continue to do manual build for our teammates 😆

6F288C93-B88E-45C7-B1E3-4C1137ADB1B5

@tebeco commented on GitHub (Nov 15, 2019): Thx a lot for the “insight view” Will wait “patiently” here ^^ For now I’ll continue to do manual build for our teammates 😆 ![6F288C93-B88E-45C7-B1E3-4C1137ADB1B5](https://user-images.githubusercontent.com/2266487/68970810-6ebe6500-07e8-11ea-9db2-615e58b4152e.gif)
Author
Owner

@gbargsley commented on GitHub (Feb 7, 2020):

So my issue was closed and pointed to this thread. However, I see no resolution.

I installed the UWPDesktop from the release notes, and still cannot install terminal.

@gbargsley commented on GitHub (Feb 7, 2020): So my issue was closed and pointed to this thread. However, I see no resolution. I installed the UWPDesktop from the release notes, and still cannot install terminal.
Author
Owner

@tebeco commented on GitHub (Feb 7, 2020):

So far i found absolutly no workaround at work either
The last WindowsTerminal_0.8.10261.0_x64__8wekyb3d8bbwe msixbundle does install but the app crash, same if i install from chocolatey

result is here : https://github.com/microsoft/terminal/issues/4424
issue was closed

======================================================================================================
@DHowett

Thx for the improuvment over the msixbundle as it not install, and start to run.
Can you tell me how i can get info on WHY it crash when running so I can create a proper issue for potentially addressing it in later version ?

I can see the border appear for half a second, then crash and this :

image

if i open fast enought the Start Menu i can see that there is probably some sort of MS Store Post Action (the progress bar):
image

How can i help ?
I wonder where the Logs are to diagnose this.
I not sure where to look at in the EventViewer (i tried to check but did not found anything that look like the crash)

[Window Title]
Network Error

[Main Instruction]
Windows cannot access C:\Program Files\WindowsApps\Microsoft.WindowsTerminal_0.8.10261.0_x64__8wekyb3d8bbwe\WindowsTerminal.exe

[Content]
Check the spelling of the name. Otherwise, there might be a problem with your network. To try to identify and resolve network problems, click Diagnose.

[^] Hide details  [Diagnose] [Cancel]

[Expanded Information]
Error code: 0x800704cf
The network location cannot be reached. For information about network troubleshooting, see Windows Help.
@tebeco commented on GitHub (Feb 7, 2020): So far i found absolutly no workaround at work either The last `WindowsTerminal_0.8.10261.0_x64__8wekyb3d8bbwe` `msixbundle` does install but the app crash, same if i install from `chocolatey` result is here : https://github.com/microsoft/terminal/issues/4424 issue was closed ====================================================================================================== @DHowett Thx for the improuvment over the `msixbundle` as it not install, and start to run. Can you tell me how i can get info on WHY it crash when running so I can create a proper issue for potentially addressing it in later version ? I can see the border appear for half a second, then crash and this : ![image](https://user-images.githubusercontent.com/2266487/73839990-828dcc00-4817-11ea-8195-f74f7cc91993.png) if i open fast enought the `Start Menu` i can see that there is probably some sort of `MS Store Post Action` (the progress bar): ![image](https://user-images.githubusercontent.com/2266487/73840495-8e2dc280-4818-11ea-82c6-22c797d9e39b.png) How can i help ? I wonder where the Logs are to diagnose this. I not sure where to look at in the `EventViewer` (i tried to check but did not found anything that look like the crash) ``` [Window Title] Network Error [Main Instruction] Windows cannot access C:\Program Files\WindowsApps\Microsoft.WindowsTerminal_0.8.10261.0_x64__8wekyb3d8bbwe\WindowsTerminal.exe [Content] Check the spelling of the name. Otherwise, there might be a problem with your network. To try to identify and resolve network problems, click Diagnose. [^] Hide details [Diagnose] [Cancel] [Expanded Information] Error code: 0x800704cf The network location cannot be reached. For information about network troubleshooting, see Windows Help. ```
Author
Owner

@WSLUser commented on GitHub (Feb 12, 2020):

I get the same thing as @tebeco on an offline Windows 10 Enterprise host. From what I've been able to determine, it seems like a permissions issue. If you manually try to go to the directory in file explorer, you can not, even as administrator. I changed ownership to the local Administrators group and provided authenticated users group read access but that didn't seem to do the trick. This is on 1909 and sideloading is enabled. I did install everything listed on the install notes.

@WSLUser commented on GitHub (Feb 12, 2020): I get the same thing as @tebeco on an offline Windows 10 Enterprise host. From what I've been able to determine, it seems like a permissions issue. If you manually try to go to the directory in file explorer, you can not, even as administrator. I changed ownership to the local Administrators group and provided authenticated users group read access but that didn't seem to do the trick. This is on 1909 and sideloading is enabled. I did install everything listed on the install notes.
Author
Owner

@WSLUser commented on GitHub (Feb 12, 2020):

@DHowett I thought of a potential solution that does involve another team in MS. It's probably been thought about already but just in case: Just like Office can receive updates through Windows Update but is an external download/install, so too can Windows Terminal do the same. Make sure it can be available for WSUS and then you'll be able to push this great app to anybody running the required build version of Windows (just be sure Server 2016 and 2019 are also supported).

@WSLUser commented on GitHub (Feb 12, 2020): @DHowett I thought of a potential solution that does involve another team in MS. It's probably been thought about already but just in case: Just like Office can receive updates through Windows Update but is an external download/install, so too can Windows Terminal do the same. Make sure it can be available for WSUS and then you'll be able to push this great app to anybody running the required build version of Windows (just be sure Server 2016 and 2019 are also supported).
Author
Owner

@4integration commented on GitHub (Feb 14, 2020):

Still the same issue with v0.9.433.0
My issue report: https://github.com/microsoft/terminal/issues/4562

@4integration commented on GitHub (Feb 14, 2020): Still the same issue with v0.9.433.0 My issue report: https://github.com/microsoft/terminal/issues/4562
Author
Owner

@tebeco commented on GitHub (Feb 14, 2020):

(very sorry for the images size, as depending on you extensions, they could be rendered way bigger than i though)

I do confirm that it's still an issue with 0.9.x msixbundle.

I think both comments from @WSLUser are spots on :

I get the same thing as @tebeco on an offline Windows 10 Enterprise host. From what I've been able to determine, it seems like a permissions issue. If you manually try to go to the directory in file explorer, you can not, even as administrator. I changed ownership to the local Administrators group and provided authenticated users group read access but that didn't seem to do the trick. This is on 1909 and sideloading is enabled. I did install everything listed on the install notes.

@DHowett I thought of a potential solution that does involve another team in MS. It's probably been thought about already but just in case: Just like Office can receive updates through Windows Update but is an external download/install, so too can Windows Terminal do the same. Make sure it can be available for WSUS and then you'll be able to push this great app to anybody running the required build version of Windows (just be sure Server 2016 and 2019 are also supported).

as @bitcrazed said, it's being discussed, which is great
Thought, i would love to know, is it possible to simply publish artifacts, while a concensus / decision is made ?

For now i had to manually build it myself for co-worker, but since 0.8.x it stopped building while following this instruction of this repository
It seems that this #1386 suggest to apply "the same" idea => install from build artifiacts
see : https://github.com/microsoft/terminal/issues/1386#issuecomment-506419057
image
image

Can it be pushed to AzureDevops Artifacts for example ?

@tebeco commented on GitHub (Feb 14, 2020): (very sorry for the images size, as depending on you extensions, they could be rendered way bigger than i though) I do confirm that it's still an issue with `0.9.x` msixbundle. I think both comments from @WSLUser are spots on : > I get the same thing as @tebeco on an offline Windows 10 Enterprise host. From what I've been able to determine, it seems like a permissions issue. If you manually try to go to the directory in file explorer, you can not, even as administrator. I changed ownership to the local Administrators group and provided authenticated users group read access but that didn't seem to do the trick. This is on 1909 and sideloading is enabled. I did install everything listed on the install notes. > @DHowett I thought of a potential solution that does involve another team in MS. It's probably been thought about already but just in case: Just like Office can receive updates through Windows Update but is an external download/install, so too can Windows Terminal do the same. Make sure it can be available for WSUS and then you'll be able to push this great app to anybody running the required build version of Windows (just be sure Server 2016 and 2019 are also supported). as @bitcrazed said, it's being discussed, which is great Thought, i would love to know, is it possible to simply publish artifacts, while a concensus / decision is made ? For now i had to manually build it myself for co-worker, but since `0.8.x` it stopped building while following this instruction of this repository It seems that this #1386 suggest to apply "the same" idea => install from build artifiacts see : https://github.com/microsoft/terminal/issues/1386#issuecomment-506419057 ![image](https://user-images.githubusercontent.com/2266487/74522152-f9fbe380-4f1a-11ea-9542-2828c19c90eb.png) ![image](https://user-images.githubusercontent.com/2266487/74522612-d08f8780-4f1b-11ea-921b-f97b533d629d.png) Can it be pushed to AzureDevops Artifacts for example ?
Author
Owner

@deskoh commented on GitHub (Feb 26, 2020):

See if this helps https://github.com/microsoft/terminal/issues/1386#issuecomment-591177598

@deskoh commented on GitHub (Feb 26, 2020): See if this helps https://github.com/microsoft/terminal/issues/1386#issuecomment-591177598
Author
Owner

@tebeco commented on GitHub (Feb 26, 2020):

nop, won't click that link

why would i attempt to click an unknown / un trusted domain ?
especially to install binaries from an unofficial source

you may first want to explain what is the purpose of the website before sending a link and ask for user to click it. also i suppose what it does behind the site is open source so that it could be trusted ^^ ?

i'm not saying it does not work, just that there's no way you could trust a third part shipping magic binaries
Especially when you could first ask here to windows/terminal team if they might be able to address it

@tebeco commented on GitHub (Feb 26, 2020): **nop, won't click that link** why would i attempt to click an unknown / un trusted domain ? **especially to install binaries from an unofficial source** you may first want to explain what is the purpose of the website before sending a link and ask for user to click it. also i suppose what it does behind the site is open source so that it could be trusted ^^ ? i'm not saying it does not work, just that there's no way you could trust a third part shipping magic binaries Especially when you could first ask here to `windows/terminal` team if they might be able to address it
Author
Owner

@jheiselman commented on GitHub (Feb 26, 2020):

I'm not sure if this will help or not, but while trying to get things installed without using the Microsoft Store (disabled by GPO in my company), I ran into the following:

  1. I installed the package from the Microsoft site. The details of the file (details tab in file properties) indicate the version is 14.0.24222.0
  2. The installation via Chocolatey fails and provides an ActivityID. Looking at the logs for that activity has a message like

Windows cannot install package Microsoft.WindowsTerminal_0.9.433.0_x64__8wekyb3d8bbwe because this package depends on a framework
that could not be found. Provide the framework "Microsoft.VCLibs.140.00" published by "CN=Microsoft Corporation, O=Microsoft
Corporation, L=Redmond, S=Washington, C=US", with neutral or x64 processor architecture and minimum version 14.0.27323.0, along with
this package to install. The frameworks with name "Microsoft.VCLibs.140.00" currently installed are:
{Microsoft.VCLibs.140.00_14.0.26706.0_x64__8wekyb3d8bbwe Microsoft.VCLibs.140.00_14.0.26706.0_x86__8wekyb3d8bbwe}`

So, it seems like the problem may be that the required version is higher than what is being provided by the download page, however, the version after installation doesn't match the file version info, so I'm not sure if there is a different version string that is being looked for.

@jheiselman commented on GitHub (Feb 26, 2020): I'm not sure if this will help or not, but while trying to get things installed without using the Microsoft Store (disabled by GPO in my company), I ran into the following: 1. I installed the package from the Microsoft site. The details of the file (details tab in file properties) indicate the version is 14.0.24222.0 2. The installation via Chocolatey fails and provides an ActivityID. Looking at the logs for that activity has a message like > Windows cannot install package Microsoft.WindowsTerminal_0.9.433.0_x64__8wekyb3d8bbwe because this package depends on a framework > that could not be found. Provide the framework "Microsoft.VCLibs.140.00" published by "CN=Microsoft Corporation, O=Microsoft > Corporation, L=Redmond, S=Washington, C=US", with neutral or x64 processor architecture and minimum version 14.0.**27323**.0, along with > this package to install. The frameworks with name "Microsoft.VCLibs.140.00" currently installed are: > {Microsoft.VCLibs.140.00_14.0.**26706**.0_x64__8wekyb3d8bbwe Microsoft.VCLibs.140.00_14.0.**26706**.0_x86__8wekyb3d8bbwe}` So, it seems like the problem _may_ be that the required version is higher than what is being provided by the download page, however, the version after installation doesn't match the file version info, so I'm not sure if there is a different version string that is being looked for.
Author
Owner

@jheiselman commented on GitHub (Feb 26, 2020):

Did a little bit more digging. I'm not super familiar with Windows package development.
Here is a summary of file version identifiers I found:
From the Details tab of the file properties of the downloaded .exe: 14.0.24222.0
From the APPX Retail x64 version: 14.0.24217.0
From the APPX Debug x64 version: 14.0.24222.0
From the AppPackageLog:
Min Version=14.0.27323.0
List of installed frameworks: 14.0.26706.0

So, there are many version numbers that are all very similar and I know that it's all confusing me. Perhaps we could get which one of these versions we should be looking for and which ones are red herrings. Otherwise, all I can figure out is that the redist package being used in development isn't publicly available at this time, so no one outside of Microsoft will be able to install this package without building it ourselves (which isn't an option for me).

@jheiselman commented on GitHub (Feb 26, 2020): Did a little bit more digging. I'm not super familiar with Windows package development. Here is a summary of file version identifiers I found: From the Details tab of the file properties of the downloaded .exe: 14.0.24222.0 From the APPX Retail x64 version: 14.0.24217.0 From the APPX Debug x64 version: 14.0.24222.0 From the AppPackageLog: Min Version=14.0.27323.0 List of installed frameworks: 14.0.26706.0 So, there are many version numbers that are all very similar and I know that it's all confusing me. Perhaps we could get which one of these versions we should be looking for and which ones are red herrings. Otherwise, all I can figure out is that the redist package being used in development isn't publicly available at this time, so no one outside of Microsoft will be able to install this package without building it ourselves (which isn't an option for me).
Author
Owner

@thomas-ashcraft commented on GitHub (Mar 11, 2020):

I think the problem is much simpler and stupider.

Intro

Trying to install "The Terminal" (for example by choco install microsoft-windows-terminal), it throws an error where it trying to find a Microsoft.VCLibs.140.00.UWPDesktop platform, at least 14.0.27323.0 version. But win10 in many (or most) cases has older version. For example, Microsoft.VCLibs.140.00.UWPDesktop_14.0.26905.0_x64__8wekyb3d8bbwe. And everyone looked for those digits: 14.0.26905 vs 14.0.27323. You can even check that like this:

> Get-AppxPackage -allusers *Microsoft.VCLibs.140.00.UWPDesktop* | Select Name, PackageFullName

Name                               PackageFullName
----                               ---------------
Microsoft.VCLibs.140.00.UWPDesktop Microsoft.VCLibs.140.00.UWPDesktop_14.0.26905.0_x64__8wekyb3d8bbwe

Where we should look instead

> Get-AppxPackage -allusers *Microsoft.VCLibs.140.00* | Select Name, PackageFullName

Name                               PackageFullName
----                               ---------------
Microsoft.VCLibs.140.00.UWPDesktop Microsoft.VCLibs.140.00.UWPDesktop_14.0.26905.0_x64__8wekyb3d8bbwe
Microsoft.VCLibs.140.00            Microsoft.VCLibs.140.00_14.0.27323.0_x64__8wekyb3d8bbwe
Microsoft.VCLibs.140.00            Microsoft.VCLibs.140.00_14.0.27323.0_x86__8wekyb3d8bbwe
Microsoft.VCLibs.140.00            Microsoft.VCLibs.140.00_14.0.26706.0_x64__8wekyb3d8bbwe
Microsoft.VCLibs.140.00            Microsoft.VCLibs.140.00_14.0.26706.0_x86__8wekyb3d8bbwe

I think its pretty self explanatory. But in case... The Terminal requirement seeks for "YetAnotherCrap.UWPDesktop_100500". The Microsoft provides us only with "YetAnotherCrap_100500". Without that UWPDesktop part in the name.

P.S.

Yes, I downloaded those vc140 libs also by link from readme.md.
Yes, I tried to install every piece (terminal, libs...) throug choco and/or through Windows Store. Tried every approach.
Yes, I tried to delete that ugly old UWPDesktop_14.0.26905 version. But...

> Remove-AppxPackage -Package "Microsoft.VCLibs.140.00.UWPDesktop_14.0.26905.0_x64__8wekyb3d8bbwe"

...cmdlet says that package are dependency for Microsoft.DesktopAppInstaller and Microsoft.MicrosoftOfficeHub, so it wont be deleted in any case. Means windows are totally not able to make it, because there is no force-mode to ignore dependencies.

Also... it seems you cannot remove older versions of packages. I tried with Microsoft.VCLibs.140.00_14.0.26706.0 and it just not working. It does not throws any errors or anything. Adding verbose key, adds only 2 strings: "Performing removing" and "removing stopped".

@thomas-ashcraft commented on GitHub (Mar 11, 2020): I think the problem is much simpler and stupider. ### Intro Trying to install "The Terminal" (for example by ```choco install microsoft-windows-terminal```), it throws an error where it trying to find a ```Microsoft.VCLibs.140.00.UWPDesktop``` platform, at least ```14.0.27323.0``` version. But win10 in many (or most) cases has older version. For example, ```Microsoft.VCLibs.140.00.UWPDesktop_14.0.26905.0_x64__8wekyb3d8bbwe```. And everyone looked for those digits: 14.0.**26905** vs 14.0.**27323**. You can even check that like this: ```powershell > Get-AppxPackage -allusers *Microsoft.VCLibs.140.00.UWPDesktop* | Select Name, PackageFullName Name PackageFullName ---- --------------- Microsoft.VCLibs.140.00.UWPDesktop Microsoft.VCLibs.140.00.UWPDesktop_14.0.26905.0_x64__8wekyb3d8bbwe ``` ### Where we should look instead ```powershell > Get-AppxPackage -allusers *Microsoft.VCLibs.140.00* | Select Name, PackageFullName Name PackageFullName ---- --------------- Microsoft.VCLibs.140.00.UWPDesktop Microsoft.VCLibs.140.00.UWPDesktop_14.0.26905.0_x64__8wekyb3d8bbwe Microsoft.VCLibs.140.00 Microsoft.VCLibs.140.00_14.0.27323.0_x64__8wekyb3d8bbwe Microsoft.VCLibs.140.00 Microsoft.VCLibs.140.00_14.0.27323.0_x86__8wekyb3d8bbwe Microsoft.VCLibs.140.00 Microsoft.VCLibs.140.00_14.0.26706.0_x64__8wekyb3d8bbwe Microsoft.VCLibs.140.00 Microsoft.VCLibs.140.00_14.0.26706.0_x86__8wekyb3d8bbwe ``` I think its pretty self explanatory. But in case... The Terminal requirement seeks for "YetAnotherCrap.UWPDesktop_100500". The Microsoft provides us only with "YetAnotherCrap_100500". Without that UWPDesktop part in the name. ### P.S. Yes, I downloaded those vc140 libs also by link from readme.md. Yes, I tried to install every piece (terminal, libs...) throug choco and/or through Windows Store. Tried every approach. Yes, I tried to delete that ugly old ```UWPDesktop_14.0.26905``` version. But... ```powershell > Remove-AppxPackage -Package "Microsoft.VCLibs.140.00.UWPDesktop_14.0.26905.0_x64__8wekyb3d8bbwe" ``` ...cmdlet says that package are dependency for ```Microsoft.DesktopAppInstaller``` and ```Microsoft.MicrosoftOfficeHub```, so it wont be deleted in any case. Means windows are totally not able to make it, because there is no force-mode to ignore dependencies. Also... it seems you cannot remove older versions of packages. I tried with ```Microsoft.VCLibs.140.00_14.0.26706.0``` and it just not working. It does not throws any errors or anything. Adding verbose key, adds only 2 strings: "Performing removing" and "removing stopped".
Author
Owner

@tebeco commented on GitHub (Mar 11, 2020):

edit:
the previous workaround here could have corrupted more than it actually fixed.

as explained here : https://github.com/microsoft/terminal/issues/3097#issuecomment-597706462

the end result is similar to

  • download msixbundle
  • unzip
  • run it

the issue is that you need to be sure the dependencies are properly installed

@tebeco commented on GitHub (Mar 11, 2020): edit: the previous workaround here could have corrupted more than it actually fixed. as explained here : https://github.com/microsoft/terminal/issues/3097#issuecomment-597706462 the end result is similar to * download msixbundle * unzip * run it the issue is that you need to be sure the dependencies are properly installed
Author
Owner

@thomas-ashcraft commented on GitHub (Mar 11, 2020):

And another one clue about "UWPDesktop" part at name.
Part of AppxManifest.xml inside CascadiaPackage_0.9.433.0_x64.msix that inside Microsoft.WindowsTerminal_0.9.433.0_8wekyb3d8bbwe.msixbundle.

  <Dependencies>
    <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.18362.0" MaxVersionTested="10.0.18362.0" />
    <PackageDependency Name="Microsoft.VCLibs.140.00" MinVersion="14.0.27323.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
    <PackageDependency Name="Microsoft.VCLibs.140.00.UWPDesktop" MinVersion="14.0.27323.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
  </Dependencies>

I'm not sure this is the only reason, but there is no Optional flag at <PackageDependency> tags. So accordingly to official documentation this is looks like it is not only just making difference between names with and without UWPDesktop part (as I wrote at comment above), but also trying to require them both!

@thomas-ashcraft commented on GitHub (Mar 11, 2020): And another one clue about "UWPDesktop" part at name. Part of ```AppxManifest.xml``` inside ```CascadiaPackage_0.9.433.0_x64.msix``` that inside ```Microsoft.WindowsTerminal_0.9.433.0_8wekyb3d8bbwe.msixbundle```. ```XML <Dependencies> <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.18362.0" MaxVersionTested="10.0.18362.0" /> <PackageDependency Name="Microsoft.VCLibs.140.00" MinVersion="14.0.27323.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" /> <PackageDependency Name="Microsoft.VCLibs.140.00.UWPDesktop" MinVersion="14.0.27323.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" /> </Dependencies> ``` I'm not sure this is the only reason, but there is no ```Optional``` flag at ```<PackageDependency>``` tags. So accordingly to [official documentation](https://docs.microsoft.com/en-us/uwp/schemas/appxpackage/uapmanifestschema/element-packagedependency) this is looks like it is not only just making difference between names with and without ```UWPDesktop``` part (as I wrote at comment above), but also **trying to require them both**!
Author
Owner

@DHowett-MSFT commented on GitHub (Mar 11, 2020):

@TeBeCo what you’ve described is the same as unzipping the MSIXBundle and using the exe inside it with the added step of corrupting the permissions on your system. If you’re going to go to all that effort, just unzip the msix bundle like I suggested to you in the original issue you filed 😄

@DHowett-MSFT commented on GitHub (Mar 11, 2020): @TeBeCo what you’ve described is the same as unzipping the MSIXBundle and using the exe inside it with the added step of corrupting the permissions on your system. If you’re going to go to all that effort, just unzip the msix bundle like I suggested to you in the original issue you filed 😄
Author
Owner

@tebeco commented on GitHub (Mar 11, 2020):

ahhh i forgot that ^^
maybe that was when the VCLibs were not installed and was still stuck because the msix did not contained or installed the dependencies IIRC

sorry about that

yeah for the permissions that's what i was afraid of.
that's why i tried to write huge disclaimer as it's probably not recommended at all but was not sure before asking here to be honest

i'll go ok and try an unzip on future version

do you want me to edit or remove the previous comment to avoid user to corrupt their own permissions ?

i guess it's normal to be denied on that folder ?
even for normal installation? (i mean no special GPO / store not locked down)
if it's normal is the "network access denied" know ?
and why do the "network error" if fixed by a folder right ^^

i'm trying to understand things part by part as i don't have the full picture in my head

@tebeco commented on GitHub (Mar 11, 2020): ahhh i forgot that ^^ maybe that was when the VCLibs were not installed and was still stuck because the msix did not contained or installed the dependencies IIRC sorry about that yeah for the permissions that's what i was afraid of. that's why i tried to write huge disclaimer as it's probably not recommended at all but was not sure before asking here to be honest i'll go ok and try an unzip on future version #### do you want me to edit or remove the previous comment to avoid user to corrupt their own permissions ? i guess it's normal to be denied on that folder ? even for normal installation? (i mean no special GPO / store not locked down) if it's normal is the "network access denied" know ? and why do the "network error" if fixed by a folder right ^^ i'm trying to understand things part by part as i don't have the full picture in my head
Author
Owner

@DHowett-MSFT commented on GitHub (Mar 11, 2020):

@tebeco please do. That folder is managed by the windows application installer, and it's not intended to be edited by the local administrator. I'm not certain what could happen, but I would be worried to find out 😄

@DHowett-MSFT commented on GitHub (Mar 11, 2020): @tebeco please do. That folder is managed by the windows application installer, and it's not intended to be edited by the local administrator. I'm not certain what could happen, but I would be worried to find out :smile:
Author
Owner

@tebeco commented on GitHub (Mar 11, 2020):

(done)
do you have further info on the others questions regarding the current behavior / error msg etc ... at the end of this comment :
https://github.com/microsoft/terminal/issues/3097#issuecomment-597796444

because i wonder if the unzip would fix the dependencies issue, i might have installed them manually
or the installation might install them and only after unzipping could work

@tebeco commented on GitHub (Mar 11, 2020): (done) do you have further info on the others questions regarding the current behavior / error msg etc ... at the end of this comment : https://github.com/microsoft/terminal/issues/3097#issuecomment-597796444 because i wonder if the unzip would fix the dependencies issue, i might have installed them manually or the installation might install them and only after unzipping could work
Author
Owner

@DHowett-MSFT commented on GitHub (Mar 11, 2020):

If I knew why you were hitting a "network error" installing and launching packaged applications, you'd be the first to know 😄 it's a mystery to all of us.

@DHowett-MSFT commented on GitHub (Mar 11, 2020): If I knew why you were hitting a "network error" installing and launching packaged applications, you'd be the first to know :smile: it's a mystery to all of us.
Author
Owner

@tebeco commented on GitHub (Mar 11, 2020):

what can i do to help ?

if you do have a custom build or msixbundle that your team can send on another feed or whatever with more logs
can i trace it somehow ?

i looked in the EventViewer but was not lucky

i'm very very much whiling to help
and i might have a spare laptop at work to serve as a dummy for this test (at least for now)

just tell me what can i do. i would even suggest a debug session but the firewall here is kinda nasty
and not sure if i can use the "support card" for that to escaladate as it's absolutely not blocking anyone ;) :trollface:

@tebeco commented on GitHub (Mar 11, 2020): what can i do to help ? if you do have a custom build or msixbundle that your team can send on another feed or whatever with more logs can i trace it somehow ? i looked in the EventViewer but was not lucky i'm very very much whiling to help and i might have a spare laptop at work to serve as a dummy for this test (at least for now) just tell me what can i do. i would even suggest a debug session but the firewall here is kinda nasty and not sure if i can use the "support card" for that to escaladate as it's absolutely not blocking anyone ;) :trollface:
Author
Owner

@kevinbowman commented on GitHub (Mar 31, 2020):

Any news on this, I have the same issue running 1903. I can't install from the Store, but downloaded the MSIX and Choco pkg to no avail. Unzipping the MSIX and running the exe does work through (apart from AZure CLI not working so far). Can we at least remove the dependency so the install completes and go from there??

I have these VCLibs with after installing this https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk/

image

I also have VS2019 installed too.

@kevinbowman commented on GitHub (Mar 31, 2020): Any news on this, I have the same issue running 1903. I can't install from the Store, but downloaded the MSIX and Choco pkg to no avail. Unzipping the MSIX and running the exe does work through (apart from AZure CLI not working so far). Can we at least remove the dependency so the install completes and go from there?? I have these VCLibs with after installing this https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk/ ![image](https://user-images.githubusercontent.com/19746567/78072332-dd1a5300-7396-11ea-9851-81a98ad4ad75.png) I also have VS2019 installed too.
Author
Owner

@bitcrazed commented on GitHub (Mar 31, 2020):

Reassigning to @DHowett and @cinnamon-msft

FWIW, you may be missing some VCLibs.140 UWPDesktop packages:

image

The Win10 SDK alone does not install some of these packages.

Please bear with us while we figure some of this out - there's a complex dance in-play.

@bitcrazed commented on GitHub (Mar 31, 2020): Reassigning to @DHowett and @cinnamon-msft FWIW, you may be missing some VCLibs.140 UWPDesktop packages: ![image](https://user-images.githubusercontent.com/961950/78074220-2b0f6680-7357-11ea-861e-07d6cbb8e5c5.png) The Win10 SDK alone does not install some of these packages. Please bear with us while we figure some of this out - there's a complex dance in-play.
Author
Owner

@rogusdev commented on GitHub (Apr 3, 2020):

I am using chocolatey to install terminal and also encountered this error. The strange thing is: I literally just setup my machine this way last weekend (from a clean win10 install) and it worked fine, but now it's not on a reinstall (another win10 clean install). The particularly odd thing is that choco did successfully install the vcredis140 package! Errors and confirmation all below. The UWPDesktop version I have is behind what is looked for with terminal -- but I even tried installing the "Desktop Bridge VC++ v14 Redistributable Package" mentioned in the README and it did not seem to change anything. I literally used this same process successfully only 5 days ago so I am mighty confused.

Error from choco install terminal (I use upgrade to install):

PS C:\Windows\system32> choco upgrade -y microsoft-windows-terminal
Chocolatey v0.10.15
2 validations performed. 1 success(es), 1 warning(s), and 0 error(s).

Validation Warnings:
 - A pending system reboot request has been detected, however, this is
   being ignored due to the current Chocolatey configuration.  If you
   want to halt when this occurs, then either set the global feature
   using:
     choco feature enable -name=exitOnRebootDetected
   or pass the option --exit-when-reboot-detected.

Upgrading the following packages:
microsoft-windows-terminal
By upgrading you accept licenses for the packages.
microsoft-windows-terminal is not installed. Installing...
Progress: Downloading microsoft-windows-terminal 0.10.781.0... 100%
Progress: Downloading microsoft-windows-terminal 0.10.781.0... 100%

microsoft-windows-terminal v0.10.781.0 [Approved]
microsoft-windows-terminal package files upgrade completed. Performing other installation steps.
Progress: 0% - Processing                                                                                              ERROR: The running command stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: Deployment failed with HRESULT: 0x80073CF3, Package failed updates, dependency or conflict validation.

Windows cannot install package Microsoft.WindowsTerminal_0.10.781.0_x64__8wekyb3d8bbwe because this package depends on a framework that could not be found. Provide the framework "Microsoft.VCLibs.140.00.UWPDesktop" published by "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US", with neutral or x64 processor architecture and minimum version 14.0.27323.0, along with this package to install. The frameworks with name "Microsoft.VCLibs.140.00.UWPDesktop" currently installed are:
Windows cannot install package Microsoft.WindowsTerminal_0.10.781.0_x64__8wekyb3d8bbwe because this package depends on a framework that could not be found. Provide the framework "Microsoft.VCLibs.140.00.UWPDesktop" published by "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US", with neutral or x64 processor architecture and minimum version 14.0.27323.0, along with this package to install. The frameworks with name "Microsoft.VCLibs.140.00.UWPDesktop" currently installed are: {Microsoft.VCLibs.140.00.UWPDesktop_14.0.26905.0_x64__8wekyb3d8bbwe}

NOTE: For additional information, look for [ActivityId] b2d4ad61-09bb-0006-23c9-d4b2bb09d601 in the Event Log or use the command line Get-AppPackageLog -ActivityID b2d4ad61-09bb-0006-23c9-d4b2bb09d601

The upgrade of microsoft-windows-terminal was NOT successful.
Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'.
 See log for details.

Chocolatey upgraded 0/1 packages. 1 packages failed.
 See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).

Failures
 - microsoft-windows-terminal (exited -1) - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'.
 See log for details.

Here is the status of my vcredist:

PS C:\Windows\system32> choco upgrade -y vcredist140
Chocolatey v0.10.15
2 validations performed. 1 success(es), 1 warning(s), and 0 error(s).

Validation Warnings:
 - A pending system reboot request has been detected, however, this is
   being ignored due to the current Chocolatey configuration.  If you
   want to halt when this occurs, then either set the global feature
   using:
     choco feature enable -name=exitOnRebootDetected
   or pass the option --exit-when-reboot-detected.

Upgrading the following packages:
vcredist140
By upgrading you accept licenses for the packages.
vcredist140 v14.24.28127.4 is the latest version available based on your source(s).

Chocolatey upgraded 0/1 packages.
 See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).

With these packages, using the suggested command:

PS C:\Windows\system32> Get-AppxPackage -AllUsers *vclibs* | sort PackageFullName | Select Name, Version, PackageFullName

Name                               Version      PackageFullName
----                               -------      ---------------
Microsoft.VCLibs.140.00.UWPDesktop 14.0.26905.0 Microsoft.VCLibs.140.00.UWPDesktop_14.0.26905.0_x64__8wekyb3d8bbwe
Microsoft.VCLibs.140.00            14.0.27810.0 Microsoft.VCLibs.140.00_14.0.27810.0_x64__8wekyb3d8bbwe
Microsoft.VCLibs.140.00            14.0.27810.0 Microsoft.VCLibs.140.00_14.0.27810.0_x86__8wekyb3d8bbwe

……….
At this point I have tried forcing the next version of vcredist (not yet approved) with:
choco install -y vcredist140 --version=14.25.28508.3

But honestly, at this point I'm simply curious: where does one get this new version from?
……
Well, I found out: if I install ubuntu for WSL from the store, then I get the correct version of uwpdesktop. Quite the fix...

@rogusdev commented on GitHub (Apr 3, 2020): I am using chocolatey to install terminal and also encountered this error. The strange thing is: I literally just setup my machine this way last weekend (from a clean win10 install) and it worked fine, but now it's not on a reinstall (another win10 clean install). The particularly odd thing is that choco did successfully install the vcredis140 package! Errors and confirmation all below. The UWPDesktop version I have is behind what is looked for with terminal -- but I even tried installing the "Desktop Bridge VC++ v14 Redistributable Package" mentioned in the README and it did not seem to change anything. I literally used this same process successfully only 5 days ago so I am mighty confused. Error from choco install terminal (I use upgrade to install): ``` PS C:\Windows\system32> choco upgrade -y microsoft-windows-terminal Chocolatey v0.10.15 2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). Validation Warnings: - A pending system reboot request has been detected, however, this is being ignored due to the current Chocolatey configuration. If you want to halt when this occurs, then either set the global feature using: choco feature enable -name=exitOnRebootDetected or pass the option --exit-when-reboot-detected. Upgrading the following packages: microsoft-windows-terminal By upgrading you accept licenses for the packages. microsoft-windows-terminal is not installed. Installing... Progress: Downloading microsoft-windows-terminal 0.10.781.0... 100% Progress: Downloading microsoft-windows-terminal 0.10.781.0... 100% microsoft-windows-terminal v0.10.781.0 [Approved] microsoft-windows-terminal package files upgrade completed. Performing other installation steps. Progress: 0% - Processing ERROR: The running command stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: Deployment failed with HRESULT: 0x80073CF3, Package failed updates, dependency or conflict validation. Windows cannot install package Microsoft.WindowsTerminal_0.10.781.0_x64__8wekyb3d8bbwe because this package depends on a framework that could not be found. Provide the framework "Microsoft.VCLibs.140.00.UWPDesktop" published by "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US", with neutral or x64 processor architecture and minimum version 14.0.27323.0, along with this package to install. The frameworks with name "Microsoft.VCLibs.140.00.UWPDesktop" currently installed are: Windows cannot install package Microsoft.WindowsTerminal_0.10.781.0_x64__8wekyb3d8bbwe because this package depends on a framework that could not be found. Provide the framework "Microsoft.VCLibs.140.00.UWPDesktop" published by "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US", with neutral or x64 processor architecture and minimum version 14.0.27323.0, along with this package to install. The frameworks with name "Microsoft.VCLibs.140.00.UWPDesktop" currently installed are: {Microsoft.VCLibs.140.00.UWPDesktop_14.0.26905.0_x64__8wekyb3d8bbwe} NOTE: For additional information, look for [ActivityId] b2d4ad61-09bb-0006-23c9-d4b2bb09d601 in the Event Log or use the command line Get-AppPackageLog -ActivityID b2d4ad61-09bb-0006-23c9-d4b2bb09d601 The upgrade of microsoft-windows-terminal was NOT successful. Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'. See log for details. Chocolatey upgraded 0/1 packages. 1 packages failed. See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). Failures - microsoft-windows-terminal (exited -1) - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'. See log for details. ``` Here is the status of my vcredist: ``` PS C:\Windows\system32> choco upgrade -y vcredist140 Chocolatey v0.10.15 2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). Validation Warnings: - A pending system reboot request has been detected, however, this is being ignored due to the current Chocolatey configuration. If you want to halt when this occurs, then either set the global feature using: choco feature enable -name=exitOnRebootDetected or pass the option --exit-when-reboot-detected. Upgrading the following packages: vcredist140 By upgrading you accept licenses for the packages. vcredist140 v14.24.28127.4 is the latest version available based on your source(s). Chocolatey upgraded 0/1 packages. See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). ``` With these packages, using the suggested command: ``` PS C:\Windows\system32> Get-AppxPackage -AllUsers *vclibs* | sort PackageFullName | Select Name, Version, PackageFullName Name Version PackageFullName ---- ------- --------------- Microsoft.VCLibs.140.00.UWPDesktop 14.0.26905.0 Microsoft.VCLibs.140.00.UWPDesktop_14.0.26905.0_x64__8wekyb3d8bbwe Microsoft.VCLibs.140.00 14.0.27810.0 Microsoft.VCLibs.140.00_14.0.27810.0_x64__8wekyb3d8bbwe Microsoft.VCLibs.140.00 14.0.27810.0 Microsoft.VCLibs.140.00_14.0.27810.0_x86__8wekyb3d8bbwe ``` ………. At this point I have tried forcing the next version of vcredist (not yet approved) with: choco install -y vcredist140 --version=14.25.28508.3 But honestly, at this point I'm simply curious: where does one get this new version from? …… Well, I found out: if I install ubuntu for WSL from the store, then I get the correct version of uwpdesktop. Quite the fix...
Author
Owner

@atom0s commented on GitHub (Apr 17, 2020):

The needed packages can be downloaded from the Microsoft Store currently here:
https://www.microsoft.com/store/productId/9NBLGGH4RV3K

For whatever reason this page is hidden. The direct links currently are:

x86:
http://tlu.dl.delivery.mp.microsoft.com/filestreamingservice/files/7940bc27-6f7a-4b37-949b-4c8d9ed94460?P1=1587105490&P2=402&P3=2&P4=AtQJnsmggRcHcsZyjMqotvtXkl8BtKNjjNTLNMXElMvbb9bW9BzGGAt1R0abu%2ff55938xk%2fSQvuhGqi8Do4kow%3d%3d
http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1d146565-6dae-41ce-a1d7-febc36317f36

x64:
http://tlu.dl.delivery.mp.microsoft.com/filestreamingservice/files/0e19f025-0004-48c2-b699-ee1a275389b7?P1=1587105510&P2=402&P3=2&P4=VDFc2TYZIE76bGINYMsEM4%2fuLyj6Q9aWopsazPUOFeN9O%2bWZ2VweF%2fddYWmYAsEPf8fxw3z9GJ1y6ZoLsNd14w%3d%3d
http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7d52a905-fc42-4c82-a642-70b3bede55dc

ARM:
http://tlu.dl.delivery.mp.microsoft.com/filestreamingservice/files/c14c0261-8f5d-432c-81ca-3518a53c9581?P1=1587105510&P2=402&P3=2&P4=FjeknMnvJynzKWZYBeAIihMNefCIjfLAYJ6xXMXN8IVbdmQJ97bFaz395nYlKl%2bMd5mt%2fyS4GfvuYI%2f8HcBMhQ%3d%3d
http://dl.delivery.mp.microsoft.com/filestreamingservice/files/67fb1b12-2236-4b18-8079-f3f3cd27a707

ARM64:
http://tlu.dl.delivery.mp.microsoft.com/filestreamingservice/files/0b0a31d6-85a8-4f63-ad1a-6a31afe4ee1c?P1=1587105510&P2=402&P3=2&P4=EApKlQwATjqsOibgA87H69FzpEU%2fCFOQ%2fARRv9J82CUe6a4CtVAQBcDUk1mCV4JK3Ghg62UWi0fX2MS0F7Wq%2fA%3d%3d
http://dl.delivery.mp.microsoft.com/filestreamingservice/files/83533985-0915-4337-b849-532913e9d544

I am unsure of these links being timed or session-based, so if they do expire, here is how to get them again:

This will pull real/valid links from Microsofts store. You can verify the links before downloading them to trust their locations as needed. The appx's are downloaded from Microsofts servers directly, so they are safe.

Doing this will get you the needed requirement to get this installed and working.

@atom0s commented on GitHub (Apr 17, 2020): The needed packages can be downloaded from the Microsoft Store currently here: https://www.microsoft.com/store/productId/9NBLGGH4RV3K For whatever reason this page is hidden. The direct links currently are: x86: http://tlu.dl.delivery.mp.microsoft.com/filestreamingservice/files/7940bc27-6f7a-4b37-949b-4c8d9ed94460?P1=1587105490&P2=402&P3=2&P4=AtQJnsmggRcHcsZyjMqotvtXkl8BtKNjjNTLNMXElMvbb9bW9BzGGAt1R0abu%2ff55938xk%2fSQvuhGqi8Do4kow%3d%3d http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1d146565-6dae-41ce-a1d7-febc36317f36 x64: http://tlu.dl.delivery.mp.microsoft.com/filestreamingservice/files/0e19f025-0004-48c2-b699-ee1a275389b7?P1=1587105510&P2=402&P3=2&P4=VDFc2TYZIE76bGINYMsEM4%2fuLyj6Q9aWopsazPUOFeN9O%2bWZ2VweF%2fddYWmYAsEPf8fxw3z9GJ1y6ZoLsNd14w%3d%3d http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7d52a905-fc42-4c82-a642-70b3bede55dc ARM: http://tlu.dl.delivery.mp.microsoft.com/filestreamingservice/files/c14c0261-8f5d-432c-81ca-3518a53c9581?P1=1587105510&P2=402&P3=2&P4=FjeknMnvJynzKWZYBeAIihMNefCIjfLAYJ6xXMXN8IVbdmQJ97bFaz395nYlKl%2bMd5mt%2fyS4GfvuYI%2f8HcBMhQ%3d%3d http://dl.delivery.mp.microsoft.com/filestreamingservice/files/67fb1b12-2236-4b18-8079-f3f3cd27a707 ARM64: http://tlu.dl.delivery.mp.microsoft.com/filestreamingservice/files/0b0a31d6-85a8-4f63-ad1a-6a31afe4ee1c?P1=1587105510&P2=402&P3=2&P4=EApKlQwATjqsOibgA87H69FzpEU%2fCFOQ%2fARRv9J82CUe6a4CtVAQBcDUk1mCV4JK3Ghg62UWi0fX2MS0F7Wq%2fA%3d%3d http://dl.delivery.mp.microsoft.com/filestreamingservice/files/83533985-0915-4337-b849-532913e9d544 I am unsure of these links being timed or session-based, so if they do expire, here is how to get them again: - Visit: https://store.rg-adguard.net/ (This is a third-party site, disable ads and javascript before visiting to be sure.) - Select URL (link) from the drop down. - Enter: https://www.microsoft.com/store/productId/9NBLGGH4RV3K This will pull real/valid links from Microsofts store. You can verify the links before downloading them to trust their locations as needed. The appx's are downloaded from Microsofts servers directly, so they are safe. Doing this will get you the needed requirement to get this installed and working.
Author
Owner

@camp-007 commented on GitHub (Apr 17, 2020):

@atom0s Thanks for the info. The store.rg-adguard.net seemed a bit shady to me, but I can confirm that process worked for me. To restate your solution and my path to resolution:

Problem:

choco install microsoft-windows-terminal would fail with errors about missing packages for
Microsoft.VCLibs.140.00.UWPDesktop or Microsoft.VCLibs.140.00

Get-AppxPackage | where name -like "Microsoft.VC*" | select Name, Version, PackageFamilyName would show these packages but not with the latest/required versions

Solution:

  • Visit the somewhat shady feeling site: https://store.rg-adguard.net/ to download appx packages directly out of the microsoft store. The links generated are from microsoft.com domains.
  • Search by PackageFamilyName for Microsoft.VCLibs.140.00.UWPDesktop_8wekyb3d8bbwe
  • Search by PackageFamilyName for Microsoft.VCLibs.140.00_8wekyb3d8bbwe
  • run Add-AppxPackage -Path .\Microsoft.VCLibs.140.00.UWPDesktop_14.0.27810.0_x64__8wekyb3d8bbwe.appx
  • run Add-AppxPackage -Path .\Microsoft.VCLibs.140.00_14.0.27810.0_x64__8wekyb3d8bbwe.appx
  • run choco install microsoft-windows-terminal which now succeeds
@camp-007 commented on GitHub (Apr 17, 2020): @atom0s Thanks for the info. The store.rg-adguard.net seemed a bit shady to me, but I can confirm that process worked for me. To restate your solution and my path to resolution: ### Problem: `choco install microsoft-windows-terminal` would fail with errors about missing packages for `Microsoft.VCLibs.140.00.UWPDesktop` or `Microsoft.VCLibs.140.00` `Get-AppxPackage | where name -like "Microsoft.VC*" | select Name, Version, PackageFamilyName` would show these packages but not with the latest/required versions ### Solution: - Visit the somewhat shady feeling site: https://store.rg-adguard.net/ to download appx packages directly out of the microsoft store. The links generated are from microsoft.com domains. - Search by *PackageFamilyName* for `Microsoft.VCLibs.140.00.UWPDesktop_8wekyb3d8bbwe` - For me, the generated link for x64 was: [Microsoft.VCLibs.140.00.UWPDesktop_14.0.27810.0_x64__8wekyb3d8bbwe.appx](http://tlu.dl.delivery.mp.microsoft.com/filestreamingservice/files/0e19f025-0004-48c2-b699-ee1a275389b7?P1=1587145145&P2=402&P3=2&P4=ORyZzbFyStMFDD0IQAFawhFUtROdd7Nd8gSjEIl4IzxxLguuimPdAdJ3TC2%2b1Cm0FanbucNGv0xQbbSOkMHFYg%3d%3d) - Search by *PackageFamilyName* for `Microsoft.VCLibs.140.00_8wekyb3d8bbwe` - For me the generated link for x64 was: [Microsoft.VCLibs.140.00_14.0.27810.0_x64__8wekyb3d8bbwe.appx](http://tlu.dl.delivery.mp.microsoft.com/filestreamingservice/files/628f920b-6ee5-4f64-9988-8e840bc0aa5d?P1=1587142291&P2=402&P3=2&P4=bWDil9PMYqTcYdfQqBqu4PkD6f5aHmWvTuTQZxzdw%2bykcWAU4tAzpqfOSFWbSnKPfNVUUx33xE6MMrMXDt6tDw%3d%3d) - run `Add-AppxPackage -Path .\Microsoft.VCLibs.140.00.UWPDesktop_14.0.27810.0_x64__8wekyb3d8bbwe.appx` - run `Add-AppxPackage -Path .\Microsoft.VCLibs.140.00_14.0.27810.0_x64__8wekyb3d8bbwe.appx` - run `choco install microsoft-windows-terminal` which now succeeds
Author
Owner

@damienleroy commented on GitHub (Apr 20, 2020):

Working well on my side too.
Thanks @atom0s ! (and @camp-007 for the clearest explanation :) )

@damienleroy commented on GitHub (Apr 20, 2020): Working well on my side too. Thanks @atom0s ! (and @camp-007 for the clearest explanation :) )
Author
Owner

@tebeco commented on GitHub (Apr 20, 2020):

the msixbundle would then work too if you want to avoid choco

@tebeco commented on GitHub (Apr 20, 2020): the `msixbundle` would then work too if you want to avoid `choco`
Author
Owner

@zhangnew commented on GitHub (Apr 20, 2020):

I installed Microsoft.VCLibs.140.00.UWPDesktop_8wekyb3d8bbwe and Microsoft.VCLibs.140.00_8wekyb3d8bbwe by this way (https://github.com/microsoft/terminal/issues/3097#issuecomment-615373769),

Then download the Microsoft.WindowsTerminal_0.10.781.0_8wekyb3d8bbwe.msixbundle from releases page, and installed the app.

But can't open it, when click the start button, there is nothing, after a few miutes, show this error:
image

due to time out, this operation is return in English. (my pc is without network access)

@zhangnew commented on GitHub (Apr 20, 2020): I installed `Microsoft.VCLibs.140.00.UWPDesktop_8wekyb3d8bbwe` and `Microsoft.VCLibs.140.00_8wekyb3d8bbwe` by this way (https://github.com/microsoft/terminal/issues/3097#issuecomment-615373769), Then download the `Microsoft.WindowsTerminal_0.10.781.0_8wekyb3d8bbwe.msixbundle` from releases page, and installed the app. But can't open it, when click the `start` button, there is nothing, after a few miutes, show this error: ![image](https://user-images.githubusercontent.com/9146834/79734241-f6c11180-8328-11ea-9a4b-067490456ead.png) `due to time out, this operation is return` in English. (my pc is without network access)
Author
Owner

@awarre commented on GitHub (Apr 23, 2020):

@atom0s Your solution actually worked for me! I've attempted every other workaround posted by the devs and others here for months, and nothing has ever worked.

This seems like a byzantine process to through to install a terminal console. Not sure why Terminal so strictly require the bleeding edge release of the C++ runtime each update. Even downloading the latest release from the MS website doesn't work for me.

Only this goofy third-party search engine giving downloads from the Store seems to work.

@awarre commented on GitHub (Apr 23, 2020): @atom0s Your solution actually worked for me! I've attempted every other workaround posted by the devs and others here for months, and nothing has ever worked. This seems like a byzantine process to through to install a terminal console. Not sure why Terminal so strictly require the bleeding edge release of the C++ runtime each update. Even downloading the latest release from the MS website doesn't work for me. Only this goofy third-party search engine giving downloads from the Store seems to work.
Author
Owner

@thomas-ashcraft commented on GitHub (Apr 24, 2020):

@atom0s thank you for solution. It works on some systems. x86 installs on every machine without any problmes. But my primary notebook, are not able to install x64 version of that package. Says:

App installation failed with error message: Ошибка 0x80073D02: не удалось выполнить установку, так как требуется закрыть следующие приложения: Microsoft.DesktopAppInstaller_1.0.32912.0_x64__8wekyb3d8bbwe. (0x80073d02)

Means: "Error 0x80073D02: cannot perform an installation, because you need to close those applications". The trick is: installation of .appx file (as I understand) performed by DesktopAppInstaller. So it literally asks to close itself, because it cannot perform its own functions, because of itself. Wut?

P.S.
Guys/girls/persons/kind-folks from Microsoft... Im risking to trigger your holy rage by that question, but I feel like I must to ask. Even if no one will answer, it will seed the idea. Can't you please just follow the RPM system so we all can to sigh with a relief at last? I know that in *nix world it is not the newest and best. Yet for Windows it will be like divine revelation and next level ascension.

@thomas-ashcraft commented on GitHub (Apr 24, 2020): @atom0s thank you for solution. It works on some systems. x86 installs on every machine without any problmes. But my primary notebook, are not able to install x64 version of that package. Says: > App installation failed with error message: Ошибка 0x80073D02: не удалось выполнить установку, так как требуется закрыть следующие приложения: Microsoft.DesktopAppInstaller_1.0.32912.0_x64__8wekyb3d8bbwe. (0x80073d02) Means: "_Error 0x80073D02: cannot perform an installation, because you need to close those applications_". The trick is: installation of .appx file (as I understand) performed by DesktopAppInstaller. So it literally asks to close itself, because it cannot perform its own functions, because of itself. Wut? P.S. Guys/girls/persons/kind-folks from Microsoft... Im risking to trigger your holy rage by that question, but I feel like I must to ask. Even if no one will answer, it will seed the idea. Can't you please just follow the RPM system so we all can to sigh with a relief at last? I know that in *nix world it is not the newest and best. Yet for Windows it will be like divine revelation and next level ascension.
Author
Owner

@atom0s commented on GitHub (Apr 24, 2020):

For me, I had to run the appx files directly, not from the command line. As for your issue in general, you could try killing everything running on your system including Explorer, and directly run the appx as a new task through Task Manager while everything is shut off and see if it bypasses that kind of issue of being in-use.

@atom0s commented on GitHub (Apr 24, 2020): For me, I had to run the appx files directly, not from the command line. As for your issue in general, you could try killing everything running on your system including Explorer, and directly run the appx as a new task through Task Manager while everything is shut off and see if it bypasses that kind of issue of being in-use.
Author
Owner

@DHowett-MSFT commented on GitHub (Apr 30, 2020):

In the interest of making Terminal easily accessible in environments where the store isn’t available, we’re going to ship our dependencies inside our package for now. We’ll revisit this once we have a better story.

This issue will close when the PR that integrates our dependencies merges (in a minute or so.)

@DHowett-MSFT commented on GitHub (Apr 30, 2020): In the interest of making Terminal easily accessible in environments where the store isn’t available, we’re going to ship our dependencies inside our package for now. We’ll revisit this once we have a better story. This issue will close when the PR that integrates our dependencies merges (in a minute or so.)
Author
Owner

@WSLUser commented on GitHub (May 4, 2020):

@DHowett-MSFT It appears that ever since PR #5256 , The appx-Release bundle is no longer generated. Shipping the deps only helps when a release is published but what if we want to roll a custom build? We should be able to grab the appx. Visual Studio still shouldn't be required.

@WSLUser commented on GitHub (May 4, 2020): @DHowett-MSFT It appears that ever since PR #5256 , The appx-Release bundle is no longer generated. Shipping the deps only helps when a release is published but what if we want to roll a custom build? We should be able to grab the appx. Visual Studio still shouldn't be required.
Author
Owner

@DHowett-MSFT commented on GitHub (May 4, 2020):

@WSLUser If you are sharp enough to roll a custom build, you're capable enough of finding and installing its dependencies. Also, we haven't changed how the CI pipelines publish app packages, and the build changes in the msbuild projects only impact builds with a specific flag turned on.

@DHowett-MSFT commented on GitHub (May 4, 2020): @WSLUser If you are sharp enough to roll a custom build, you're capable enough of finding and installing its dependencies. Also, we haven't changed how the CI pipelines publish app packages, and the build changes in the msbuild projects only impact builds with a specific flag turned on.
Author
Owner

@DHowett-MSFT commented on GitHub (May 4, 2020):

5256 was made because we spent too much time rebuilding unchanged code for flavors that we've never picked up any regressions in. Our CI is not a contract. You are not supposed to rely on the availability of any bundles from our CI. It's not a contract.

@DHowett-MSFT commented on GitHub (May 4, 2020): 5256 was made because we spent too much time rebuilding unchanged code for flavors that we've never picked up any regressions in. Our CI is not a contract. You are not supposed to rely on the availability of any bundles from our CI. It's not a contract.
Author
Owner

@WSLUser commented on GitHub (May 4, 2020):

Yes, and I did notice #5679 did publish an artifact, except the x64 build failed due to circular graph, so anybody not using x64 could grab it. That graph issue usually just requires a rebuild. Obviously no point to rebuild for that PR as it's for v1 but I was hoping to update my offline machine with the latest appx bundle now that the deps are shipped as part of it.

@WSLUser commented on GitHub (May 4, 2020): Yes, and I did notice #5679 did publish an artifact, except the x64 build failed due to circular graph, so anybody not using x64 could grab it. That graph issue usually just requires a rebuild. Obviously no point to rebuild for that PR as it's for v1 but I was hoping to update my offline machine with the latest appx bundle now that the deps are shipped as part of it.
Author
Owner

@ghost commented on GitHub (May 5, 2020):

:tada:This issue was addressed in #5661, which has now been successfully released as Windows Terminal Release Candidate v0.11.1251.0 (1.0rc1).🎉

Handy links:

@ghost commented on GitHub (May 5, 2020): :tada:This issue was addressed in #5661, which has now been successfully released as `Windows Terminal Release Candidate v0.11.1251.0 (1.0rc1)`.:tada: Handy links: * [Release Notes](https://github.com/microsoft/terminal/releases/tag/v0.11.1251.0 (1.0rc1)) * [Store Download](https://www.microsoft.com/store/apps/9n0dx20hk701?cid=storebadge&ocid=badge)
Author
Owner

@m-wilczynski commented on GitHub (May 12, 2020):

Seems to work now! <3

A minor inconvenience is that it will install successfully, but you need to wait few minutes (or launch Microsoft Store, can't be sure) for it to start working properly. When you click on the icon in Start Menu it will behave as if installation was still in progress (even progressbar is still present).

@m-wilczynski commented on GitHub (May 12, 2020): Seems to work now! <3 A minor inconvenience is that it will install successfully, but you need to wait few minutes (or launch Microsoft Store, can't be sure) for it to start working properly. When you click on the icon in Start Menu it will behave as if installation was still in progress (even progressbar is still present).
Author
Owner

@rklec commented on GitHub (Jun 21, 2022):

Does this issue happen again? See https://github.com/microsoft/terminal/issues/13345

@rklec commented on GitHub (Jun 21, 2022): Does this issue happen again? See https://github.com/microsoft/terminal/issues/13345
Author
Owner

@zadjii-msft commented on GitHub (Jun 21, 2022):

Leaving here for future folks. These are from the Release Notes:

Why are there so many packages? How do I choose?

This version of Windows Terminal is distributed in two bundles, one of which works on Windows 10-11 and the other of
which only works on Windows 11. The Windows 11 version is much smaller because we no longer need to work around a
platform issue related to our dependencies.

If you intend on using Terminal as an unpackaged application--that is, extracting the msix file--we recommend that
you use the Win10 bundle. You will need the Visual C++ runtime redistributable.

In addition, if you install the packaged version on either Windows 10 or Windows 11, it now depends on the Visual C++ Universal Runtime Package.

Despite these distributions having different version numbers, they are built from the same code and there is no
functional difference between them.

If you install the Windows 10 verison on Windows 11, it will probably automatically upgrade itself to the Windows 11
version. It turns out that it is impossible to have two bundles with the same version number, so it has to be this
way.

As with prior releases, you need to install Microsoft.VCLibs.UWPDesktop.140.00 or make sure it is installed prior to installing Terminal. If you are using Terminal unpackaged, you will need to make sure you have the systemwide "Microsoft Visual C++ Redistributable" installed, and choose the Win10 version of our msixbundle. Yeah, it's strange!

@zadjii-msft commented on GitHub (Jun 21, 2022): Leaving here for future folks. These are from the Release Notes: > ## Why are there so many packages? How do I choose? > This version of Windows Terminal is distributed in two bundles, one of which works on Windows 10-11 and the other of > which only works on Windows 11. The Windows 11 version is much smaller because we no longer need to work around a > platform issue related to our dependencies. > > If you intend on using Terminal as an unpackaged application--that is, extracting the `msix` file--we recommend that > you use the `Win10` bundle. You will need the [Visual C++ runtime redistributable](https://docs.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist). > > In addition, if you install the _packaged_ version on either Windows 10 or Windows 11, it now depends on [the Visual C++ Universal Runtime Package](https://docs.microsoft.com/en-us/troubleshoot/developer/visualstudio/cpp/libraries/c-runtime-packages-desktop-bridge?msclkid=3e1dd82aac8b11ec8f9dbd86d5979ca8#how-to-install-and-update-desktop-framework-packages). > > Despite these distributions having different version numbers, they are built from the same code and there is no > functional difference between them. > > If you install the Windows 10 verison on Windows 11, it will probably automatically upgrade itself to the Windows 11 > version. It turns out that it is impossible to have two bundles with _the same version number_, so it has to be this > way. > As with prior releases, you need to install `Microsoft.VCLibs.UWPDesktop.140.00` or make sure it is installed prior to installing Terminal. If you are using Terminal _unpackaged_, you will need to make sure you have the systemwide "Microsoft Visual C++ Redistributable" installed, and choose the _Win10_ version of our msixbundle. Yeah, it's strange!
Author
Owner

@curiousbytes commented on GitHub (Nov 5, 2022):

@atom0s Thanks for the info. The store.rg-adguard.net seemed a bit shady to me, but I can confirm that process worked for me. To restate your solution and my path to resolution:

Problem:

choco install microsoft-windows-terminal would fail with errors about missing packages for Microsoft.VCLibs.140.00.UWPDesktop or Microsoft.VCLibs.140.00

Get-AppxPackage | where name -like "Microsoft.VC*" | select Name, Version, PackageFamilyName would show these packages but not with the latest/required versions

Solution:

  • Visit the somewhat shady feeling site: https://store.rg-adguard.net/ to download appx packages directly out of the microsoft store. The links generated are from microsoft.com domains.

  • Search by PackageFamilyName for Microsoft.VCLibs.140.00.UWPDesktop_8wekyb3d8bbwe

  • Search by PackageFamilyName for Microsoft.VCLibs.140.00_8wekyb3d8bbwe

  • run Add-AppxPackage -Path .\Microsoft.VCLibs.140.00.UWPDesktop_14.0.27810.0_x64__8wekyb3d8bbwe.appx

  • run Add-AppxPackage -Path .\Microsoft.VCLibs.140.00_14.0.27810.0_x64__8wekyb3d8bbwe.appx

  • run choco install microsoft-windows-terminal which now succeeds

yeap this still works just fine :)

@curiousbytes commented on GitHub (Nov 5, 2022): > @atom0s Thanks for the info. The store.rg-adguard.net seemed a bit shady to me, but I can confirm that process worked for me. To restate your solution and my path to resolution: > > ### Problem: > `choco install microsoft-windows-terminal` would fail with errors about missing packages for `Microsoft.VCLibs.140.00.UWPDesktop` or `Microsoft.VCLibs.140.00` > > `Get-AppxPackage | where name -like "Microsoft.VC*" | select Name, Version, PackageFamilyName` would show these packages but not with the latest/required versions > > ### Solution: > * Visit the somewhat shady feeling site: https://store.rg-adguard.net/ to download appx packages directly out of the microsoft store. The links generated are from microsoft.com domains. > * Search by _PackageFamilyName_ for `Microsoft.VCLibs.140.00.UWPDesktop_8wekyb3d8bbwe` > > * For me, the generated link for x64 was: [Microsoft.VCLibs.140.00.UWPDesktop_14.0.27810.0_x64__8wekyb3d8bbwe.appx](http://tlu.dl.delivery.mp.microsoft.com/filestreamingservice/files/0e19f025-0004-48c2-b699-ee1a275389b7?P1=1587145145&P2=402&P3=2&P4=ORyZzbFyStMFDD0IQAFawhFUtROdd7Nd8gSjEIl4IzxxLguuimPdAdJ3TC2%2b1Cm0FanbucNGv0xQbbSOkMHFYg%3d%3d) > * Search by _PackageFamilyName_ for `Microsoft.VCLibs.140.00_8wekyb3d8bbwe` > > * For me the generated link for x64 was: [Microsoft.VCLibs.140.00_14.0.27810.0_x64__8wekyb3d8bbwe.appx](http://tlu.dl.delivery.mp.microsoft.com/filestreamingservice/files/628f920b-6ee5-4f64-9988-8e840bc0aa5d?P1=1587142291&P2=402&P3=2&P4=bWDil9PMYqTcYdfQqBqu4PkD6f5aHmWvTuTQZxzdw%2bykcWAU4tAzpqfOSFWbSnKPfNVUUx33xE6MMrMXDt6tDw%3d%3d) > * run `Add-AppxPackage -Path .\Microsoft.VCLibs.140.00.UWPDesktop_14.0.27810.0_x64__8wekyb3d8bbwe.appx` > * run `Add-AppxPackage -Path .\Microsoft.VCLibs.140.00_14.0.27810.0_x64__8wekyb3d8bbwe.appx` > * run `choco install microsoft-windows-terminal` which now succeeds yeap this still works just fine :)
Author
Owner

@joaocc commented on GitHub (Dec 10, 2022):

In case someone wants to install via official URL + chocolatey, please use the following (tested on Windows Server 2022):

$tempUwpASPX = Join-Path -Path $env:TEMP -ChildPath "Microsoft.VCLibs.x64.14.00.Desktop.appx"
Invoke-WebRequest -Uri "https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx" -OutFile $tempUwpASPX
Add-AppxPackage -Path $tempUwpASPX
choco install -y microsoft-windows-terminal

Source of URLs is https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/cpp/libraries/c-runtime-packages-desktop-bridge#how-to-install-and-update-desktop-framework-packages

@joaocc commented on GitHub (Dec 10, 2022): In case someone wants to install via official URL + chocolatey, please use the following (tested on Windows Server 2022): ``` $tempUwpASPX = Join-Path -Path $env:TEMP -ChildPath "Microsoft.VCLibs.x64.14.00.Desktop.appx" Invoke-WebRequest -Uri "https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx" -OutFile $tempUwpASPX Add-AppxPackage -Path $tempUwpASPX choco install -y microsoft-windows-terminal ``` Source of URLs is https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/cpp/libraries/c-runtime-packages-desktop-bridge#how-to-install-and-update-desktop-framework-packages
Author
Owner

@rklec commented on GitHub (Jun 3, 2024):

The issue https://github.com/PowerShell/PowerShell/issues/13138 stays, however, on Windows 10... 🤷

$ Add-AppxPackage -Path $tempUwpASPX                                                                   
Add-AppxPackage: The 'Add-AppxPackage' command was found in the module 'Appx', but the module could not be loaded due to the following error: [Operation is not supported on this platform. (0x80131539)]
For more information, run 'Import-Module Appx'.
$ Import-Module Appx
Import-Module: Operation is not supported on this platform. (0x80131539)
@rklec commented on GitHub (Jun 3, 2024): The issue https://github.com/PowerShell/PowerShell/issues/13138 stays, however, on Windows 10... 🤷 ```ps $ Add-AppxPackage -Path $tempUwpASPX Add-AppxPackage: The 'Add-AppxPackage' command was found in the module 'Appx', but the module could not be loaded due to the following error: [Operation is not supported on this platform. (0x80131539)] For more information, run 'Import-Module Appx'. $ Import-Module Appx Import-Module: Operation is not supported on this platform. (0x80131539) ```
Author
Owner

@rklec commented on GitHub (Jun 3, 2024):

Ah okay the workaround to import it was possible, but well (file was already downloaded before via Invoke-WebRequest as shown above):

PowerShell 7.4.2
Loading personal and system profiles took 3198ms.
PS C:\Windows\System32> Import-Module -Name Appx -UseWindowsPowerShell
WARNING: Module Appx is loaded in Windows PowerShell using WinPSCompatSession remoting session; please note that all input and output of commands from this module will be deserialized objects. If you want to load this module into PowerShell please use 'Import-Module -SkipEditionCheck' syntax.
PS C:\Windows\System32> $tempUwpASPX = Join-Path -Path $env:TEMP -ChildPath "Microsoft.VCLibs.x64.14.00.Desktop.appx"
PS C:\Windows\System32> ^C
PS C:\Windows\System32> Add-AppxPackage -Path $tempUwpASPX
PS C:\Windows\System32> choco upgrade -y microsoft-windows-terminal
Chocolatey v2.2.2
Upgrading the following packages:
microsoft-windows-terminal
By upgrading, you accept licenses for the packages.

You have microsoft-windows-terminal v1.17.11461 installed. Version 1.20.11271 is available based on your source(s).
Progress: Downloading microsoft-windows-terminal 1.20.11271... 100%

microsoft-windows-terminal v1.20.11271 [Approved]
microsoft-windows-terminal package files upgrade completed. Performing other installation steps.
ERROR: Cannot convert the "System.Object[]" value of type "System.Object[]" to type "System.Version".
The upgrade of microsoft-windows-terminal was NOT successful.
Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'.
 See log for details.

Chocolatey upgraded 0/1 packages. 1 packages failed.
 See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).

Failures
 - microsoft-windows-terminal (exited -1) - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'.
 See log for details.

Log shows:

2024-06-03 16:52:14,872 15624 [INFO ] - [NuGet] Resolving dependency information took 0 ms
2024-06-03 16:52:16,604 15624 [DEBUG] - Running beforeModify step for 'microsoft-windows-terminal'
2024-06-03 16:52:16,610 15624 [DEBUG] - Backing up package files for 'microsoft-windows-terminal'
2024-06-03 16:52:16,644 15624 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal".
2024-06-03 16:52:16,646 15624 [DEBUG] - Moving C:\ProgramData\chocolatey\lib\microsoft-windows-terminal to C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461
2024-06-03 16:52:16,649 15624 [DEBUG] - Moving 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal'
to 'C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461'
2024-06-03 16:52:18,668 15624 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal".
2024-06-03 16:52:18,671 15624 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461\microsoft-windows-terminal.nupkg"
to "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nupkg".
2024-06-03 16:52:18,792 15624 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461\microsoft-windows-terminal.nuspec"
to "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nuspec".
2024-06-03 16:52:18,795 15624 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal".
2024-06-03 16:52:18,797 15624 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461\legal\LICENSE.txt"
to "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\LICENSE.txt".
2024-06-03 16:52:18,800 15624 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461\legal\VERIFICATION.txt"
to "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\VERIFICATION.txt".
2024-06-03 16:52:18,802 15624 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools".
2024-06-03 16:52:18,804 15624 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461\tools\chocolateyInstall.ps1"
to "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1".
2024-06-03 16:52:18,807 15624 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461\tools\chocolateyUninstall.ps1"
to "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyUninstall.ps1".
2024-06-03 16:52:18,809 15624 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461\tools\Microsoft.WindowsTerminal_1.17.11461.0_8wekyb3d8bbwe.msixbundle"
to "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\Microsoft.WindowsTerminal_1.17.11461.0_8wekyb3d8bbwe.msixbundle".
2024-06-03 16:52:20,448 15624 [DEBUG] - Deleting file C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1
2024-06-03 16:52:20,449 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1".
2024-06-03 16:52:20,453 15624 [DEBUG] - Deleting file C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyUninstall.ps1
2024-06-03 16:52:20,454 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyUninstall.ps1".
2024-06-03 16:52:20,460 15624 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal'
2024-06-03 16:52:20,505 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nupkg'
 with checksum '83C744E6DFD576B8FF4307257CC8B184'
2024-06-03 16:52:20,506 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nuspec'
 with checksum 'DAA9B55A7C0E8644AA9BCF5AF2E04A0A'
2024-06-03 16:52:20,508 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\LICENSE.txt'
 with checksum 'B377DB62B5A030F560ED5BBCA25EA5BE'
2024-06-03 16:52:20,510 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\VERIFICATION.txt'
 with checksum '4B3374D05B3D01573E163C2BAE73A9FD'
2024-06-03 16:52:20,554 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\Microsoft.WindowsTerminal_1.17.11461.0_8wekyb3d8bbwe.msixbundle'
 with checksum '424C8354E5D913DE7A0F48A2E4D5357B'
2024-06-03 16:52:20,558 15624 [DEBUG] - Ensuring removal of installation files.
2024-06-03 16:52:20,597 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nupkg'
 with checksum '83C744E6DFD576B8FF4307257CC8B184'
2024-06-03 16:52:20,598 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nupkg".
2024-06-03 16:52:20,602 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nuspec'
 with checksum 'DAA9B55A7C0E8644AA9BCF5AF2E04A0A'
2024-06-03 16:52:20,603 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nuspec".
2024-06-03 16:52:20,605 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\LICENSE.txt'
 with checksum 'B377DB62B5A030F560ED5BBCA25EA5BE'
2024-06-03 16:52:20,606 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\LICENSE.txt".
2024-06-03 16:52:20,608 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\VERIFICATION.txt'
 with checksum '4B3374D05B3D01573E163C2BAE73A9FD'
2024-06-03 16:52:20,609 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\VERIFICATION.txt".
2024-06-03 16:52:20,654 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\Microsoft.WindowsTerminal_1.17.11461.0_8wekyb3d8bbwe.msixbundle'
 with checksum '424C8354E5D913DE7A0F48A2E4D5357B'
2024-06-03 16:52:20,655 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\Microsoft.WindowsTerminal_1.17.11461.0_8wekyb3d8bbwe.msixbundle".
2024-06-03 16:52:20,662 15624 [DEBUG] - Attempting to delete directory "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal".
2024-06-03 16:52:20,665 15624 [DEBUG] - Removing nupkg if it still exists.
2024-06-03 16:52:20,666 15624 [DEBUG] - Resolving resource DownloadResource for source https://chocolatey.org/api/v2/
2024-06-03 16:52:20,746 15624 [DEBUG] - Attempting to delete file "".
2024-06-03 16:52:20,757 15624 [INFO ] - [NuGet]   GET https://community.chocolatey.org/api/v2/package/microsoft-windows-terminal/1.20.11271
2024-06-03 16:52:23,281 15624 [INFO ] - [NuGet]   OK https://community.chocolatey.org/api/v2/package/microsoft-windows-terminal/1.20.11271 2522ms
2024-06-03 16:52:23,292 15624 [INFO ] - [NuGet] Acquiring lock for the installation of microsoft-windows-terminal 1.20.11271
2024-06-03 16:52:23,311 15624 [INFO ] - [NuGet] Acquired lock for the installation of microsoft-windows-terminal 1.20.11271
2024-06-03 16:52:59,465 15624 [INFO ] - [NuGet] Installed microsoft-windows-terminal 1.20.11271 from https://chocolatey.org/api/v2/ with content hash JXjzDFmEFWMe0RyqonllQpxs7i2sXIyfz0O3UifdcyithRz1HUed1Fflw413W2MiCvTxhJm6sg10UYjL5Pa63w==.
2024-06-03 16:52:59,531 15624 [INFO ] - [NuGet] Adding package 'microsoft-windows-terminal.1.20.11271 : vcredist140 (, )' to folder 'C:\ProgramData\chocolatey\lib'
2024-06-03 16:52:59,851 15624 [INFO ] - [NuGet] Added package 'microsoft-windows-terminal.1.20.11271 : vcredist140 (, )' to folder 'C:\ProgramData\chocolatey\lib'
2024-06-03 16:52:59,855 15624 [DEBUG] - Attempting to delete file "C:\Users\kruegerro\AppData\Local\Temp\chocolatey\ChocolateyScratch\microsoft-windows-terminal/1.20.11271\microsoft-windows-terminal.1.20.11271.nupkg".
2024-06-03 16:52:59,859 15624 [DEBUG] - Attempting to delete file "C:\Users\kruegerro\AppData\Local\Temp\chocolatey\ChocolateyScratch\microsoft-windows-terminal/1.20.11271\.nupkg.metadata".
2024-06-03 16:52:59,860 15624 [DEBUG] - Attempting to delete file "C:\Users\kruegerro\AppData\Local\Temp\chocolatey\ChocolateyScratch\microsoft-windows-terminal/1.20.11271\microsoft-windows-terminal.1.20.11271.nupkg.sha512".
2024-06-03 16:52:59,863 15624 [INFO ] - 
microsoft-windows-terminal v1.20.11271 [Approved]
2024-06-03 16:52:59,887 15624 [INFO ] - microsoft-windows-terminal package files upgrade completed. Performing other installation steps.
2024-06-03 16:53:00,191 15624 [DEBUG] - Setting installer args for microsoft-windows-terminal
2024-06-03 16:53:00,192 15624 [DEBUG] - Setting package parameters for microsoft-windows-terminal
2024-06-03 16:53:00,195 15624 [DEBUG] - Contents of 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1':
2024-06-03 16:53:00,203 15624 [DEBUG] - $ErrorActionPreference = 'Stop';

$toolsDir       = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$fileName       = "$toolsDir\Microsoft.WindowsTerminal_1.20.11271.0_8wekyb3d8bbwe.msixbundle"
$version        = "1.20.11271.0"
$PreRelease     = "False"

$WindowsVersion=[Environment]::OSVersion.Version
if ($WindowsVersion.Major -ne "10") {
 throw "This package requires Windows 10."
}
#The .msixbundle format is not supported on Windows 10 version 1709 and 1803. https://docs.microsoft.com/en-us/windows/msix/msix-1709-and-1803-support
$IsCorrectBuild=[Environment]::OSVersion.Version.Build
if ($IsCorrectBuild -lt "18362") {
 throw "This package requires at least Windows 10 version 1903/OS build 18362.x."
}

$AppxPackageName = "Microsoft.WindowsTerminal"

if ($PreRelease -match "True") {
 $AppxPackageName += "Preview"
}

[version]$AppxVer = (Get-AppxPackage -Name $AppxPackageName -AllUsers -PackageTypeFilter Bundle).Version

if ($AppxVer -gt [version]$version) {
 # you can't install an older version of an installed appx package, you'd need to remove it first
 Write-Warning "The installed $version version is newer than this package version, it may have autoupdated on your current OS..."
} elseif ($AppxVer -Match [version]$version) {
   if($env:ChocolateyForce) {
     # you can't install the same version of an appx package, you need to remove it first
     Write-Host Removing already installed version first.
     Remove-AppxPackage -AllUsers -Package (Get-AppxPackage -Name $AppxPackageName -AllUsers -PackageTypeFilter Bundle)
   } else {
   Write-Host The $version version of Windows-Terminal is already installed. If you want to reinstall use --force
   return
 }
}

Add-ProvisionedAppPackage -Online -SkipLicense -PackagePath $fileName

2024-06-03 16:53:00,212 15624 [DEBUG] - Calling built-in PowerShell host with ['[System.Threading.Thread]::CurrentThread.CurrentCulture = '';[System.Threading.Thread]::CurrentThread.CurrentUICulture = '';[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::SystemDefault; & import-module -name 'C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1'; & 'C:\ProgramData\chocolatey\helpers\chocolateyScriptRunner.ps1' -packageScript 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1' -installArguments '' -packageParameters '' -preRunHookScripts $null -postRunHookScripts $null']
2024-06-03 16:53:00,219 15624 [DEBUG] - Redirecting System.Management.Automation.resources, Version=3.0.0.0, Culture=de-DE, PublicKeyToken=31bf3856ad364e35, requested by ''
2024-06-03 16:53:00,877 15624 [DEBUG] - Host version is 5.1.19041.1, PowerShell Version is '5.1.19041.4291' and CLR Version is '4.0.30319.42000'.
2024-06-03 16:53:01,088 15624 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'.
2024-06-03 16:53:01,090 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'.
2024-06-03 16:53:01,091 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyConfigValue'.
2024-06-03 16:53:01,093 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyPath'.
2024-06-03 16:53:01,094 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'.
2024-06-03 16:53:01,096 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'.
2024-06-03 16:53:01,097 15624 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'.
2024-06-03 16:53:01,100 15624 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'.
2024-06-03 16:53:01,101 15624 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'.
2024-06-03 16:53:01,103 15624 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'.
2024-06-03 16:53:01,104 15624 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'.
2024-06-03 16:53:01,105 15624 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'.
2024-06-03 16:53:01,107 15624 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'.
2024-06-03 16:53:01,108 15624 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'.
2024-06-03 16:53:01,110 15624 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'.
2024-06-03 16:53:01,111 15624 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'.
2024-06-03 16:53:01,113 15624 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'.
2024-06-03 16:53:01,114 15624 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'.
2024-06-03 16:53:01,116 15624 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'.
2024-06-03 16:53:01,117 15624 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'.
2024-06-03 16:53:01,119 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'.
2024-06-03 16:53:01,120 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'.
2024-06-03 16:53:01,122 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'.
2024-06-03 16:53:01,123 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'.
2024-06-03 16:53:01,124 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'.
2024-06-03 16:53:01,126 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'.
2024-06-03 16:53:01,127 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'.
2024-06-03 16:53:01,129 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'.
2024-06-03 16:53:01,131 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'.
2024-06-03 16:53:01,133 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'.
2024-06-03 16:53:01,135 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'.
2024-06-03 16:53:01,136 15624 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'.
2024-06-03 16:53:01,138 15624 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'.
2024-06-03 16:53:01,139 15624 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'.
2024-06-03 16:53:01,141 15624 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'.
2024-06-03 16:53:01,142 15624 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'.
2024-06-03 16:53:01,144 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'.
2024-06-03 16:53:01,146 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'.
2024-06-03 16:53:01,147 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'.
2024-06-03 16:53:01,148 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'.
2024-06-03 16:53:01,150 15624 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'.
2024-06-03 16:53:01,151 15624 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'.
2024-06-03 16:53:01,153 15624 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'.
2024-06-03 16:53:01,154 15624 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'.
2024-06-03 16:53:01,156 15624 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'.
2024-06-03 16:53:01,157 15624 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'.
2024-06-03 16:53:01,158 15624 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'.
2024-06-03 16:53:01,160 15624 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'.
2024-06-03 16:53:01,162 15624 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'.
2024-06-03 16:53:01,164 15624 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'.
2024-06-03 16:53:01,165 15624 [INFO ] - VERBOSE: Exporting alias 'refreshenv'.
2024-06-03 16:53:01,172 15624 [DEBUG] - Loading community extensions
2024-06-03 16:53:01,179 15624 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-compatibility\chocolatey-compatibility.psm1'
2024-06-03 16:53:01,181 15624 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-compatibility\chocolatey-compatibility.psm1'.
2024-06-03 16:53:01,209 15624 [DEBUG] - Function 'Get-PackageParameters' exists, ignoring export.
2024-06-03 16:53:01,210 15624 [DEBUG] - Function 'Get-UninstallRegistryKey' exists, ignoring export.
2024-06-03 16:53:01,212 15624 [DEBUG] - Exporting function 'Install-ChocolateyDesktopLink' for backwards compatibility
2024-06-03 16:53:01,215 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'.
2024-06-03 16:53:01,217 15624 [DEBUG] - Exporting function 'Write-ChocolateyFailure' for backwards compatibility
2024-06-03 16:53:01,220 15624 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'.
2024-06-03 16:53:01,222 15624 [DEBUG] - Exporting function 'Write-ChocolateySuccess' for backwards compatibility
2024-06-03 16:53:01,225 15624 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'.
2024-06-03 16:53:01,227 15624 [DEBUG] - Exporting function 'Write-FileUpdateLog' for backwards compatibility
2024-06-03 16:53:01,230 15624 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'.
2024-06-03 16:53:01,232 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'.
2024-06-03 16:53:01,233 15624 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'.
2024-06-03 16:53:01,235 15624 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'.
2024-06-03 16:53:01,236 15624 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'.
2024-06-03 16:53:01,238 15624 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1'
2024-06-03 16:53:01,240 15624 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1'.
2024-06-03 16:53:01,284 15624 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'.
2024-06-03 16:53:01,286 15624 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'.
2024-06-03 16:53:01,288 15624 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'.
2024-06-03 16:53:01,289 15624 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'.
2024-06-03 16:53:01,291 15624 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'.
2024-06-03 16:53:01,293 15624 [INFO ] - VERBOSE: Exporting function 'Register-Application'.
2024-06-03 16:53:01,295 15624 [INFO ] - VERBOSE: Exporting function 'Remove-Process'.
2024-06-03 16:53:01,297 15624 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'.
2024-06-03 16:53:01,298 15624 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'.
2024-06-03 16:53:01,300 15624 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'.
2024-06-03 16:53:01,302 15624 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'.
2024-06-03 16:53:01,304 15624 [INFO ] - VERBOSE: Importing function 'Get-WebContent'.
2024-06-03 16:53:01,306 15624 [INFO ] - VERBOSE: Importing function 'Register-Application'.
2024-06-03 16:53:01,308 15624 [INFO ] - VERBOSE: Importing function 'Remove-Process'.
2024-06-03 16:53:01,311 15624 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-dotnetfx\chocolatey-dotnetfx.psm1'
2024-06-03 16:53:01,312 15624 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-dotnetfx\chocolatey-dotnetfx.psm1'.
2024-06-03 16:53:01,331 15624 [INFO ] - VERBOSE: Exporting function 'Install-DotNetFramework'.
2024-06-03 16:53:01,333 15624 [INFO ] - VERBOSE: Exporting function 'Install-DotNetDevPack'.
2024-06-03 16:53:01,336 15624 [INFO ] - VERBOSE: Importing function 'Install-DotNetDevPack'.
2024-06-03 16:53:01,338 15624 [INFO ] - VERBOSE: Importing function 'Install-DotNetFramework'.
2024-06-03 16:53:01,340 15624 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-misc-helpers\chocolatey-misc-helpers.psm1'
2024-06-03 16:53:01,342 15624 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-misc-helpers\chocolatey-misc-helpers.psm1'.
2024-06-03 16:53:01,378 15624 [INFO ] - VERBOSE: Exporting function 'Enable-AutoPin'.
2024-06-03 16:53:01,379 15624 [INFO ] - VERBOSE: Exporting function 'Show-Patreon'.
2024-06-03 16:53:01,381 15624 [INFO ] - VERBOSE: Exporting function 'Show-PayPal'.
2024-06-03 16:53:01,383 15624 [INFO ] - VERBOSE: Exporting function 'Show-ToastMessage'.
2024-06-03 16:53:01,385 15624 [INFO ] - VERBOSE: Exporting function 'Start-CheckandStop'.
2024-06-03 16:53:01,386 15624 [INFO ] - VERBOSE: Exporting function 'Start-CheckandThrow'.
2024-06-03 16:53:01,388 15624 [INFO ] - VERBOSE: Exporting function 'Start-WaitandStop'.
2024-06-03 16:53:01,389 15624 [INFO ] - VERBOSE: Exporting function 'Start-WaitandStopActual'.
2024-06-03 16:53:01,390 15624 [INFO ] - VERBOSE: Exporting function 'Test-Dependency'.
2024-06-03 16:53:01,395 15624 [INFO ] - VERBOSE: Exporting function 'Test-URL'.
2024-06-03 16:53:01,397 15624 [INFO ] - VERBOSE: Importing function 'Enable-AutoPin'.
2024-06-03 16:53:01,398 15624 [INFO ] - VERBOSE: Importing function 'Show-Patreon'.
2024-06-03 16:53:01,400 15624 [INFO ] - VERBOSE: Importing function 'Show-PayPal'.
2024-06-03 16:53:01,401 15624 [INFO ] - VERBOSE: Importing function 'Show-ToastMessage'.
2024-06-03 16:53:01,403 15624 [INFO ] - VERBOSE: Importing function 'Start-CheckandStop'.
2024-06-03 16:53:01,404 15624 [INFO ] - VERBOSE: Importing function 'Start-CheckandThrow'.
2024-06-03 16:53:01,406 15624 [INFO ] - VERBOSE: Importing function 'Start-WaitandStop'.
2024-06-03 16:53:01,407 15624 [INFO ] - VERBOSE: Importing function 'Start-WaitandStopActual'.
2024-06-03 16:53:01,409 15624 [INFO ] - VERBOSE: Importing function 'Test-Dependency'.
2024-06-03 16:53:01,410 15624 [INFO ] - VERBOSE: Importing function 'Test-URL'.
2024-06-03 16:53:01,413 15624 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-os-dependency\chocolatey-os-dependency.psm1'
2024-06-03 16:53:01,414 15624 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-os-dependency\chocolatey-os-dependency.psm1'.
2024-06-03 16:53:01,422 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win11'.
2024-06-03 16:53:01,424 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win10'.
2024-06-03 16:53:01,425 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win81'.
2024-06-03 16:53:01,428 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win80'.
2024-06-03 16:53:01,429 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win8'.
2024-06-03 16:53:01,431 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win7'.
2024-06-03 16:53:01,432 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-WinMinimumBuild'.
2024-06-03 16:53:01,434 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-WinRequiredBuild'.
2024-06-03 16:53:01,436 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win10'.
2024-06-03 16:53:01,437 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win11'.
2024-06-03 16:53:01,438 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win7'.
2024-06-03 16:53:01,440 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win8'.
2024-06-03 16:53:01,441 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win80'.
2024-06-03 16:53:01,443 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win81'.
2024-06-03 16:53:01,445 15624 [INFO ] - VERBOSE: Importing function 'Confirm-WinMinimumBuild'.
2024-06-03 16:53:01,447 15624 [INFO ] - VERBOSE: Importing function 'Confirm-WinRequiredBuild'.
2024-06-03 16:53:01,449 15624 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-visualstudio\chocolatey-visualstudio.extension.psm1'
2024-06-03 16:53:01,450 15624 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-visualstudio\chocolatey-visualstudio.extension.psm1'.
2024-06-03 16:53:01,601 15624 [INFO ] - VERBOSE: Exporting function 'Add-VisualStudioComponent'.
2024-06-03 16:53:01,602 15624 [INFO ] - VERBOSE: Exporting function 'Add-VisualStudioWorkload'.
2024-06-03 16:53:01,604 15624 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstaller'.
2024-06-03 16:53:01,606 15624 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstallerHealth'.
2024-06-03 16:53:01,607 15624 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstance'.
2024-06-03 16:53:01,609 15624 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioVsixInstaller'.
2024-06-03 16:53:01,610 15624 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudio'.
2024-06-03 16:53:01,612 15624 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudioInstaller'.
2024-06-03 16:53:01,614 15624 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudioVsixExtension'.
2024-06-03 16:53:01,617 15624 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioComponent'.
2024-06-03 16:53:01,619 15624 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioProduct'.
2024-06-03 16:53:01,621 15624 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioWorkload'.
2024-06-03 16:53:01,623 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-VisualStudio'.
2024-06-03 16:53:01,625 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-VisualStudioVsixExtension'.
2024-06-03 16:53:01,627 15624 [INFO ] - VERBOSE: Importing function 'Add-VisualStudioComponent'.
2024-06-03 16:53:01,628 15624 [INFO ] - VERBOSE: Importing function 'Add-VisualStudioWorkload'.
2024-06-03 16:53:01,631 15624 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstaller'.
2024-06-03 16:53:01,632 15624 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstallerHealth'.
2024-06-03 16:53:01,634 15624 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstance'.
2024-06-03 16:53:01,635 15624 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioVsixInstaller'.
2024-06-03 16:53:01,637 15624 [INFO ] - VERBOSE: Importing function 'Install-VisualStudio'.
2024-06-03 16:53:01,638 15624 [INFO ] - VERBOSE: Importing function 'Install-VisualStudioInstaller'.
2024-06-03 16:53:01,640 15624 [INFO ] - VERBOSE: Importing function 'Install-VisualStudioVsixExtension'.
2024-06-03 16:53:01,641 15624 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioComponent'.
2024-06-03 16:53:01,642 15624 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioProduct'.
2024-06-03 16:53:01,644 15624 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioWorkload'.
2024-06-03 16:53:01,646 15624 [INFO ] - VERBOSE: Importing function 'Uninstall-VisualStudio'.
2024-06-03 16:53:01,648 15624 [INFO ] - VERBOSE: Importing function 'Uninstall-VisualStudioVsixExtension'.
2024-06-03 16:53:01,651 15624 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1'
2024-06-03 16:53:01,652 15624 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1'.
2024-06-03 16:53:01,689 15624 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'.
2024-06-03 16:53:01,691 15624 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'.
2024-06-03 16:53:01,694 15624 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'.
2024-06-03 16:53:01,695 15624 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'.
2024-06-03 16:53:01,697 15624 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'.
2024-06-03 16:53:01,698 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'.
2024-06-03 16:53:01,700 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyConfigValue'.
2024-06-03 16:53:01,701 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyPath'.
2024-06-03 16:53:01,703 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'.
2024-06-03 16:53:01,704 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'.
2024-06-03 16:53:01,706 15624 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'.
2024-06-03 16:53:01,708 15624 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'.
2024-06-03 16:53:01,709 15624 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'.
2024-06-03 16:53:01,711 15624 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'.
2024-06-03 16:53:01,713 15624 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'.
2024-06-03 16:53:01,714 15624 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'.
2024-06-03 16:53:01,716 15624 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'.
2024-06-03 16:53:01,717 15624 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'.
2024-06-03 16:53:01,719 15624 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'.
2024-06-03 16:53:01,720 15624 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'.
2024-06-03 16:53:01,722 15624 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'.
2024-06-03 16:53:01,726 15624 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'.
2024-06-03 16:53:01,728 15624 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'.
2024-06-03 16:53:01,730 15624 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'.
2024-06-03 16:53:01,731 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'.
2024-06-03 16:53:01,733 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'.
2024-06-03 16:53:01,734 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'.
2024-06-03 16:53:01,736 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'.
2024-06-03 16:53:01,738 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'.
2024-06-03 16:53:01,739 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'.
2024-06-03 16:53:01,741 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'.
2024-06-03 16:53:01,742 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'.
2024-06-03 16:53:01,744 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'.
2024-06-03 16:53:01,746 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'.
2024-06-03 16:53:01,747 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'.
2024-06-03 16:53:01,749 15624 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'.
2024-06-03 16:53:01,750 15624 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'.
2024-06-03 16:53:01,752 15624 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'.
2024-06-03 16:53:01,753 15624 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'.
2024-06-03 16:53:01,755 15624 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'.
2024-06-03 16:53:01,757 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'.
2024-06-03 16:53:01,758 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'.
2024-06-03 16:53:01,760 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'.
2024-06-03 16:53:01,762 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'.
2024-06-03 16:53:01,763 15624 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'.
2024-06-03 16:53:01,765 15624 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'.
2024-06-03 16:53:01,766 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'.
2024-06-03 16:53:01,768 15624 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'.
2024-06-03 16:53:01,770 15624 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'.
2024-06-03 16:53:01,771 15624 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'.
2024-06-03 16:53:01,772 15624 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'.
2024-06-03 16:53:01,774 15624 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'.
2024-06-03 16:53:01,776 15624 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'.
2024-06-03 16:53:01,777 15624 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'.
2024-06-03 16:53:01,779 15624 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'.
2024-06-03 16:53:01,780 15624 [INFO ] - VERBOSE: Exporting function 'Register-Application'.
2024-06-03 16:53:01,782 15624 [INFO ] - VERBOSE: Exporting function 'Remove-Process'.
2024-06-03 16:53:01,783 15624 [INFO ] - VERBOSE: Exporting function 'Install-DotNetDevPack'.
2024-06-03 16:53:01,785 15624 [INFO ] - VERBOSE: Exporting function 'Install-DotNetFramework'.
2024-06-03 16:53:01,787 15624 [INFO ] - VERBOSE: Exporting function 'Enable-AutoPin'.
2024-06-03 16:53:01,788 15624 [INFO ] - VERBOSE: Exporting function 'Show-Patreon'.
2024-06-03 16:53:01,790 15624 [INFO ] - VERBOSE: Exporting function 'Show-PayPal'.
2024-06-03 16:53:01,791 15624 [INFO ] - VERBOSE: Exporting function 'Show-ToastMessage'.
2024-06-03 16:53:01,793 15624 [INFO ] - VERBOSE: Exporting function 'Start-CheckandStop'.
2024-06-03 16:53:01,794 15624 [INFO ] - VERBOSE: Exporting function 'Start-CheckandThrow'.
2024-06-03 16:53:01,796 15624 [INFO ] - VERBOSE: Exporting function 'Start-WaitandStop'.
2024-06-03 16:53:01,797 15624 [INFO ] - VERBOSE: Exporting function 'Start-WaitandStopActual'.
2024-06-03 16:53:01,799 15624 [INFO ] - VERBOSE: Exporting function 'Test-Dependency'.
2024-06-03 16:53:01,801 15624 [INFO ] - VERBOSE: Exporting function 'Test-URL'.
2024-06-03 16:53:01,803 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win10'.
2024-06-03 16:53:01,804 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win11'.
2024-06-03 16:53:01,806 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win7'.
2024-06-03 16:53:01,807 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win8'.
2024-06-03 16:53:01,809 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win80'.
2024-06-03 16:53:01,810 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win81'.
2024-06-03 16:53:01,812 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-WinMinimumBuild'.
2024-06-03 16:53:01,813 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-WinRequiredBuild'.
2024-06-03 16:53:01,816 15624 [INFO ] - VERBOSE: Exporting function 'Add-VisualStudioComponent'.
2024-06-03 16:53:01,817 15624 [INFO ] - VERBOSE: Exporting function 'Add-VisualStudioWorkload'.
2024-06-03 16:53:01,819 15624 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstaller'.
2024-06-03 16:53:01,821 15624 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstallerHealth'.
2024-06-03 16:53:01,822 15624 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstance'.
2024-06-03 16:53:01,824 15624 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioVsixInstaller'.
2024-06-03 16:53:01,825 15624 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudio'.
2024-06-03 16:53:01,827 15624 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudioInstaller'.
2024-06-03 16:53:01,828 15624 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudioVsixExtension'.
2024-06-03 16:53:01,831 15624 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioComponent'.
2024-06-03 16:53:01,833 15624 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioProduct'.
2024-06-03 16:53:01,835 15624 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioWorkload'.
2024-06-03 16:53:01,837 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-VisualStudio'.
2024-06-03 16:53:01,838 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-VisualStudioVsixExtension'.
2024-06-03 16:53:01,839 15624 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'.
2024-06-03 16:53:01,841 15624 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'.
2024-06-03 16:53:01,843 15624 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'.
2024-06-03 16:53:01,844 15624 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'.
2024-06-03 16:53:01,847 15624 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'.
2024-06-03 16:53:01,849 15624 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'.
2024-06-03 16:53:01,850 15624 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'.
2024-06-03 16:53:01,851 15624 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'.
2024-06-03 16:53:01,853 15624 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'.
2024-06-03 16:53:01,855 15624 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'.
2024-06-03 16:53:01,856 15624 [INFO ] - VERBOSE: Exporting alias 'refreshenv'.
2024-06-03 16:53:01,858 15624 [INFO ] - VERBOSE: Importing function 'Add-VisualStudioComponent'.
2024-06-03 16:53:01,859 15624 [INFO ] - VERBOSE: Importing function 'Add-VisualStudioWorkload'.
2024-06-03 16:53:01,861 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win10'.
2024-06-03 16:53:01,864 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win11'.
2024-06-03 16:53:01,866 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win7'.
2024-06-03 16:53:01,867 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win8'.
2024-06-03 16:53:01,869 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win80'.
2024-06-03 16:53:01,872 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win81'.
2024-06-03 16:53:01,873 15624 [INFO ] - VERBOSE: Importing function 'Confirm-WinMinimumBuild'.
2024-06-03 16:53:01,875 15624 [INFO ] - VERBOSE: Importing function 'Confirm-WinRequiredBuild'.
2024-06-03 16:53:01,877 15624 [INFO ] - VERBOSE: Importing function 'Enable-AutoPin'.
2024-06-03 16:53:01,879 15624 [INFO ] - VERBOSE: Importing function 'Format-FileSize'.
2024-06-03 16:53:01,880 15624 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'.
2024-06-03 16:53:01,882 15624 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'.
2024-06-03 16:53:01,883 15624 [INFO ] - VERBOSE: Importing function 'Get-ChecksumValid'.
2024-06-03 16:53:01,885 15624 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyConfigValue'.
2024-06-03 16:53:01,886 15624 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyPath'.
2024-06-03 16:53:01,888 15624 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyUnzip'.
2024-06-03 16:53:01,889 15624 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyWebFile'.
2024-06-03 16:53:01,891 15624 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'.
2024-06-03 16:53:01,892 15624 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariable'.
2024-06-03 16:53:01,895 15624 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariableNames'.
2024-06-03 16:53:01,898 15624 [INFO ] - VERBOSE: Importing function 'Get-FtpFile'.
2024-06-03 16:53:01,900 15624 [INFO ] - VERBOSE: Importing function 'Get-OSArchitectureWidth'.
2024-06-03 16:53:01,902 15624 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'.
2024-06-03 16:53:01,904 15624 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'.
2024-06-03 16:53:01,906 15624 [INFO ] - VERBOSE: Importing function 'Get-PackageParametersBuiltIn'.
2024-06-03 16:53:01,908 15624 [INFO ] - VERBOSE: Importing function 'Get-ToolsLocation'.
2024-06-03 16:53:01,910 15624 [INFO ] - VERBOSE: Importing function 'Get-UACEnabled'.
2024-06-03 16:53:01,913 15624 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'.
2024-06-03 16:53:01,915 15624 [INFO ] - VERBOSE: Importing function 'Get-VirusCheckValid'.
2024-06-03 16:53:01,917 15624 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstaller'.
2024-06-03 16:53:01,919 15624 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstallerHealth'.
2024-06-03 16:53:01,920 15624 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstance'.
2024-06-03 16:53:01,922 15624 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioVsixInstaller'.
2024-06-03 16:53:01,923 15624 [INFO ] - VERBOSE: Importing function 'Get-WebContent'.
2024-06-03 16:53:01,925 15624 [INFO ] - VERBOSE: Importing function 'Get-WebFile'.
2024-06-03 16:53:01,927 15624 [INFO ] - VERBOSE: Importing function 'Get-WebFileName'.
2024-06-03 16:53:01,928 15624 [INFO ] - VERBOSE: Importing function 'Get-WebHeaders'.
2024-06-03 16:53:01,930 15624 [INFO ] - VERBOSE: Importing function 'Install-BinFile'.
2024-06-03 16:53:01,931 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'.
2024-06-03 16:53:01,933 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyEnvironmentVariable'.
2024-06-03 16:53:01,934 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyExplorerMenuItem'.
2024-06-03 16:53:01,936 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyFileAssociation'.
2024-06-03 16:53:01,937 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyInstallPackage'.
2024-06-03 16:53:01,939 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPackage'.
2024-06-03 16:53:01,940 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPath'.
2024-06-03 16:53:01,942 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPinnedTaskBarItem'.
2024-06-03 16:53:01,945 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPowershellCommand'.
2024-06-03 16:53:01,947 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyShortcut'.
2024-06-03 16:53:01,948 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyVsixPackage'.
2024-06-03 16:53:01,950 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyZipPackage'.
2024-06-03 16:53:01,951 15624 [INFO ] - VERBOSE: Importing function 'Install-DotNetDevPack'.
2024-06-03 16:53:01,953 15624 [INFO ] - VERBOSE: Importing function 'Install-DotNetFramework'.
2024-06-03 16:53:01,954 15624 [INFO ] - VERBOSE: Importing function 'Install-VisualStudio'.
2024-06-03 16:53:01,956 15624 [INFO ] - VERBOSE: Importing function 'Install-VisualStudioInstaller'.
2024-06-03 16:53:01,957 15624 [INFO ] - VERBOSE: Importing function 'Install-VisualStudioVsixExtension'.
2024-06-03 16:53:01,960 15624 [INFO ] - VERBOSE: Importing function 'Install-Vsix'.
2024-06-03 16:53:01,962 15624 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'.
2024-06-03 16:53:01,965 15624 [INFO ] - VERBOSE: Importing function 'Register-Application'.
2024-06-03 16:53:01,966 15624 [INFO ] - VERBOSE: Importing function 'Remove-Process'.
2024-06-03 16:53:01,968 15624 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioComponent'.
2024-06-03 16:53:01,970 15624 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioProduct'.
2024-06-03 16:53:01,972 15624 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioWorkload'.
2024-06-03 16:53:01,976 15624 [INFO ] - VERBOSE: Importing function 'Set-EnvironmentVariable'.
2024-06-03 16:53:01,979 15624 [INFO ] - VERBOSE: Importing function 'Set-PowerShellExitCode'.
2024-06-03 16:53:01,981 15624 [INFO ] - VERBOSE: Importing function 'Show-Patreon'.
2024-06-03 16:53:01,982 15624 [INFO ] - VERBOSE: Importing function 'Show-PayPal'.
2024-06-03 16:53:01,984 15624 [INFO ] - VERBOSE: Importing function 'Show-ToastMessage'.
2024-06-03 16:53:01,986 15624 [INFO ] - VERBOSE: Importing function 'Start-CheckandStop'.
2024-06-03 16:53:01,988 15624 [INFO ] - VERBOSE: Importing function 'Start-CheckandThrow'.
2024-06-03 16:53:01,991 15624 [INFO ] - VERBOSE: Importing function 'Start-ChocolateyProcessAsAdmin'.
2024-06-03 16:53:01,993 15624 [INFO ] - VERBOSE: Importing function 'Start-WaitandStop'.
2024-06-03 16:53:01,996 15624 [INFO ] - VERBOSE: Importing function 'Start-WaitandStopActual'.
2024-06-03 16:53:01,999 15624 [INFO ] - VERBOSE: Importing function 'Test-Dependency'.
2024-06-03 16:53:02,001 15624 [INFO ] - VERBOSE: Importing function 'Test-ProcessAdminRights'.
2024-06-03 16:53:02,003 15624 [INFO ] - VERBOSE: Importing function 'Test-URL'.
2024-06-03 16:53:02,005 15624 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'.
2024-06-03 16:53:02,007 15624 [INFO ] - VERBOSE: Importing function 'Uninstall-BinFile'.
2024-06-03 16:53:02,009 15624 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyEnvironmentVariable'.
2024-06-03 16:53:02,011 15624 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyPackage'.
2024-06-03 16:53:02,013 15624 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyZipPackage'.
2024-06-03 16:53:02,015 15624 [INFO ] - VERBOSE: Importing function 'Uninstall-VisualStudio'.
2024-06-03 16:53:02,016 15624 [INFO ] - VERBOSE: Importing function 'Uninstall-VisualStudioVsixExtension'.
2024-06-03 16:53:02,018 15624 [INFO ] - VERBOSE: Importing function 'Update-SessionEnvironment'.
2024-06-03 16:53:02,020 15624 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'.
2024-06-03 16:53:02,022 15624 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'.
2024-06-03 16:53:02,023 15624 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'.
2024-06-03 16:53:02,025 15624 [INFO ] - VERBOSE: Importing function 'Write-FunctionCallLogMessage'.
2024-06-03 16:53:02,027 15624 [INFO ] - VERBOSE: Importing alias 'Add-BinFile'.
2024-06-03 16:53:02,029 15624 [INFO ] - VERBOSE: Importing alias 'Generate-BinFile'.
2024-06-03 16:53:02,031 15624 [INFO ] - VERBOSE: Importing alias 'Get-InstallRegistryKey'.
2024-06-03 16:53:02,033 15624 [INFO ] - VERBOSE: Importing alias 'Get-OSBitness'.
2024-06-03 16:53:02,035 15624 [INFO ] - VERBOSE: Importing alias 'Get-ProcessorBits'.
2024-06-03 16:53:02,037 15624 [INFO ] - VERBOSE: Importing alias 'Invoke-ChocolateyProcess'.
2024-06-03 16:53:02,038 15624 [INFO ] - VERBOSE: Importing alias 'refreshenv'.
2024-06-03 16:53:02,040 15624 [INFO ] - VERBOSE: Importing alias 'Remove-BinFile'.
2024-06-03 16:53:02,041 15624 [INFO ] - VERBOSE: Importing alias 'Start-ChocolateyProcess'.
2024-06-03 16:53:02,065 15624 [DEBUG] - ---------------------------Script Execution---------------------------
2024-06-03 16:53:02,069 15624 [DEBUG] - Running 'ChocolateyScriptRunner' for microsoft-windows-terminal v1.20.11271 with packageScript 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1', packageFolder:'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal', installArguments: '', packageParameters: '', preRunHookScripts: '', postRunHookScripts: '',
2024-06-03 16:53:02,077 15624 [DEBUG] - Running package script 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'
2024-06-03 16:53:09,950 15624 [INFO ] - VERBOSE: Exportfunktion "Get-AppxLastError".
2024-06-03 16:53:09,952 15624 [INFO ] - VERBOSE: Exportfunktion "Get-AppxLog".
2024-06-03 16:53:09,954 15624 [INFO ] - VERBOSE: Exportieren des Alias "Add-AppPackage".
2024-06-03 16:53:09,956 15624 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackage".
2024-06-03 16:53:09,958 15624 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageManifest".
2024-06-03 16:53:09,960 15624 [INFO ] - VERBOSE: Exportieren des Alias "Remove-AppPackage".
2024-06-03 16:53:09,961 15624 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageVolume".
2024-06-03 16:53:09,963 15624 [INFO ] - VERBOSE: Exportieren des Alias "Add-AppPackageVolume".
2024-06-03 16:53:09,965 15624 [INFO ] - VERBOSE: Exportieren des Alias "Remove-AppPackageVolume".
2024-06-03 16:53:09,966 15624 [INFO ] - VERBOSE: Exportieren des Alias "Mount-AppPackageVolume".
2024-06-03 16:53:09,968 15624 [INFO ] - VERBOSE: Exportieren des Alias "Dismount-AppPackageVolume".
2024-06-03 16:53:09,970 15624 [INFO ] - VERBOSE: Exportieren des Alias "Move-AppPackage".
2024-06-03 16:53:09,972 15624 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPacakgeDefaultVolume".
2024-06-03 16:53:09,974 15624 [INFO ] - VERBOSE: Exportieren des Alias "Set-AppPackageDefaultVolume".
2024-06-03 16:53:09,976 15624 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageLastError".
2024-06-03 16:53:09,978 15624 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageLog".
2024-06-03 16:53:10,820 15624 [ERROR] - ERROR: Cannot convert the "System.Object[]" value of type "System.Object[]" to type "System.Version".
2024-06-03 16:53:10,824 15624 [DEBUG] - Built-in PowerShell host called with ['[System.Threading.Thread]::CurrentThread.CurrentCulture = '';[System.Threading.Thread]::CurrentThread.CurrentUICulture = '';[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::SystemDefault; & import-module -name 'C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1'; & 'C:\ProgramData\chocolatey\helpers\chocolateyScriptRunner.ps1' -packageScript 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1' -installArguments '' -packageParameters '' -preRunHookScripts $null -postRunHookScripts $null'] exited with '-1'.
2024-06-03 16:53:10,826 15624 [DEBUG] - Calling command ['"C:\WINDOWS\System32\shutdown.exe" /a']
2024-06-03 16:53:10,918 15624 [DEBUG] - Command ['"C:\WINDOWS\System32\shutdown.exe" /a'] exited with '1116'
2024-06-03 16:53:11,190 15624 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal'
2024-06-03 16:53:11,234 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nupkg'
 with checksum '665D872458236F6AF8735E101DFD3D45'
2024-06-03 16:53:11,235 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nuspec'
 with checksum 'D22EC088BC8A4A3E35C4BC6DF0594605'
2024-06-03 16:53:11,238 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\LICENSE.txt'
 with checksum 'B377DB62B5A030F560ED5BBCA25EA5BE'
2024-06-03 16:53:11,240 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\VERIFICATION.txt'
 with checksum '80DED745D63BD54E10A9B12849E99697'
2024-06-03 16:53:11,242 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'
 with checksum 'FCE4567EE0849E8A91F8504F4C404C52'
2024-06-03 16:53:11,243 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyUninstall.ps1'
 with checksum 'B3BDB5539D0A9CC6AB3716A7F75031FE'
2024-06-03 16:53:11,291 15624 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\Microsoft.WindowsTerminal_1.20.11271.0_8wekyb3d8bbwe.msixbundle'
 with checksum 'D655ABE79CC068DC380F3D42FC566C6D'
2024-06-03 16:53:11,302 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.20.11271\.arguments".
2024-06-03 16:53:11,303 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.20.11271\.extra".
2024-06-03 16:53:11,305 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.20.11271\.version".
2024-06-03 16:53:11,307 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.20.11271\.sxs".
2024-06-03 16:53:11,308 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.20.11271\.pin".
2024-06-03 16:53:11,317 15624 [DEBUG] - Attempting to delete directory "C:\ProgramData\chocolatey\lib-bad\microsoft-windows-terminal".
2024-06-03 16:53:11,331 15624 [DEBUG] - Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers...
2024-06-03 16:53:11,332 15624 [ERROR] - The upgrade of microsoft-windows-terminal was NOT successful.
2024-06-03 16:53:11,336 15624 [ERROR] - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'.
See log for details.
2024-06-03 16:53:11,338 15624 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib-bad\microsoft-windows-terminal".
2024-06-03 16:53:11,340 15624 [DEBUG] - Moving C:\ProgramData\chocolatey\lib\microsoft-windows-terminal to C:\ProgramData\chocolatey\lib-bad\microsoft-windows-terminal\1.20.11271
2024-06-03 16:53:11,341 15624 [DEBUG] - Moving 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal'
to 'C:\ProgramData\chocolatey\lib-bad\microsoft-windows-terminal\1.20.11271'
2024-06-03 16:53:13,358 15624 [DEBUG] - Attempting rollback
2024-06-03 16:53:13,359 15624 [DEBUG] - Moving C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461 to C:\ProgramData\chocolatey\lib\microsoft-windows-terminal
2024-06-03 16:53:13,361 15624 [DEBUG] - Moving 'C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461'
to 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal'
2024-06-03 16:53:15,368 15624 [DEBUG] - Attempting to delete directory "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal".
2024-06-03 16:53:15,381 15624 [WARN ] - 
Chocolatey upgraded 0/1 packages. 1 packages failed.
See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).
2024-06-03 16:53:15,384 15624 [INFO ] - 
2024-06-03 16:53:15,386 15624 [ERROR] - Failures
2024-06-03 16:53:15,388 15624 [ERROR] -  - microsoft-windows-terminal (exited -1) - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'.
See log for details.
2024-06-03 16:53:15,390 15624 [DEBUG] - Sending message 'PostRunMessage' out if there are subscribers...
2024-06-03 16:53:15,392 15624 [DEBUG] - Exiting with -1
@rklec commented on GitHub (Jun 3, 2024): Ah okay the workaround to import it was possible, but well (file was already downloaded before via `Invoke-WebRequest` as shown above): ``` PowerShell 7.4.2 Loading personal and system profiles took 3198ms. PS C:\Windows\System32> Import-Module -Name Appx -UseWindowsPowerShell WARNING: Module Appx is loaded in Windows PowerShell using WinPSCompatSession remoting session; please note that all input and output of commands from this module will be deserialized objects. If you want to load this module into PowerShell please use 'Import-Module -SkipEditionCheck' syntax. PS C:\Windows\System32> $tempUwpASPX = Join-Path -Path $env:TEMP -ChildPath "Microsoft.VCLibs.x64.14.00.Desktop.appx" PS C:\Windows\System32> ^C PS C:\Windows\System32> Add-AppxPackage -Path $tempUwpASPX PS C:\Windows\System32> choco upgrade -y microsoft-windows-terminal Chocolatey v2.2.2 Upgrading the following packages: microsoft-windows-terminal By upgrading, you accept licenses for the packages. You have microsoft-windows-terminal v1.17.11461 installed. Version 1.20.11271 is available based on your source(s). Progress: Downloading microsoft-windows-terminal 1.20.11271... 100% microsoft-windows-terminal v1.20.11271 [Approved] microsoft-windows-terminal package files upgrade completed. Performing other installation steps. ERROR: Cannot convert the "System.Object[]" value of type "System.Object[]" to type "System.Version". The upgrade of microsoft-windows-terminal was NOT successful. Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'. See log for details. Chocolatey upgraded 0/1 packages. 1 packages failed. See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). Failures - microsoft-windows-terminal (exited -1) - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'. See log for details. ``` Log shows: ``` 2024-06-03 16:52:14,872 15624 [INFO ] - [NuGet] Resolving dependency information took 0 ms 2024-06-03 16:52:16,604 15624 [DEBUG] - Running beforeModify step for 'microsoft-windows-terminal' 2024-06-03 16:52:16,610 15624 [DEBUG] - Backing up package files for 'microsoft-windows-terminal' 2024-06-03 16:52:16,644 15624 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal". 2024-06-03 16:52:16,646 15624 [DEBUG] - Moving C:\ProgramData\chocolatey\lib\microsoft-windows-terminal to C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461 2024-06-03 16:52:16,649 15624 [DEBUG] - Moving 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal' to 'C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461' 2024-06-03 16:52:18,668 15624 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal". 2024-06-03 16:52:18,671 15624 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461\microsoft-windows-terminal.nupkg" to "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nupkg". 2024-06-03 16:52:18,792 15624 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461\microsoft-windows-terminal.nuspec" to "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nuspec". 2024-06-03 16:52:18,795 15624 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal". 2024-06-03 16:52:18,797 15624 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461\legal\LICENSE.txt" to "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\LICENSE.txt". 2024-06-03 16:52:18,800 15624 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461\legal\VERIFICATION.txt" to "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\VERIFICATION.txt". 2024-06-03 16:52:18,802 15624 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools". 2024-06-03 16:52:18,804 15624 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461\tools\chocolateyInstall.ps1" to "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1". 2024-06-03 16:52:18,807 15624 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461\tools\chocolateyUninstall.ps1" to "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyUninstall.ps1". 2024-06-03 16:52:18,809 15624 [DEBUG] - Attempting to copy "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461\tools\Microsoft.WindowsTerminal_1.17.11461.0_8wekyb3d8bbwe.msixbundle" to "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\Microsoft.WindowsTerminal_1.17.11461.0_8wekyb3d8bbwe.msixbundle". 2024-06-03 16:52:20,448 15624 [DEBUG] - Deleting file C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1 2024-06-03 16:52:20,449 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1". 2024-06-03 16:52:20,453 15624 [DEBUG] - Deleting file C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyUninstall.ps1 2024-06-03 16:52:20,454 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyUninstall.ps1". 2024-06-03 16:52:20,460 15624 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal' 2024-06-03 16:52:20,505 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nupkg' with checksum '83C744E6DFD576B8FF4307257CC8B184' 2024-06-03 16:52:20,506 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nuspec' with checksum 'DAA9B55A7C0E8644AA9BCF5AF2E04A0A' 2024-06-03 16:52:20,508 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\LICENSE.txt' with checksum 'B377DB62B5A030F560ED5BBCA25EA5BE' 2024-06-03 16:52:20,510 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\VERIFICATION.txt' with checksum '4B3374D05B3D01573E163C2BAE73A9FD' 2024-06-03 16:52:20,554 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\Microsoft.WindowsTerminal_1.17.11461.0_8wekyb3d8bbwe.msixbundle' with checksum '424C8354E5D913DE7A0F48A2E4D5357B' 2024-06-03 16:52:20,558 15624 [DEBUG] - Ensuring removal of installation files. 2024-06-03 16:52:20,597 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nupkg' with checksum '83C744E6DFD576B8FF4307257CC8B184' 2024-06-03 16:52:20,598 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nupkg". 2024-06-03 16:52:20,602 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nuspec' with checksum 'DAA9B55A7C0E8644AA9BCF5AF2E04A0A' 2024-06-03 16:52:20,603 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nuspec". 2024-06-03 16:52:20,605 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\LICENSE.txt' with checksum 'B377DB62B5A030F560ED5BBCA25EA5BE' 2024-06-03 16:52:20,606 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\LICENSE.txt". 2024-06-03 16:52:20,608 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\VERIFICATION.txt' with checksum '4B3374D05B3D01573E163C2BAE73A9FD' 2024-06-03 16:52:20,609 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\VERIFICATION.txt". 2024-06-03 16:52:20,654 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\Microsoft.WindowsTerminal_1.17.11461.0_8wekyb3d8bbwe.msixbundle' with checksum '424C8354E5D913DE7A0F48A2E4D5357B' 2024-06-03 16:52:20,655 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\Microsoft.WindowsTerminal_1.17.11461.0_8wekyb3d8bbwe.msixbundle". 2024-06-03 16:52:20,662 15624 [DEBUG] - Attempting to delete directory "C:\ProgramData\chocolatey\lib\microsoft-windows-terminal". 2024-06-03 16:52:20,665 15624 [DEBUG] - Removing nupkg if it still exists. 2024-06-03 16:52:20,666 15624 [DEBUG] - Resolving resource DownloadResource for source https://chocolatey.org/api/v2/ 2024-06-03 16:52:20,746 15624 [DEBUG] - Attempting to delete file "". 2024-06-03 16:52:20,757 15624 [INFO ] - [NuGet] GET https://community.chocolatey.org/api/v2/package/microsoft-windows-terminal/1.20.11271 2024-06-03 16:52:23,281 15624 [INFO ] - [NuGet] OK https://community.chocolatey.org/api/v2/package/microsoft-windows-terminal/1.20.11271 2522ms 2024-06-03 16:52:23,292 15624 [INFO ] - [NuGet] Acquiring lock for the installation of microsoft-windows-terminal 1.20.11271 2024-06-03 16:52:23,311 15624 [INFO ] - [NuGet] Acquired lock for the installation of microsoft-windows-terminal 1.20.11271 2024-06-03 16:52:59,465 15624 [INFO ] - [NuGet] Installed microsoft-windows-terminal 1.20.11271 from https://chocolatey.org/api/v2/ with content hash JXjzDFmEFWMe0RyqonllQpxs7i2sXIyfz0O3UifdcyithRz1HUed1Fflw413W2MiCvTxhJm6sg10UYjL5Pa63w==. 2024-06-03 16:52:59,531 15624 [INFO ] - [NuGet] Adding package 'microsoft-windows-terminal.1.20.11271 : vcredist140 (, )' to folder 'C:\ProgramData\chocolatey\lib' 2024-06-03 16:52:59,851 15624 [INFO ] - [NuGet] Added package 'microsoft-windows-terminal.1.20.11271 : vcredist140 (, )' to folder 'C:\ProgramData\chocolatey\lib' 2024-06-03 16:52:59,855 15624 [DEBUG] - Attempting to delete file "C:\Users\kruegerro\AppData\Local\Temp\chocolatey\ChocolateyScratch\microsoft-windows-terminal/1.20.11271\microsoft-windows-terminal.1.20.11271.nupkg". 2024-06-03 16:52:59,859 15624 [DEBUG] - Attempting to delete file "C:\Users\kruegerro\AppData\Local\Temp\chocolatey\ChocolateyScratch\microsoft-windows-terminal/1.20.11271\.nupkg.metadata". 2024-06-03 16:52:59,860 15624 [DEBUG] - Attempting to delete file "C:\Users\kruegerro\AppData\Local\Temp\chocolatey\ChocolateyScratch\microsoft-windows-terminal/1.20.11271\microsoft-windows-terminal.1.20.11271.nupkg.sha512". 2024-06-03 16:52:59,863 15624 [INFO ] - microsoft-windows-terminal v1.20.11271 [Approved] 2024-06-03 16:52:59,887 15624 [INFO ] - microsoft-windows-terminal package files upgrade completed. Performing other installation steps. 2024-06-03 16:53:00,191 15624 [DEBUG] - Setting installer args for microsoft-windows-terminal 2024-06-03 16:53:00,192 15624 [DEBUG] - Setting package parameters for microsoft-windows-terminal 2024-06-03 16:53:00,195 15624 [DEBUG] - Contents of 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1': 2024-06-03 16:53:00,203 15624 [DEBUG] - $ErrorActionPreference = 'Stop'; $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $fileName = "$toolsDir\Microsoft.WindowsTerminal_1.20.11271.0_8wekyb3d8bbwe.msixbundle" $version = "1.20.11271.0" $PreRelease = "False" $WindowsVersion=[Environment]::OSVersion.Version if ($WindowsVersion.Major -ne "10") { throw "This package requires Windows 10." } #The .msixbundle format is not supported on Windows 10 version 1709 and 1803. https://docs.microsoft.com/en-us/windows/msix/msix-1709-and-1803-support $IsCorrectBuild=[Environment]::OSVersion.Version.Build if ($IsCorrectBuild -lt "18362") { throw "This package requires at least Windows 10 version 1903/OS build 18362.x." } $AppxPackageName = "Microsoft.WindowsTerminal" if ($PreRelease -match "True") { $AppxPackageName += "Preview" } [version]$AppxVer = (Get-AppxPackage -Name $AppxPackageName -AllUsers -PackageTypeFilter Bundle).Version if ($AppxVer -gt [version]$version) { # you can't install an older version of an installed appx package, you'd need to remove it first Write-Warning "The installed $version version is newer than this package version, it may have autoupdated on your current OS..." } elseif ($AppxVer -Match [version]$version) { if($env:ChocolateyForce) { # you can't install the same version of an appx package, you need to remove it first Write-Host Removing already installed version first. Remove-AppxPackage -AllUsers -Package (Get-AppxPackage -Name $AppxPackageName -AllUsers -PackageTypeFilter Bundle) } else { Write-Host The $version version of Windows-Terminal is already installed. If you want to reinstall use --force return } } Add-ProvisionedAppPackage -Online -SkipLicense -PackagePath $fileName 2024-06-03 16:53:00,212 15624 [DEBUG] - Calling built-in PowerShell host with ['[System.Threading.Thread]::CurrentThread.CurrentCulture = '';[System.Threading.Thread]::CurrentThread.CurrentUICulture = '';[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::SystemDefault; & import-module -name 'C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1'; & 'C:\ProgramData\chocolatey\helpers\chocolateyScriptRunner.ps1' -packageScript 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1' -installArguments '' -packageParameters '' -preRunHookScripts $null -postRunHookScripts $null'] 2024-06-03 16:53:00,219 15624 [DEBUG] - Redirecting System.Management.Automation.resources, Version=3.0.0.0, Culture=de-DE, PublicKeyToken=31bf3856ad364e35, requested by '' 2024-06-03 16:53:00,877 15624 [DEBUG] - Host version is 5.1.19041.1, PowerShell Version is '5.1.19041.4291' and CLR Version is '4.0.30319.42000'. 2024-06-03 16:53:01,088 15624 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. 2024-06-03 16:53:01,090 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. 2024-06-03 16:53:01,091 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyConfigValue'. 2024-06-03 16:53:01,093 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyPath'. 2024-06-03 16:53:01,094 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. 2024-06-03 16:53:01,096 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. 2024-06-03 16:53:01,097 15624 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. 2024-06-03 16:53:01,100 15624 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. 2024-06-03 16:53:01,101 15624 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. 2024-06-03 16:53:01,103 15624 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. 2024-06-03 16:53:01,104 15624 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. 2024-06-03 16:53:01,105 15624 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. 2024-06-03 16:53:01,107 15624 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. 2024-06-03 16:53:01,108 15624 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. 2024-06-03 16:53:01,110 15624 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. 2024-06-03 16:53:01,111 15624 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. 2024-06-03 16:53:01,113 15624 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. 2024-06-03 16:53:01,114 15624 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. 2024-06-03 16:53:01,116 15624 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. 2024-06-03 16:53:01,117 15624 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. 2024-06-03 16:53:01,119 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. 2024-06-03 16:53:01,120 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. 2024-06-03 16:53:01,122 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. 2024-06-03 16:53:01,123 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. 2024-06-03 16:53:01,124 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. 2024-06-03 16:53:01,126 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. 2024-06-03 16:53:01,127 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. 2024-06-03 16:53:01,129 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. 2024-06-03 16:53:01,131 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. 2024-06-03 16:53:01,133 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. 2024-06-03 16:53:01,135 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. 2024-06-03 16:53:01,136 15624 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. 2024-06-03 16:53:01,138 15624 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. 2024-06-03 16:53:01,139 15624 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. 2024-06-03 16:53:01,141 15624 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. 2024-06-03 16:53:01,142 15624 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. 2024-06-03 16:53:01,144 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. 2024-06-03 16:53:01,146 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. 2024-06-03 16:53:01,147 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. 2024-06-03 16:53:01,148 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. 2024-06-03 16:53:01,150 15624 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. 2024-06-03 16:53:01,151 15624 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. 2024-06-03 16:53:01,153 15624 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. 2024-06-03 16:53:01,154 15624 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. 2024-06-03 16:53:01,156 15624 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. 2024-06-03 16:53:01,157 15624 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. 2024-06-03 16:53:01,158 15624 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. 2024-06-03 16:53:01,160 15624 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. 2024-06-03 16:53:01,162 15624 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. 2024-06-03 16:53:01,164 15624 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. 2024-06-03 16:53:01,165 15624 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. 2024-06-03 16:53:01,172 15624 [DEBUG] - Loading community extensions 2024-06-03 16:53:01,179 15624 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-compatibility\chocolatey-compatibility.psm1' 2024-06-03 16:53:01,181 15624 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-compatibility\chocolatey-compatibility.psm1'. 2024-06-03 16:53:01,209 15624 [DEBUG] - Function 'Get-PackageParameters' exists, ignoring export. 2024-06-03 16:53:01,210 15624 [DEBUG] - Function 'Get-UninstallRegistryKey' exists, ignoring export. 2024-06-03 16:53:01,212 15624 [DEBUG] - Exporting function 'Install-ChocolateyDesktopLink' for backwards compatibility 2024-06-03 16:53:01,215 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. 2024-06-03 16:53:01,217 15624 [DEBUG] - Exporting function 'Write-ChocolateyFailure' for backwards compatibility 2024-06-03 16:53:01,220 15624 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. 2024-06-03 16:53:01,222 15624 [DEBUG] - Exporting function 'Write-ChocolateySuccess' for backwards compatibility 2024-06-03 16:53:01,225 15624 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. 2024-06-03 16:53:01,227 15624 [DEBUG] - Exporting function 'Write-FileUpdateLog' for backwards compatibility 2024-06-03 16:53:01,230 15624 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. 2024-06-03 16:53:01,232 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'. 2024-06-03 16:53:01,233 15624 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'. 2024-06-03 16:53:01,235 15624 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'. 2024-06-03 16:53:01,236 15624 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'. 2024-06-03 16:53:01,238 15624 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1' 2024-06-03 16:53:01,240 15624 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1'. 2024-06-03 16:53:01,284 15624 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. 2024-06-03 16:53:01,286 15624 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. 2024-06-03 16:53:01,288 15624 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. 2024-06-03 16:53:01,289 15624 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. 2024-06-03 16:53:01,291 15624 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. 2024-06-03 16:53:01,293 15624 [INFO ] - VERBOSE: Exporting function 'Register-Application'. 2024-06-03 16:53:01,295 15624 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. 2024-06-03 16:53:01,297 15624 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. 2024-06-03 16:53:01,298 15624 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. 2024-06-03 16:53:01,300 15624 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. 2024-06-03 16:53:01,302 15624 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. 2024-06-03 16:53:01,304 15624 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. 2024-06-03 16:53:01,306 15624 [INFO ] - VERBOSE: Importing function 'Register-Application'. 2024-06-03 16:53:01,308 15624 [INFO ] - VERBOSE: Importing function 'Remove-Process'. 2024-06-03 16:53:01,311 15624 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-dotnetfx\chocolatey-dotnetfx.psm1' 2024-06-03 16:53:01,312 15624 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-dotnetfx\chocolatey-dotnetfx.psm1'. 2024-06-03 16:53:01,331 15624 [INFO ] - VERBOSE: Exporting function 'Install-DotNetFramework'. 2024-06-03 16:53:01,333 15624 [INFO ] - VERBOSE: Exporting function 'Install-DotNetDevPack'. 2024-06-03 16:53:01,336 15624 [INFO ] - VERBOSE: Importing function 'Install-DotNetDevPack'. 2024-06-03 16:53:01,338 15624 [INFO ] - VERBOSE: Importing function 'Install-DotNetFramework'. 2024-06-03 16:53:01,340 15624 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-misc-helpers\chocolatey-misc-helpers.psm1' 2024-06-03 16:53:01,342 15624 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-misc-helpers\chocolatey-misc-helpers.psm1'. 2024-06-03 16:53:01,378 15624 [INFO ] - VERBOSE: Exporting function 'Enable-AutoPin'. 2024-06-03 16:53:01,379 15624 [INFO ] - VERBOSE: Exporting function 'Show-Patreon'. 2024-06-03 16:53:01,381 15624 [INFO ] - VERBOSE: Exporting function 'Show-PayPal'. 2024-06-03 16:53:01,383 15624 [INFO ] - VERBOSE: Exporting function 'Show-ToastMessage'. 2024-06-03 16:53:01,385 15624 [INFO ] - VERBOSE: Exporting function 'Start-CheckandStop'. 2024-06-03 16:53:01,386 15624 [INFO ] - VERBOSE: Exporting function 'Start-CheckandThrow'. 2024-06-03 16:53:01,388 15624 [INFO ] - VERBOSE: Exporting function 'Start-WaitandStop'. 2024-06-03 16:53:01,389 15624 [INFO ] - VERBOSE: Exporting function 'Start-WaitandStopActual'. 2024-06-03 16:53:01,390 15624 [INFO ] - VERBOSE: Exporting function 'Test-Dependency'. 2024-06-03 16:53:01,395 15624 [INFO ] - VERBOSE: Exporting function 'Test-URL'. 2024-06-03 16:53:01,397 15624 [INFO ] - VERBOSE: Importing function 'Enable-AutoPin'. 2024-06-03 16:53:01,398 15624 [INFO ] - VERBOSE: Importing function 'Show-Patreon'. 2024-06-03 16:53:01,400 15624 [INFO ] - VERBOSE: Importing function 'Show-PayPal'. 2024-06-03 16:53:01,401 15624 [INFO ] - VERBOSE: Importing function 'Show-ToastMessage'. 2024-06-03 16:53:01,403 15624 [INFO ] - VERBOSE: Importing function 'Start-CheckandStop'. 2024-06-03 16:53:01,404 15624 [INFO ] - VERBOSE: Importing function 'Start-CheckandThrow'. 2024-06-03 16:53:01,406 15624 [INFO ] - VERBOSE: Importing function 'Start-WaitandStop'. 2024-06-03 16:53:01,407 15624 [INFO ] - VERBOSE: Importing function 'Start-WaitandStopActual'. 2024-06-03 16:53:01,409 15624 [INFO ] - VERBOSE: Importing function 'Test-Dependency'. 2024-06-03 16:53:01,410 15624 [INFO ] - VERBOSE: Importing function 'Test-URL'. 2024-06-03 16:53:01,413 15624 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-os-dependency\chocolatey-os-dependency.psm1' 2024-06-03 16:53:01,414 15624 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-os-dependency\chocolatey-os-dependency.psm1'. 2024-06-03 16:53:01,422 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win11'. 2024-06-03 16:53:01,424 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win10'. 2024-06-03 16:53:01,425 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win81'. 2024-06-03 16:53:01,428 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win80'. 2024-06-03 16:53:01,429 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win8'. 2024-06-03 16:53:01,431 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win7'. 2024-06-03 16:53:01,432 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-WinMinimumBuild'. 2024-06-03 16:53:01,434 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-WinRequiredBuild'. 2024-06-03 16:53:01,436 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win10'. 2024-06-03 16:53:01,437 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win11'. 2024-06-03 16:53:01,438 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win7'. 2024-06-03 16:53:01,440 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win8'. 2024-06-03 16:53:01,441 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win80'. 2024-06-03 16:53:01,443 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win81'. 2024-06-03 16:53:01,445 15624 [INFO ] - VERBOSE: Importing function 'Confirm-WinMinimumBuild'. 2024-06-03 16:53:01,447 15624 [INFO ] - VERBOSE: Importing function 'Confirm-WinRequiredBuild'. 2024-06-03 16:53:01,449 15624 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-visualstudio\chocolatey-visualstudio.extension.psm1' 2024-06-03 16:53:01,450 15624 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-visualstudio\chocolatey-visualstudio.extension.psm1'. 2024-06-03 16:53:01,601 15624 [INFO ] - VERBOSE: Exporting function 'Add-VisualStudioComponent'. 2024-06-03 16:53:01,602 15624 [INFO ] - VERBOSE: Exporting function 'Add-VisualStudioWorkload'. 2024-06-03 16:53:01,604 15624 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstaller'. 2024-06-03 16:53:01,606 15624 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstallerHealth'. 2024-06-03 16:53:01,607 15624 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstance'. 2024-06-03 16:53:01,609 15624 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioVsixInstaller'. 2024-06-03 16:53:01,610 15624 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudio'. 2024-06-03 16:53:01,612 15624 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudioInstaller'. 2024-06-03 16:53:01,614 15624 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudioVsixExtension'. 2024-06-03 16:53:01,617 15624 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioComponent'. 2024-06-03 16:53:01,619 15624 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioProduct'. 2024-06-03 16:53:01,621 15624 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioWorkload'. 2024-06-03 16:53:01,623 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-VisualStudio'. 2024-06-03 16:53:01,625 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-VisualStudioVsixExtension'. 2024-06-03 16:53:01,627 15624 [INFO ] - VERBOSE: Importing function 'Add-VisualStudioComponent'. 2024-06-03 16:53:01,628 15624 [INFO ] - VERBOSE: Importing function 'Add-VisualStudioWorkload'. 2024-06-03 16:53:01,631 15624 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstaller'. 2024-06-03 16:53:01,632 15624 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstallerHealth'. 2024-06-03 16:53:01,634 15624 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstance'. 2024-06-03 16:53:01,635 15624 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioVsixInstaller'. 2024-06-03 16:53:01,637 15624 [INFO ] - VERBOSE: Importing function 'Install-VisualStudio'. 2024-06-03 16:53:01,638 15624 [INFO ] - VERBOSE: Importing function 'Install-VisualStudioInstaller'. 2024-06-03 16:53:01,640 15624 [INFO ] - VERBOSE: Importing function 'Install-VisualStudioVsixExtension'. 2024-06-03 16:53:01,641 15624 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioComponent'. 2024-06-03 16:53:01,642 15624 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioProduct'. 2024-06-03 16:53:01,644 15624 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioWorkload'. 2024-06-03 16:53:01,646 15624 [INFO ] - VERBOSE: Importing function 'Uninstall-VisualStudio'. 2024-06-03 16:53:01,648 15624 [INFO ] - VERBOSE: Importing function 'Uninstall-VisualStudioVsixExtension'. 2024-06-03 16:53:01,651 15624 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1' 2024-06-03 16:53:01,652 15624 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1'. 2024-06-03 16:53:01,689 15624 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. 2024-06-03 16:53:01,691 15624 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. 2024-06-03 16:53:01,694 15624 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. 2024-06-03 16:53:01,695 15624 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. 2024-06-03 16:53:01,697 15624 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. 2024-06-03 16:53:01,698 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. 2024-06-03 16:53:01,700 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyConfigValue'. 2024-06-03 16:53:01,701 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyPath'. 2024-06-03 16:53:01,703 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. 2024-06-03 16:53:01,704 15624 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. 2024-06-03 16:53:01,706 15624 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariable'. 2024-06-03 16:53:01,708 15624 [INFO ] - VERBOSE: Exporting function 'Get-EnvironmentVariableNames'. 2024-06-03 16:53:01,709 15624 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. 2024-06-03 16:53:01,711 15624 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. 2024-06-03 16:53:01,713 15624 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. 2024-06-03 16:53:01,714 15624 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. 2024-06-03 16:53:01,716 15624 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. 2024-06-03 16:53:01,717 15624 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. 2024-06-03 16:53:01,719 15624 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. 2024-06-03 16:53:01,720 15624 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. 2024-06-03 16:53:01,722 15624 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. 2024-06-03 16:53:01,726 15624 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. 2024-06-03 16:53:01,728 15624 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. 2024-06-03 16:53:01,730 15624 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. 2024-06-03 16:53:01,731 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. 2024-06-03 16:53:01,733 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. 2024-06-03 16:53:01,734 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. 2024-06-03 16:53:01,736 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. 2024-06-03 16:53:01,738 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. 2024-06-03 16:53:01,739 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPath'. 2024-06-03 16:53:01,741 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. 2024-06-03 16:53:01,742 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. 2024-06-03 16:53:01,744 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. 2024-06-03 16:53:01,746 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. 2024-06-03 16:53:01,747 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. 2024-06-03 16:53:01,749 15624 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. 2024-06-03 16:53:01,750 15624 [INFO ] - VERBOSE: Exporting function 'Set-EnvironmentVariable'. 2024-06-03 16:53:01,752 15624 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. 2024-06-03 16:53:01,753 15624 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. 2024-06-03 16:53:01,755 15624 [INFO ] - VERBOSE: Exporting function 'Test-ProcessAdminRights'. 2024-06-03 16:53:01,757 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. 2024-06-03 16:53:01,758 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. 2024-06-03 16:53:01,760 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. 2024-06-03 16:53:01,762 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. 2024-06-03 16:53:01,763 15624 [INFO ] - VERBOSE: Exporting function 'Update-SessionEnvironment'. 2024-06-03 16:53:01,765 15624 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. 2024-06-03 16:53:01,766 15624 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. 2024-06-03 16:53:01,768 15624 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. 2024-06-03 16:53:01,770 15624 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. 2024-06-03 16:53:01,771 15624 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. 2024-06-03 16:53:01,772 15624 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. 2024-06-03 16:53:01,774 15624 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. 2024-06-03 16:53:01,776 15624 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. 2024-06-03 16:53:01,777 15624 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. 2024-06-03 16:53:01,779 15624 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. 2024-06-03 16:53:01,780 15624 [INFO ] - VERBOSE: Exporting function 'Register-Application'. 2024-06-03 16:53:01,782 15624 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. 2024-06-03 16:53:01,783 15624 [INFO ] - VERBOSE: Exporting function 'Install-DotNetDevPack'. 2024-06-03 16:53:01,785 15624 [INFO ] - VERBOSE: Exporting function 'Install-DotNetFramework'. 2024-06-03 16:53:01,787 15624 [INFO ] - VERBOSE: Exporting function 'Enable-AutoPin'. 2024-06-03 16:53:01,788 15624 [INFO ] - VERBOSE: Exporting function 'Show-Patreon'. 2024-06-03 16:53:01,790 15624 [INFO ] - VERBOSE: Exporting function 'Show-PayPal'. 2024-06-03 16:53:01,791 15624 [INFO ] - VERBOSE: Exporting function 'Show-ToastMessage'. 2024-06-03 16:53:01,793 15624 [INFO ] - VERBOSE: Exporting function 'Start-CheckandStop'. 2024-06-03 16:53:01,794 15624 [INFO ] - VERBOSE: Exporting function 'Start-CheckandThrow'. 2024-06-03 16:53:01,796 15624 [INFO ] - VERBOSE: Exporting function 'Start-WaitandStop'. 2024-06-03 16:53:01,797 15624 [INFO ] - VERBOSE: Exporting function 'Start-WaitandStopActual'. 2024-06-03 16:53:01,799 15624 [INFO ] - VERBOSE: Exporting function 'Test-Dependency'. 2024-06-03 16:53:01,801 15624 [INFO ] - VERBOSE: Exporting function 'Test-URL'. 2024-06-03 16:53:01,803 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win10'. 2024-06-03 16:53:01,804 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win11'. 2024-06-03 16:53:01,806 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win7'. 2024-06-03 16:53:01,807 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win8'. 2024-06-03 16:53:01,809 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win80'. 2024-06-03 16:53:01,810 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-Win81'. 2024-06-03 16:53:01,812 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-WinMinimumBuild'. 2024-06-03 16:53:01,813 15624 [INFO ] - VERBOSE: Exporting function 'Confirm-WinRequiredBuild'. 2024-06-03 16:53:01,816 15624 [INFO ] - VERBOSE: Exporting function 'Add-VisualStudioComponent'. 2024-06-03 16:53:01,817 15624 [INFO ] - VERBOSE: Exporting function 'Add-VisualStudioWorkload'. 2024-06-03 16:53:01,819 15624 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstaller'. 2024-06-03 16:53:01,821 15624 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstallerHealth'. 2024-06-03 16:53:01,822 15624 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstance'. 2024-06-03 16:53:01,824 15624 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioVsixInstaller'. 2024-06-03 16:53:01,825 15624 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudio'. 2024-06-03 16:53:01,827 15624 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudioInstaller'. 2024-06-03 16:53:01,828 15624 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudioVsixExtension'. 2024-06-03 16:53:01,831 15624 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioComponent'. 2024-06-03 16:53:01,833 15624 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioProduct'. 2024-06-03 16:53:01,835 15624 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioWorkload'. 2024-06-03 16:53:01,837 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-VisualStudio'. 2024-06-03 16:53:01,838 15624 [INFO ] - VERBOSE: Exporting function 'Uninstall-VisualStudioVsixExtension'. 2024-06-03 16:53:01,839 15624 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. 2024-06-03 16:53:01,841 15624 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. 2024-06-03 16:53:01,843 15624 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. 2024-06-03 16:53:01,844 15624 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. 2024-06-03 16:53:01,847 15624 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. 2024-06-03 16:53:01,849 15624 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. 2024-06-03 16:53:01,850 15624 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. 2024-06-03 16:53:01,851 15624 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. 2024-06-03 16:53:01,853 15624 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. 2024-06-03 16:53:01,855 15624 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. 2024-06-03 16:53:01,856 15624 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. 2024-06-03 16:53:01,858 15624 [INFO ] - VERBOSE: Importing function 'Add-VisualStudioComponent'. 2024-06-03 16:53:01,859 15624 [INFO ] - VERBOSE: Importing function 'Add-VisualStudioWorkload'. 2024-06-03 16:53:01,861 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win10'. 2024-06-03 16:53:01,864 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win11'. 2024-06-03 16:53:01,866 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win7'. 2024-06-03 16:53:01,867 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win8'. 2024-06-03 16:53:01,869 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win80'. 2024-06-03 16:53:01,872 15624 [INFO ] - VERBOSE: Importing function 'Confirm-Win81'. 2024-06-03 16:53:01,873 15624 [INFO ] - VERBOSE: Importing function 'Confirm-WinMinimumBuild'. 2024-06-03 16:53:01,875 15624 [INFO ] - VERBOSE: Importing function 'Confirm-WinRequiredBuild'. 2024-06-03 16:53:01,877 15624 [INFO ] - VERBOSE: Importing function 'Enable-AutoPin'. 2024-06-03 16:53:01,879 15624 [INFO ] - VERBOSE: Importing function 'Format-FileSize'. 2024-06-03 16:53:01,880 15624 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. 2024-06-03 16:53:01,882 15624 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. 2024-06-03 16:53:01,883 15624 [INFO ] - VERBOSE: Importing function 'Get-ChecksumValid'. 2024-06-03 16:53:01,885 15624 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyConfigValue'. 2024-06-03 16:53:01,886 15624 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyPath'. 2024-06-03 16:53:01,888 15624 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyUnzip'. 2024-06-03 16:53:01,889 15624 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyWebFile'. 2024-06-03 16:53:01,891 15624 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. 2024-06-03 16:53:01,892 15624 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariable'. 2024-06-03 16:53:01,895 15624 [INFO ] - VERBOSE: Importing function 'Get-EnvironmentVariableNames'. 2024-06-03 16:53:01,898 15624 [INFO ] - VERBOSE: Importing function 'Get-FtpFile'. 2024-06-03 16:53:01,900 15624 [INFO ] - VERBOSE: Importing function 'Get-OSArchitectureWidth'. 2024-06-03 16:53:01,902 15624 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. 2024-06-03 16:53:01,904 15624 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. 2024-06-03 16:53:01,906 15624 [INFO ] - VERBOSE: Importing function 'Get-PackageParametersBuiltIn'. 2024-06-03 16:53:01,908 15624 [INFO ] - VERBOSE: Importing function 'Get-ToolsLocation'. 2024-06-03 16:53:01,910 15624 [INFO ] - VERBOSE: Importing function 'Get-UACEnabled'. 2024-06-03 16:53:01,913 15624 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. 2024-06-03 16:53:01,915 15624 [INFO ] - VERBOSE: Importing function 'Get-VirusCheckValid'. 2024-06-03 16:53:01,917 15624 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstaller'. 2024-06-03 16:53:01,919 15624 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstallerHealth'. 2024-06-03 16:53:01,920 15624 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstance'. 2024-06-03 16:53:01,922 15624 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioVsixInstaller'. 2024-06-03 16:53:01,923 15624 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. 2024-06-03 16:53:01,925 15624 [INFO ] - VERBOSE: Importing function 'Get-WebFile'. 2024-06-03 16:53:01,927 15624 [INFO ] - VERBOSE: Importing function 'Get-WebFileName'. 2024-06-03 16:53:01,928 15624 [INFO ] - VERBOSE: Importing function 'Get-WebHeaders'. 2024-06-03 16:53:01,930 15624 [INFO ] - VERBOSE: Importing function 'Install-BinFile'. 2024-06-03 16:53:01,931 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'. 2024-06-03 16:53:01,933 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyEnvironmentVariable'. 2024-06-03 16:53:01,934 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyExplorerMenuItem'. 2024-06-03 16:53:01,936 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyFileAssociation'. 2024-06-03 16:53:01,937 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyInstallPackage'. 2024-06-03 16:53:01,939 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPackage'. 2024-06-03 16:53:01,940 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPath'. 2024-06-03 16:53:01,942 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPinnedTaskBarItem'. 2024-06-03 16:53:01,945 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPowershellCommand'. 2024-06-03 16:53:01,947 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyShortcut'. 2024-06-03 16:53:01,948 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyVsixPackage'. 2024-06-03 16:53:01,950 15624 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyZipPackage'. 2024-06-03 16:53:01,951 15624 [INFO ] - VERBOSE: Importing function 'Install-DotNetDevPack'. 2024-06-03 16:53:01,953 15624 [INFO ] - VERBOSE: Importing function 'Install-DotNetFramework'. 2024-06-03 16:53:01,954 15624 [INFO ] - VERBOSE: Importing function 'Install-VisualStudio'. 2024-06-03 16:53:01,956 15624 [INFO ] - VERBOSE: Importing function 'Install-VisualStudioInstaller'. 2024-06-03 16:53:01,957 15624 [INFO ] - VERBOSE: Importing function 'Install-VisualStudioVsixExtension'. 2024-06-03 16:53:01,960 15624 [INFO ] - VERBOSE: Importing function 'Install-Vsix'. 2024-06-03 16:53:01,962 15624 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. 2024-06-03 16:53:01,965 15624 [INFO ] - VERBOSE: Importing function 'Register-Application'. 2024-06-03 16:53:01,966 15624 [INFO ] - VERBOSE: Importing function 'Remove-Process'. 2024-06-03 16:53:01,968 15624 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioComponent'. 2024-06-03 16:53:01,970 15624 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioProduct'. 2024-06-03 16:53:01,972 15624 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioWorkload'. 2024-06-03 16:53:01,976 15624 [INFO ] - VERBOSE: Importing function 'Set-EnvironmentVariable'. 2024-06-03 16:53:01,979 15624 [INFO ] - VERBOSE: Importing function 'Set-PowerShellExitCode'. 2024-06-03 16:53:01,981 15624 [INFO ] - VERBOSE: Importing function 'Show-Patreon'. 2024-06-03 16:53:01,982 15624 [INFO ] - VERBOSE: Importing function 'Show-PayPal'. 2024-06-03 16:53:01,984 15624 [INFO ] - VERBOSE: Importing function 'Show-ToastMessage'. 2024-06-03 16:53:01,986 15624 [INFO ] - VERBOSE: Importing function 'Start-CheckandStop'. 2024-06-03 16:53:01,988 15624 [INFO ] - VERBOSE: Importing function 'Start-CheckandThrow'. 2024-06-03 16:53:01,991 15624 [INFO ] - VERBOSE: Importing function 'Start-ChocolateyProcessAsAdmin'. 2024-06-03 16:53:01,993 15624 [INFO ] - VERBOSE: Importing function 'Start-WaitandStop'. 2024-06-03 16:53:01,996 15624 [INFO ] - VERBOSE: Importing function 'Start-WaitandStopActual'. 2024-06-03 16:53:01,999 15624 [INFO ] - VERBOSE: Importing function 'Test-Dependency'. 2024-06-03 16:53:02,001 15624 [INFO ] - VERBOSE: Importing function 'Test-ProcessAdminRights'. 2024-06-03 16:53:02,003 15624 [INFO ] - VERBOSE: Importing function 'Test-URL'. 2024-06-03 16:53:02,005 15624 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. 2024-06-03 16:53:02,007 15624 [INFO ] - VERBOSE: Importing function 'Uninstall-BinFile'. 2024-06-03 16:53:02,009 15624 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyEnvironmentVariable'. 2024-06-03 16:53:02,011 15624 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyPackage'. 2024-06-03 16:53:02,013 15624 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyZipPackage'. 2024-06-03 16:53:02,015 15624 [INFO ] - VERBOSE: Importing function 'Uninstall-VisualStudio'. 2024-06-03 16:53:02,016 15624 [INFO ] - VERBOSE: Importing function 'Uninstall-VisualStudioVsixExtension'. 2024-06-03 16:53:02,018 15624 [INFO ] - VERBOSE: Importing function 'Update-SessionEnvironment'. 2024-06-03 16:53:02,020 15624 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'. 2024-06-03 16:53:02,022 15624 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'. 2024-06-03 16:53:02,023 15624 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'. 2024-06-03 16:53:02,025 15624 [INFO ] - VERBOSE: Importing function 'Write-FunctionCallLogMessage'. 2024-06-03 16:53:02,027 15624 [INFO ] - VERBOSE: Importing alias 'Add-BinFile'. 2024-06-03 16:53:02,029 15624 [INFO ] - VERBOSE: Importing alias 'Generate-BinFile'. 2024-06-03 16:53:02,031 15624 [INFO ] - VERBOSE: Importing alias 'Get-InstallRegistryKey'. 2024-06-03 16:53:02,033 15624 [INFO ] - VERBOSE: Importing alias 'Get-OSBitness'. 2024-06-03 16:53:02,035 15624 [INFO ] - VERBOSE: Importing alias 'Get-ProcessorBits'. 2024-06-03 16:53:02,037 15624 [INFO ] - VERBOSE: Importing alias 'Invoke-ChocolateyProcess'. 2024-06-03 16:53:02,038 15624 [INFO ] - VERBOSE: Importing alias 'refreshenv'. 2024-06-03 16:53:02,040 15624 [INFO ] - VERBOSE: Importing alias 'Remove-BinFile'. 2024-06-03 16:53:02,041 15624 [INFO ] - VERBOSE: Importing alias 'Start-ChocolateyProcess'. 2024-06-03 16:53:02,065 15624 [DEBUG] - ---------------------------Script Execution--------------------------- 2024-06-03 16:53:02,069 15624 [DEBUG] - Running 'ChocolateyScriptRunner' for microsoft-windows-terminal v1.20.11271 with packageScript 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1', packageFolder:'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal', installArguments: '', packageParameters: '', preRunHookScripts: '', postRunHookScripts: '', 2024-06-03 16:53:02,077 15624 [DEBUG] - Running package script 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1' 2024-06-03 16:53:09,950 15624 [INFO ] - VERBOSE: Exportfunktion "Get-AppxLastError". 2024-06-03 16:53:09,952 15624 [INFO ] - VERBOSE: Exportfunktion "Get-AppxLog". 2024-06-03 16:53:09,954 15624 [INFO ] - VERBOSE: Exportieren des Alias "Add-AppPackage". 2024-06-03 16:53:09,956 15624 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackage". 2024-06-03 16:53:09,958 15624 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageManifest". 2024-06-03 16:53:09,960 15624 [INFO ] - VERBOSE: Exportieren des Alias "Remove-AppPackage". 2024-06-03 16:53:09,961 15624 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageVolume". 2024-06-03 16:53:09,963 15624 [INFO ] - VERBOSE: Exportieren des Alias "Add-AppPackageVolume". 2024-06-03 16:53:09,965 15624 [INFO ] - VERBOSE: Exportieren des Alias "Remove-AppPackageVolume". 2024-06-03 16:53:09,966 15624 [INFO ] - VERBOSE: Exportieren des Alias "Mount-AppPackageVolume". 2024-06-03 16:53:09,968 15624 [INFO ] - VERBOSE: Exportieren des Alias "Dismount-AppPackageVolume". 2024-06-03 16:53:09,970 15624 [INFO ] - VERBOSE: Exportieren des Alias "Move-AppPackage". 2024-06-03 16:53:09,972 15624 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPacakgeDefaultVolume". 2024-06-03 16:53:09,974 15624 [INFO ] - VERBOSE: Exportieren des Alias "Set-AppPackageDefaultVolume". 2024-06-03 16:53:09,976 15624 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageLastError". 2024-06-03 16:53:09,978 15624 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageLog". 2024-06-03 16:53:10,820 15624 [ERROR] - ERROR: Cannot convert the "System.Object[]" value of type "System.Object[]" to type "System.Version". 2024-06-03 16:53:10,824 15624 [DEBUG] - Built-in PowerShell host called with ['[System.Threading.Thread]::CurrentThread.CurrentCulture = '';[System.Threading.Thread]::CurrentThread.CurrentUICulture = '';[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::SystemDefault; & import-module -name 'C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1'; & 'C:\ProgramData\chocolatey\helpers\chocolateyScriptRunner.ps1' -packageScript 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1' -installArguments '' -packageParameters '' -preRunHookScripts $null -postRunHookScripts $null'] exited with '-1'. 2024-06-03 16:53:10,826 15624 [DEBUG] - Calling command ['"C:\WINDOWS\System32\shutdown.exe" /a'] 2024-06-03 16:53:10,918 15624 [DEBUG] - Command ['"C:\WINDOWS\System32\shutdown.exe" /a'] exited with '1116' 2024-06-03 16:53:11,190 15624 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal' 2024-06-03 16:53:11,234 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nupkg' with checksum '665D872458236F6AF8735E101DFD3D45' 2024-06-03 16:53:11,235 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nuspec' with checksum 'D22EC088BC8A4A3E35C4BC6DF0594605' 2024-06-03 16:53:11,238 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\LICENSE.txt' with checksum 'B377DB62B5A030F560ED5BBCA25EA5BE' 2024-06-03 16:53:11,240 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\VERIFICATION.txt' with checksum '80DED745D63BD54E10A9B12849E99697' 2024-06-03 16:53:11,242 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1' with checksum 'FCE4567EE0849E8A91F8504F4C404C52' 2024-06-03 16:53:11,243 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyUninstall.ps1' with checksum 'B3BDB5539D0A9CC6AB3716A7F75031FE' 2024-06-03 16:53:11,291 15624 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\Microsoft.WindowsTerminal_1.20.11271.0_8wekyb3d8bbwe.msixbundle' with checksum 'D655ABE79CC068DC380F3D42FC566C6D' 2024-06-03 16:53:11,302 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.20.11271\.arguments". 2024-06-03 16:53:11,303 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.20.11271\.extra". 2024-06-03 16:53:11,305 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.20.11271\.version". 2024-06-03 16:53:11,307 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.20.11271\.sxs". 2024-06-03 16:53:11,308 15624 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.20.11271\.pin". 2024-06-03 16:53:11,317 15624 [DEBUG] - Attempting to delete directory "C:\ProgramData\chocolatey\lib-bad\microsoft-windows-terminal". 2024-06-03 16:53:11,331 15624 [DEBUG] - Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers... 2024-06-03 16:53:11,332 15624 [ERROR] - The upgrade of microsoft-windows-terminal was NOT successful. 2024-06-03 16:53:11,336 15624 [ERROR] - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'. See log for details. 2024-06-03 16:53:11,338 15624 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib-bad\microsoft-windows-terminal". 2024-06-03 16:53:11,340 15624 [DEBUG] - Moving C:\ProgramData\chocolatey\lib\microsoft-windows-terminal to C:\ProgramData\chocolatey\lib-bad\microsoft-windows-terminal\1.20.11271 2024-06-03 16:53:11,341 15624 [DEBUG] - Moving 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal' to 'C:\ProgramData\chocolatey\lib-bad\microsoft-windows-terminal\1.20.11271' 2024-06-03 16:53:13,358 15624 [DEBUG] - Attempting rollback 2024-06-03 16:53:13,359 15624 [DEBUG] - Moving C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461 to C:\ProgramData\chocolatey\lib\microsoft-windows-terminal 2024-06-03 16:53:13,361 15624 [DEBUG] - Moving 'C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal\1.17.11461' to 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal' 2024-06-03 16:53:15,368 15624 [DEBUG] - Attempting to delete directory "C:\ProgramData\chocolatey\lib-bkp\microsoft-windows-terminal". 2024-06-03 16:53:15,381 15624 [WARN ] - Chocolatey upgraded 0/1 packages. 1 packages failed. See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2024-06-03 16:53:15,384 15624 [INFO ] - 2024-06-03 16:53:15,386 15624 [ERROR] - Failures 2024-06-03 16:53:15,388 15624 [ERROR] - - microsoft-windows-terminal (exited -1) - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'. See log for details. 2024-06-03 16:53:15,390 15624 [DEBUG] - Sending message 'PostRunMessage' out if there are subscribers... 2024-06-03 16:53:15,392 15624 [DEBUG] - Exiting with -1 ```
Author
Owner

@rklec commented on GitHub (Jun 3, 2024):

Even a fresh installation seems to fail with:

ERROR: Cannot convert the "System.Object[]" value of type "System.Object[]" to type "System.Version".
The install of microsoft-windows-terminal was NOT successful.
Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'.
 See log for details.

Maybe a different chocolately problem.


Anyway, this is a mes, I've switched to https://tabby.sh/ for now...

@rklec commented on GitHub (Jun 3, 2024): Even a fresh installation seems to fail with: ``` ERROR: Cannot convert the "System.Object[]" value of type "System.Object[]" to type "System.Version". The install of microsoft-windows-terminal was NOT successful. Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'. See log for details. ``` Maybe a different chocolately problem. --- Anyway, this is a mes, I've switched to https://tabby.sh/ for now...
Author
Owner

@rklec commented on GitHub (Jul 9, 2025):

Also fails for me, same as winget:


2025-07-09 10:47:39,242 37464 [DEBUG] - Resolving resource ListResource for source https://chocolatey.org/api/v2/
2025-07-09 10:47:39,695 37464 [INFO ] - [NuGet]   CACHE https://community.chocolatey.org/api/v2/$metadata
2025-07-09 10:47:39,720 37464 [INFO ] - [NuGet]   CACHE https://community.chocolatey.org/api/v2/Packages()?$filter=(tolower(Id)%20eq%20'microsoft-windows-terminal')%20and%20IsLatestVersion&semVerLevel=2.0.0
2025-07-09 10:47:39,750 37464 [DEBUG] - Resolving resource DependencyInfoResource for source https://chocolatey.org/api/v2/
2025-07-09 10:47:39,761 37464 [INFO ] - [NuGet]   CACHE https://community.chocolatey.org/api/v2/Packages(Id='microsoft-windows-terminal',Version='1.22.11751')
2025-07-09 10:47:39,788 37464 [INFO ] - [NuGet]   CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='vcredist140'&semVerLevel=2.0.0
2025-07-09 10:47:39,798 37464 [INFO ] - [NuGet]   CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='vcredist140'&$skiptoken='1746841762273','14.32.31326','vcredist140'
2025-07-09 10:47:39,806 37464 [INFO ] - [NuGet]   CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='vcredist140'&$skiptoken='1746646469087','14.12.25810','vcredist140'
2025-07-09 10:47:39,823 37464 [INFO ] - [NuGet]   CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='chocolatey-core.extension'&semVerLevel=2.0.0
2025-07-09 10:47:39,830 37464 [INFO ] - [NuGet]   CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='chocolatey-core.extension'&$skiptoken='1746806669680','1.2.0','chocolatey-core.extension'
2025-07-09 10:47:39,836 37464 [INFO ] - [NuGet]   CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='chocolatey-compatibility.extension'&semVerLevel=2.0.0
2025-07-09 10:47:39,842 37464 [INFO ] - [NuGet]   CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='chocolatey-compatibility.extension'&$skiptoken='1751324700520','1.0.0','chocolatey-compatibility.extension'
2025-07-09 10:47:39,848 37464 [INFO ] - [NuGet]   CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='kb3033929'&semVerLevel=2.0.0
2025-07-09 10:47:39,853 37464 [INFO ] - [NuGet]   CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='kb3033929'&$skiptoken='1746651865990','1.0.2','kb3033929'
2025-07-09 10:47:39,856 37464 [INFO ] - [NuGet]   CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='chocolatey-windowsupdate.extension'&semVerLevel=2.0.0
2025-07-09 10:47:39,862 37464 [INFO ] - [NuGet]   CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='chocolatey-windowsupdate.extension'&$skiptoken='1746634766613','1.0.1','chocolatey-windowsupdate.extension'
2025-07-09 10:47:39,866 37464 [INFO ] - [NuGet]   CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='kb3035131'&semVerLevel=2.0.0
2025-07-09 10:47:39,871 37464 [INFO ] - [NuGet]   CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='kb3035131'&$skiptoken='1747191880063','1.0.0','kb3035131'
2025-07-09 10:47:39,881 37464 [INFO ] - [NuGet]   CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='kb2919355'&semVerLevel=2.0.0
2025-07-09 10:47:39,885 37464 [INFO ] - [NuGet]   CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='kb2919355'&$skiptoken='1747307069917','1.0.20160719','kb2919355'
2025-07-09 10:47:39,890 37464 [INFO ] - [NuGet]   CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='kb2919442'&semVerLevel=2.0.0
2025-07-09 10:47:39,894 37464 [INFO ] - [NuGet]   CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='kb2919442'&$skiptoken='1747307069917','1.0.20160719','kb2919442'
2025-07-09 10:47:39,898 37464 [INFO ] - [NuGet]   CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='kb2999226'&semVerLevel=2.0.0
2025-07-09 10:47:39,904 37464 [INFO ] - [NuGet]   CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='kb2999226'&$skiptoken='1746831870863','1.0.20161030','kb2999226'
2025-07-09 10:47:40,289 37464 [INFO ] - [NuGet] Resolving dependency information took 0 ms
2025-07-09 10:47:43,644 37464 [DEBUG] - Resolving resource DownloadResource for source https://chocolatey.org/api/v2/
2025-07-09 10:47:43,760 37464 [DEBUG] - Attempting to delete file "".
2025-07-09 10:47:43,762 37464 [INFO ] - Downloading package from source 'https://chocolatey.org/api/v2/'
2025-07-09 10:47:43,768 37464 [DEBUG] - Package download location 'https://community.chocolatey.org/api/v2/package/microsoft-windows-terminal/1.22.11751'
2025-07-09 10:47:43,793 37464 [INFO ] - [NuGet]   GET https://community.chocolatey.org/api/v2/package/microsoft-windows-terminal/1.22.11751
2025-07-09 10:47:44,072 37464 [INFO ] - [NuGet]   OK https://community.chocolatey.org/api/v2/package/microsoft-windows-terminal/1.22.11751 276ms
2025-07-09 10:47:44,088 37464 [INFO ] - [NuGet] Acquiring lock for the installation of microsoft-windows-terminal 1.22.11751
2025-07-09 10:47:44,118 37464 [INFO ] - [NuGet] Acquired lock for the installation of microsoft-windows-terminal 1.22.11751
2025-07-09 10:47:46,912 37464 [INFO ] - [NuGet] Installed microsoft-windows-terminal 1.22.11751 from https://chocolatey.org/api/v2/ with content hash YrqZHoOdBfdumvPZCbhW21v+FMTE09UEbpi4b8H8R4Rn20kLJ5pT2w3d6p+0v2W5oYLxgxIR5DfFoDzHo0MMYw==.
2025-07-09 10:47:46,918 37464 [DEBUG] - Skipping package hash validation as feature 'usePackageHashValidation' is not enabled.
2025-07-09 10:47:47,024 37464 [INFO ] - [NuGet] Adding package 'microsoft-windows-terminal.1.22.11751 : vcredist140 (, )' to folder 'C:\ProgramData\chocolatey\lib'
2025-07-09 10:47:47,815 37464 [INFO ] - [NuGet] Added package 'microsoft-windows-terminal.1.22.11751 : vcredist140 (, )' to folder 'C:\ProgramData\chocolatey\lib'
2025-07-09 10:47:47,821 37464 [DEBUG] - Attempting to delete file "C:\Users\****\AppData\Local\Temp\chocolatey\ChocolateyScratch\microsoft-windows-terminal/1.22.11751\microsoft-windows-terminal.1.22.11751.nupkg".
2025-07-09 10:47:47,829 37464 [DEBUG] - Attempting to delete file "C:\Users\***\AppData\Local\Temp\chocolatey\ChocolateyScratch\microsoft-windows-terminal/1.22.11751\.nupkg.metadata".
2025-07-09 10:47:47,832 37464 [DEBUG] - Attempting to delete file "C:\Users\***AppData\Local\Temp\chocolatey\ChocolateyScratch\microsoft-windows-terminal/1.22.11751\microsoft-windows-terminal.1.22.11751.nupkg.sha512".
2025-07-09 10:47:47,839 37464 [INFO ] - 
microsoft-windows-terminal v1.22.11751 [Approved]
2025-07-09 10:47:47,879 37464 [INFO ] - microsoft-windows-terminal package files install completed. Performing other installation steps.
2025-07-09 10:47:48,628 37464 [DEBUG] - Setting installer args for microsoft-windows-terminal
2025-07-09 10:47:48,630 37464 [DEBUG] - Setting package parameters for microsoft-windows-terminal
2025-07-09 10:47:48,638 37464 [DEBUG] - Contents of 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1':
2025-07-09 10:47:48,655 37464 [DEBUG] - $ErrorActionPreference = 'Stop';

$toolsDir       = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$fileName       = "$toolsDir\Microsoft.WindowsTerminal_1.22.11751.0_8wekyb3d8bbwe.msixbundle"
$version        = "1.22.11751.0"
$PreRelease     = "False"

$WindowsVersion=[Environment]::OSVersion.Version
if ($WindowsVersion.Major -ne "10") {
  throw "This package requires Windows 10."
}
#The .msixbundle format is not supported on Windows 10 version 1709 and 1803. https://docs.microsoft.com/en-us/windows/msix/msix-1709-and-1803-support
$IsCorrectBuild=[Environment]::OSVersion.Version.Build
if ($IsCorrectBuild -lt "18362") {
  throw "This package requires at least Windows 10 version 1903/OS build 18362.x."
}

$AppxPackageName = "Microsoft.WindowsTerminal"

if ($PreRelease -match "True") {
  $AppxPackageName += "Preview"
}

[version]$AppxVer = (Get-AppxPackage -Name $AppxPackageName -AllUsers -PackageTypeFilter Bundle | Select-Object -Last 1).Version

if ($AppxVer -gt [version]$version) {
  # you can't install an older version of an installed appx package, you'd need to remove it first
  Write-Warning "The installed $version version is newer than this package version, it may have autoupdated on your current OS..."
 } elseif ($AppxVer -Match [version]$version) {
    if($env:ChocolateyForce) {
      # you can't install the same version of an appx package, you need to remove it first
      Write-Host Removing already installed version first.
      Remove-AppxPackage -AllUsers -Package (Get-AppxPackage -Name $AppxPackageName -AllUsers -PackageTypeFilter Bundle | Select-Object -Last 1)
    } else {
    Write-Host The $version version of Windows-Terminal is already installed. If you want to reinstall use --force
    return
  }
}

Add-ProvisionedAppXPackage -Online -SkipLicense -PackagePath $fileName

2025-07-09 10:47:48,659 37464 [INFO ] - The package microsoft-windows-terminal wants to run 'chocolateyInstall.ps1'.
2025-07-09 10:47:48,664 37464 [INFO ] - Note: If you don't run this script, the installation will fail.
2025-07-09 10:47:48,673 37464 [INFO ] - Note: To confirm automatically next time, use '-y' or consider:
2025-07-09 10:47:48,679 37464 [INFO ] - choco feature enable -n allowGlobalConfirmation
2025-07-09 10:47:48,714 37464 [INFO ] - Do you want to run the script?
2025-07-09 10:47:48,716 37464 [INFO ] -  1) yes
2025-07-09 10:47:48,723 37464 [INFO ] -  2) all - yes to all
2025-07-09 10:47:48,731 37464 [INFO ] -  3) no
2025-07-09 10:47:48,743 37464 [INFO ] -  4) print
2025-07-09 10:47:53,835 37464 [INFO ] - Choice selected: 'yes'
2025-07-09 10:47:53,875 37464 [DEBUG] - Calling built-in PowerShell host with ['[System.Threading.Thread]::CurrentThread.CurrentCulture = '';[System.Threading.Thread]::CurrentThread.CurrentUICulture = '';[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::SystemDefault; & import-module -name 'C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1'; & 'C:\ProgramData\chocolatey\helpers\chocolateyScriptRunner.ps1' -packageScript 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1' -installArguments '' -packageParameters '' -preRunHookScripts $null -postRunHookScripts $null']
2025-07-09 10:47:53,904 37464 [DEBUG] - Redirecting System.Management.Automation.resources, Version=3.0.0.0, Culture=de-DE, PublicKeyToken=31bf3856ad364e35, requested by ''
2025-07-09 10:47:56,886 37464 [DEBUG] - Host version is 5.1.26100.1, PowerShell Version is '5.1.26100.1591' and CLR Version is '4.0.30319.42000'.
2025-07-09 10:47:57,584 37464 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\helpers\Chocolatey.PowerShell.dll'.
2025-07-09 10:47:57,637 37464 [DEBUG] - Returning loaded assembly type for 'Chocolatey.PowerShell'
2025-07-09 10:47:57,651 37464 [INFO ] - VERBOSE: Importing cmdlet 'Get-EnvironmentVariable'.
2025-07-09 10:47:57,654 37464 [INFO ] - VERBOSE: Importing cmdlet 'Get-EnvironmentVariableNames'.
2025-07-09 10:47:57,662 37464 [INFO ] - VERBOSE: Importing cmdlet 'Install-ChocolateyPath'.
2025-07-09 10:47:57,671 37464 [INFO ] - VERBOSE: Importing cmdlet 'Set-EnvironmentVariable'.
2025-07-09 10:47:57,684 37464 [INFO ] - VERBOSE: Importing cmdlet 'Test-ProcessAdminRights'.
2025-07-09 10:47:57,691 37464 [INFO ] - VERBOSE: Importing cmdlet 'Uninstall-ChocolateyPath'.
2025-07-09 10:47:57,700 37464 [INFO ] - VERBOSE: Importing cmdlet 'Update-SessionEnvironment'.
2025-07-09 10:47:57,766 37464 [DEBUG] - Cmdlets exported from Chocolatey.PowerShell.dll
2025-07-09 10:47:57,777 37464 [DEBUG] - Get-EnvironmentVariable
2025-07-09 10:47:57,779 37464 [DEBUG] - Get-EnvironmentVariableNames
2025-07-09 10:47:57,791 37464 [DEBUG] - Install-ChocolateyPath
2025-07-09 10:47:57,800 37464 [DEBUG] - Set-EnvironmentVariable
2025-07-09 10:47:57,806 37464 [DEBUG] - Test-ProcessAdminRights
2025-07-09 10:47:57,815 37464 [DEBUG] - Uninstall-ChocolateyPath
2025-07-09 10:47:57,820 37464 [DEBUG] - Update-SessionEnvironment
2025-07-09 10:47:57,847 37464 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'.
2025-07-09 10:47:57,849 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'.
2025-07-09 10:47:57,855 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyConfigValue'.
2025-07-09 10:47:57,862 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyPath'.
2025-07-09 10:47:57,869 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'.
2025-07-09 10:47:57,874 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'.
2025-07-09 10:47:57,885 37464 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'.
2025-07-09 10:47:57,892 37464 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'.
2025-07-09 10:47:57,907 37464 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'.
2025-07-09 10:47:57,919 37464 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'.
2025-07-09 10:47:57,930 37464 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'.
2025-07-09 10:47:57,937 37464 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'.
2025-07-09 10:47:57,945 37464 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'.
2025-07-09 10:47:57,954 37464 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'.
2025-07-09 10:47:57,962 37464 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'.
2025-07-09 10:47:57,970 37464 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'.
2025-07-09 10:47:57,977 37464 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'.
2025-07-09 10:47:57,984 37464 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'.
2025-07-09 10:47:57,990 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'.
2025-07-09 10:47:58,000 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'.
2025-07-09 10:47:58,013 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'.
2025-07-09 10:47:58,033 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'.
2025-07-09 10:47:58,052 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'.
2025-07-09 10:47:58,060 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'.
2025-07-09 10:47:58,072 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'.
2025-07-09 10:47:58,084 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'.
2025-07-09 10:47:58,091 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'.
2025-07-09 10:47:58,100 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'.
2025-07-09 10:47:58,122 37464 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'.
2025-07-09 10:47:58,127 37464 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'.
2025-07-09 10:47:58,137 37464 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'.
2025-07-09 10:47:58,148 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'.
2025-07-09 10:47:58,155 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'.
2025-07-09 10:47:58,166 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'.
2025-07-09 10:47:58,173 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'.
2025-07-09 10:47:58,183 37464 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'.
2025-07-09 10:47:58,195 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariable'.
2025-07-09 10:47:58,198 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariableNames'.
2025-07-09 10:47:58,205 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Install-ChocolateyPath'.
2025-07-09 10:47:58,211 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Set-EnvironmentVariable'.
2025-07-09 10:47:58,217 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Test-ProcessAdminRights'.
2025-07-09 10:47:58,221 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Uninstall-ChocolateyPath'.
2025-07-09 10:47:58,229 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Update-SessionEnvironment'.
2025-07-09 10:47:58,239 37464 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'.
2025-07-09 10:47:58,246 37464 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'.
2025-07-09 10:47:58,251 37464 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'.
2025-07-09 10:47:58,256 37464 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'.
2025-07-09 10:47:58,264 37464 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'.
2025-07-09 10:47:58,271 37464 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'.
2025-07-09 10:47:58,279 37464 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'.
2025-07-09 10:47:58,284 37464 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'.
2025-07-09 10:47:58,289 37464 [INFO ] - VERBOSE: Exporting alias 'refreshenv'.
2025-07-09 10:47:58,304 37464 [DEBUG] - Loading community extensions
2025-07-09 10:47:58,389 37464 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-compatibility\chocolatey-compatibility.psm1'
2025-07-09 10:47:58,393 37464 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-compatibility\chocolatey-compatibility.psm1'.
2025-07-09 10:47:58,536 37464 [DEBUG] - Function 'Get-PackageParameters' exists, ignoring export.
2025-07-09 10:47:58,539 37464 [DEBUG] - Function 'Get-UninstallRegistryKey' exists, ignoring export.
2025-07-09 10:47:58,547 37464 [DEBUG] - Exporting function 'Install-ChocolateyDesktopLink' for backwards compatibility
2025-07-09 10:47:58,557 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'.
2025-07-09 10:47:58,562 37464 [DEBUG] - Exporting function 'Write-ChocolateyFailure' for backwards compatibility
2025-07-09 10:47:58,570 37464 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'.
2025-07-09 10:47:58,576 37464 [DEBUG] - Exporting function 'Write-ChocolateySuccess' for backwards compatibility
2025-07-09 10:47:58,593 37464 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'.
2025-07-09 10:47:58,605 37464 [DEBUG] - Exporting function 'Write-FileUpdateLog' for backwards compatibility
2025-07-09 10:47:58,617 37464 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'.
2025-07-09 10:47:58,643 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'.
2025-07-09 10:47:58,645 37464 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'.
2025-07-09 10:47:58,651 37464 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'.
2025-07-09 10:47:58,656 37464 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'.
2025-07-09 10:47:58,670 37464 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1'
2025-07-09 10:47:58,676 37464 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1'.
2025-07-09 10:47:58,786 37464 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'.
2025-07-09 10:47:58,789 37464 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'.
2025-07-09 10:47:58,796 37464 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'.
2025-07-09 10:47:58,807 37464 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'.
2025-07-09 10:47:58,817 37464 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'.
2025-07-09 10:47:58,821 37464 [INFO ] - VERBOSE: Exporting function 'Register-Application'.
2025-07-09 10:47:58,828 37464 [INFO ] - VERBOSE: Exporting function 'Remove-Process'.
2025-07-09 10:47:58,836 37464 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'.
2025-07-09 10:47:58,841 37464 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'.
2025-07-09 10:47:58,852 37464 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'.
2025-07-09 10:47:58,860 37464 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'.
2025-07-09 10:47:58,868 37464 [INFO ] - VERBOSE: Importing function 'Get-WebContent'.
2025-07-09 10:47:58,875 37464 [INFO ] - VERBOSE: Importing function 'Register-Application'.
2025-07-09 10:47:58,881 37464 [INFO ] - VERBOSE: Importing function 'Remove-Process'.
2025-07-09 10:47:58,889 37464 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-dotnetfx\chocolatey-dotnetfx.psm1'
2025-07-09 10:47:58,894 37464 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-dotnetfx\chocolatey-dotnetfx.psm1'.
2025-07-09 10:47:58,948 37464 [INFO ] - VERBOSE: Exporting function 'Install-DotNetFramework'.
2025-07-09 10:47:58,950 37464 [INFO ] - VERBOSE: Exporting function 'Install-DotNetDevPack'.
2025-07-09 10:47:58,956 37464 [INFO ] - VERBOSE: Importing function 'Install-DotNetDevPack'.
2025-07-09 10:47:58,959 37464 [INFO ] - VERBOSE: Importing function 'Install-DotNetFramework'.
2025-07-09 10:47:58,964 37464 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-misc-helpers\chocolatey-misc-helpers.psm1'
2025-07-09 10:47:58,968 37464 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-misc-helpers\chocolatey-misc-helpers.psm1'.
2025-07-09 10:47:59,073 37464 [INFO ] - VERBOSE: Exporting function 'Enable-AutoPin'.
2025-07-09 10:47:59,076 37464 [INFO ] - VERBOSE: Exporting function 'Show-Patreon'.
2025-07-09 10:47:59,082 37464 [INFO ] - VERBOSE: Exporting function 'Show-PayPal'.
2025-07-09 10:47:59,086 37464 [INFO ] - VERBOSE: Exporting function 'Show-ToastMessage'.
2025-07-09 10:47:59,091 37464 [INFO ] - VERBOSE: Exporting function 'Start-CheckandStop'.
2025-07-09 10:47:59,097 37464 [INFO ] - VERBOSE: Exporting function 'Start-CheckandThrow'.
2025-07-09 10:47:59,102 37464 [INFO ] - VERBOSE: Exporting function 'Start-WaitandStop'.
2025-07-09 10:47:59,106 37464 [INFO ] - VERBOSE: Exporting function 'Start-WaitandStopActual'.
2025-07-09 10:47:59,112 37464 [INFO ] - VERBOSE: Exporting function 'Test-Dependency'.
2025-07-09 10:47:59,116 37464 [INFO ] - VERBOSE: Exporting function 'Test-URL'.
2025-07-09 10:47:59,119 37464 [INFO ] - VERBOSE: Importing function 'Enable-AutoPin'.
2025-07-09 10:47:59,122 37464 [INFO ] - VERBOSE: Importing function 'Show-Patreon'.
2025-07-09 10:47:59,137 37464 [INFO ] - VERBOSE: Importing function 'Show-PayPal'.
2025-07-09 10:47:59,145 37464 [INFO ] - VERBOSE: Importing function 'Show-ToastMessage'.
2025-07-09 10:47:59,149 37464 [INFO ] - VERBOSE: Importing function 'Start-CheckandStop'.
2025-07-09 10:47:59,154 37464 [INFO ] - VERBOSE: Importing function 'Start-CheckandThrow'.
2025-07-09 10:47:59,158 37464 [INFO ] - VERBOSE: Importing function 'Start-WaitandStop'.
2025-07-09 10:47:59,164 37464 [INFO ] - VERBOSE: Importing function 'Start-WaitandStopActual'.
2025-07-09 10:47:59,169 37464 [INFO ] - VERBOSE: Importing function 'Test-Dependency'.
2025-07-09 10:47:59,176 37464 [INFO ] - VERBOSE: Importing function 'Test-URL'.
2025-07-09 10:47:59,183 37464 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-os-dependency\chocolatey-os-dependency.psm1'
2025-07-09 10:47:59,188 37464 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-os-dependency\chocolatey-os-dependency.psm1'.
2025-07-09 10:47:59,218 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win11'.
2025-07-09 10:47:59,221 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win10'.
2025-07-09 10:47:59,226 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win81'.
2025-07-09 10:47:59,231 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win80'.
2025-07-09 10:47:59,238 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win8'.
2025-07-09 10:47:59,244 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win7'.
2025-07-09 10:47:59,250 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-WinMinimumBuild'.
2025-07-09 10:47:59,254 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-WinRequiredBuild'.
2025-07-09 10:47:59,259 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win10'.
2025-07-09 10:47:59,263 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win11'.
2025-07-09 10:47:59,272 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win7'.
2025-07-09 10:47:59,279 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win8'.
2025-07-09 10:47:59,285 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win80'.
2025-07-09 10:47:59,291 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win81'.
2025-07-09 10:47:59,297 37464 [INFO ] - VERBOSE: Importing function 'Confirm-WinMinimumBuild'.
2025-07-09 10:47:59,303 37464 [INFO ] - VERBOSE: Importing function 'Confirm-WinRequiredBuild'.
2025-07-09 10:47:59,310 37464 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-visualstudio\chocolatey-visualstudio.extension.psm1'
2025-07-09 10:47:59,316 37464 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-visualstudio\chocolatey-visualstudio.extension.psm1'.
2025-07-09 10:47:59,719 37464 [INFO ] - VERBOSE: Exporting function 'Add-VisualStudioComponent'.
2025-07-09 10:47:59,726 37464 [INFO ] - VERBOSE: Exporting function 'Add-VisualStudioWorkload'.
2025-07-09 10:47:59,729 37464 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstaller'.
2025-07-09 10:47:59,734 37464 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstallerHealth'.
2025-07-09 10:47:59,740 37464 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstance'.
2025-07-09 10:47:59,746 37464 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioVsixInstaller'.
2025-07-09 10:47:59,750 37464 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudio'.
2025-07-09 10:47:59,755 37464 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudioInstaller'.
2025-07-09 10:47:59,760 37464 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudioVsixExtension'.
2025-07-09 10:47:59,766 37464 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioComponent'.
2025-07-09 10:47:59,772 37464 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioProduct'.
2025-07-09 10:47:59,776 37464 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioWorkload'.
2025-07-09 10:47:59,781 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-VisualStudio'.
2025-07-09 10:47:59,785 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-VisualStudioVsixExtension'.
2025-07-09 10:47:59,789 37464 [INFO ] - VERBOSE: Importing function 'Add-VisualStudioComponent'.
2025-07-09 10:47:59,792 37464 [INFO ] - VERBOSE: Importing function 'Add-VisualStudioWorkload'.
2025-07-09 10:47:59,797 37464 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstaller'.
2025-07-09 10:47:59,803 37464 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstallerHealth'.
2025-07-09 10:47:59,809 37464 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstance'.
2025-07-09 10:47:59,815 37464 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioVsixInstaller'.
2025-07-09 10:47:59,819 37464 [INFO ] - VERBOSE: Importing function 'Install-VisualStudio'.
2025-07-09 10:47:59,824 37464 [INFO ] - VERBOSE: Importing function 'Install-VisualStudioInstaller'.
2025-07-09 10:47:59,831 37464 [INFO ] - VERBOSE: Importing function 'Install-VisualStudioVsixExtension'.
2025-07-09 10:47:59,837 37464 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioComponent'.
2025-07-09 10:47:59,843 37464 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioProduct'.
2025-07-09 10:47:59,849 37464 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioWorkload'.
2025-07-09 10:47:59,853 37464 [INFO ] - VERBOSE: Importing function 'Uninstall-VisualStudio'.
2025-07-09 10:47:59,857 37464 [INFO ] - VERBOSE: Importing function 'Uninstall-VisualStudioVsixExtension'.
2025-07-09 10:47:59,865 37464 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1'
2025-07-09 10:47:59,870 37464 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1'.
2025-07-09 10:47:59,981 37464 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'.
2025-07-09 10:47:59,983 37464 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'.
2025-07-09 10:47:59,988 37464 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'.
2025-07-09 10:47:59,992 37464 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'.
2025-07-09 10:48:00,006 37464 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'.
2025-07-09 10:48:00,022 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'.
2025-07-09 10:48:00,035 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyConfigValue'.
2025-07-09 10:48:00,044 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyPath'.
2025-07-09 10:48:00,053 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'.
2025-07-09 10:48:00,084 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'.
2025-07-09 10:48:00,093 37464 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'.
2025-07-09 10:48:00,102 37464 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'.
2025-07-09 10:48:00,111 37464 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'.
2025-07-09 10:48:00,117 37464 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'.
2025-07-09 10:48:00,125 37464 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'.
2025-07-09 10:48:00,132 37464 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'.
2025-07-09 10:48:00,138 37464 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'.
2025-07-09 10:48:00,145 37464 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'.
2025-07-09 10:48:00,151 37464 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'.
2025-07-09 10:48:00,156 37464 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'.
2025-07-09 10:48:00,171 37464 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'.
2025-07-09 10:48:00,178 37464 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'.
2025-07-09 10:48:00,184 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'.
2025-07-09 10:48:00,189 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'.
2025-07-09 10:48:00,194 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'.
2025-07-09 10:48:00,199 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'.
2025-07-09 10:48:00,206 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'.
2025-07-09 10:48:00,212 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'.
2025-07-09 10:48:00,217 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'.
2025-07-09 10:48:00,222 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'.
2025-07-09 10:48:00,227 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'.
2025-07-09 10:48:00,232 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'.
2025-07-09 10:48:00,239 37464 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'.
2025-07-09 10:48:00,250 37464 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'.
2025-07-09 10:48:00,255 37464 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'.
2025-07-09 10:48:00,263 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'.
2025-07-09 10:48:00,274 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'.
2025-07-09 10:48:00,285 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'.
2025-07-09 10:48:00,292 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'.
2025-07-09 10:48:00,302 37464 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'.
2025-07-09 10:48:00,308 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'.
2025-07-09 10:48:00,316 37464 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'.
2025-07-09 10:48:00,321 37464 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'.
2025-07-09 10:48:00,328 37464 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'.
2025-07-09 10:48:00,336 37464 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'.
2025-07-09 10:48:00,343 37464 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'.
2025-07-09 10:48:00,352 37464 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'.
2025-07-09 10:48:00,362 37464 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'.
2025-07-09 10:48:00,370 37464 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'.
2025-07-09 10:48:00,380 37464 [INFO ] - VERBOSE: Exporting function 'Register-Application'.
2025-07-09 10:48:00,384 37464 [INFO ] - VERBOSE: Exporting function 'Remove-Process'.
2025-07-09 10:48:00,388 37464 [INFO ] - VERBOSE: Exporting function 'Install-DotNetDevPack'.
2025-07-09 10:48:00,395 37464 [INFO ] - VERBOSE: Exporting function 'Install-DotNetFramework'.
2025-07-09 10:48:00,402 37464 [INFO ] - VERBOSE: Exporting function 'Enable-AutoPin'.
2025-07-09 10:48:00,410 37464 [INFO ] - VERBOSE: Exporting function 'Show-Patreon'.
2025-07-09 10:48:00,418 37464 [INFO ] - VERBOSE: Exporting function 'Show-PayPal'.
2025-07-09 10:48:00,423 37464 [INFO ] - VERBOSE: Exporting function 'Show-ToastMessage'.
2025-07-09 10:48:00,435 37464 [INFO ] - VERBOSE: Exporting function 'Start-CheckandStop'.
2025-07-09 10:48:00,443 37464 [INFO ] - VERBOSE: Exporting function 'Start-CheckandThrow'.
2025-07-09 10:48:00,452 37464 [INFO ] - VERBOSE: Exporting function 'Start-WaitandStop'.
2025-07-09 10:48:00,465 37464 [INFO ] - VERBOSE: Exporting function 'Start-WaitandStopActual'.
2025-07-09 10:48:00,476 37464 [INFO ] - VERBOSE: Exporting function 'Test-Dependency'.
2025-07-09 10:48:00,484 37464 [INFO ] - VERBOSE: Exporting function 'Test-URL'.
2025-07-09 10:48:00,491 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win10'.
2025-07-09 10:48:00,500 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win11'.
2025-07-09 10:48:00,507 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win7'.
2025-07-09 10:48:00,514 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win8'.
2025-07-09 10:48:00,521 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win80'.
2025-07-09 10:48:00,526 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win81'.
2025-07-09 10:48:00,531 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-WinMinimumBuild'.
2025-07-09 10:48:00,537 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-WinRequiredBuild'.
2025-07-09 10:48:00,542 37464 [INFO ] - VERBOSE: Exporting function 'Add-VisualStudioComponent'.
2025-07-09 10:48:00,549 37464 [INFO ] - VERBOSE: Exporting function 'Add-VisualStudioWorkload'.
2025-07-09 10:48:00,559 37464 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstaller'.
2025-07-09 10:48:00,571 37464 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstallerHealth'.
2025-07-09 10:48:00,579 37464 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstance'.
2025-07-09 10:48:00,586 37464 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioVsixInstaller'.
2025-07-09 10:48:00,591 37464 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudio'.
2025-07-09 10:48:00,598 37464 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudioInstaller'.
2025-07-09 10:48:00,608 37464 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudioVsixExtension'.
2025-07-09 10:48:00,615 37464 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioComponent'.
2025-07-09 10:48:00,620 37464 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioProduct'.
2025-07-09 10:48:00,624 37464 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioWorkload'.
2025-07-09 10:48:00,630 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-VisualStudio'.
2025-07-09 10:48:00,636 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-VisualStudioVsixExtension'.
2025-07-09 10:48:00,640 37464 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'.
2025-07-09 10:48:00,646 37464 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'.
2025-07-09 10:48:00,652 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariable'.
2025-07-09 10:48:00,658 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariableNames'.
2025-07-09 10:48:00,664 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Install-ChocolateyPath'.
2025-07-09 10:48:00,672 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Set-EnvironmentVariable'.
2025-07-09 10:48:00,680 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Test-ProcessAdminRights'.
2025-07-09 10:48:00,686 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Uninstall-ChocolateyPath'.
2025-07-09 10:48:00,694 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Update-SessionEnvironment'.
2025-07-09 10:48:00,702 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariable'.
2025-07-09 10:48:00,713 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariableNames'.
2025-07-09 10:48:00,719 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Install-ChocolateyPath'.
2025-07-09 10:48:00,726 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Set-EnvironmentVariable'.
2025-07-09 10:48:00,735 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Test-ProcessAdminRights'.
2025-07-09 10:48:00,743 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Uninstall-ChocolateyPath'.
2025-07-09 10:48:00,748 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Update-SessionEnvironment'.
2025-07-09 10:48:00,754 37464 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'.
2025-07-09 10:48:00,760 37464 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'.
2025-07-09 10:48:00,767 37464 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'.
2025-07-09 10:48:00,775 37464 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'.
2025-07-09 10:48:00,781 37464 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'.
2025-07-09 10:48:00,787 37464 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'.
2025-07-09 10:48:00,792 37464 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'.
2025-07-09 10:48:00,798 37464 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'.
2025-07-09 10:48:00,809 37464 [INFO ] - VERBOSE: Exporting alias 'refreshenv'.
2025-07-09 10:48:00,815 37464 [INFO ] - VERBOSE: Importing cmdlet 'Get-EnvironmentVariable'.
2025-07-09 10:48:00,820 37464 [INFO ] - VERBOSE: Importing cmdlet 'Get-EnvironmentVariableNames'.
2025-07-09 10:48:00,825 37464 [INFO ] - VERBOSE: Importing cmdlet 'Install-ChocolateyPath'.
2025-07-09 10:48:00,831 37464 [INFO ] - VERBOSE: Importing cmdlet 'Set-EnvironmentVariable'.
2025-07-09 10:48:00,837 37464 [INFO ] - VERBOSE: Importing cmdlet 'Test-ProcessAdminRights'.
2025-07-09 10:48:00,844 37464 [INFO ] - VERBOSE: Importing cmdlet 'Uninstall-ChocolateyPath'.
2025-07-09 10:48:00,850 37464 [INFO ] - VERBOSE: Importing cmdlet 'Update-SessionEnvironment'.
2025-07-09 10:48:00,856 37464 [INFO ] - VERBOSE: Importing function 'Add-VisualStudioComponent'.
2025-07-09 10:48:00,862 37464 [INFO ] - VERBOSE: Importing function 'Add-VisualStudioWorkload'.
2025-07-09 10:48:00,873 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win10'.
2025-07-09 10:48:00,882 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win11'.
2025-07-09 10:48:00,889 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win7'.
2025-07-09 10:48:00,899 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win8'.
2025-07-09 10:48:00,916 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win80'.
2025-07-09 10:48:00,924 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win81'.
2025-07-09 10:48:00,945 37464 [INFO ] - VERBOSE: Importing function 'Confirm-WinMinimumBuild'.
2025-07-09 10:48:00,956 37464 [INFO ] - VERBOSE: Importing function 'Confirm-WinRequiredBuild'.
2025-07-09 10:48:00,969 37464 [INFO ] - VERBOSE: Importing function 'Enable-AutoPin'.
2025-07-09 10:48:00,976 37464 [INFO ] - VERBOSE: Importing function 'Format-FileSize'.
2025-07-09 10:48:00,983 37464 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'.
2025-07-09 10:48:00,989 37464 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'.
2025-07-09 10:48:00,994 37464 [INFO ] - VERBOSE: Importing function 'Get-ChecksumValid'.
2025-07-09 10:48:01,001 37464 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyConfigValue'.
2025-07-09 10:48:01,006 37464 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyPath'.
2025-07-09 10:48:01,014 37464 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyUnzip'.
2025-07-09 10:48:01,018 37464 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyWebFile'.
2025-07-09 10:48:01,023 37464 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'.
2025-07-09 10:48:01,030 37464 [INFO ] - VERBOSE: Importing function 'Get-FtpFile'.
2025-07-09 10:48:01,036 37464 [INFO ] - VERBOSE: Importing function 'Get-OSArchitectureWidth'.
2025-07-09 10:48:01,040 37464 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'.
2025-07-09 10:48:01,046 37464 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'.
2025-07-09 10:48:01,051 37464 [INFO ] - VERBOSE: Importing function 'Get-PackageParametersBuiltIn'.
2025-07-09 10:48:01,057 37464 [INFO ] - VERBOSE: Importing function 'Get-ToolsLocation'.
2025-07-09 10:48:01,062 37464 [INFO ] - VERBOSE: Importing function 'Get-UACEnabled'.
2025-07-09 10:48:01,067 37464 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'.
2025-07-09 10:48:01,073 37464 [INFO ] - VERBOSE: Importing function 'Get-VirusCheckValid'.
2025-07-09 10:48:01,081 37464 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstaller'.
2025-07-09 10:48:01,087 37464 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstallerHealth'.
2025-07-09 10:48:01,096 37464 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstance'.
2025-07-09 10:48:01,102 37464 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioVsixInstaller'.
2025-07-09 10:48:01,109 37464 [INFO ] - VERBOSE: Importing function 'Get-WebContent'.
2025-07-09 10:48:01,115 37464 [INFO ] - VERBOSE: Importing function 'Get-WebFile'.
2025-07-09 10:48:01,120 37464 [INFO ] - VERBOSE: Importing function 'Get-WebFileName'.
2025-07-09 10:48:01,125 37464 [INFO ] - VERBOSE: Importing function 'Get-WebHeaders'.
2025-07-09 10:48:01,138 37464 [INFO ] - VERBOSE: Importing function 'Install-BinFile'.
2025-07-09 10:48:01,144 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'.
2025-07-09 10:48:01,150 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyEnvironmentVariable'.
2025-07-09 10:48:01,155 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyExplorerMenuItem'.
2025-07-09 10:48:01,160 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyFileAssociation'.
2025-07-09 10:48:01,166 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyInstallPackage'.
2025-07-09 10:48:01,172 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPackage'.
2025-07-09 10:48:01,177 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPinnedTaskBarItem'.
2025-07-09 10:48:01,182 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPowershellCommand'.
2025-07-09 10:48:01,187 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyShortcut'.
2025-07-09 10:48:01,193 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyVsixPackage'.
2025-07-09 10:48:01,203 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyZipPackage'.
2025-07-09 10:48:01,210 37464 [INFO ] - VERBOSE: Importing function 'Install-DotNetDevPack'.
2025-07-09 10:48:01,219 37464 [INFO ] - VERBOSE: Importing function 'Install-DotNetFramework'.
2025-07-09 10:48:01,227 37464 [INFO ] - VERBOSE: Importing function 'Install-VisualStudio'.
2025-07-09 10:48:01,244 37464 [INFO ] - VERBOSE: Importing function 'Install-VisualStudioInstaller'.
2025-07-09 10:48:01,254 37464 [INFO ] - VERBOSE: Importing function 'Install-VisualStudioVsixExtension'.
2025-07-09 10:48:01,259 37464 [INFO ] - VERBOSE: Importing function 'Install-Vsix'.
2025-07-09 10:48:01,268 37464 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'.
2025-07-09 10:48:01,273 37464 [INFO ] - VERBOSE: Importing function 'Register-Application'.
2025-07-09 10:48:01,282 37464 [INFO ] - VERBOSE: Importing function 'Remove-Process'.
2025-07-09 10:48:01,288 37464 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioComponent'.
2025-07-09 10:48:01,302 37464 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioProduct'.
2025-07-09 10:48:01,316 37464 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioWorkload'.
2025-07-09 10:48:01,331 37464 [INFO ] - VERBOSE: Importing function 'Set-PowerShellExitCode'.
2025-07-09 10:48:01,346 37464 [INFO ] - VERBOSE: Importing function 'Show-Patreon'.
2025-07-09 10:48:01,375 37464 [INFO ] - VERBOSE: Importing function 'Show-PayPal'.
2025-07-09 10:48:01,386 37464 [INFO ] - VERBOSE: Importing function 'Show-ToastMessage'.
2025-07-09 10:48:01,396 37464 [INFO ] - VERBOSE: Importing function 'Start-CheckandStop'.
2025-07-09 10:48:01,407 37464 [INFO ] - VERBOSE: Importing function 'Start-CheckandThrow'.
2025-07-09 10:48:01,417 37464 [INFO ] - VERBOSE: Importing function 'Start-ChocolateyProcessAsAdmin'.
2025-07-09 10:48:01,423 37464 [INFO ] - VERBOSE: Importing function 'Start-WaitandStop'.
2025-07-09 10:48:01,429 37464 [INFO ] - VERBOSE: Importing function 'Start-WaitandStopActual'.
2025-07-09 10:48:01,436 37464 [INFO ] - VERBOSE: Importing function 'Test-Dependency'.
2025-07-09 10:48:01,443 37464 [INFO ] - VERBOSE: Importing function 'Test-URL'.
2025-07-09 10:48:01,448 37464 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'.
2025-07-09 10:48:01,454 37464 [INFO ] - VERBOSE: Importing function 'Uninstall-BinFile'.
2025-07-09 10:48:01,460 37464 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyEnvironmentVariable'.
2025-07-09 10:48:01,466 37464 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyPackage'.
2025-07-09 10:48:01,473 37464 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyZipPackage'.
2025-07-09 10:48:01,481 37464 [INFO ] - VERBOSE: Importing function 'Uninstall-VisualStudio'.
2025-07-09 10:48:01,487 37464 [INFO ] - VERBOSE: Importing function 'Uninstall-VisualStudioVsixExtension'.
2025-07-09 10:48:01,491 37464 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'.
2025-07-09 10:48:01,498 37464 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'.
2025-07-09 10:48:01,505 37464 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'.
2025-07-09 10:48:01,513 37464 [INFO ] - VERBOSE: Importing function 'Write-FunctionCallLogMessage'.
2025-07-09 10:48:01,531 37464 [INFO ] - VERBOSE: Importing alias 'Add-BinFile'.
2025-07-09 10:48:01,542 37464 [INFO ] - VERBOSE: Importing alias 'Generate-BinFile'.
2025-07-09 10:48:01,552 37464 [INFO ] - VERBOSE: Importing alias 'Get-InstallRegistryKey'.
2025-07-09 10:48:01,564 37464 [INFO ] - VERBOSE: Importing alias 'Get-OSBitness'.
2025-07-09 10:48:01,581 37464 [INFO ] - VERBOSE: Importing alias 'Get-ProcessorBits'.
2025-07-09 10:48:01,592 37464 [INFO ] - VERBOSE: Importing alias 'Invoke-ChocolateyProcess'.
2025-07-09 10:48:01,602 37464 [INFO ] - VERBOSE: Importing alias 'refreshenv'.
2025-07-09 10:48:01,617 37464 [INFO ] - VERBOSE: Importing alias 'Remove-BinFile'.
2025-07-09 10:48:01,624 37464 [INFO ] - VERBOSE: Importing alias 'Start-ChocolateyProcess'.
2025-07-09 10:48:01,787 37464 [DEBUG] - ---------------------------Script Execution---------------------------
2025-07-09 10:48:01,797 37464 [DEBUG] - Running 'ChocolateyScriptRunner' for microsoft-windows-terminal v1.22.11751 with packageScript 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1', packageFolder:'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal', installArguments: '', packageParameters: '', preRunHookScripts: '', postRunHookScripts: '',
2025-07-09 10:48:01,837 37464 [DEBUG] - Running package script 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'
2025-07-09 10:48:02,711 37464 [INFO ] - VERBOSE: Exportfunktion "Get-AppxLastError".
2025-07-09 10:48:02,715 37464 [INFO ] - VERBOSE: Exportfunktion "Get-AppxLog".
2025-07-09 10:48:02,722 37464 [INFO ] - VERBOSE: Exportieren des Alias "Add-AppPackage".
2025-07-09 10:48:02,728 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackage".
2025-07-09 10:48:02,735 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageAutoUpdateSettings".
2025-07-09 10:48:02,741 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageManifest".
2025-07-09 10:48:02,745 37464 [INFO ] - VERBOSE: Exportieren des Alias "Remove-AppPackage".
2025-07-09 10:48:02,751 37464 [INFO ] - VERBOSE: Exportieren des Alias "Remove-AppPackageAutoUpdateSettings".
2025-07-09 10:48:02,755 37464 [INFO ] - VERBOSE: Exportieren des Alias "Reset-AppPackage".
2025-07-09 10:48:02,760 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageVolume".
2025-07-09 10:48:02,766 37464 [INFO ] - VERBOSE: Exportieren des Alias "Add-AppPackageVolume".
2025-07-09 10:48:02,772 37464 [INFO ] - VERBOSE: Exportieren des Alias "Remove-AppPackageVolume".
2025-07-09 10:48:02,778 37464 [INFO ] - VERBOSE: Exportieren des Alias "Mount-AppPackageVolume".
2025-07-09 10:48:02,786 37464 [INFO ] - VERBOSE: Exportieren des Alias "Dismount-AppPackageVolume".
2025-07-09 10:48:02,790 37464 [INFO ] - VERBOSE: Exportieren des Alias "Move-AppPackage".
2025-07-09 10:48:02,798 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageDefaultVolume".
2025-07-09 10:48:02,806 37464 [INFO ] - VERBOSE: Exportieren des Alias "Set-AppPackageDefaultVolume".
2025-07-09 10:48:02,835 37464 [INFO ] - VERBOSE: Exportieren des Alias "Set-AppPackageAutoUpdateSettings".
2025-07-09 10:48:02,844 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageLastError".
2025-07-09 10:48:02,850 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageLog".
2025-07-09 10:48:02,854 37464 [INFO ] - VERBOSE: Exportieren des Alias "Add-MsixPackage".
2025-07-09 10:48:02,860 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixPackage".
2025-07-09 10:48:02,867 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixPackageAutoUpdateSettings".
2025-07-09 10:48:02,873 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixPackageManifest".
2025-07-09 10:48:02,879 37464 [INFO ] - VERBOSE: Exportieren des Alias "Remove-MsixPackage".
2025-07-09 10:48:02,884 37464 [INFO ] - VERBOSE: Exportieren des Alias "Remove-MsixPackageAutoUpdateSettings".
2025-07-09 10:48:02,890 37464 [INFO ] - VERBOSE: Exportieren des Alias "Reset-MsixPackage".
2025-07-09 10:48:02,895 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixPackageVolume".
2025-07-09 10:48:02,902 37464 [INFO ] - VERBOSE: Exportieren des Alias "Add-MsixPackageVolume".
2025-07-09 10:48:02,908 37464 [INFO ] - VERBOSE: Exportieren des Alias "Remove-MsixPackageVolume".
2025-07-09 10:48:02,914 37464 [INFO ] - VERBOSE: Exportieren des Alias "Mount-MsixPackageVolume".
2025-07-09 10:48:02,920 37464 [INFO ] - VERBOSE: Exportieren des Alias "Dismount-MsixPackageVolume".
2025-07-09 10:48:02,924 37464 [INFO ] - VERBOSE: Exportieren des Alias "Move-MsixPackage".
2025-07-09 10:48:02,931 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixPackageDefaultVolume".
2025-07-09 10:48:02,938 37464 [INFO ] - VERBOSE: Exportieren des Alias "Set-MsixPackageDefaultVolume".
2025-07-09 10:48:02,943 37464 [INFO ] - VERBOSE: Exportieren des Alias "Set-MsixPackageAutoUpdateSettings".
2025-07-09 10:48:02,950 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixPackageLastError".
2025-07-09 10:48:02,956 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixPackageLog".
2025-07-09 10:48:02,961 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixVolume".
2025-07-09 10:48:02,967 37464 [INFO ] - VERBOSE: Exportieren des Alias "Add-MsixVolume".
2025-07-09 10:48:02,972 37464 [INFO ] - VERBOSE: Exportieren des Alias "Remove-MsixVolume".
2025-07-09 10:48:02,977 37464 [INFO ] - VERBOSE: Exportieren des Alias "Mount-MsixVolume".
2025-07-09 10:48:02,984 37464 [INFO ] - VERBOSE: Exportieren des Alias "Dismount-MsixVolume".
2025-07-09 10:48:02,992 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixDefaultVolume".
2025-07-09 10:48:03,003 37464 [INFO ] - VERBOSE: Exportieren des Alias "Set-MsixDefaultVolume".
2025-07-09 10:48:03,010 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixLastError".
2025-07-09 10:48:03,018 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixLog".
2025-07-09 10:48:03,156 37464 [ERROR] - ERROR: The type initializer for '<Module>' threw an exception.
2025-07-09 10:48:03,197 37464 [DEBUG] - Built-in PowerShell host called with ['[System.Threading.Thread]::CurrentThread.CurrentCulture = '';[System.Threading.Thread]::CurrentThread.CurrentUICulture = '';[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::SystemDefault; & import-module -name 'C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1'; & 'C:\ProgramData\chocolatey\helpers\chocolateyScriptRunner.ps1' -packageScript 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1' -installArguments '' -packageParameters '' -preRunHookScripts $null -postRunHookScripts $null'] exited with '-1'.
2025-07-09 10:48:03,205 37464 [DEBUG] - Calling command ['"C:\WINDOWS\System32\shutdown.exe" /a']
2025-07-09 10:48:03,381 37464 [DEBUG] - Command ['"C:\WINDOWS\System32\shutdown.exe" /a'] exited with '1116'
2025-07-09 10:48:04,123 37464 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal'
2025-07-09 10:48:04,188 37464 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nupkg'
  with checksum '7F4D7FF7808154134AD3DEE2317BE7CE'
2025-07-09 10:48:04,191 37464 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nuspec'
  with checksum 'FB14EC28356148BCD2EADE01C8A63FA7'
2025-07-09 10:48:04,195 37464 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\LICENSE.txt'
  with checksum 'B377DB62B5A030F560ED5BBCA25EA5BE'
2025-07-09 10:48:04,198 37464 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\VERIFICATION.txt'
  with checksum 'B5C5FA0707E55C92868447CD07559B96'
2025-07-09 10:48:04,204 37464 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'
  with checksum '1CC430FE80199B413179810ED0EA5B26'
2025-07-09 10:48:04,208 37464 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyUninstall.ps1'
  with checksum 'B3BDB5539D0A9CC6AB3716A7F75031FE'
2025-07-09 10:48:04,277 37464 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\Microsoft.WindowsTerminal_1.22.11751.0_8wekyb3d8bbwe.msixbundle'
  with checksum '81233ACCFFFFAC5AAD512BF82D0A46A9'
2025-07-09 10:48:04,295 37464 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.22.11751\.arguments".
2025-07-09 10:48:04,296 37464 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.22.11751\.extra".
2025-07-09 10:48:04,302 37464 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.22.11751\.version".
2025-07-09 10:48:04,306 37464 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.22.11751\.sxs".
2025-07-09 10:48:04,312 37464 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.22.11751\.pin".
2025-07-09 10:48:04,316 37464 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.22.11751\.deploymentLocation".
2025-07-09 10:48:04,328 37464 [DEBUG] - Attempting to delete directory "C:\ProgramData\chocolatey\lib-bad\microsoft-windows-terminal".
2025-07-09 10:48:05,004 37464 [DEBUG] - Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers...
2025-07-09 10:48:05,011 37464 [ERROR] - The install of microsoft-windows-terminal was NOT successful.
2025-07-09 10:48:05,040 37464 [ERROR] - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'.
 See log for details.
2025-07-09 10:48:05,055 37464 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib-bad\microsoft-windows-terminal".
2025-07-09 10:48:05,062 37464 [DEBUG] - Moving C:\ProgramData\chocolatey\lib\microsoft-windows-terminal to C:\ProgramData\chocolatey\lib-bad\microsoft-windows-terminal\1.22.11751
2025-07-09 10:48:05,080 37464 [DEBUG] - Moving 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal'
 to 'C:\ProgramData\chocolatey\lib-bad\microsoft-windows-terminal\1.22.11751'
2025-07-09 10:48:07,128 37464 [WARN ] - 
Chocolatey installed 0/1 packages. 1 packages failed.
 See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).
2025-07-09 10:48:07,133 37464 [INFO ] - 
2025-07-09 10:48:07,138 37464 [ERROR] - Failures
2025-07-09 10:48:07,143 37464 [ERROR] -  - microsoft-windows-terminal (exited -1) - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'.
 See log for details.
2025-07-09 10:48:07,148 37464 [DEBUG] - Sending message 'PostRunMessage' out if there are subscribers...
2025-07-09 10:48:07,152 37464 [DEBUG] - Exiting with -1

For choco install winget, this fails:


2025-07-09 10:44:37,088 52344 [ERROR] - ERROR: The type initializer for '<Module>' threw an exception.
2025-07-09 10:44:37,092 52344 [DEBUG] - Built-in PowerShell host called with ['[System.Threading.Thread]::CurrentThread.CurrentCulture = '';[System.Threading.Thread]::CurrentThread.CurrentUICulture = '';[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::SystemDefault; & import-module -name 'C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1'; & 'C:\ProgramData\chocolatey\helpers\chocolateyScriptRunner.ps1' -packageScript 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00\tools\chocolateyInstall.ps1' -installArguments '' -packageParameters '' -preRunHookScripts $null -postRunHookScripts $null'] exited with '-1'.
2025-07-09 10:44:37,096 52344 [DEBUG] - Calling command ['"C:\WINDOWS\System32\shutdown.exe" /a']
2025-07-09 10:44:37,257 52344 [DEBUG] - Command ['"C:\WINDOWS\System32\shutdown.exe" /a'] exited with '1116'
2025-07-09 10:44:37,876 52344 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00'
2025-07-09 10:44:37,878 52344 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00\microsoft-vclibs-140-00.nupkg'
  with checksum 'F938060D0040F714B589292C72BB0BB2'
2025-07-09 10:44:37,882 52344 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00\microsoft-vclibs-140-00.nuspec'
  with checksum '9DD51A0EA27F908BA0AD2DDAE326B9D6'
2025-07-09 10:44:37,885 52344 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00\tools\chocolateyInstall.ps1'
  with checksum '88A76173F3BA03BE5F1107A2D62F8C31'
2025-07-09 10:44:37,888 52344 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00\tools\chocolateyUninstall.ps1'
  with checksum 'B60687BD97F140CA695FD66998CD69BE'
2025-07-09 10:44:37,890 52344 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00\tools\microsoft-vclibs-140-00-helpers.ps1'
  with checksum '999DB30085D4AA6B79283E43274F3D7E'
2025-07-09 10:44:37,895 52344 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-vclibs-140-00.14.0.33321\.arguments".
2025-07-09 10:44:37,898 52344 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-vclibs-140-00.14.0.33321\.extra".
2025-07-09 10:44:37,902 52344 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-vclibs-140-00.14.0.33321\.version".
2025-07-09 10:44:37,906 52344 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-vclibs-140-00.14.0.33321\.sxs".
2025-07-09 10:44:37,911 52344 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-vclibs-140-00.14.0.33321\.pin".
2025-07-09 10:44:37,915 52344 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-vclibs-140-00.14.0.33321\.deploymentLocation".
2025-07-09 10:44:37,920 52344 [DEBUG] - Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers...
2025-07-09 10:44:37,923 52344 [ERROR] - The install of microsoft-vclibs-140-00 was NOT successful.
2025-07-09 10:44:37,928 52344 [ERROR] - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00\tools\chocolateyInstall.ps1'.
 See log for details.
2025-07-09 10:44:37,933 52344 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib-bad\microsoft-vclibs-140-00".
2025-07-09 10:44:37,937 52344 [DEBUG] - Moving C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00 to C:\ProgramData\chocolatey\lib-bad\microsoft-vclibs-140-00\14.0.33321
2025-07-09 10:44:37,940 52344 [DEBUG] - Moving 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00'
 to 'C:\ProgramData\chocolatey\lib-bad\microsoft-vclibs-140-00\14.0.33321'
2025-07-09 10:44:39,977 52344 [ERROR] - Failed to install winget-cli because a previous dependency failed.
2025-07-09 10:44:39,981 52344 [ERROR] - Failed to install winget because a previous dependency failed.
2025-07-09 10:44:39,995 52344 [WARN ] - 
Chocolatey installed 0/4 packages. 4 packages failed.
 See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).
2025-07-09 10:44:39,997 52344 [INFO ] - 
2025-07-09 10:44:40,001 52344 [ERROR] - Failures
2025-07-09 10:44:40,006 52344 [ERROR] -  - microsoft-ui-xaml-2-7 (exited -1) - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-ui-xaml-2-7\tools\chocolateyInstall.ps1'.
 See log for details.
2025-07-09 10:44:40,008 52344 [ERROR] -  - microsoft-vclibs-140-00 (exited -1) - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00\tools\chocolateyInstall.ps1'.
 See log for details.
2025-07-09 10:44:40,012 52344 [ERROR] -  - winget - Failed to install winget because a previous dependency failed.
2025-07-09 10:44:40,016 52344 [ERROR] -  - winget-cli - Failed to install winget-cli because a previous dependency failed.
@rklec commented on GitHub (Jul 9, 2025): Also fails for me, same as `winget`: ``` 2025-07-09 10:47:39,242 37464 [DEBUG] - Resolving resource ListResource for source https://chocolatey.org/api/v2/ 2025-07-09 10:47:39,695 37464 [INFO ] - [NuGet] CACHE https://community.chocolatey.org/api/v2/$metadata 2025-07-09 10:47:39,720 37464 [INFO ] - [NuGet] CACHE https://community.chocolatey.org/api/v2/Packages()?$filter=(tolower(Id)%20eq%20'microsoft-windows-terminal')%20and%20IsLatestVersion&semVerLevel=2.0.0 2025-07-09 10:47:39,750 37464 [DEBUG] - Resolving resource DependencyInfoResource for source https://chocolatey.org/api/v2/ 2025-07-09 10:47:39,761 37464 [INFO ] - [NuGet] CACHE https://community.chocolatey.org/api/v2/Packages(Id='microsoft-windows-terminal',Version='1.22.11751') 2025-07-09 10:47:39,788 37464 [INFO ] - [NuGet] CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='vcredist140'&semVerLevel=2.0.0 2025-07-09 10:47:39,798 37464 [INFO ] - [NuGet] CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='vcredist140'&$skiptoken='1746841762273','14.32.31326','vcredist140' 2025-07-09 10:47:39,806 37464 [INFO ] - [NuGet] CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='vcredist140'&$skiptoken='1746646469087','14.12.25810','vcredist140' 2025-07-09 10:47:39,823 37464 [INFO ] - [NuGet] CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='chocolatey-core.extension'&semVerLevel=2.0.0 2025-07-09 10:47:39,830 37464 [INFO ] - [NuGet] CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='chocolatey-core.extension'&$skiptoken='1746806669680','1.2.0','chocolatey-core.extension' 2025-07-09 10:47:39,836 37464 [INFO ] - [NuGet] CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='chocolatey-compatibility.extension'&semVerLevel=2.0.0 2025-07-09 10:47:39,842 37464 [INFO ] - [NuGet] CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='chocolatey-compatibility.extension'&$skiptoken='1751324700520','1.0.0','chocolatey-compatibility.extension' 2025-07-09 10:47:39,848 37464 [INFO ] - [NuGet] CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='kb3033929'&semVerLevel=2.0.0 2025-07-09 10:47:39,853 37464 [INFO ] - [NuGet] CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='kb3033929'&$skiptoken='1746651865990','1.0.2','kb3033929' 2025-07-09 10:47:39,856 37464 [INFO ] - [NuGet] CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='chocolatey-windowsupdate.extension'&semVerLevel=2.0.0 2025-07-09 10:47:39,862 37464 [INFO ] - [NuGet] CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='chocolatey-windowsupdate.extension'&$skiptoken='1746634766613','1.0.1','chocolatey-windowsupdate.extension' 2025-07-09 10:47:39,866 37464 [INFO ] - [NuGet] CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='kb3035131'&semVerLevel=2.0.0 2025-07-09 10:47:39,871 37464 [INFO ] - [NuGet] CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='kb3035131'&$skiptoken='1747191880063','1.0.0','kb3035131' 2025-07-09 10:47:39,881 37464 [INFO ] - [NuGet] CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='kb2919355'&semVerLevel=2.0.0 2025-07-09 10:47:39,885 37464 [INFO ] - [NuGet] CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='kb2919355'&$skiptoken='1747307069917','1.0.20160719','kb2919355' 2025-07-09 10:47:39,890 37464 [INFO ] - [NuGet] CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='kb2919442'&semVerLevel=2.0.0 2025-07-09 10:47:39,894 37464 [INFO ] - [NuGet] CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='kb2919442'&$skiptoken='1747307069917','1.0.20160719','kb2919442' 2025-07-09 10:47:39,898 37464 [INFO ] - [NuGet] CACHE https://community.chocolatey.org/api/v2/FindPackagesById()?id='kb2999226'&semVerLevel=2.0.0 2025-07-09 10:47:39,904 37464 [INFO ] - [NuGet] CACHE http://community.chocolatey.org/api/v2/FindPackagesById?id='kb2999226'&$skiptoken='1746831870863','1.0.20161030','kb2999226' 2025-07-09 10:47:40,289 37464 [INFO ] - [NuGet] Resolving dependency information took 0 ms 2025-07-09 10:47:43,644 37464 [DEBUG] - Resolving resource DownloadResource for source https://chocolatey.org/api/v2/ 2025-07-09 10:47:43,760 37464 [DEBUG] - Attempting to delete file "". 2025-07-09 10:47:43,762 37464 [INFO ] - Downloading package from source 'https://chocolatey.org/api/v2/' 2025-07-09 10:47:43,768 37464 [DEBUG] - Package download location 'https://community.chocolatey.org/api/v2/package/microsoft-windows-terminal/1.22.11751' 2025-07-09 10:47:43,793 37464 [INFO ] - [NuGet] GET https://community.chocolatey.org/api/v2/package/microsoft-windows-terminal/1.22.11751 2025-07-09 10:47:44,072 37464 [INFO ] - [NuGet] OK https://community.chocolatey.org/api/v2/package/microsoft-windows-terminal/1.22.11751 276ms 2025-07-09 10:47:44,088 37464 [INFO ] - [NuGet] Acquiring lock for the installation of microsoft-windows-terminal 1.22.11751 2025-07-09 10:47:44,118 37464 [INFO ] - [NuGet] Acquired lock for the installation of microsoft-windows-terminal 1.22.11751 2025-07-09 10:47:46,912 37464 [INFO ] - [NuGet] Installed microsoft-windows-terminal 1.22.11751 from https://chocolatey.org/api/v2/ with content hash YrqZHoOdBfdumvPZCbhW21v+FMTE09UEbpi4b8H8R4Rn20kLJ5pT2w3d6p+0v2W5oYLxgxIR5DfFoDzHo0MMYw==. 2025-07-09 10:47:46,918 37464 [DEBUG] - Skipping package hash validation as feature 'usePackageHashValidation' is not enabled. 2025-07-09 10:47:47,024 37464 [INFO ] - [NuGet] Adding package 'microsoft-windows-terminal.1.22.11751 : vcredist140 (, )' to folder 'C:\ProgramData\chocolatey\lib' 2025-07-09 10:47:47,815 37464 [INFO ] - [NuGet] Added package 'microsoft-windows-terminal.1.22.11751 : vcredist140 (, )' to folder 'C:\ProgramData\chocolatey\lib' 2025-07-09 10:47:47,821 37464 [DEBUG] - Attempting to delete file "C:\Users\****\AppData\Local\Temp\chocolatey\ChocolateyScratch\microsoft-windows-terminal/1.22.11751\microsoft-windows-terminal.1.22.11751.nupkg". 2025-07-09 10:47:47,829 37464 [DEBUG] - Attempting to delete file "C:\Users\***\AppData\Local\Temp\chocolatey\ChocolateyScratch\microsoft-windows-terminal/1.22.11751\.nupkg.metadata". 2025-07-09 10:47:47,832 37464 [DEBUG] - Attempting to delete file "C:\Users\***AppData\Local\Temp\chocolatey\ChocolateyScratch\microsoft-windows-terminal/1.22.11751\microsoft-windows-terminal.1.22.11751.nupkg.sha512". 2025-07-09 10:47:47,839 37464 [INFO ] - microsoft-windows-terminal v1.22.11751 [Approved] 2025-07-09 10:47:47,879 37464 [INFO ] - microsoft-windows-terminal package files install completed. Performing other installation steps. 2025-07-09 10:47:48,628 37464 [DEBUG] - Setting installer args for microsoft-windows-terminal 2025-07-09 10:47:48,630 37464 [DEBUG] - Setting package parameters for microsoft-windows-terminal 2025-07-09 10:47:48,638 37464 [DEBUG] - Contents of 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1': 2025-07-09 10:47:48,655 37464 [DEBUG] - $ErrorActionPreference = 'Stop'; $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $fileName = "$toolsDir\Microsoft.WindowsTerminal_1.22.11751.0_8wekyb3d8bbwe.msixbundle" $version = "1.22.11751.0" $PreRelease = "False" $WindowsVersion=[Environment]::OSVersion.Version if ($WindowsVersion.Major -ne "10") { throw "This package requires Windows 10." } #The .msixbundle format is not supported on Windows 10 version 1709 and 1803. https://docs.microsoft.com/en-us/windows/msix/msix-1709-and-1803-support $IsCorrectBuild=[Environment]::OSVersion.Version.Build if ($IsCorrectBuild -lt "18362") { throw "This package requires at least Windows 10 version 1903/OS build 18362.x." } $AppxPackageName = "Microsoft.WindowsTerminal" if ($PreRelease -match "True") { $AppxPackageName += "Preview" } [version]$AppxVer = (Get-AppxPackage -Name $AppxPackageName -AllUsers -PackageTypeFilter Bundle | Select-Object -Last 1).Version if ($AppxVer -gt [version]$version) { # you can't install an older version of an installed appx package, you'd need to remove it first Write-Warning "The installed $version version is newer than this package version, it may have autoupdated on your current OS..." } elseif ($AppxVer -Match [version]$version) { if($env:ChocolateyForce) { # you can't install the same version of an appx package, you need to remove it first Write-Host Removing already installed version first. Remove-AppxPackage -AllUsers -Package (Get-AppxPackage -Name $AppxPackageName -AllUsers -PackageTypeFilter Bundle | Select-Object -Last 1) } else { Write-Host The $version version of Windows-Terminal is already installed. If you want to reinstall use --force return } } Add-ProvisionedAppXPackage -Online -SkipLicense -PackagePath $fileName 2025-07-09 10:47:48,659 37464 [INFO ] - The package microsoft-windows-terminal wants to run 'chocolateyInstall.ps1'. 2025-07-09 10:47:48,664 37464 [INFO ] - Note: If you don't run this script, the installation will fail. 2025-07-09 10:47:48,673 37464 [INFO ] - Note: To confirm automatically next time, use '-y' or consider: 2025-07-09 10:47:48,679 37464 [INFO ] - choco feature enable -n allowGlobalConfirmation 2025-07-09 10:47:48,714 37464 [INFO ] - Do you want to run the script? 2025-07-09 10:47:48,716 37464 [INFO ] - 1) yes 2025-07-09 10:47:48,723 37464 [INFO ] - 2) all - yes to all 2025-07-09 10:47:48,731 37464 [INFO ] - 3) no 2025-07-09 10:47:48,743 37464 [INFO ] - 4) print 2025-07-09 10:47:53,835 37464 [INFO ] - Choice selected: 'yes' 2025-07-09 10:47:53,875 37464 [DEBUG] - Calling built-in PowerShell host with ['[System.Threading.Thread]::CurrentThread.CurrentCulture = '';[System.Threading.Thread]::CurrentThread.CurrentUICulture = '';[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::SystemDefault; & import-module -name 'C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1'; & 'C:\ProgramData\chocolatey\helpers\chocolateyScriptRunner.ps1' -packageScript 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1' -installArguments '' -packageParameters '' -preRunHookScripts $null -postRunHookScripts $null'] 2025-07-09 10:47:53,904 37464 [DEBUG] - Redirecting System.Management.Automation.resources, Version=3.0.0.0, Culture=de-DE, PublicKeyToken=31bf3856ad364e35, requested by '' 2025-07-09 10:47:56,886 37464 [DEBUG] - Host version is 5.1.26100.1, PowerShell Version is '5.1.26100.1591' and CLR Version is '4.0.30319.42000'. 2025-07-09 10:47:57,584 37464 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\helpers\Chocolatey.PowerShell.dll'. 2025-07-09 10:47:57,637 37464 [DEBUG] - Returning loaded assembly type for 'Chocolatey.PowerShell' 2025-07-09 10:47:57,651 37464 [INFO ] - VERBOSE: Importing cmdlet 'Get-EnvironmentVariable'. 2025-07-09 10:47:57,654 37464 [INFO ] - VERBOSE: Importing cmdlet 'Get-EnvironmentVariableNames'. 2025-07-09 10:47:57,662 37464 [INFO ] - VERBOSE: Importing cmdlet 'Install-ChocolateyPath'. 2025-07-09 10:47:57,671 37464 [INFO ] - VERBOSE: Importing cmdlet 'Set-EnvironmentVariable'. 2025-07-09 10:47:57,684 37464 [INFO ] - VERBOSE: Importing cmdlet 'Test-ProcessAdminRights'. 2025-07-09 10:47:57,691 37464 [INFO ] - VERBOSE: Importing cmdlet 'Uninstall-ChocolateyPath'. 2025-07-09 10:47:57,700 37464 [INFO ] - VERBOSE: Importing cmdlet 'Update-SessionEnvironment'. 2025-07-09 10:47:57,766 37464 [DEBUG] - Cmdlets exported from Chocolatey.PowerShell.dll 2025-07-09 10:47:57,777 37464 [DEBUG] - Get-EnvironmentVariable 2025-07-09 10:47:57,779 37464 [DEBUG] - Get-EnvironmentVariableNames 2025-07-09 10:47:57,791 37464 [DEBUG] - Install-ChocolateyPath 2025-07-09 10:47:57,800 37464 [DEBUG] - Set-EnvironmentVariable 2025-07-09 10:47:57,806 37464 [DEBUG] - Test-ProcessAdminRights 2025-07-09 10:47:57,815 37464 [DEBUG] - Uninstall-ChocolateyPath 2025-07-09 10:47:57,820 37464 [DEBUG] - Update-SessionEnvironment 2025-07-09 10:47:57,847 37464 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. 2025-07-09 10:47:57,849 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. 2025-07-09 10:47:57,855 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyConfigValue'. 2025-07-09 10:47:57,862 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyPath'. 2025-07-09 10:47:57,869 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. 2025-07-09 10:47:57,874 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. 2025-07-09 10:47:57,885 37464 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. 2025-07-09 10:47:57,892 37464 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. 2025-07-09 10:47:57,907 37464 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. 2025-07-09 10:47:57,919 37464 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. 2025-07-09 10:47:57,930 37464 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. 2025-07-09 10:47:57,937 37464 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. 2025-07-09 10:47:57,945 37464 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. 2025-07-09 10:47:57,954 37464 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. 2025-07-09 10:47:57,962 37464 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. 2025-07-09 10:47:57,970 37464 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. 2025-07-09 10:47:57,977 37464 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. 2025-07-09 10:47:57,984 37464 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. 2025-07-09 10:47:57,990 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. 2025-07-09 10:47:58,000 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. 2025-07-09 10:47:58,013 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. 2025-07-09 10:47:58,033 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. 2025-07-09 10:47:58,052 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. 2025-07-09 10:47:58,060 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. 2025-07-09 10:47:58,072 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. 2025-07-09 10:47:58,084 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. 2025-07-09 10:47:58,091 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. 2025-07-09 10:47:58,100 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. 2025-07-09 10:47:58,122 37464 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. 2025-07-09 10:47:58,127 37464 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. 2025-07-09 10:47:58,137 37464 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. 2025-07-09 10:47:58,148 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. 2025-07-09 10:47:58,155 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. 2025-07-09 10:47:58,166 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. 2025-07-09 10:47:58,173 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. 2025-07-09 10:47:58,183 37464 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. 2025-07-09 10:47:58,195 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariable'. 2025-07-09 10:47:58,198 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariableNames'. 2025-07-09 10:47:58,205 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Install-ChocolateyPath'. 2025-07-09 10:47:58,211 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Set-EnvironmentVariable'. 2025-07-09 10:47:58,217 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Test-ProcessAdminRights'. 2025-07-09 10:47:58,221 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Uninstall-ChocolateyPath'. 2025-07-09 10:47:58,229 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Update-SessionEnvironment'. 2025-07-09 10:47:58,239 37464 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. 2025-07-09 10:47:58,246 37464 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. 2025-07-09 10:47:58,251 37464 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. 2025-07-09 10:47:58,256 37464 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. 2025-07-09 10:47:58,264 37464 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. 2025-07-09 10:47:58,271 37464 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. 2025-07-09 10:47:58,279 37464 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. 2025-07-09 10:47:58,284 37464 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. 2025-07-09 10:47:58,289 37464 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. 2025-07-09 10:47:58,304 37464 [DEBUG] - Loading community extensions 2025-07-09 10:47:58,389 37464 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-compatibility\chocolatey-compatibility.psm1' 2025-07-09 10:47:58,393 37464 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-compatibility\chocolatey-compatibility.psm1'. 2025-07-09 10:47:58,536 37464 [DEBUG] - Function 'Get-PackageParameters' exists, ignoring export. 2025-07-09 10:47:58,539 37464 [DEBUG] - Function 'Get-UninstallRegistryKey' exists, ignoring export. 2025-07-09 10:47:58,547 37464 [DEBUG] - Exporting function 'Install-ChocolateyDesktopLink' for backwards compatibility 2025-07-09 10:47:58,557 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. 2025-07-09 10:47:58,562 37464 [DEBUG] - Exporting function 'Write-ChocolateyFailure' for backwards compatibility 2025-07-09 10:47:58,570 37464 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. 2025-07-09 10:47:58,576 37464 [DEBUG] - Exporting function 'Write-ChocolateySuccess' for backwards compatibility 2025-07-09 10:47:58,593 37464 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. 2025-07-09 10:47:58,605 37464 [DEBUG] - Exporting function 'Write-FileUpdateLog' for backwards compatibility 2025-07-09 10:47:58,617 37464 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. 2025-07-09 10:47:58,643 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'. 2025-07-09 10:47:58,645 37464 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'. 2025-07-09 10:47:58,651 37464 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'. 2025-07-09 10:47:58,656 37464 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'. 2025-07-09 10:47:58,670 37464 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1' 2025-07-09 10:47:58,676 37464 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1'. 2025-07-09 10:47:58,786 37464 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. 2025-07-09 10:47:58,789 37464 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. 2025-07-09 10:47:58,796 37464 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. 2025-07-09 10:47:58,807 37464 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. 2025-07-09 10:47:58,817 37464 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. 2025-07-09 10:47:58,821 37464 [INFO ] - VERBOSE: Exporting function 'Register-Application'. 2025-07-09 10:47:58,828 37464 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. 2025-07-09 10:47:58,836 37464 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. 2025-07-09 10:47:58,841 37464 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. 2025-07-09 10:47:58,852 37464 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. 2025-07-09 10:47:58,860 37464 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. 2025-07-09 10:47:58,868 37464 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. 2025-07-09 10:47:58,875 37464 [INFO ] - VERBOSE: Importing function 'Register-Application'. 2025-07-09 10:47:58,881 37464 [INFO ] - VERBOSE: Importing function 'Remove-Process'. 2025-07-09 10:47:58,889 37464 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-dotnetfx\chocolatey-dotnetfx.psm1' 2025-07-09 10:47:58,894 37464 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-dotnetfx\chocolatey-dotnetfx.psm1'. 2025-07-09 10:47:58,948 37464 [INFO ] - VERBOSE: Exporting function 'Install-DotNetFramework'. 2025-07-09 10:47:58,950 37464 [INFO ] - VERBOSE: Exporting function 'Install-DotNetDevPack'. 2025-07-09 10:47:58,956 37464 [INFO ] - VERBOSE: Importing function 'Install-DotNetDevPack'. 2025-07-09 10:47:58,959 37464 [INFO ] - VERBOSE: Importing function 'Install-DotNetFramework'. 2025-07-09 10:47:58,964 37464 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-misc-helpers\chocolatey-misc-helpers.psm1' 2025-07-09 10:47:58,968 37464 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-misc-helpers\chocolatey-misc-helpers.psm1'. 2025-07-09 10:47:59,073 37464 [INFO ] - VERBOSE: Exporting function 'Enable-AutoPin'. 2025-07-09 10:47:59,076 37464 [INFO ] - VERBOSE: Exporting function 'Show-Patreon'. 2025-07-09 10:47:59,082 37464 [INFO ] - VERBOSE: Exporting function 'Show-PayPal'. 2025-07-09 10:47:59,086 37464 [INFO ] - VERBOSE: Exporting function 'Show-ToastMessage'. 2025-07-09 10:47:59,091 37464 [INFO ] - VERBOSE: Exporting function 'Start-CheckandStop'. 2025-07-09 10:47:59,097 37464 [INFO ] - VERBOSE: Exporting function 'Start-CheckandThrow'. 2025-07-09 10:47:59,102 37464 [INFO ] - VERBOSE: Exporting function 'Start-WaitandStop'. 2025-07-09 10:47:59,106 37464 [INFO ] - VERBOSE: Exporting function 'Start-WaitandStopActual'. 2025-07-09 10:47:59,112 37464 [INFO ] - VERBOSE: Exporting function 'Test-Dependency'. 2025-07-09 10:47:59,116 37464 [INFO ] - VERBOSE: Exporting function 'Test-URL'. 2025-07-09 10:47:59,119 37464 [INFO ] - VERBOSE: Importing function 'Enable-AutoPin'. 2025-07-09 10:47:59,122 37464 [INFO ] - VERBOSE: Importing function 'Show-Patreon'. 2025-07-09 10:47:59,137 37464 [INFO ] - VERBOSE: Importing function 'Show-PayPal'. 2025-07-09 10:47:59,145 37464 [INFO ] - VERBOSE: Importing function 'Show-ToastMessage'. 2025-07-09 10:47:59,149 37464 [INFO ] - VERBOSE: Importing function 'Start-CheckandStop'. 2025-07-09 10:47:59,154 37464 [INFO ] - VERBOSE: Importing function 'Start-CheckandThrow'. 2025-07-09 10:47:59,158 37464 [INFO ] - VERBOSE: Importing function 'Start-WaitandStop'. 2025-07-09 10:47:59,164 37464 [INFO ] - VERBOSE: Importing function 'Start-WaitandStopActual'. 2025-07-09 10:47:59,169 37464 [INFO ] - VERBOSE: Importing function 'Test-Dependency'. 2025-07-09 10:47:59,176 37464 [INFO ] - VERBOSE: Importing function 'Test-URL'. 2025-07-09 10:47:59,183 37464 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-os-dependency\chocolatey-os-dependency.psm1' 2025-07-09 10:47:59,188 37464 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-os-dependency\chocolatey-os-dependency.psm1'. 2025-07-09 10:47:59,218 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win11'. 2025-07-09 10:47:59,221 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win10'. 2025-07-09 10:47:59,226 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win81'. 2025-07-09 10:47:59,231 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win80'. 2025-07-09 10:47:59,238 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win8'. 2025-07-09 10:47:59,244 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win7'. 2025-07-09 10:47:59,250 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-WinMinimumBuild'. 2025-07-09 10:47:59,254 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-WinRequiredBuild'. 2025-07-09 10:47:59,259 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win10'. 2025-07-09 10:47:59,263 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win11'. 2025-07-09 10:47:59,272 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win7'. 2025-07-09 10:47:59,279 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win8'. 2025-07-09 10:47:59,285 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win80'. 2025-07-09 10:47:59,291 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win81'. 2025-07-09 10:47:59,297 37464 [INFO ] - VERBOSE: Importing function 'Confirm-WinMinimumBuild'. 2025-07-09 10:47:59,303 37464 [INFO ] - VERBOSE: Importing function 'Confirm-WinRequiredBuild'. 2025-07-09 10:47:59,310 37464 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-visualstudio\chocolatey-visualstudio.extension.psm1' 2025-07-09 10:47:59,316 37464 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-visualstudio\chocolatey-visualstudio.extension.psm1'. 2025-07-09 10:47:59,719 37464 [INFO ] - VERBOSE: Exporting function 'Add-VisualStudioComponent'. 2025-07-09 10:47:59,726 37464 [INFO ] - VERBOSE: Exporting function 'Add-VisualStudioWorkload'. 2025-07-09 10:47:59,729 37464 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstaller'. 2025-07-09 10:47:59,734 37464 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstallerHealth'. 2025-07-09 10:47:59,740 37464 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstance'. 2025-07-09 10:47:59,746 37464 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioVsixInstaller'. 2025-07-09 10:47:59,750 37464 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudio'. 2025-07-09 10:47:59,755 37464 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudioInstaller'. 2025-07-09 10:47:59,760 37464 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudioVsixExtension'. 2025-07-09 10:47:59,766 37464 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioComponent'. 2025-07-09 10:47:59,772 37464 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioProduct'. 2025-07-09 10:47:59,776 37464 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioWorkload'. 2025-07-09 10:47:59,781 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-VisualStudio'. 2025-07-09 10:47:59,785 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-VisualStudioVsixExtension'. 2025-07-09 10:47:59,789 37464 [INFO ] - VERBOSE: Importing function 'Add-VisualStudioComponent'. 2025-07-09 10:47:59,792 37464 [INFO ] - VERBOSE: Importing function 'Add-VisualStudioWorkload'. 2025-07-09 10:47:59,797 37464 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstaller'. 2025-07-09 10:47:59,803 37464 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstallerHealth'. 2025-07-09 10:47:59,809 37464 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstance'. 2025-07-09 10:47:59,815 37464 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioVsixInstaller'. 2025-07-09 10:47:59,819 37464 [INFO ] - VERBOSE: Importing function 'Install-VisualStudio'. 2025-07-09 10:47:59,824 37464 [INFO ] - VERBOSE: Importing function 'Install-VisualStudioInstaller'. 2025-07-09 10:47:59,831 37464 [INFO ] - VERBOSE: Importing function 'Install-VisualStudioVsixExtension'. 2025-07-09 10:47:59,837 37464 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioComponent'. 2025-07-09 10:47:59,843 37464 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioProduct'. 2025-07-09 10:47:59,849 37464 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioWorkload'. 2025-07-09 10:47:59,853 37464 [INFO ] - VERBOSE: Importing function 'Uninstall-VisualStudio'. 2025-07-09 10:47:59,857 37464 [INFO ] - VERBOSE: Importing function 'Uninstall-VisualStudioVsixExtension'. 2025-07-09 10:47:59,865 37464 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1' 2025-07-09 10:47:59,870 37464 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-windowsupdate\chocolatey-windowsupdate.psm1'. 2025-07-09 10:47:59,981 37464 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. 2025-07-09 10:47:59,983 37464 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. 2025-07-09 10:47:59,988 37464 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. 2025-07-09 10:47:59,992 37464 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. 2025-07-09 10:48:00,006 37464 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'. 2025-07-09 10:48:00,022 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'. 2025-07-09 10:48:00,035 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyConfigValue'. 2025-07-09 10:48:00,044 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyPath'. 2025-07-09 10:48:00,053 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'. 2025-07-09 10:48:00,084 37464 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'. 2025-07-09 10:48:00,093 37464 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'. 2025-07-09 10:48:00,102 37464 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'. 2025-07-09 10:48:00,111 37464 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'. 2025-07-09 10:48:00,117 37464 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'. 2025-07-09 10:48:00,125 37464 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'. 2025-07-09 10:48:00,132 37464 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'. 2025-07-09 10:48:00,138 37464 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'. 2025-07-09 10:48:00,145 37464 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'. 2025-07-09 10:48:00,151 37464 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'. 2025-07-09 10:48:00,156 37464 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'. 2025-07-09 10:48:00,171 37464 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'. 2025-07-09 10:48:00,178 37464 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'. 2025-07-09 10:48:00,184 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'. 2025-07-09 10:48:00,189 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'. 2025-07-09 10:48:00,194 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'. 2025-07-09 10:48:00,199 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'. 2025-07-09 10:48:00,206 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'. 2025-07-09 10:48:00,212 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'. 2025-07-09 10:48:00,217 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'. 2025-07-09 10:48:00,222 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'. 2025-07-09 10:48:00,227 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'. 2025-07-09 10:48:00,232 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'. 2025-07-09 10:48:00,239 37464 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'. 2025-07-09 10:48:00,250 37464 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'. 2025-07-09 10:48:00,255 37464 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'. 2025-07-09 10:48:00,263 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'. 2025-07-09 10:48:00,274 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'. 2025-07-09 10:48:00,285 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'. 2025-07-09 10:48:00,292 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'. 2025-07-09 10:48:00,302 37464 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'. 2025-07-09 10:48:00,308 37464 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'. 2025-07-09 10:48:00,316 37464 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'. 2025-07-09 10:48:00,321 37464 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'. 2025-07-09 10:48:00,328 37464 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'. 2025-07-09 10:48:00,336 37464 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'. 2025-07-09 10:48:00,343 37464 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'. 2025-07-09 10:48:00,352 37464 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'. 2025-07-09 10:48:00,362 37464 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'. 2025-07-09 10:48:00,370 37464 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'. 2025-07-09 10:48:00,380 37464 [INFO ] - VERBOSE: Exporting function 'Register-Application'. 2025-07-09 10:48:00,384 37464 [INFO ] - VERBOSE: Exporting function 'Remove-Process'. 2025-07-09 10:48:00,388 37464 [INFO ] - VERBOSE: Exporting function 'Install-DotNetDevPack'. 2025-07-09 10:48:00,395 37464 [INFO ] - VERBOSE: Exporting function 'Install-DotNetFramework'. 2025-07-09 10:48:00,402 37464 [INFO ] - VERBOSE: Exporting function 'Enable-AutoPin'. 2025-07-09 10:48:00,410 37464 [INFO ] - VERBOSE: Exporting function 'Show-Patreon'. 2025-07-09 10:48:00,418 37464 [INFO ] - VERBOSE: Exporting function 'Show-PayPal'. 2025-07-09 10:48:00,423 37464 [INFO ] - VERBOSE: Exporting function 'Show-ToastMessage'. 2025-07-09 10:48:00,435 37464 [INFO ] - VERBOSE: Exporting function 'Start-CheckandStop'. 2025-07-09 10:48:00,443 37464 [INFO ] - VERBOSE: Exporting function 'Start-CheckandThrow'. 2025-07-09 10:48:00,452 37464 [INFO ] - VERBOSE: Exporting function 'Start-WaitandStop'. 2025-07-09 10:48:00,465 37464 [INFO ] - VERBOSE: Exporting function 'Start-WaitandStopActual'. 2025-07-09 10:48:00,476 37464 [INFO ] - VERBOSE: Exporting function 'Test-Dependency'. 2025-07-09 10:48:00,484 37464 [INFO ] - VERBOSE: Exporting function 'Test-URL'. 2025-07-09 10:48:00,491 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win10'. 2025-07-09 10:48:00,500 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win11'. 2025-07-09 10:48:00,507 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win7'. 2025-07-09 10:48:00,514 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win8'. 2025-07-09 10:48:00,521 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win80'. 2025-07-09 10:48:00,526 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-Win81'. 2025-07-09 10:48:00,531 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-WinMinimumBuild'. 2025-07-09 10:48:00,537 37464 [INFO ] - VERBOSE: Exporting function 'Confirm-WinRequiredBuild'. 2025-07-09 10:48:00,542 37464 [INFO ] - VERBOSE: Exporting function 'Add-VisualStudioComponent'. 2025-07-09 10:48:00,549 37464 [INFO ] - VERBOSE: Exporting function 'Add-VisualStudioWorkload'. 2025-07-09 10:48:00,559 37464 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstaller'. 2025-07-09 10:48:00,571 37464 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstallerHealth'. 2025-07-09 10:48:00,579 37464 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioInstance'. 2025-07-09 10:48:00,586 37464 [INFO ] - VERBOSE: Exporting function 'Get-VisualStudioVsixInstaller'. 2025-07-09 10:48:00,591 37464 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudio'. 2025-07-09 10:48:00,598 37464 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudioInstaller'. 2025-07-09 10:48:00,608 37464 [INFO ] - VERBOSE: Exporting function 'Install-VisualStudioVsixExtension'. 2025-07-09 10:48:00,615 37464 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioComponent'. 2025-07-09 10:48:00,620 37464 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioProduct'. 2025-07-09 10:48:00,624 37464 [INFO ] - VERBOSE: Exporting function 'Remove-VisualStudioWorkload'. 2025-07-09 10:48:00,630 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-VisualStudio'. 2025-07-09 10:48:00,636 37464 [INFO ] - VERBOSE: Exporting function 'Uninstall-VisualStudioVsixExtension'. 2025-07-09 10:48:00,640 37464 [INFO ] - VERBOSE: Exporting function 'Install-WindowsUpdate'. 2025-07-09 10:48:00,646 37464 [INFO ] - VERBOSE: Exporting function 'Test-WindowsUpdate'. 2025-07-09 10:48:00,652 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariable'. 2025-07-09 10:48:00,658 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariableNames'. 2025-07-09 10:48:00,664 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Install-ChocolateyPath'. 2025-07-09 10:48:00,672 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Set-EnvironmentVariable'. 2025-07-09 10:48:00,680 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Test-ProcessAdminRights'. 2025-07-09 10:48:00,686 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Uninstall-ChocolateyPath'. 2025-07-09 10:48:00,694 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Update-SessionEnvironment'. 2025-07-09 10:48:00,702 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariable'. 2025-07-09 10:48:00,713 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariableNames'. 2025-07-09 10:48:00,719 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Install-ChocolateyPath'. 2025-07-09 10:48:00,726 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Set-EnvironmentVariable'. 2025-07-09 10:48:00,735 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Test-ProcessAdminRights'. 2025-07-09 10:48:00,743 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Uninstall-ChocolateyPath'. 2025-07-09 10:48:00,748 37464 [INFO ] - VERBOSE: Exporting cmdlet 'Update-SessionEnvironment'. 2025-07-09 10:48:00,754 37464 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'. 2025-07-09 10:48:00,760 37464 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'. 2025-07-09 10:48:00,767 37464 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'. 2025-07-09 10:48:00,775 37464 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'. 2025-07-09 10:48:00,781 37464 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'. 2025-07-09 10:48:00,787 37464 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'. 2025-07-09 10:48:00,792 37464 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'. 2025-07-09 10:48:00,798 37464 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'. 2025-07-09 10:48:00,809 37464 [INFO ] - VERBOSE: Exporting alias 'refreshenv'. 2025-07-09 10:48:00,815 37464 [INFO ] - VERBOSE: Importing cmdlet 'Get-EnvironmentVariable'. 2025-07-09 10:48:00,820 37464 [INFO ] - VERBOSE: Importing cmdlet 'Get-EnvironmentVariableNames'. 2025-07-09 10:48:00,825 37464 [INFO ] - VERBOSE: Importing cmdlet 'Install-ChocolateyPath'. 2025-07-09 10:48:00,831 37464 [INFO ] - VERBOSE: Importing cmdlet 'Set-EnvironmentVariable'. 2025-07-09 10:48:00,837 37464 [INFO ] - VERBOSE: Importing cmdlet 'Test-ProcessAdminRights'. 2025-07-09 10:48:00,844 37464 [INFO ] - VERBOSE: Importing cmdlet 'Uninstall-ChocolateyPath'. 2025-07-09 10:48:00,850 37464 [INFO ] - VERBOSE: Importing cmdlet 'Update-SessionEnvironment'. 2025-07-09 10:48:00,856 37464 [INFO ] - VERBOSE: Importing function 'Add-VisualStudioComponent'. 2025-07-09 10:48:00,862 37464 [INFO ] - VERBOSE: Importing function 'Add-VisualStudioWorkload'. 2025-07-09 10:48:00,873 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win10'. 2025-07-09 10:48:00,882 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win11'. 2025-07-09 10:48:00,889 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win7'. 2025-07-09 10:48:00,899 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win8'. 2025-07-09 10:48:00,916 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win80'. 2025-07-09 10:48:00,924 37464 [INFO ] - VERBOSE: Importing function 'Confirm-Win81'. 2025-07-09 10:48:00,945 37464 [INFO ] - VERBOSE: Importing function 'Confirm-WinMinimumBuild'. 2025-07-09 10:48:00,956 37464 [INFO ] - VERBOSE: Importing function 'Confirm-WinRequiredBuild'. 2025-07-09 10:48:00,969 37464 [INFO ] - VERBOSE: Importing function 'Enable-AutoPin'. 2025-07-09 10:48:00,976 37464 [INFO ] - VERBOSE: Importing function 'Format-FileSize'. 2025-07-09 10:48:00,983 37464 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'. 2025-07-09 10:48:00,989 37464 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'. 2025-07-09 10:48:00,994 37464 [INFO ] - VERBOSE: Importing function 'Get-ChecksumValid'. 2025-07-09 10:48:01,001 37464 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyConfigValue'. 2025-07-09 10:48:01,006 37464 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyPath'. 2025-07-09 10:48:01,014 37464 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyUnzip'. 2025-07-09 10:48:01,018 37464 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyWebFile'. 2025-07-09 10:48:01,023 37464 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'. 2025-07-09 10:48:01,030 37464 [INFO ] - VERBOSE: Importing function 'Get-FtpFile'. 2025-07-09 10:48:01,036 37464 [INFO ] - VERBOSE: Importing function 'Get-OSArchitectureWidth'. 2025-07-09 10:48:01,040 37464 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'. 2025-07-09 10:48:01,046 37464 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'. 2025-07-09 10:48:01,051 37464 [INFO ] - VERBOSE: Importing function 'Get-PackageParametersBuiltIn'. 2025-07-09 10:48:01,057 37464 [INFO ] - VERBOSE: Importing function 'Get-ToolsLocation'. 2025-07-09 10:48:01,062 37464 [INFO ] - VERBOSE: Importing function 'Get-UACEnabled'. 2025-07-09 10:48:01,067 37464 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'. 2025-07-09 10:48:01,073 37464 [INFO ] - VERBOSE: Importing function 'Get-VirusCheckValid'. 2025-07-09 10:48:01,081 37464 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstaller'. 2025-07-09 10:48:01,087 37464 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstallerHealth'. 2025-07-09 10:48:01,096 37464 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioInstance'. 2025-07-09 10:48:01,102 37464 [INFO ] - VERBOSE: Importing function 'Get-VisualStudioVsixInstaller'. 2025-07-09 10:48:01,109 37464 [INFO ] - VERBOSE: Importing function 'Get-WebContent'. 2025-07-09 10:48:01,115 37464 [INFO ] - VERBOSE: Importing function 'Get-WebFile'. 2025-07-09 10:48:01,120 37464 [INFO ] - VERBOSE: Importing function 'Get-WebFileName'. 2025-07-09 10:48:01,125 37464 [INFO ] - VERBOSE: Importing function 'Get-WebHeaders'. 2025-07-09 10:48:01,138 37464 [INFO ] - VERBOSE: Importing function 'Install-BinFile'. 2025-07-09 10:48:01,144 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'. 2025-07-09 10:48:01,150 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyEnvironmentVariable'. 2025-07-09 10:48:01,155 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyExplorerMenuItem'. 2025-07-09 10:48:01,160 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyFileAssociation'. 2025-07-09 10:48:01,166 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyInstallPackage'. 2025-07-09 10:48:01,172 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPackage'. 2025-07-09 10:48:01,177 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPinnedTaskBarItem'. 2025-07-09 10:48:01,182 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPowershellCommand'. 2025-07-09 10:48:01,187 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyShortcut'. 2025-07-09 10:48:01,193 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyVsixPackage'. 2025-07-09 10:48:01,203 37464 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyZipPackage'. 2025-07-09 10:48:01,210 37464 [INFO ] - VERBOSE: Importing function 'Install-DotNetDevPack'. 2025-07-09 10:48:01,219 37464 [INFO ] - VERBOSE: Importing function 'Install-DotNetFramework'. 2025-07-09 10:48:01,227 37464 [INFO ] - VERBOSE: Importing function 'Install-VisualStudio'. 2025-07-09 10:48:01,244 37464 [INFO ] - VERBOSE: Importing function 'Install-VisualStudioInstaller'. 2025-07-09 10:48:01,254 37464 [INFO ] - VERBOSE: Importing function 'Install-VisualStudioVsixExtension'. 2025-07-09 10:48:01,259 37464 [INFO ] - VERBOSE: Importing function 'Install-Vsix'. 2025-07-09 10:48:01,268 37464 [INFO ] - VERBOSE: Importing function 'Install-WindowsUpdate'. 2025-07-09 10:48:01,273 37464 [INFO ] - VERBOSE: Importing function 'Register-Application'. 2025-07-09 10:48:01,282 37464 [INFO ] - VERBOSE: Importing function 'Remove-Process'. 2025-07-09 10:48:01,288 37464 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioComponent'. 2025-07-09 10:48:01,302 37464 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioProduct'. 2025-07-09 10:48:01,316 37464 [INFO ] - VERBOSE: Importing function 'Remove-VisualStudioWorkload'. 2025-07-09 10:48:01,331 37464 [INFO ] - VERBOSE: Importing function 'Set-PowerShellExitCode'. 2025-07-09 10:48:01,346 37464 [INFO ] - VERBOSE: Importing function 'Show-Patreon'. 2025-07-09 10:48:01,375 37464 [INFO ] - VERBOSE: Importing function 'Show-PayPal'. 2025-07-09 10:48:01,386 37464 [INFO ] - VERBOSE: Importing function 'Show-ToastMessage'. 2025-07-09 10:48:01,396 37464 [INFO ] - VERBOSE: Importing function 'Start-CheckandStop'. 2025-07-09 10:48:01,407 37464 [INFO ] - VERBOSE: Importing function 'Start-CheckandThrow'. 2025-07-09 10:48:01,417 37464 [INFO ] - VERBOSE: Importing function 'Start-ChocolateyProcessAsAdmin'. 2025-07-09 10:48:01,423 37464 [INFO ] - VERBOSE: Importing function 'Start-WaitandStop'. 2025-07-09 10:48:01,429 37464 [INFO ] - VERBOSE: Importing function 'Start-WaitandStopActual'. 2025-07-09 10:48:01,436 37464 [INFO ] - VERBOSE: Importing function 'Test-Dependency'. 2025-07-09 10:48:01,443 37464 [INFO ] - VERBOSE: Importing function 'Test-URL'. 2025-07-09 10:48:01,448 37464 [INFO ] - VERBOSE: Importing function 'Test-WindowsUpdate'. 2025-07-09 10:48:01,454 37464 [INFO ] - VERBOSE: Importing function 'Uninstall-BinFile'. 2025-07-09 10:48:01,460 37464 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyEnvironmentVariable'. 2025-07-09 10:48:01,466 37464 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyPackage'. 2025-07-09 10:48:01,473 37464 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyZipPackage'. 2025-07-09 10:48:01,481 37464 [INFO ] - VERBOSE: Importing function 'Uninstall-VisualStudio'. 2025-07-09 10:48:01,487 37464 [INFO ] - VERBOSE: Importing function 'Uninstall-VisualStudioVsixExtension'. 2025-07-09 10:48:01,491 37464 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'. 2025-07-09 10:48:01,498 37464 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'. 2025-07-09 10:48:01,505 37464 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'. 2025-07-09 10:48:01,513 37464 [INFO ] - VERBOSE: Importing function 'Write-FunctionCallLogMessage'. 2025-07-09 10:48:01,531 37464 [INFO ] - VERBOSE: Importing alias 'Add-BinFile'. 2025-07-09 10:48:01,542 37464 [INFO ] - VERBOSE: Importing alias 'Generate-BinFile'. 2025-07-09 10:48:01,552 37464 [INFO ] - VERBOSE: Importing alias 'Get-InstallRegistryKey'. 2025-07-09 10:48:01,564 37464 [INFO ] - VERBOSE: Importing alias 'Get-OSBitness'. 2025-07-09 10:48:01,581 37464 [INFO ] - VERBOSE: Importing alias 'Get-ProcessorBits'. 2025-07-09 10:48:01,592 37464 [INFO ] - VERBOSE: Importing alias 'Invoke-ChocolateyProcess'. 2025-07-09 10:48:01,602 37464 [INFO ] - VERBOSE: Importing alias 'refreshenv'. 2025-07-09 10:48:01,617 37464 [INFO ] - VERBOSE: Importing alias 'Remove-BinFile'. 2025-07-09 10:48:01,624 37464 [INFO ] - VERBOSE: Importing alias 'Start-ChocolateyProcess'. 2025-07-09 10:48:01,787 37464 [DEBUG] - ---------------------------Script Execution--------------------------- 2025-07-09 10:48:01,797 37464 [DEBUG] - Running 'ChocolateyScriptRunner' for microsoft-windows-terminal v1.22.11751 with packageScript 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1', packageFolder:'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal', installArguments: '', packageParameters: '', preRunHookScripts: '', postRunHookScripts: '', 2025-07-09 10:48:01,837 37464 [DEBUG] - Running package script 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1' 2025-07-09 10:48:02,711 37464 [INFO ] - VERBOSE: Exportfunktion "Get-AppxLastError". 2025-07-09 10:48:02,715 37464 [INFO ] - VERBOSE: Exportfunktion "Get-AppxLog". 2025-07-09 10:48:02,722 37464 [INFO ] - VERBOSE: Exportieren des Alias "Add-AppPackage". 2025-07-09 10:48:02,728 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackage". 2025-07-09 10:48:02,735 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageAutoUpdateSettings". 2025-07-09 10:48:02,741 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageManifest". 2025-07-09 10:48:02,745 37464 [INFO ] - VERBOSE: Exportieren des Alias "Remove-AppPackage". 2025-07-09 10:48:02,751 37464 [INFO ] - VERBOSE: Exportieren des Alias "Remove-AppPackageAutoUpdateSettings". 2025-07-09 10:48:02,755 37464 [INFO ] - VERBOSE: Exportieren des Alias "Reset-AppPackage". 2025-07-09 10:48:02,760 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageVolume". 2025-07-09 10:48:02,766 37464 [INFO ] - VERBOSE: Exportieren des Alias "Add-AppPackageVolume". 2025-07-09 10:48:02,772 37464 [INFO ] - VERBOSE: Exportieren des Alias "Remove-AppPackageVolume". 2025-07-09 10:48:02,778 37464 [INFO ] - VERBOSE: Exportieren des Alias "Mount-AppPackageVolume". 2025-07-09 10:48:02,786 37464 [INFO ] - VERBOSE: Exportieren des Alias "Dismount-AppPackageVolume". 2025-07-09 10:48:02,790 37464 [INFO ] - VERBOSE: Exportieren des Alias "Move-AppPackage". 2025-07-09 10:48:02,798 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageDefaultVolume". 2025-07-09 10:48:02,806 37464 [INFO ] - VERBOSE: Exportieren des Alias "Set-AppPackageDefaultVolume". 2025-07-09 10:48:02,835 37464 [INFO ] - VERBOSE: Exportieren des Alias "Set-AppPackageAutoUpdateSettings". 2025-07-09 10:48:02,844 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageLastError". 2025-07-09 10:48:02,850 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-AppPackageLog". 2025-07-09 10:48:02,854 37464 [INFO ] - VERBOSE: Exportieren des Alias "Add-MsixPackage". 2025-07-09 10:48:02,860 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixPackage". 2025-07-09 10:48:02,867 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixPackageAutoUpdateSettings". 2025-07-09 10:48:02,873 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixPackageManifest". 2025-07-09 10:48:02,879 37464 [INFO ] - VERBOSE: Exportieren des Alias "Remove-MsixPackage". 2025-07-09 10:48:02,884 37464 [INFO ] - VERBOSE: Exportieren des Alias "Remove-MsixPackageAutoUpdateSettings". 2025-07-09 10:48:02,890 37464 [INFO ] - VERBOSE: Exportieren des Alias "Reset-MsixPackage". 2025-07-09 10:48:02,895 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixPackageVolume". 2025-07-09 10:48:02,902 37464 [INFO ] - VERBOSE: Exportieren des Alias "Add-MsixPackageVolume". 2025-07-09 10:48:02,908 37464 [INFO ] - VERBOSE: Exportieren des Alias "Remove-MsixPackageVolume". 2025-07-09 10:48:02,914 37464 [INFO ] - VERBOSE: Exportieren des Alias "Mount-MsixPackageVolume". 2025-07-09 10:48:02,920 37464 [INFO ] - VERBOSE: Exportieren des Alias "Dismount-MsixPackageVolume". 2025-07-09 10:48:02,924 37464 [INFO ] - VERBOSE: Exportieren des Alias "Move-MsixPackage". 2025-07-09 10:48:02,931 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixPackageDefaultVolume". 2025-07-09 10:48:02,938 37464 [INFO ] - VERBOSE: Exportieren des Alias "Set-MsixPackageDefaultVolume". 2025-07-09 10:48:02,943 37464 [INFO ] - VERBOSE: Exportieren des Alias "Set-MsixPackageAutoUpdateSettings". 2025-07-09 10:48:02,950 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixPackageLastError". 2025-07-09 10:48:02,956 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixPackageLog". 2025-07-09 10:48:02,961 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixVolume". 2025-07-09 10:48:02,967 37464 [INFO ] - VERBOSE: Exportieren des Alias "Add-MsixVolume". 2025-07-09 10:48:02,972 37464 [INFO ] - VERBOSE: Exportieren des Alias "Remove-MsixVolume". 2025-07-09 10:48:02,977 37464 [INFO ] - VERBOSE: Exportieren des Alias "Mount-MsixVolume". 2025-07-09 10:48:02,984 37464 [INFO ] - VERBOSE: Exportieren des Alias "Dismount-MsixVolume". 2025-07-09 10:48:02,992 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixDefaultVolume". 2025-07-09 10:48:03,003 37464 [INFO ] - VERBOSE: Exportieren des Alias "Set-MsixDefaultVolume". 2025-07-09 10:48:03,010 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixLastError". 2025-07-09 10:48:03,018 37464 [INFO ] - VERBOSE: Exportieren des Alias "Get-MsixLog". 2025-07-09 10:48:03,156 37464 [ERROR] - ERROR: The type initializer for '<Module>' threw an exception. 2025-07-09 10:48:03,197 37464 [DEBUG] - Built-in PowerShell host called with ['[System.Threading.Thread]::CurrentThread.CurrentCulture = '';[System.Threading.Thread]::CurrentThread.CurrentUICulture = '';[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::SystemDefault; & import-module -name 'C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1'; & 'C:\ProgramData\chocolatey\helpers\chocolateyScriptRunner.ps1' -packageScript 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1' -installArguments '' -packageParameters '' -preRunHookScripts $null -postRunHookScripts $null'] exited with '-1'. 2025-07-09 10:48:03,205 37464 [DEBUG] - Calling command ['"C:\WINDOWS\System32\shutdown.exe" /a'] 2025-07-09 10:48:03,381 37464 [DEBUG] - Command ['"C:\WINDOWS\System32\shutdown.exe" /a'] exited with '1116' 2025-07-09 10:48:04,123 37464 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal' 2025-07-09 10:48:04,188 37464 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nupkg' with checksum '7F4D7FF7808154134AD3DEE2317BE7CE' 2025-07-09 10:48:04,191 37464 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\microsoft-windows-terminal.nuspec' with checksum 'FB14EC28356148BCD2EADE01C8A63FA7' 2025-07-09 10:48:04,195 37464 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\LICENSE.txt' with checksum 'B377DB62B5A030F560ED5BBCA25EA5BE' 2025-07-09 10:48:04,198 37464 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\legal\VERIFICATION.txt' with checksum 'B5C5FA0707E55C92868447CD07559B96' 2025-07-09 10:48:04,204 37464 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1' with checksum '1CC430FE80199B413179810ED0EA5B26' 2025-07-09 10:48:04,208 37464 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyUninstall.ps1' with checksum 'B3BDB5539D0A9CC6AB3716A7F75031FE' 2025-07-09 10:48:04,277 37464 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\Microsoft.WindowsTerminal_1.22.11751.0_8wekyb3d8bbwe.msixbundle' with checksum '81233ACCFFFFAC5AAD512BF82D0A46A9' 2025-07-09 10:48:04,295 37464 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.22.11751\.arguments". 2025-07-09 10:48:04,296 37464 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.22.11751\.extra". 2025-07-09 10:48:04,302 37464 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.22.11751\.version". 2025-07-09 10:48:04,306 37464 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.22.11751\.sxs". 2025-07-09 10:48:04,312 37464 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.22.11751\.pin". 2025-07-09 10:48:04,316 37464 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-windows-terminal.1.22.11751\.deploymentLocation". 2025-07-09 10:48:04,328 37464 [DEBUG] - Attempting to delete directory "C:\ProgramData\chocolatey\lib-bad\microsoft-windows-terminal". 2025-07-09 10:48:05,004 37464 [DEBUG] - Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers... 2025-07-09 10:48:05,011 37464 [ERROR] - The install of microsoft-windows-terminal was NOT successful. 2025-07-09 10:48:05,040 37464 [ERROR] - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'. See log for details. 2025-07-09 10:48:05,055 37464 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib-bad\microsoft-windows-terminal". 2025-07-09 10:48:05,062 37464 [DEBUG] - Moving C:\ProgramData\chocolatey\lib\microsoft-windows-terminal to C:\ProgramData\chocolatey\lib-bad\microsoft-windows-terminal\1.22.11751 2025-07-09 10:48:05,080 37464 [DEBUG] - Moving 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal' to 'C:\ProgramData\chocolatey\lib-bad\microsoft-windows-terminal\1.22.11751' 2025-07-09 10:48:07,128 37464 [WARN ] - Chocolatey installed 0/1 packages. 1 packages failed. See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-07-09 10:48:07,133 37464 [INFO ] - 2025-07-09 10:48:07,138 37464 [ERROR] - Failures 2025-07-09 10:48:07,143 37464 [ERROR] - - microsoft-windows-terminal (exited -1) - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'. See log for details. 2025-07-09 10:48:07,148 37464 [DEBUG] - Sending message 'PostRunMessage' out if there are subscribers... 2025-07-09 10:48:07,152 37464 [DEBUG] - Exiting with -1 ``` For `choco install winget`, this fails: ``` 2025-07-09 10:44:37,088 52344 [ERROR] - ERROR: The type initializer for '<Module>' threw an exception. 2025-07-09 10:44:37,092 52344 [DEBUG] - Built-in PowerShell host called with ['[System.Threading.Thread]::CurrentThread.CurrentCulture = '';[System.Threading.Thread]::CurrentThread.CurrentUICulture = '';[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::SystemDefault; & import-module -name 'C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1'; & 'C:\ProgramData\chocolatey\helpers\chocolateyScriptRunner.ps1' -packageScript 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00\tools\chocolateyInstall.ps1' -installArguments '' -packageParameters '' -preRunHookScripts $null -postRunHookScripts $null'] exited with '-1'. 2025-07-09 10:44:37,096 52344 [DEBUG] - Calling command ['"C:\WINDOWS\System32\shutdown.exe" /a'] 2025-07-09 10:44:37,257 52344 [DEBUG] - Command ['"C:\WINDOWS\System32\shutdown.exe" /a'] exited with '1116' 2025-07-09 10:44:37,876 52344 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00' 2025-07-09 10:44:37,878 52344 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00\microsoft-vclibs-140-00.nupkg' with checksum 'F938060D0040F714B589292C72BB0BB2' 2025-07-09 10:44:37,882 52344 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00\microsoft-vclibs-140-00.nuspec' with checksum '9DD51A0EA27F908BA0AD2DDAE326B9D6' 2025-07-09 10:44:37,885 52344 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00\tools\chocolateyInstall.ps1' with checksum '88A76173F3BA03BE5F1107A2D62F8C31' 2025-07-09 10:44:37,888 52344 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00\tools\chocolateyUninstall.ps1' with checksum 'B60687BD97F140CA695FD66998CD69BE' 2025-07-09 10:44:37,890 52344 [DEBUG] - Found 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00\tools\microsoft-vclibs-140-00-helpers.ps1' with checksum '999DB30085D4AA6B79283E43274F3D7E' 2025-07-09 10:44:37,895 52344 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-vclibs-140-00.14.0.33321\.arguments". 2025-07-09 10:44:37,898 52344 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-vclibs-140-00.14.0.33321\.extra". 2025-07-09 10:44:37,902 52344 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-vclibs-140-00.14.0.33321\.version". 2025-07-09 10:44:37,906 52344 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-vclibs-140-00.14.0.33321\.sxs". 2025-07-09 10:44:37,911 52344 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-vclibs-140-00.14.0.33321\.pin". 2025-07-09 10:44:37,915 52344 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\microsoft-vclibs-140-00.14.0.33321\.deploymentLocation". 2025-07-09 10:44:37,920 52344 [DEBUG] - Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers... 2025-07-09 10:44:37,923 52344 [ERROR] - The install of microsoft-vclibs-140-00 was NOT successful. 2025-07-09 10:44:37,928 52344 [ERROR] - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00\tools\chocolateyInstall.ps1'. See log for details. 2025-07-09 10:44:37,933 52344 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib-bad\microsoft-vclibs-140-00". 2025-07-09 10:44:37,937 52344 [DEBUG] - Moving C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00 to C:\ProgramData\chocolatey\lib-bad\microsoft-vclibs-140-00\14.0.33321 2025-07-09 10:44:37,940 52344 [DEBUG] - Moving 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00' to 'C:\ProgramData\chocolatey\lib-bad\microsoft-vclibs-140-00\14.0.33321' 2025-07-09 10:44:39,977 52344 [ERROR] - Failed to install winget-cli because a previous dependency failed. 2025-07-09 10:44:39,981 52344 [ERROR] - Failed to install winget because a previous dependency failed. 2025-07-09 10:44:39,995 52344 [WARN ] - Chocolatey installed 0/4 packages. 4 packages failed. See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-07-09 10:44:39,997 52344 [INFO ] - 2025-07-09 10:44:40,001 52344 [ERROR] - Failures 2025-07-09 10:44:40,006 52344 [ERROR] - - microsoft-ui-xaml-2-7 (exited -1) - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-ui-xaml-2-7\tools\chocolateyInstall.ps1'. See log for details. 2025-07-09 10:44:40,008 52344 [ERROR] - - microsoft-vclibs-140-00 (exited -1) - Error while running 'C:\ProgramData\chocolatey\lib\microsoft-vclibs-140-00\tools\chocolateyInstall.ps1'. See log for details. 2025-07-09 10:44:40,012 52344 [ERROR] - - winget - Failed to install winget because a previous dependency failed. 2025-07-09 10:44:40,016 52344 [ERROR] - - winget-cli - Failed to install winget-cli because a previous dependency failed. ```
Author
Owner

@DHowett commented on GitHub (Jul 9, 2025):

@rklec Terminal has not depended on Microsoft.VCLibs.140.00.UWPDesktop for approximately four years. You are almost surely experiencing a different issue than this. In addition, it looks like you're using chocolatey and not necessarily even installing Terminal?

I don't think this is a bug that any code change in this repository can fix.

@DHowett commented on GitHub (Jul 9, 2025): @rklec Terminal has not depended on `Microsoft.VCLibs.140.00.UWPDesktop` for approximately four years. You are almost surely experiencing a different issue than this. In addition, it looks like you're using chocolatey and not necessarily even _installing_ Terminal? I don't think this is a bug that any code change in this repository can fix.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#4320