我有点疯狂这个问题.我有一个虚拟机与Windows 10和按照说明安装EFLOW:
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
$msiPath = $([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest "https://aka.ms/AzEFLOWMSI_1_4_LTS_X64" -OutFile $msiPath
Start-Process -Wait msiexec -ArgumentList "/i","$([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))","/qn"
Get-ExecutionPolicy -List
Set-ExecutionPolicy -ExecutionPolicy AllSigned -Force
Deploy-Eflow
字符串
阅读了很多文章,但我总是得到这个错误:
PS C:\Users\iotedge> Deploy-Eflow
[11/09/2023 11:10:02] Deploying Azure IoT Edge for Linux on Windows
- Configuration 'eflowBaseDir' is not present. A default will be applied.
- Configuration 'eflowVhdxDir' is not present. A default will be applied.
[11/09/2023 11:10:02] Exception caught!!!
- Could not find a part of the path 'C:\Users\iotedge\LICENSE\Azure IoT Edge for Linux on Windows - Standalone (free) Use Terms (11.1.21).rtf'. (L427)
[11/09/2023 11:10:02] In order to attempt another deployment, please uninstall the Azure IoT Edge msi and start from fresh
Get-ItemProperty : Property MachineId does not exist at path HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SQMClient.
At C:\Program Files\WindowsPowerShell\Modules\AzureEFLOW\AzureEFLOW.psm1:6674 char:31
+ ... ] $sqmId = (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\SQMClien ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (MachineId:String) [Get-ItemProperty], PSArgumentException
+ FullyQualifiedErrorId : System.Management.Automation.PSArgumentException,Microsoft.PowerShell.Commands.GetItemPr
opertyCommand
Could not find a part of the path 'C:\Users\iotedge\LICENSE\Azure IoT Edge for Linux on Windows - Standalone (free) Use Terms (11.1.21).rtf'.
型
有提示吗?谢谢。
2条答案
按热度按时间o2rvlv0m1#
问题似乎是Power Shell x86
tmb3ates2#
我以前遇到过这个错误.我怀疑你正在尝试在Windows服务器上安装Eflow.有时,Windows服务器没有在其信任存储所需的所有证书,它将以这种方式失败.
请访问https://learn.microsoft.com/en-us/azure/aks/hybrid/aks-edge-howto-offline-install#windows-certificates这一部分,其中介绍了如何检查您是否拥有相关证书。如果缺少任何证书,您将需要获取缺少的证书并将其安装到本地计算机的可信存储中。