2018-10-14 13:05:42 +01:00
|
|
|
# rdpsign
|
|
|
|
|
|
|
|
> A tool for signing Remote Desktop Protocol (RDP) files.
|
2022-10-04 16:06:23 +01:00
|
|
|
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/rdpsign>.
|
2018-10-14 13:05:42 +01:00
|
|
|
|
|
|
|
- Sign an RDP file:
|
|
|
|
|
2023-02-20 07:23:49 +00:00
|
|
|
`rdpsign {{path\to\file.rdp}}`
|
2018-10-14 13:05:42 +01:00
|
|
|
|
|
|
|
- Sign an RDP file using a specific sha256 hash:
|
|
|
|
|
2023-02-20 07:23:49 +00:00
|
|
|
`rdpsign {{path\to\file.rdp}} /sha265 {{hash}}`
|
2018-10-14 13:05:42 +01:00
|
|
|
|
|
|
|
- Enable quiet output:
|
|
|
|
|
2023-02-20 07:23:49 +00:00
|
|
|
`rdpsign {{path\to\file.rdp}} /q`
|
2018-10-14 13:05:42 +01:00
|
|
|
|
|
|
|
- Display verbose warnings, messages and statuses:
|
|
|
|
|
2023-02-20 07:23:49 +00:00
|
|
|
`rdpsign {{path\to\file.rdp}} /v`
|
2018-10-14 13:05:42 +01:00
|
|
|
|
2022-12-04 07:53:34 +00:00
|
|
|
- Test the signing by displaying the output to `stdout` without updating the file:
|
2018-10-14 13:05:42 +01:00
|
|
|
|
2023-02-20 07:23:49 +00:00
|
|
|
`rdpsign {{path\to\file.rdp}} /l`
|