How to find user Full name without User name in CMD?

active-directory, cmd, command

Solution

net user "%USERNAME%" /domain | FIND /I "Full Name"

Problem

I tried this, `net user /domain | find "user1"`, it finds only the user name. How can I search by the attribute Full Name?

Original source