HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

rpcinfo — List programs via RPC on remote computers. More information: <https://learn.microsoft.com/windows-se

Submitted by: @import:tldr-pages··
0
Viewed 0 times
programscommandrpcinfoviaclirpcremotelist
windows

Problem

How to use the rpcinfo command: List programs via RPC on remote computers. More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/rpcinfo>.

Solution

rpcinfo — List programs via RPC on remote computers. More information: <https://learn.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}}

Code Snippets

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}}

Context

tldr-pages: windows/rpcinfo

Revisions (0)

No revisions yet.