Lync Server 2013 でデバイス更新規則をインポートする
トピックの最終更新日:2013-02-23
デバイス更新規則は、Windows PowerShellと Import-CsDeviceUpdate コマンドレットを使用してのみインポートできます。 このコマンドレットは、Lync Server 2013 管理シェルまたは Windows PowerShell のリモート セッションから実行できます。
注意
リモートの Windows PowerShell を使用して Lync Server に接続する方法について詳しくは、Lync Server Windows PowerShell のブログ記事「Quick Start: Managing Microsoft Lync Server 2010 Using Remote PowerShell (クイックスタート: リモート PowerShell を使用した Microsoft Lync Server 2010 の管理)」をhttps://go.microsoft.com/fwlink/p/?linkId=255876で参照してください。
デバイス更新規則を 1 つの Web サーバーにインポートするには
次のコマンドは、デバイス更新規則を Web サーバー atl-cs-001.litwareinc.com にインポートします。
Import-CsDeviceUpdate -Identity "service:WebServer:atl-cs-001.litwareinc.com" -FileName C:\Updates\UCUpdates.cab
デバイス更新規則をすべての Web サーバーにインポートするには
この例では、デバイス更新規則は、組織にデプロイされているすべての Web サーバーにインポートされます。 このコマンドを機能させるには、フォルダー \\atl-fs-001.litwareinc.com\更新を共有し、すべての Web サーバーで使用できる必要があります。
Get-CsService -WebServer | ForEach-Object {Import-CsDeviceUpdate -Identity $_.Identity -FileName \\atl-fs-001.litwareinc.com\Updates\UCUpdates.cab}
詳細については、 Import-CsDeviceUpdate コマンドレットのヘルプ トピックを参照してください。