例: 既定値を使用してドメインを分離するための規則を追加します: netsh advfirewall consec add rule name="isolation" endpoint1=any endpoint2=any action=requireinrequestout ...


例:

      既定値を使用してドメインを分離するための規則を追加します:
      netsh advfirewall consec add rule name="isolation"
      endpoint1=any endpoint2=any action=requireinrequestout

      カスタム クイック モードの指定値を持つ規則を追加します:
      netsh advfirewall consec add rule name="custom"
      endpoint1=any endpoint2=any
      qmsecmethods=ah:sha1+esp:sha1-aes256+60min+20480kb,ah:sha1
      action=requireinrequestout

      カスタム クイック モードの指定値を持つ規則を追加します:
      netsh advfirewall consec add rule name="custom"
      endpoint1=any endpoint2=any
      qmsecmethods=authnoencap:sha1,ah:aesgmac256+esp:aesgmac256-none
      action=requireinrequestout

      サブネット A (192.168.0.0, external ip=1.1.1.1) から
      サブネット B (192.157.0.0, external ip=2.2.2.2) に接続するための
      トンネル モードの規則を作成します:
      netsh advfirewall consec add rule name="my tunnel" mode=tunnel
      endpoint1=192.168.0.0/16 endpoint2=192.157.0.0/16
      remotetunnelendpoint=2.2.2.2
      localtunnelendpoint=1.1.1.1 action=requireinrequireout

      サブネット A (192.168.0.0/16) から
      サブネット B (192.157.0.0, remoteGW=2.2.2.2) に接続するための
      動的トンネル モードの規則を作成します。
      クライアント ポリシーの場合:
      netsh advfirewall consec add rule name="dynamic tunnel"
      mode=tunnel
      endpoint1=any endpoint2=192.157.0.0/16
      remotetunnelendpoint=2.2.2.2
      action=requireinrequireout
      ゲートウェイ ポリシーの場合 (ゲートウェイ デバイスにのみ適用):
      netsh advfirewall consec add rule name="dynamic tunnel"
      mode=tunnel endpoint1=192.157.0.0/16
      endpoint2=any localtunnelendpoint=2.2.2.2
      action=requireinrequireout

      CA 名を指定して規則を追加します:
      netsh advfirewall consec add rule name="cert rule"
      endpoint1=any endpoint2=any action=requireinrequestout
      auth1=computercert auth1ca="C=US, O=MSFT, CN=\'Microsoft North,
       South, East, and West Root Authority\'"
例: 名前が "ms" で始まり 説明が "admin" で始まるすべてのグループを 現在のドメインの中で検索し それらの DN を 表示するとき: dsquery group domainroot -name ms* -desc admin* ... 例: 名前が "ms" で始まり 説明が "desktop" で始まるすべてのコンピューターを現在の ドメインの中で検索し それらのコンピューターの DN を表示するとき: dsquery computer domainroot -name ... 例: 名前が "ms" で始まり 説明が "sales" で始まるすべての OU を現在のドメインの中で 検索し それらの OU の DN を表示するとき: dsquery ou domainroot -name ms* -desc sales* ... 例: 名前が "north" で始まる北米のサイトをすべて検索し それらの DN を 表示するとき: dsquery site -name north* ディレクトリの中で定義されたすべてのサイトの識別名 (RDN) を一覧表示するとき: dsquery ... 例: 既定値を使用してドメインを分離するための規則を追加します: netsh advfirewall consec add rule name="isolation" endpoint1=any endpoint2=any action=requireinrequestout ... 例: 現在のドメインのクォータの設定をすべて表示するには 次のように入力します: dsquery quota domainroot "Jon" で始まるユーザーのなかでクォータの割り当てがあるユーザーをすべて 表示するには次のように入力します: ... 例: 現在のドメインの中の AD DC をすべて表示するとき: dsquery server フォレストの中の AD DC をすべて検索し それらの AD DC の 相対識別名を表示するとき: dsquery server -o rdn -forest ... 例: 組織単位 (OU) "ou=Marketing,dc=microsoft,dc=com" のユーザーをすべて検索し Marketing Staff のグループに追加するとき: dsquery user -startnode "ou=Marketing,dc=microsoft,dc=com" ... 例: 複数の OU の説明を同時に変更するとき: dsmod ou "OU=Domain Controllers,DC=microsoft,DC=com" "OU=Resources,DC=microsoft,DC=com" "OU=tro ...