AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / user-399524

Aendie's questions

Martin Hope
Aendie
Asked: 2020-03-25 06:53:56 +0800 CST

如何在不安装的情况下双启动 Windows 10 和 Windows Server

  • 5

一些 Internet 站点描述了如何将 Windows Server 安装为第二个操作系统。这不是我的情况。

在同一台 PC 上,我有一个运行 Windows 10 Pro 的驱动器和另一个运行Windows Server 2012 R2 的驱动器(+ Visual Studio 2017 + SQL Server 2017 + SharePoint 2016 ...)。两个驱动器都带有 MBR(不是 GPT)。我可以将其中任何一个作为单个系统(驱动器)启动。

我现在想将 Windows Server 添加为双启动选项。这曾经作为双引导工作,但在尝试新的 Ubuntu 安装时被破坏了。我以前工作的引导管理器/加载器设置是:

Windows Boot Manager
--------------------
identifier              {bootmgr}
device                  partition=\Device\HarddiskVolume1
description             Windows Boot Manager
locale                  en-US
inherit                 {globalsettings}
default                 {current}
resumeobject            {4c702cd7-4348-11e9-a123-a126b58ebe81}
displayorder            {current}
                        {23a79a8c-7591-11e8-a5b9-10c37b6b0c8f}
toolsdisplayorder       {memdiag}
timeout                 30

Windows Boot Loader
-------------------
identifier              {current}
device                  partition=C:
path                    \WINDOWS\system32\winload.exe
description             Windows 10
locale                  en-US
inherit                 {bootloadersettings}
recoverysequence        {4c702cda-4348-11e9-a123-a126b58ebe81}
displaymessageoverride  Recovery
recoveryenabled         Yes
allowedinmemorysettings 0x15000075
osdevice                partition=C:
systemroot              \WINDOWS
resumeobject            {4c702cd7-4348-11e9-a123-a126b58ebe81}
nx                      OptIn
bootmenupolicy          Standard
hypervisorlaunchtype    Auto

Windows Boot Loader
-------------------
identifier              {23a79a8c-7591-11e8-a5b9-10c37b6b0c8f}
device                  partition=S:
path                    \windows\system32\winload.exe
description             Windows Server 2012 R2
locale                  en-us
inherit                 {bootloadersettings}
allowedinmemorysettings 0x15000075
osdevice                partition=S:
systemroot              \windows
resumeobject            {23a79a8b-7591-11e8-a5b9-10c37b6b0c8f}
nx                      OptOut
detecthal               Yes

如何重新建立(或修复)正常工作的双引导环境?...显然没有安装新的 Windows Server 操作系统以及随后的所有后续工作。

编辑: 为了恢复 Windows Server 驱动器,我昨天发出了以下命令,仅在 PC 中安装了 Windows Server 驱动器:

bootrec /FixMbr
bootrec /FixBoot
bootrec /RebuildBcd

这使得 Windows Server 再次可以作为单个驱动器启动(并且可能破坏了 Windows 10 驱动器的双启动逻辑?)

更新: 我使用 MediaCreationTool1909.exe 启动了由 Windows 10 准备的 DVD:

>bootrec /FixMbr
>bootrec /FixBoot
Access is denied.
>bootrec /RebuildBcd
Successfully scanned Windows installations.
Total identified Windows installations: 0
The operation completed successfully.

和以前一样,我有两个驱动器——其中任何一个都可以通过更改 BIOS 中的引导优先级顺序来直接引导:Windows 10 或 Windows Server 2012 R2 都可以直接引导。

唯一有效的双启动选项是 Windows 10 的第一个(默认)选项。选择第二个选项(Windows Server 2012 R2)会导致此屏幕:

Windows 启动失败

恕我直言,我的问题很有趣——任何人都可以在专用驱动器上构建新操作系统以进行测试,然后决定将其“集成”到双/三/...启动选项中。我怀疑这三个bootrec命令仅适用于单个引导驱动器。到目前为止,我还没有在互联网上看到这个答案 - 都建议为第二个操作系统重新安装以构建双启动选项。

成功与结论: 见下面我的回答

windows-10 windows-server-2012-r2
  • 2 个回答
  • 1400 Views

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何减少“vmmem”进程的消耗?

    • 11 个回答
  • Marko Smith

    从 Microsoft Stream 下载视频

    • 4 个回答
  • Marko Smith

    Google Chrome DevTools 无法解析 SourceMap:chrome-extension

    • 6 个回答
  • Marko Smith

    Windows 照片查看器因为内存不足而无法运行?

    • 5 个回答
  • Marko Smith

    支持结束后如何激活 WindowsXP?

    • 6 个回答
  • Marko Smith

    远程桌面间歇性冻结

    • 7 个回答
  • Marko Smith

    子网掩码 /32 是什么意思?

    • 6 个回答
  • Marko Smith

    鼠标指针在 Windows 中按下的箭头键上移动?

    • 1 个回答
  • Marko Smith

    VirtualBox 无法以 VERR_NEM_VM_CREATE_FAILED 启动

    • 8 个回答
  • Marko Smith

    应用程序不会出现在 MacBook 的摄像头和麦克风隐私设置中

    • 5 个回答
  • Martin Hope
    Vickel Firefox 不再允许粘贴到 WhatsApp 网页中? 2023-08-18 05:04:35 +0800 CST
  • Martin Hope
    Saaru Lindestøkke 为什么使用 Python 的 tar 库时 tar.xz 文件比 macOS tar 小 15 倍? 2021-03-14 09:37:48 +0800 CST
  • Martin Hope
    CiaranWelsh 如何减少“vmmem”进程的消耗? 2020-06-10 02:06:58 +0800 CST
  • Martin Hope
    Jim Windows 10 搜索未加载,显示空白窗口 2020-02-06 03:28:26 +0800 CST
  • Martin Hope
    andre_ss6 远程桌面间歇性冻结 2019-09-11 12:56:40 +0800 CST
  • Martin Hope
    Riley Carney 为什么在 URL 后面加一个点会删除登录信息? 2019-08-06 10:59:24 +0800 CST
  • Martin Hope
    zdimension 鼠标指针在 Windows 中按下的箭头键上移动? 2019-08-04 06:39:57 +0800 CST
  • Martin Hope
    jonsca 我所有的 Firefox 附加组件突然被禁用了,我该如何重新启用它们? 2019-05-04 17:58:52 +0800 CST
  • Martin Hope
    MCK 是否可以使用文本创建二维码? 2019-04-02 06:32:14 +0800 CST
  • Martin Hope
    SoniEx2 更改 git init 默认分支名称 2019-04-01 06:16:56 +0800 CST

热门标签

windows-10 linux windows microsoft-excel networking ubuntu worksheet-function bash command-line hard-drive

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve