mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-17 16:11:22 +02:00
Added list-installed-apps.ps1
This commit is contained in:
16
Scripts/list-installed-apps.ps1
Normal file
16
Scripts/list-installed-apps.ps1
Normal 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
|
||||
}
|
@@ -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])"
|
||||
|
Reference in New Issue
Block a user