コマンドを呼び出すPowerShellスクリプトを実行しようとしています。そのコマンドで、GACにアセンブリを書き込みたいと思います。
これはコードです:
invoke-command -computername COMPUTERNAME -scriptblock {
$gacUtil = "${Env:ProgramFiles(x86)}\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools\gacutil.exe";
& $gacutil '/nologo' '/if' '\\fileserver\..\Assembly.dll'
}
次に、PowerShellは次のエラーを返します。
Failure adding assembly to the cache: Administrator permissions are needed to use the selected options. Use an administrator command prompt to complete these tasks.
グーグルした後、-Credential
(Administrator-Credentialsを使用して)invoke-commandにパラメーターを追加しましたが、それでも機能しません。
何か案は?