- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我已经在我的 windows 10 机器上安装了 Docker for Windows。当我尝试从“windows 容器”“切换到 linux 容器”时,出现错误。
Unable to start: The running command stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: 'MobyLinuxVM' failed to start.
Failed to start the virtual machine 'MobyLinuxVM' because one of the Hyper-V components is not running.
'MobyLinuxVM' failed to start. (Virtual machine ID 2E563FF9-8F28-49F9-A0D1-4E64BCCC3438)
The Virtual Machine Management Service failed to start the virtual machine 'MobyLinuxVM' because one of the Hyper-V components is not running (Virtual machine ID 2E563FF9-8F28-49F9-A0D1-4E64BCCC3438). at Start-MobyLinuxVM, : line 296 at , : line 412 at Docker.Core.Pipe.NamedPipeClient.Send(String action, Object[] parameters) in C:\workspaces\stable-18.09.x\src\github.com\docker\pinata\win\src\Docker.Core\pipe\NamedPipeClient.cs:line 36 at Docker.Actions.<>c__DisplayClass28_0.b__0() in C:\workspaces\stable-18.09.x\src\github.com\docker\pinata\win\src\Docker.Windows\Actions.cs:line 305 at Docker.WPF.TaskQueue.<>c__DisplayClass19_0.<.ctor>b__1() in C:\workspaces\stable-18.09.x\src\github.com\docker\pinata\win\src\Docker.WPF\TaskQueue.cs:line 59
我在 SO ( Failed to start the virtual machine 'MobyLinuxVM' because one of the Hyper-V components is not running ) 上关注了类似的问题,但问题中发布的解决方案对我不起作用。
最佳答案
请按照以下步骤操作:
现在它应该可以工作了。
关于linux - 无法启动 : The running command stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54181239/
今天我第一次尝试使用 PowerShell (v3.0),并对它的一些错误处理概念的奇怪实现方式感到非常沮丧。 我编写了以下代码(使用远程注册表 PowerShell 模块) try { Ne
两者, $ErrorActionPreference 变量和 -ErrorAction cmdlet 参数应该定义 non-terminating errors 的行为. 由于变量是全局的并且参数特定
考虑以下脚本 #requires -version 2.0 [CmdletBinding()] param ( ) $script:ErrorActionPreference = "Stop" Set
我们将 PowerShell 用于一些自动化构建脚本。不幸的是,默认情况下,PowerShell 在出错后继续。 通常,我可以通过设置 $ErrorActionPreference = Stop 来改
我需要处理Powershell脚本中的非终止错误。最有效的方法是什么? 将$ErrorActionPreference变量设置为停止并使用try/catch $ErrorActionPreferenc
我希望我的模块中的所有函数都默认为 $ErrorActionPreference = 'Stop' .是否可以不修改所有功能? 我每个函数都有一个文件。 最佳答案 假设你的模块是一个脚本模块,即用Po
我有一些 powershell 脚本,其中包含以下内容: $ErrorActionPreference = "stop" trap { Write-Error $_.Exception; } 使用 p
默认情况下,环境的 $ErrorActionPreference 设置为“继续”。当 cmdlet 抛出错误时,脚本将继续。 我希望它“停止”并陷入我的 try-catch block 的捕获中。在我
问题:powershell 脚本由于使用 $ErrorActionPreference 时应由 try 块捕获的异常而停止 例子: $ErrorActionPreference = 'Stop' tr
将 -Verbose 添加到 Copy-Item 命令似乎会使该命令忽略 $ErrorActionPreference 的值。这是一个错误还是我不明白的东西? 我认为这个脚本应该在它显示“为什么这样显
我的情况: $ErrorActionPreference = "Stop"; "1 - $ErrorActionPreference;" Get-ChildItem NoSuchFile.txt -E
我已经在我的 windows 10 机器上安装了 Docker for Windows。当我尝试从“windows 容器”“切换到 linux 容器”时,出现错误。 Unable to start:
我是一名优秀的程序员,十分优秀!