2015-04-27 65 views
0

我从谷歌做出了如下脚本备份SSRS加密密钥:备份SSRS加密密钥使用PowerShell

cls 
$pwd = "[email protected]@123" 
$SSRSClass = Get-Wmiobject -namespace "root\microsoft\sqlserver\reportserver\rs_BPSSRS\v10\admin" -class "MSReportServer_ConfigurationSetting" 

$key = $SSRSClass.BackupEncryptionKey($pwd) 
$stream = [System.IO.File]::Create("c:\\SSRS.snk", $key.KeyFile.Length) 
$stream.Write($key.KeyFile, 0, $key.KeyFile.Length) 
$stream.Close() 

但我发现了以下错误:

Method invocation failed because [System.Object[]] doesn't contain a method named 'BackupEn 
cryptionKey'. 
At line:5 char:38 
+ $key = $SSRSClass.BackupEncryptionKey <<<< ($results) 
    + CategoryInfo   : InvalidOperation: (BackupEncryptionKey:String) [], RuntimeEx 
    ception 
    + FullyQualifiedErrorId : MethodNotFound 

Exception calling "Create" with "2" argument(s): "Positive number required. 
Parameter name: bufferSize" 
At line:6 char:35 
+ $stream = [System.IO.File]::Create <<<< ("c:\\SSRS.snk", $key.KeyFile.Length) 
    + CategoryInfo   : NotSpecified: (:) [], MethodInvocationException 
    + FullyQualifiedErrorId : DotNetMethodException 

You cannot call a method on a null-valued expression. 
At line:7 char:14 
+ $stream.Write <<<< ($key.KeyFile, 0, $key.KeyFile.Length) 
    + CategoryInfo   : InvalidOperation: (Write:String) [], RuntimeException 
    + FullyQualifiedErrorId : InvokeMethodOnNull 

You cannot call a method on a null-valued expression. 
At line:8 char:14 
+ $stream.Close <<<<() 
    + CategoryInfo   : InvalidOperation: (Close:String) [], RuntimeException 
    + FullyQualifiedErrorId : InvokeMethodOnNull 

我使用PowerShell v2。我试图找到这个,但没有运气。在我们的环境中有大约50多台SSRS服务器,手动备份令人厌烦。因此,我们想出了这种自动化。请提供您的意见。

感谢

回答

0

这段代码应该做的伎俩:

$ComputerName = "." 
$KeyFolder = "C:\Temp" 
$KeyPassword = "[email protected]@123" 
$TimeStamp = Get-Date -Format "-yyyyMMdd-HHmmss" 

Get-WmiObject -Namespace "Root\Microsoft\SqlServer\ReportServer" -Class "__Namespace" -ComputerName $ComputerName | 
    Select-Object -ExpandProperty Name | 
    % { 
     $NameSpaceRS = $_ 
     $InstanceName = $NameSpaceRS.SubString(3) 
     $KeyFileName = Join-Path -Path $KeyFolder -ChildPath ($InstanceName + $Timestamp + ".snk") 
     "Found Reporting Services in instance '$($InstanceName)' on $($ComputerName); will save key to '$($KeyFileName)' ..." 
     $SQLVersion = (Get-WmiObject -Namespace "Root\Microsoft\SqlServer\ReportServer\$($NameSpaceRS)" -Class "__Namespace" -ComputerName $ComputerName).Name 
     $SSRSClass = Get-WmiObject -Namespace "Root\Microsoft\SqlServer\ReportServer\$($NameSpaceRS)\$($SQLVersion)\Admin" -Query "SELECT * FROM MSReportServer_ConfigurationSetting WHERE InstanceName='$($InstanceName)'" -ComputerName $ComputerName 
     $Key = $SSRSClass.BackupEncryptionKey($KeyPassword) 
     If ($Key.HRESULT -ne 0) { 
      $Key.ExtendedErrors -join "`r`n" | Write-Error 
     } Else { 
      $Stream = [System.IO.File]::Create($KeyFileName, $Key.KeyFile.Length) 
      $Stream.Write($Key.KeyFile, 0, $Key.KeyFile.Length) 
      $Stream.Close() 
     } 
    } 

的错误,你所提到的,因为你的代码试图获取从重复的条目信息。意思是,如果你在运行SSRS的只有一个命名实例的服务器上尝试上面的代码,那么我认为它会成功。试试这件作品并发表您的评论。 CHEERS。

+0

感谢您的输入。有效 – user2068804