我正在尝试使用 windows powershell 在我的 raspberry pi 3 上安装 windows 10 IoT
im trying to install windows 10 IoT on my raspberry pi 3 with windows powershell
到目前为止,我在 windows powershell 中输入了命令:
净启动 WinRM
现在当我尝试使用命令时:
设置项 WSMan:\localhost\Client\TrustedHosts -Value "minwinpc"
我收到以下错误消息:
- 设置项:访问被拒绝。
在line:1char:9
Set-Item <<<< WSMan:\localhost\Client\TrustedHosts -Value minwinpc
CategoryInfo : NotSpecified: (:) [Set-Item], InvalidOperationException
- FullyQualifiedErrorId :
System.InvalidOperationException,Microsoft.PowerShell.Commands.SetItemCommand
我很抱歉,其他人也发布了类似的问题,例如
但我的错误是:"char:9" 不是 "char:54"
我不太懂编码,但我很擅长遵循说明!拜托,我需要一些帮助,谢谢!
为了解决您的问题 ("Access Denied"),您可能没有使用管理权限启动 PowerShell,可能还需要 运行 Set-WSManQuickConfig
。
看看这里有什么听起来像是同一个问题:
(来自本页)
"You should make sure to run PowerShell with full administrative privileges and run Set-WSManQuickConfig beforehand if you cannot run the commands at all because of an access denied-error."
到目前为止,我在 windows powershell 中输入了命令: 净启动 WinRM
现在当我尝试使用命令时: 设置项 WSMan:\localhost\Client\TrustedHosts -Value "minwinpc"
我收到以下错误消息:
- 设置项:访问被拒绝。
在line:1char:9
Set-Item <<<< WSMan:\localhost\Client\TrustedHosts -Value minwinpc
CategoryInfo : NotSpecified: (:) [Set-Item], InvalidOperationException
- FullyQualifiedErrorId : System.InvalidOperationException,Microsoft.PowerShell.Commands.SetItemCommand
我很抱歉,其他人也发布了类似的问题,例如
但我的错误是:"char:9" 不是 "char:54"
我不太懂编码,但我很擅长遵循说明!拜托,我需要一些帮助,谢谢!
为了解决您的问题 ("Access Denied"),您可能没有使用管理权限启动 PowerShell,可能还需要 运行 Set-WSManQuickConfig
。
看看这里有什么听起来像是同一个问题:
(来自本页)
"You should make sure to run PowerShell with full administrative privileges and run Set-WSManQuickConfig beforehand if you cannot run the commands at all because of an access denied-error."