views:

16

answers:

1

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
That was (Get-ItemProperty 'HKLM:\Software\Microsoft\BizTalk Server\3.0\').InstallPath Thank you!
Crassy
Duh, yeah you're right; messed it up when copying it by hand from my VM (silly clipboard integration fails all the time!)
tomasr