dig (DNS Lookup) указать DNS-сервер в Windows

В Linux я бы использовалdig указать DNS-сервер 127.0.0.1 с помощью следующей команды:

dig google.com @127.0.0.1

Я установил инструменты Bind для Windows (choco install bind-toolsonly). Как я могу выполнить ту же команду? Я получаю следующую ошибку:

PS C:\Users\jhilden> dig google.com @127.0.0.1
At line:1 char:21
+ dig google.com @127.0.0.1
+                     ~
Missing property name after reference operator.
At line:1 char:16
+ dig google.com @127.0.0.1
+                ~~~~
The splatting operator '@' cannot be used to reference variables in an
expression. '@127' can be used only as an argument to a command. To
reference variables in an expression use '$127'.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : MissingPropertyName

Ответы на вопрос(1)

Ваш ответ на вопрос