Hi,
Thank you for posting in Microsoft Q&A forum.
1,Agree with @Pavel yannara Mirochnitchenko . Yes, we need to manually install the win32 app target software on the test computer, then open the registry and go to one of the following paths:
X64 apps: HKEY_ LOCAL_ MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
X86 apps: HKEY_ LOCAL_ MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall
Search for the application we installed in these two registry paths, and the value corresponding to 'UninstallString' is the app's GUID.
2,We can also use the following PowerShell command to obtain the GUID of the app:
get-wmiobject Win32_ Product | Format-Table IdentifyingNumber, Name, LocalPackage -AutoSize
get-wmiobject Win32_ Product | Sort-Object -Property Name |Format-Table IdentifyingNumber, Name, LocalPackage -AutoSize
Thanks for your time. Have a nice day!
Best regards,
Simon
If the response is helpful, please click "Accept Answer" and upvote it. Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.