diff --git a/README.md b/README.md index 77e672ab..259fc170 100644 --- a/README.md +++ b/README.md @@ -65,10 +65,10 @@ Mega Collection of PowerShell Scripts | [install-signal-cli.ps1](Scripts/install-signal-cli.ps1) | Installs signal-cli from github.com/AsamK/signal-cli | [Help](Docs/install-signal-cli.md) | | [install-updates.ps1](Scripts/install-updates.ps1) | Installs updates (need admin rights) | [Help](Docs/install-updates.md) | | [install-wsl.ps1](Scripts/install-wsl.ps1) | Installs Windows Subsystem for Linux (WSL), needs admin rights | [Help](Docs/install-wsl.md) | -| [list-cli-tools.ps1](Scripts/list-cli-tools.ps1) | Lists available command-line interface (CLI) tools | [Help](Docs/list-cli-tools.md) | +| [list-apps.ps1](Scripts/list-apps.ps1) | Lists the installed applications | [Help](Docs/list-installed-apps.md) | +| [list-cli-tools.ps1](Scripts/list-cli-tools.ps1) | Lists installed command-line interface (CLI) tools | [Help](Docs/list-cli-tools.md) | | [list-drives.ps1](Scripts/list-drives.ps1) | Lists all drives | [Help](Docs/list-drives.md) | | [list-network-shares.ps1](Scripts/list-network-shares.ps1) | Lists all network shares of the local computer | [Help](Docs/list-network-shares.md) | -| [list-installed-apps.ps1](Scripts/list-installed-apps.ps1) | Lists the installed Windows Store apps | [Help](Docs/list-installed-apps.md) | | [list-installed-software.ps1](Scripts/list-installed-software.ps1) | Lists the installed software (except Windows Store apps) | [Help](Docs/list-installed-software.md)| | [list-printers.ps1](Scripts/list-printers.ps1) | Lists all printer known to the computer | [Help](Docs/list-printers.md) | | [list-print-jobs.ps1](Scripts/list-print-jobs.ps1) | Lists all jobs of all printers | [Help](Docs/list-print-jobs.md) | diff --git a/Scripts/list-installed-apps.ps1 b/Scripts/list-apps.ps1 similarity index 77% rename from Scripts/list-installed-apps.ps1 rename to Scripts/list-apps.ps1 index ef413d6e..2359b23c 100755 --- a/Scripts/list-installed-apps.ps1 +++ b/Scripts/list-apps.ps1 @@ -2,9 +2,9 @@ .SYNOPSIS Lists the installed apps .DESCRIPTION - This PowerShell script lists the installed apps (from Windows Store or snaps). + This PowerShell script lists the installed applications (from Windows Store, or Snap Store). .EXAMPLE - PS> ./list-installed-apps + PS> ./list-apps .LINK https://github.com/fleschutz/PowerShell .NOTES @@ -21,4 +21,4 @@ try { } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" exit 1 -} +} \ No newline at end of file