我正在尝试创建对象并使用远程处理对其进行操作,如下所示:
$foldername = "C:\test"
$computername ="remotecomputer"
Invoke-Command -computername $computername -Scriptblock {$newquotaobj = New-Object -ComObject Fsrm.FsrmQuotaManager}
Invoke-Command -computername $computername -Scriptblock {$newquotasrc = $newquotaobj).GetQuota($Using:foldername)}
我的理解$newquotaobj
将被反序列化并发回 - 但它似乎没有发生。是否有可能在这里实现我的目标 - 即远程创建 com 对象并对其进行操作?