User Tools

Site Tools


remove_site24x7_agent_using_msiexec

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

remove_site24x7_agent_using_msiexec [2024/12/13 20:12] – created osoremove_site24x7_agent_using_msiexec [2025/07/15 14:22] (current) oso
Line 4: Line 4:
  
 from an elevated ''cmd'' prompt from an elevated ''cmd'' prompt
 +
 +<WRAP center round info 60%>
 +The ''GUID'' it's not guaranteed to be universal across all versions or installations.
 +</WRAP>
 +
 +
 +You can verify what's installed on a particular system using:
 +
 +  Get-WmiObject Win32_Product | Where-Object { $_.Name -like "*Site24x7*" } | Select-Object Name, IdentifyingNumber
 +
 +Or more reliably (and faster) using the registry:
 +
 +<code powershell>
 +Get-ChildItem "HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall" |
 +  ForEach-Object { Get-ItemProperty $_.PSPath } |
 +  Where-Object { $_.DisplayName -like "*Site24x7*" } |
 +  Select-Object DisplayName, UninstallString
 +</code>
remove_site24x7_agent_using_msiexec.1734120728.txt.gz · Last modified: 2024/12/13 20:12 by oso