Is there any way to find out where Biztalk is installed on a machine using a PowerShell script?
+2
A:
Something like this should work, I think:
(Get-ChildItem 'HKLM:\Software\Microsoft\BizTalk Server\3.0').InstallPath
tomasr
2010-08-27 12:51:37
That was (Get-ItemProperty 'HKLM:\Software\Microsoft\BizTalk Server\3.0\').InstallPath Thank you!
Crassy
2010-08-27 15:08:22
Duh, yeah you're right; messed it up when copying it by hand from my VM (silly clipboard integration fails all the time!)
tomasr
2010-08-27 17:29:18