top of page

PowerShell - Get Installed Programs, Versions and dates, Read-Host (1 Per run)

  • Writer: Jon Boyette
    Jon Boyette
  • Jan 12, 2022
  • 1 min read

Save the Code as a DiscoverInstallsRemoteServer.ps1, or similar, prompts for server name and displays on screen all the add/remove program installs of a single server

$A = Read-Host "Enter ServerName to Get Intalled Programs, Versions and Install Dates"

$properties = 'Name', 'Version', 'InstallDate'


Get-CimInstance -ClassName Win32_Product -ComputerName $A -Property $properties | Select-Object -Property $properties | Sort-Object Name


 
 
 

Recent Posts

See All
PowerShell - List All Domain SPNs

Save as same List_ALL_SPNs.ps1 or similar, this LDap calls the Domain for all Service Principal names and accounts related #Build LDAP...

 
 
 
PowerShell - Start-Monitoring

This is a great script used to Monitor and Email if a server is up or down, once ran, and smtp and from address is set, then run:...

 
 
 

Comments


Post: Blog2 Post
  • Facebook
  • Twitter
  • LinkedIn

©2022 by Boyette Technical Services. Proudly created with Wix.com

bottom of page