0

特定のネットワーク接続の高度なプロパティで「この接続のDNSサフィックス」の部分を設定するためのPowerShellスクリプトまたは類似のものを持っている人はいますか?

ありがとう

4

1 に答える 1

1

これを試してください (管理者として PowerShell を実行します):

    Get-WmiObject Win32_NetworkAdapterConfiguration -Filter "Description='interface description'" | 
Invoke-WmiMethod -Name SetDNSDomain -ArgumentList @('contoso.com')
于 2012-08-05T20:59:58.787 に答える