MSDNS: Document pssession options (#2273)

This commit is contained in:
Steven Hodges 2023-04-13 12:38:39 -05:00 committed by GitHub
parent 16976693f3
commit 61559f6a96
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,6 +31,8 @@ along with other settings:
* `dnsserver`: (optional) the name of the Microsoft DNS Server to communicate with. * `dnsserver`: (optional) the name of the Microsoft DNS Server to communicate with.
* `pssession`: (optional) the name of the PowerShell PSSession host to run commands on. * `pssession`: (optional) the name of the PowerShell PSSession host to run commands on.
* `psusername`: (optional) the username to connect to the PowerShell PSSession host.
* `pspassword`: (optional) the password to connect to the PowerShell PSSession host.
Example: Example:
@ -40,7 +42,9 @@ Example:
"msdns": { "msdns": {
"TYPE": "MSDNS", "TYPE": "MSDNS",
"dnsserver": "ny-dc01", "dnsserver": "ny-dc01",
"pssession": "mywindowshost" "pssession": "mywindowshost",
"psusername": "mywindowsusername",
"pspassword": "mysupersecurepassword"
} }
} }
``` ```