Windows 10 IoT 變更密碼 ( Raspberry Pi 2 ) Windows 10 IoT 變更密碼 ( Raspberry Pi 2 )
  Raspberry Pi 、   Windows 10 IoT 、   安裝教學 、   物聯網       ez      2015-08-14

Windows 10 IoT (物聯網) 變更密碼有兩種方法:

  • PowerShell
  • SSH

本篇使用 PowerShell 變更密碼,首先使用 系統管理員 身分開啟 PowerShell。

啟動 WinRM 功能,輸入:net start WinRM

將連線加入驗證清單,輸入:Set-Item WSMan:\localhost\Client\TrustedHosts -Value <IP位址 或 電腦名稱>

例如:Set-Item WSMan:\localhost\Client\TrustedHosts -Value 192.168.1.1

按下 Y 表示同意

接下來要使用 Administrator 身分進行登入,輸入:Enter-PSSession -ComputerName <IP位址 或 電腦名稱> -Credential <IP位址 或 電腦名稱 或 localhost>>\Administrator

例如:Enter-PSSession -ComputerName 192.168.1.1 -Credential localhost\Administrator

如果是預設密碼,輸入:p@ssw0rd

連線需要一段時間,當出現 [IP]: PS 路徑 ...... 表示登入完成了。

進行 Administrator 的密碼修改,輸入:net user <帳號> <密碼>

例如:net user Administrator 123456789

表示密碼修改完成


標籤:   Raspberry Pi 、   Windows 10 IoT 、   安裝教學 、   物聯網

我要留言