Uninstalling Bentley Raceway and Cable Management in Silent Mode
If you have the Setup.exe of
Bentley Raceway and Cable Management , simply use the
-Uninstall -Quiet commands to uninstall
Bentley Raceway and Cable Management . For example,
C:\BentleyDownloads\Bentley Raceway and Cable Management\Setup_Bentley Raceway and
Cable Managementx64.exe -Uninstall -Quiet
- In Windows PowerShell, get the location of
bootstrapper Setup.exe using the following command:
gci "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall" | foreach { gp $_.PSPath } | ? { $_ -match "Bentley Raceway and Cable Management 2024 " } | select UninstallString -
You will get the path, something like this:
UninstallString --------------- "C:\ProgramData\Package Cache\{0c77a938-fe26-4e0c-8bc7-3f2064729d40}\Setup_Bentley Raceway and Cable Managementx64.exe" /uninstall - Use the above path in the command to
uninstall the product silently:
Start-Process "C:\ProgramData\Package Cache\{0c77a938-fe26-4e0c-8bc7-3f2064729d40}\Setup_Bentley Raceway and Cable Managementx64.exe" -ArgumentList "-Uninstall -Quiet" -Wait
Uninstalling Post-Install Components
- Get the product GUID using
one of the following commands:
gci "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall" | foreach { gp $_.PSPath } | ? { $_ -match "ProductName" } | select UninstallStringor
gci "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" | foreach { gp $_.PSPath } | ? { $_ -match "ProductName" } | select UninstallStringWhere,
ProductNameis the name of post-install component, such asBentley DGN Index Service.You will get product GUID, something like this:UninstallString --------------- MsiExec.exe /X{2E873893-A883-4C06-8308-7B491D58F3D6} - Use the string from the
above step in the following command:
Start-Process "MsiExec.exe" -ArgumentList "/X{2E873893-A883-4C06-8308-7B491D58F3D6} /quiet" -Wait