Skip to content

Instantly share code, notes, and snippets.

@pongo
Forked from mattia72/Export-ScoopListCSV.ps1
Created September 23, 2024 08:20
Show Gist options
  • Save pongo/72d60f04974f2ebd55741aa75ad86ddd to your computer and use it in GitHub Desktop.
Save pongo/72d60f04974f2ebd55741aa75ad86ddd to your computer and use it in GitHub Desktop.
Create a list of apps installed by scoop
scoop list | %{scoop info $_.Name} | Select-Object -Property Name, Website, Description | Export-Csv -Path .\Desktop\scoopp.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment