2

When I execute the command 'scoop list' on PowerShell I get this reply:

There aren't any apps installed.

How do I fix this to show all installed software?

6
  • Not everything, but this will get you a partial list gcim -Class Win32_Product | select name, version
    – Dallas
    Commented Jan 14, 2022 at 16:02
  • Is scoop installed on your pc? Commented Jan 14, 2022 at 18:18
  • @ReddyLutonadio if Scoop isn't installed, it would give the error scoop : The term 'scoop' is not recognized as the name of a cmdlet, function, script file, or operable program.
    – LPChip
    Commented Jan 14, 2022 at 18:21
  • Have you installed any app using scoop? Commented Jan 15, 2022 at 18:31
  • @ReddyLutonadio nope. And I don't want to install nothing with it. I just want it to list all the software that is already installed in the machine.
    – Twinsen
    Commented Jan 16, 2022 at 21:59

1 Answer 1

2

You are getting the message because you have not installed any package/app using scoop. As far as I know, scoop only list the packages that it installed.

If you want to list packages via a package manager, you can either use chocolatey (with the command choco list -li) or winget (from Microsoft). You will need to install them first. There are other package managers if you are not in the two mentioned, just google them.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .