如何在批处理文件中复制描述用户

如何在批处理文件中复制描述用户

在批处理文件中复制描述用户

如何在批处理文件中复制用户描述?复制到剪贴板并粘贴到文本文件中

答案1

要将您自己的用户描述放入文本文件,假设为 description.txt:

wmic useraccount where name="%username%" get description>>description.txt

获取其他用户的描述:

wmic useraccount where name="SomeUsername" get description>>description.txt

要将其保存到剪贴板:

wmic useraccount where name="%username%" get description |clip

如果没有为该用户定义描述,那么您当然不会从该命令中获得任何描述......

相关内容