i'm trying to get QuickTest.Application and QuickTest.RunResultsOptions com objects. But when i access them this way:
$qtp_app = New-Object -comobject QuickTest.Application -strict
$qtpapp = $qtp_app | Get-Member
$qtp_RunOpt = New-Object -comobject QuickTest.RunResultsOptions -strict
$qtprunopt = $qtp_RunOpt | Get-Member
i don't get access to all theirs members. help of quick test professional says that there is more members and i really need them. is there another way to access com objects in PowerShell?