1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/windows/rdpsign.md
Lucas Gabriel Schneider a5fe31bc47
multiple pages: format technical tokens (#5119)
Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2021-01-31 12:05:18 -05:00

24 lines
589 B
Markdown

# rdpsign
> A tool for signing Remote Desktop Protocol (RDP) files.
> More information: <https://docs.microsoft.com/windows-server/administration/windows-commands/rdpsign>.
- Sign an RDP file:
`rdpsign {{path/to/file.rdp}}`
- Sign an RDP file using a specific sha256 hash:
`rdpsign {{path/to/file.rdp}} /sha265 {{hash}}`
- Enable quiet output:
`rdpsign {{path/to/file.rdp}} /q`
- Display verbose warnings, messages and statuses:
`rdpsign {{path/to/file.rdp}} /v`
- Test the signing by displaying the output to stdout without updating the file:
`rdpsign {{path/to/file.rdp}} /l`