How to find version’s of Office installed via BatchPatch\CMD and Powershell

32bit

cmd.exe /c echo . | powershell.exe -ExecutionPolicy Bypass -command “(Get-ItemProperty -Path ‘HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\Configuration’ -ErrorAction SilentlyContinue -WarningAction SilentlyContinue) | Select-Object -ExpandProperty VersionToReport”

64bit

cmd.exe /c echo . | powershell.exe -ExecutionPolicy Bypass -command “(Get-ItemProperty -Path ‘HKLM:\SOFTWARE\WOW6432Node\Microsoft\Office\ClickToRun\Configuration’ -ErrorAction SilentlyContinue -WarningAction SilentlyContinue)”

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...