Posted On January 23, 2023

PowerShell: Command to Retrieve Windows Applications List

kimconnect 0 comments
blog.KimConnect.com >> Windows >> PowerShell: Command to Retrieve Windows Applications List

The following the the PoSH equivalent of appwiz.cpl in Windows:

PS> invoke-command TestWindows {Get-Package -Provider Programs -IncludeWindowsInstaller|select-object Name,Version|sort -property Name}|select -property * -ExcludeProperty runspaceid,pscomputername

Name                                                               Version
----                                                               -------
7-Zip 18.06 (x64 edition)                                          18.06.00.0
DRAC Command Line Tools                                            9.2.0
Notepad++ (64-bit x64)                                             7.5.9
NSClient++ (x64)                                                   0.5.2039
PuTTY release 0.71 (64-bit)                                        0.71.0.0

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Nintendo Wii JailBreaking

1. install Hackmii 2. install cIOS38_rev14 (requires IOS36-64-v1042.wad or connection to the Internet) 3. install…

Installing Hyper terminal in Windows XP

Hyper terminal is still useful as a tool to connect to network devices such as…

Transfer DHCP Scopes Between Windows Servers

When a new DHCP server is introduced into the system, it's often necessary to configure…