1

我有一个小的 powershell 脚本可以远程运行备份软件 veeam,但生成的对象不同。

我以两种不同的方式连接:

  1. 导入-PSSession
$cred = Get-Credential -m "Backupserver" -UserName XY
$session = new-PSSession -ComputerName Backupserver -Credential $cred
Invoke-Command -Session $session {add-pssnapin VeeamPSSnapin}
Import-PSSession -Session $session -module VeeamPSSnapin
# but I tried the following too
Import-PSSession -Session $session -DisableNameChecking -AllowClobber
  1. 进入会话
$cred = Get-Credential -m "Backupserver" -UserName XY
enter-pssession -Credential $cred Backupserver
add-pssnapin VeeamPSSnapin

之后,我可以使用 Veeam Snapin,但以下内容:

Get-VBRJob -name "Backup Job BITS-SERVER" | Get-Member

给我的不是结果对象的所有方法,也不是相同的对象类型。

使用 enter-pssession 我得到:

   TypeName: Veeam.Backup.Core.CBackupJob

Name                          MemberType Definition
----                          ---------- ----------
CanRunByScheduler             Method     bool ISchedulableJob.CanRunByScheduler()
CheckDeleteAllowed            Method     void CheckDeleteAllowed()
...

使用 import-pssession 我得到了:

   TypeName: Deserialized.Veeam.Backup.Core.CBackupJob

Name                         MemberType   Definition
----                         ----------   ----------
GetType                      Method       type GetType()
ToString                     Method       string ToString(), string ToString(string format, System.IFormatProvider formatProvider), string IFormattable.ToString(string format, ...
PSComputerName               NoteProperty string PSComputerName=cpa-backup.itservice.de
...

它应该是不同类型的结果对象 (Deserialized.Veeam.Backup.Core.CBackupJob)。

但是我怎样才能远程连接(没有 enter-pssession 的非交互)以使用所有方法获取相同的对象???

提前致谢...

4

1 回答 1

0

由于 PowerShell 在通过网络发送给您之前会序列化这些对象,因此您最好使用Connect-VBRServercmdlet

Connect-VBRServer -Server "Backupserver"
Get-VBRJob -Name "Backup Job BITS-SERVER" | Get-Member
于 2020-02-11T12:48:28.627 回答