mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-07 15:46:02 +02:00
rpcinfo: add page (#3475)
This commit is contained in:
parent
e58f188c3e
commit
64b12cbabc
1 changed files with 20 additions and 0 deletions
20
pages/windows/rpcinfo.md
Normal file
20
pages/windows/rpcinfo.md
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# rpcinfo
|
||||||
|
|
||||||
|
> List programs via RPC on remote computers.
|
||||||
|
> More information: <https://docs.microsoft.com/windows-server/administration/windows-commands/rpcinfo>.
|
||||||
|
|
||||||
|
- List all programs registered on the local computer:
|
||||||
|
|
||||||
|
`rpcinfo`
|
||||||
|
|
||||||
|
- List all programs registered on a remote computer:
|
||||||
|
|
||||||
|
`rpcinfo /p {{computer_name}}`
|
||||||
|
|
||||||
|
- Call a specific program on a remote computer using TCP:
|
||||||
|
|
||||||
|
`rpcinfo /t {{computer_name}} {{program_name}}`
|
||||||
|
|
||||||
|
- Call a specific program on a remote computer using UDP:
|
||||||
|
|
||||||
|
`rpcinfo /u {{computer_name}} {{program_name}}`
|
Loading…
Add table
Reference in a new issue