积极答复者
BCDEDIT /copy 出错

问题
答案
-
因為 Hyper-V 屬於 Windows Server 範疇, 所以建議你移步 Windows Server system 論壇:
Windows Server system
http://social.microsoft.com/Forums/zh-CN/windowsserversystemzhchs/threads
抑或是
虚拟化技术 Virtualization
http://social.microsoft.com/Forums/zh-CN/category/virtualizationcn
Folding@Home- 已标记为答案 Arthur_LiMicrosoft contingent staff, Moderator 2010年5月28日 3:18
全部回复
-
在 PowerShell 請嘗試這樣執行 cmd /c 'bcdedit /copy {current} /d "hyper-v"'
Folding@Home- 已建议为答案 gOxiAMVP, Moderator 2010年5月28日 2:08
-
根据 俞勇的博文,他前后,两个ID是完全是不一样,这是系统自动生成的ID或固定的,如此使用呢??我想通过HYPER-V生成的VHD文件,再通过移动硬盘进行引导,可是重新启动,发现此ID有问题如下:
configuration for an element within theobjectis invalid in th boot configureatgion data stgore
能对这个ID为什么吗?突然GOOGL发现了http://ycrsjxy.blog.51cto.com/618627/202948解释了一下,可是,怎么样做?能给建议吗??
我是根据http://www.owin8.com/a/Windows8jiqiao/20100115/979.html
进行操作
让暴风雨来得更猛烈此吧 -
因為 Hyper-V 屬於 Windows Server 範疇, 所以建議你移步 Windows Server system 論壇:
Windows Server system
http://social.microsoft.com/Forums/zh-CN/windowsserversystemzhchs/threads
抑或是
虚拟化技术 Virtualization
http://social.microsoft.com/Forums/zh-CN/category/virtualizationcn
Folding@Home- 已标记为答案 Arthur_LiMicrosoft contingent staff, Moderator 2010年5月28日 3:18
-
補充:
當直接通過 PowerShell 執行基於命令提示符的原生命令時, 如果命令中包含 " $ 這些符號的話, 默認會按照 PowerShell 下這些符號的定義來執行, 所以如果想直接這些原生命令, 需要在那些符號前加 `, 比如: `" `$
或者
通過 cmd/ c "原聲命令" 的方式執行.
需要說明的是, 如果原生命令同 cmdlet 命令的別名重名時, 那麼原生命令也不能直接執行. 比如在 PowerShell 下直接執行:
dir *.txt /a/b/s
會提示
Get-ChildItem : 第二个路径段不得为驱动器或 UNC 名称。
参数名: path2
所在位置 行:1 字符: 4
+ dir <<<< *.txt /a/b/s
+ CategoryInfo : InvalidArgument: (C:\:String) [Get-ChildItem], A
rgumentException
+ FullyQualifiedErrorId : DirArgumentError,Microsoft.PowerShell.Commands.G
etChildItemCommand這時需要使用 cmd /c "dir *.txt /a/b/s" 方式在 PowerShell 下執行.
Folding@Home -
這裏推薦兩本書, 或許更能幫你直觀認識 Windows PowerShell.
1. 針對 Windows PowerShell 1.0
Windows PowerShell应用手册(原書名: Windows PowerShell Cookbook)
http://www.china-pub.com/195483&ref=xilie由 Windows PowerShell 開發團隊的 Lee Holmes 編著.
2. 針對 Windows PowerSehll 2.0
Windows PowerShell实用宝典(原書名: Windows PowerShell 2.0 Administrator's Pocket Consultant)
http://www.china-pub.com/50657&ref=xilie#nrjj由具有 20 年系統管理和高級編程經驗的 William R.Stanek (微軟 MVP) 編著.
注:
此回復中的鏈接僅為方便介紹書籍而提供, 如果你對上述兩本書該興趣的話, 那么請自行選擇適合自己的購書方式.
Folding@Home