0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Powershellでパスワード変更(ターゲット、接続先が管理者ユーザの場合)

Last updated at Posted at 2023-12-16
PS>Get-LocalUser
Name               Enabled Description
----               ------- -----------
ユーザ名              True

PS>$PASSWORD = ConvertTo-SecureString -AsPlainText -Force -String "変更したいパスワード"
PS>Set-LocalUser -Name "パスワード変更するユーザ名" -Password $PASSWORD

参考URL
https://tex2e.github.io/blog/powershell/change-localuser-password

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?