我有一个包含以下行的 Powershell 脚本:
$package = Get-WmiObject -Class Win32_Product -ComputerName $TargetServer -Filter ("Name='{0}'" -f $ApplicationName)
我按照这个答案的步骤来启用服务器之间的 Powershell Remoting:远程安全步骤
当我从 Powershell ISE(在提升的管理窗口中)运行脚本时,我收到以下错误:
Get-WmiObject : Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
At line:1 char:14
+ Get-WmiObject <<<< win32_bios -computername d-vasbiz01
+ CategoryInfo : NotSpecified: (:) [Get-WmiObject], UnauthorizedAccessException
+ FullyQualifiedErrorId : System.UnauthorizedAccessException,Microsoft.PowerShell.Commands.GetWmiObjectCommand
我需要能够在 ISE 中运行脚本,以便解决其他问题。
谁能建议我需要做些什么来解决这个安全错误?