使用 PowerShell 创建本地用户 (Windows Vista)

发布于 2024-07-11 19:14:29 字数 168 浏览 5 评论 0原文

我最近安装了 PowerShell,我开始寻找的第一件事就是如何创建新用户。 寻找了一段时间后我仍然没有找到这个。 我对 linux 上的 bash 有一点经验,发现它非常有效。 在那里创建用户很简单。 是否有一种简单\内置的方法来使用 PowerShell 创建本地用户?

谢谢。

I've installed PowerShell recently and one of the first things I started looking for was how to create a new user. After looking for some time I still haven't found this.
I have a little experience in bash on linux and find it very effective. Creating users there is trivial.
Is there an easy\built-in way to create a local user with PowerShell?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

燕归巢 2024-07-18 19:14:29

您可以使用本地主机的 ADSI

function create-account ([string]$accountName = "testuser") {   
   $hostname = hostname   
   $comp = [adsi] "WinNT://$hostname"  
   $user = $comp.Create("User", $accountName)   
   $user.SetPassword("Password1")   
   $user.SetInfo()   
}

You can use the localhost's ADSI:

function create-account ([string]$accountName = "testuser") {   
   $hostname = hostname   
   $comp = [adsi] "WinNT://$hostname"  
   $user = $comp.Create("User", $accountName)   
   $user.SetPassword("Password1")   
   $user.SetInfo()   
}
尐籹人 2024-07-18 19:14:29

您还可以使用

net user /add

此命令,不限于 powershell。

you can also use

net user /add

this command isn't limited to powershell.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文