top of page

PowerShell - Get Chrome Versions

  • Writer: Jon Boyette
    Jon Boyette
  • Apr 15, 2022
  • 1 min read

Save as a Get-ChromeVersions.ps1 or similar, this takes a text file of machines and exports to csv all the chrome versions on them, this is useful if they are not set to auto update and was written to see if any versions vulnerable were on the network, I just grabbed all the computers to a text and servers to a text to run

$machines = Get-Content -Path "C:\temp\host2.txt"


ForEach($machine in $machines){

$Version = (Get-Item (Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\chrome.exe').'(Default)').VersionInfo

"$machine - $Version" | Out-File C:\temp\Chrome_versions.txt -Append | FL

}


 
 
 

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