mikemaccana
mikemaccana

Reputation: 123278

Powershell `install-package` works fine, but `get-package` doesn't show the package installed

In an admin powershell, running:

Find-Package Pcsx

Shows a package with the name Pcsx. Running:

Find-Package pscx | install-package

Completes without error. However afterwards:

Get-Package Pcsx

Returns Get-Package : No package found for 'Pcsx'.

Upvotes: 0

Views: 609

Answers (1)

sodawillow
sodawillow

Reputation: 13176

Typo ? You have spelled Pscx wrong twice in your question (Pcsx).

Command behaves as expected on my system.

Upvotes: 1

Related Questions