Added list-installed-apps.ps1

This commit is contained in:
Markus
2021-02-22 19:51:37 +01:00
parent 30776d870b
commit 3705f9c2dd
4 changed files with 24 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/powershell
<#
.SYNTAX ./list-installed-apps.ps1
.DESCRIPTION lists the installed Windows Store apps
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {
get-appxPackage | select-object Name,Version | format-table -autoSize
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}

View File

@@ -1,13 +1,14 @@
#!/bin/powershell
<#
.SYNTAX ./list-installed-software.ps1
.DESCRIPTION lists the installed software
.DESCRIPTION lists the installed software (except Windows Store apps)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {
get-itemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | select-object DisplayName,DisplayVersion,InstallDate | format-table -autoSize
get-itemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*, HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*, HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | select-object DisplayName,DisplayVersion,InstallDate | format-table -autoSize
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"