net rpc group members '<group>' -U '<domain>'/'<user>'%'<pass>' -S '<dc>'
List a group’s current membership.
net rpc user -U '<domain>'/'<user>'%'<pass>' -S '<dc>'
List every domain user account, no elevated rights needed beyond a valid domain credential.
Tips & Tricks
net rpc talks straight to SAMR/LSARPC over SMB — no Python/Impacket install needed, which makes it a good fallback on a minimal attack box or when a target’s SMB signing config is picky about a specific client stack.
Every subcommand accepts -S '<dc_fqdn_or_ip>' explicitly — pointing it at the wrong DC (in a multi-DC domain) silently fails rather than erroring clearly, so double-check this if a command that should work doesn’t.
The -U 'domain'/'user'%'pass' credential format is easy to get backwards under time pressure — it’s domain first, then a literal /, then user, then a literal %, then password.