PowerShell 4.0的重命名 - 级别替代方案

发布于 2025-01-23 18:01:25 字数 144 浏览 0 评论 0 原文

我知道PS 4.0很古老。但是无论如何,我们在某些开发服务器上都使用它,这不是我的决定。

我想知道是否有重命名localuser的替代方法,即使需要调用WMIC,它也需要5.1+,我不确定如何使用这种电话,请以一种或另一种方式给我一些示例。

谢谢

I know PS 4.0 is ancient. But we're using it anyway on some dev servers it is not my decision.

I'd like to know if there's an alternative for Rename-LocalUser which requires 5.1+ Even if it needs calling wmic, I'm unsure if how to use that kind of call, please give me some examples in one or the other way.

Thank you

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

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

发布评论

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

评论(1

策马西风 2025-01-30 18:01:25

abraham Zinala 在他如何在较旧的PowerShell版本上对此进行此操作的评论中提供了正确的答案。

您可以使用 get-wmiObject 查询本地用户,然后调用 .rename(..) method

$myAccount = Get-WmiObject Win32_UserAccount -Filter "name='theAccountIWantToRename'"
$myAccount.Rename('myNewUserName')

or,推荐使用 get-ciminstance “ https://learn.microsoft.com/en-us/powershell/module/cimcmdlets/invoke-cimmethod“ rel =“ nofollow noreferrer”> invoke-cimmethod 由于 wmiObject 不再使用较新的PowerShell版本提供:

$myAccount = Get-CimInstance Win32_UserAccount -Filter "name='theAccountIWantToRename'"
Invoke-CimMethod -InputObject $myAccount -MethodName Rename -Arguments @{ Name = 'myNewUserName' }

Abraham Zinala has provided the right answer in his helpful comments on how to approach this on older PowerShell versions.

You can either use Get-WmiObject to query the local user, and then invoke the .Rename(..) method:

$myAccount = Get-WmiObject Win32_UserAccount -Filter "name='theAccountIWantToRename'"
$myAccount.Rename('myNewUserName')

Or, recommended use of Get-CimInstance and Invoke-CimMethod since WmiObject is no longer available in newer PowerShell versions:

$myAccount = Get-CimInstance Win32_UserAccount -Filter "name='theAccountIWantToRename'"
Invoke-CimMethod -InputObject $myAccount -MethodName Rename -Arguments @{ Name = 'myNewUserName' }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文