Ok, that helps. I can query a server in the farm that I specify when I installed the SDK but I never get anything back from querying the farm when i run scripts looking to list applications such as:
# Farm Stuff
$Farm = New-object -com "MetaframeCOM.MetaFrameFarm"
$Farm.Initialize(1)
$Farm.FarmName
#$farm | Get-Member -type Properties
$farm.Applications
# Server Stuff
$mfsrv = New-Object -ComObject MetaFrameCOM.MetaFrameServer
$mfsrv.Initialize(6,$ENV:ComputerName)
#$mfsrv | Get-Member -type Properties
$mfsrv.Sessions | ft Servername,Username,AppName,ClientAddress -auto
Maybe i'll reboot my PC after ammending the dcom settings as per your posts directions.
Thanks