Media creation tool windows server 2016

Данная инструкция позволяет создать загрузочный USB диск с Windows Server 2016 без использования сторонних программ, только Powershell или cmd.

Данная инструкция позволяет создать загрузочный USB диск с Windows Server 2016 без использования сторонних программ, только Powershell или cmd.

Нам понадобится: .iso образ Microsoft Windows Server 2016, USB-flash или USB-диск минимум на 8 GB и компьютер под управлением Windows 7, Windows Server 2008 или выше.

  • Монтируем iso-файл (двойной клик по файлу), запоминаем букву примонтированного диска (в моём примере буква G:);
  • Втыкаем флешку в USB, запоминаем букву диск (в моём примере буква E:);

  • Запускаем Powershell или cmd с правами администратора (Пуск — написать Powershell (или cmd) — пкм — запуск от имени администратора);

Внимание: следующие команды удалят все данные на выбранном диске без запроса подтверждения. Убедитесь что выбран правильный диск.

  • Используем программу diskpart для подготовки диска к записи ОС.
diskpart
list disk
select disk 2 (в моём случае нужный диск - 2. Тут нужно внимательно выбрать необходимый диск)
list disk

после повторного выполнения команды list disk выбранный диск будет помечен символом"*"
следующая команда полностью очистит диск

clean
create partition primary
select partition 1
active
format fs=ntfs quick label="WinSRV16"
exit

Всё, USB-диск готов к записи установочного образа, приступаем к записи образа.

  • Теперь необходимо записать загрузочный сектор (все операции продолжаем выполнять в Powershell) (заменить G: на свою букву диска)
cd G:boot
bootsect /nt60 e:

Выбранный том был обновлён с помощью загрузочного кода, совместимого с BOOTMGR.

Теперь осталось скопировать файлы на USB-диск. Делать это будем с помощью утилиты xCopy. Замените буквы дисков в соответствии с вашими дисками.

xcopy G:*.* E: /E /H /J /F

Может показаться что копирование зависло, это связано с тем, что файл install.wim очень большой, более 4GB, необходимо просто ждать. Копирование завершится в среднем за 10 минут, в зависимости от скорости USB-диска.
Именно поэтому мы форматировали диск в NTFS.

После того, как копирование завершится, можно использовать полученный диск для установки Windows Server 2016.

UEFI

Внимание: чтобы UEFI загрузчик нормально увидел носитель — его необходимо отформатировать в fat32

Так же используем diskpart

 
diskpart
list disk
select disk 2 (в моём случае нужный диск - 2. Тут нужно внимательно выбрать необходимый диск)
list disk

после повторного выполнения команды list disk выбранный диск будет помечен символом"*"
следующая команда полностью очистит диск

clean
create partition primary
select partition 1
active
format fs=fat32 quick label="WinSRV16"
exit

Всё, USB-диск готов к записи установочного образа, приступаем к записи образа.
Можно просто скопировать файлы из смонтированного образа.
Файл install.wim не удастся скопировать, т.к. его размер более 4GB.
Придётся резать.

 
Dism /Split-Image /ImageFile:E:sourcesinstall.wim /SWMFile:C:UsersAdministratorDesktopinstall.swm /FileSize:3000

/ImageFile — путь к файлу install.wim
/SWMFile — путь, куда положить нарезанные swm-файлы
/FileSize — максимальный размер одного swm-файла

Далее полученные файлы необходимо скопировать на флешку в sources

Конечно, что самый простой и интуитивный способ создать загрузочную USB флешку для установки Windows Server 2016 на физический сервер – воспользоваться утилитой Windows USB/DVD Download Tool. Данная утилита позволяет записать имеющийся *.iso образ Windows на USB флешку/диск и сделать его загрузочным. Однако, она форматирует флешку в файловую систему NTFS, загрузка с которой не поддерживается на UEFI системах и пригодна такая флешка только для установки Windows только на BIOS системах. В данной статье мы покажем, как без использования сторонних утилит создать установочную флешку с дистрибутивом Windows Server 2016.

Примечание. В отличии BIOS систем, которые могут загрузиться с загрузочных разделов с файловыми системам FAT, FAT32, exFAT или NTFS, UEFI системы могут загрузится только с загрузчика, находящегося на диске, отформатированном в ФС FAT32.

В зависимости от архитектуры сервера UEFI / BIOS нужно воспользоваться одним из следующих способов создания установочной флешки.

Содержание:

  • Установочная USB флешка для UEFI системы
  • Установочная флешка c таблицей разделов MBR для BIOS и UEFI архитектур
  • Размер файла Install.wim более 4 Гб

Важно. При выполнении данной инструкции нужно быть внимательным, проверять пути к дискам и номера дисков, в противном случае, можно случайно отформатировать диск с данными. USB флешка будет отформатирована в любом случае, и данные на ней удалены.

Установочная USB флешка для UEFI системы

В том случае, если флешка будет использоваться для загрузки и установки Windows Server 2016 на сервере с поддержкой UEFI, на загрузочную флешку накладываются следующие требования:

  • Минимальный размер USB флешки – 8 Гб
  • Тип таблицы разделов флешки – GPT
  • Файловая системе — FAT32

Итак, подключите USB флешку к компьютеру (в нашем примере это ПК с Windows 10), откройте командную строку с правами администратора, выполните команду DISKPART, в контексте которой выполните следующие команды:

list disk

Выведем список дисков, моем случае USB флешка имеет номер диска 1. Выберем ее.

select disk 1

Очистим содержимое флешки.

clean

Преобразуем таблицу разделов в GPT:

convert gpt

Создадим новый раздел (размер не должен превышать 16 Гб):

create partition primary

Совет. Если размер USB флешки более чем 16 Гб, нужно создать раздел, размером до 16Гб:

create partition primary size=16000

Отформатируем раздел в ФС FAT32:

format fs=FAT32 quick

Назначим новому разделу букву диска:

assign letter=M

Создаем установочную USB флешку с Windows Server 2016ш
Осталось завершить сеанс diskpart:

exit

Скопируем файлы дистрибутива со смонтированного iso образа Windows Server 2016 на флешку (предполагаем, что iso образ смонтирован с буквой диска E:).

xcopy e:* m: /H /F /E

Установочная флешка c таблицей разделов MBR для BIOS и UEFI архитектур

Возможно создать установочную флешку с Windows Server 2016 с таблицей разделов MBR для BIOS и UEFI системе. К USB драйву предъявляются следующие требования:

  • Минимальный размер USB флешки – 8 Гб
  • Тип таблицы разделов– MBR
  • Файловая системе — FAT32

Также запустите сессию diskpart и последовательно выполните команды:

Список дисков в системе:

list disk

Выбираем USB диск (в моем примере, Disk 1):

select disk 1

Очистим диск:

clean

Создадим новый раздел размером не более 16 Гб. Если размер флешки меньше 16 Гб:

create partition primary

Если больше:

create partition primary size=16000

Отформатируем флешку в файловой системе FAT32:

format fs=FAT32 quick

Сделаем раздел активным и назначим букву диска M:

active
assign letter=M


diskpart - создаем загрузочную флешку с mbr

Завершим работу diskpart командой exit и скопируем файлы дистрибутива на флешку:

xcopy e:* m: /H /F /E

Размер файла Install.wim более 4 Гб

В том случае, если размер файла Install.wim более 4Гб, скопировать такой файл на флешку не получится, т.к. максимальный размер файла на файловой системе ограничен 4 Гб. В данной ситуации придется разбить wim файл на несколько более мелких файлов с помощью DISM:

dism /Split-Image /ImageFile:e:sourcesinstall.wim /SWMFile:m:sourcesinstall.swm /FileSize:4096

RRS feed

  • Remove From My Forums
  • Question

  • Good day,

    I am having some difficulty downloading the server 2016. When it finishes downloading, the evaluation one, it asks for a CD. Someone could help me on how to save it directly to my pc and install it? Thanks

All replies

    • Proposed as answer by

      Thursday, December 7, 2017 2:21 AM

  • Hi,

    I am not sure about current OS on your device, in general, if it is Windows Server 2012/Windows 8 and later OS version, it supports to mount ISO file without any third-party software.

    If it is your current OS version, you can just double click to open ISO file, then, double click setup.exe to start the installation.

    Otherwise, you may need tools to create bootable USB/DVD as installation medium, then, re-start system from installation medium to start the system install. 

    Best Regards,
    Eve Wang


    Please remember to mark the replies as answers if they help.
    If you have feedback for TechNet Subscriber Support, contact
    tnmff@microsoft.com.

    • Proposed as answer by
      Eve WangMicrosoft contingent staff
      Thursday, December 7, 2017 2:21 AM

  • Hi,

    How things are going there on this issue?

    Please let me know if you would like further assistance.

    Best Regards,
    Eve Wang


    Please remember to mark the replies as answers if they help.
    If you have feedback for TechNet Subscriber Support, contact
    tnmff@microsoft.com.

  • Dear Dave,

    Is it possible to activate an eval version of Windows Server with a valid licence key or not? I have a customer who have purchased one but the disc is far away and I have to make a remote installation, but I’m not have an original disc with me and can’t
    find any other download option on MS website.

    Thanks, Zoltan

  • Dear Dave,

    Is it possible to activate an eval version of Windows Server with a valid licence key or not? I have a customer who have purchased one but the disc is far away and I have to make a remote installation, but I’m not have an original disc with me and can’t
    find any other download option on MS website.

    Thanks, Zoltan

    I’d start a new thread.


    Regards, Dave Patrick ….
    Microsoft Certified Professional
    Microsoft MVP [Windows Server] Datacenter Management

    Disclaimer: This posting is provided «AS IS» with no warranties or guarantees, and confers no rights.

  • «I’d start a new thread.«

    Or better yet, simply search this forum.  You will see that your question has been answered many times.

    The answer to the question of activating an evaluation copy with a valid key is ‘yes’.  Search the forum and you will find instructions on how to do it.


    tim

  • First of all why don’t they do the installation since they have the key? If they are not IT personnel they can Google how to install Server 2016.I believe that a remote installation can be done if they use WSUS, they may be able to configure the installation
    on WSUs with the key, Google WSUS.

Windows Server 2016 can be installed in a similar fashion as the last several releases. In this example we will create a bootable USB drive with Windows Server 2016 available to install. The classic method of creating a Windows Installation USB drive is to use the free utility Windows USB/DVD Download Tool.

Download the Utility

Download the latest version of the Windows USB/DVD Download Tool from Codeplex.

Install and run the utility on a Windows desktop system with a USB drive attached.

Note: The utility is still called “Windows 7 USB/DVD Download Tool”

Note: .NET may be required to be enabled as the utility requires .NET 2.0  To enable .NET 2.0 simply go to Control Panel and enable .NET Framework 3.5 (see screenshot below)

Load Windows onto the USB

When the Utility is started, a four step wizard begins.

creating a usb windows installer

Step one asks for the Windows ISO source file. This will be the Windows distribution that will be copied and installed onto the USB drive.

creating a usb windows installer

Select “USB Device”. DVD is also an option for creating bootable DVD disks.

creating a usb windows installer

Make sure the correct USB drive is selected. The contents of the USB drive will be destroyed.

Create the USB Drive

Select “Begin Copying” to create the USB bootable drive.

creating a usb windows installer

The utility gives you a chance to cancel, otherwise select Erase USB Device.

creating a usb windows installer

You are given one more chance to back out. Select Yes.

On Step four, the USB drive is partitioned, formatted and Windows is unloaded, and the USB drive is configured as a bootable device.

creating a usb windows installer

creating a usb windows installer

And the USB drive is complete. Either exit or create another Windows setup distribution.

To install Windows from the USB, boot a computer from the USB and the Windows Installer OS will initiate the Windows Installation.

Warning: You must install Windows Server 2016 Datacenter edition. Only the Datacenter edition contains the Network Controller, Software-defined Networking, and Storage Spaces Direct.

Note: When powering up a Supermicro computer, press the F11 key until the boot menu appears.

Enable .NET 2.0

If during installation the utility displays a message requiring .NET 2.0, open Control Panel and enable the feature .NET 3.5 (and thereby .NET 2.0).

Control Panel entry to enable .NET 3.5

Command prompt

Microsoft has released the final version of Windows Server 2016. I thought that it might be a good idea to create a USB stick that can be used as a source to install the Windows Server 2016 OS to other servers/workstations.

There are many free tools that can be used to do the job, but sometimes you just don’t have that option or simply you do not want to use any free tools for this job. It is not so difficult to create a bootable USB, and this post will teach you how to do that in 6 easy steps.

This process works on any version of Windows Server or Windows Desktop version 8 or above. It uses Microsoft Diskpart tool present on those systems. It’s a command line tool, which is invoked by simply typing “Diskpart” from within a command prompt.

This How-To should also work on versions earlier than Windows 10, Windows 8, Windows Server 2012, Windows 7 and Windows Vista, and Windows Server 2008 or Windows Server 2008 R2.

This post will teach you this process without any freeware/shareware. The article does not use any downloadable programs or nor is it executable from anywhere. It uses only programs already present in the Windows system. All you need to have is the Microsoft ISO and have a laptop/workstation running Windows 8 or higher, with a free USB slot.

If you do not have the ISO of Windows Server 2016, you will need to download it. To download Windows Server 2016 eval 180 days, go to this link. Microsoft will also make this download available through usual subscription services.

Create Boot USB with Windows Server 2016 – Here are the steps:

Step 1. The first thing to do is to mount the ISO of Windows Server 2016 you just downloaded. Double-click the ISO file to mount it. Check the drive letter and make note of the drive letter.  In my case, it is drive D:

Devices and drivers

Step 2. Put in the USB Key on your computer and make note of the drive letter and the size of the disk.  In my case, it is E: and 10gb.  Your environment will certainly be different than mine. You will need at least an 8gb USB thumb drive as the process will require 4.9gb.

Step 3. Run Elevated command prompt Start > type cmd > Right-click cmd at the top of the menu >  Run as Administrator and accept the elevation request

Command propmt

Important NOTE:  The following commands will completely wipe out your disk without warning, so make sure you select the proper disk. You can also disconnect all external drives or other USBs currently connected to your system to limit possible mistakes.

StarWind HyperConverged Appliance is a turnkey hyper-converged hardware platform fitted into a small two-node footprint. You don’t need anything else to build a budget-friendly new IT infrastructure or upgrade an existing one. All your systems will be “babysitted” by StarWind 24/7/365, troubleshooting any concerns without your involvement. Everything’s operated through a neat web UI. We’ll also migrate your workloads at no extra cost.

Dramatically decrease your CapEx, OpEx, and IT management costs, while visibly increasing return on investment (ROI) with hyperconvergence for ROBO, SMB & Edge from StarWind.

Step 4. Next, you will run the program called Diskpart to prepare the disk for the OS.

diskpart

list disk

Command prompt

select disk

in my case, I’ll do Select Disk 1 as Disk 1 is my 10Gb USB disk.

list disk

Please Note: after you run list disk again, the selected drive should be prefaced with the asterisks “*”. This is a small hint because I know the CLI isn’t everyone’s favorite.

Attention! Watch out: the next line is the one that wipes the drive completely. It cleans the drive.

clean

create partition primary

select partition 1

active

format fs=ntfs quick label=”2016Server”

exit

Leaving DiskPart…

Step 5. Now we need to copy the boot sector.  Make sure that you are still within the command prompt window

D:

cd boot

Note: Run “bootsect /help” for detailed usage instructions.

bootsect /nt60 e:

Target volumes will be updated with BOOTMGR compatible bootcode.

Bootcode was successfully updated on all targeted volumes.

Step 6. Now we just need to copy the files… (STILL Within the DOS window)

It is a xCopy command to copy files. The syntax is basically xCopy (source) (destination) with some switches (I won’t go into details). You’ll need to replace drive letters below with your drive letters.

xcopy D:*.* E: /E /H /F

NOTE: There is a very large file called install.wim which will get copied. So when it copies the install.wim file, it will take a very, very long time. This is just to let you know. This file is very large (4gb), but the copy command should finish without error.

Step 7. There is no step 7… You’re done. Once the copy finishes, you can boot Off the USB drive to install a new system on some server. It is usually handy to have such a USB if you’re an admin/technician and use it for systems that do not have a CD/DVD drive installed.

NOTE: Don’t forget to change your BIOS settings concerning the boot order. You must put USB first, then Hard disk as second. Usually, you’ll do that through F2 or F12, or DEL key on your keyboard. But this varies from one manufacturer to another.

Diskpart commands: https://technet.microsoft.com/en-us/library/Cc766465(v=WS.10).aspx

  • Tap Room Meeting: StarWind drop makes a pint of Microsoft Windows Server environment taste better
  • Hyper-V in Windows Server 2016: Reboot oder Revolution

Media Creation Tool
для Windows

Media Creation Tool скриншот № 1

Windows 11/10 Media Creation Tool — фирменная утилита от Microsoft Corporation, позволяющая создавать загрузочные образы операционной системы Windows 11/10 без использования ключа продукта непосредственно с сервера компании. Эта программа значительно упростила получение нужной Вам версии ОС Windows, не требуя сложных настроек и предоставляя возможность выбора необходимой архитектуры.

Для получения полностью легального образа системы потребуется интернет-соединение, а также носитель — USB-флешка или DVD-диск. После запуска утилиты выберите язык ОС, тип издания (домашняя, Pro и др.) и архитектуру (32-bit или 64-bit). А далее просто определите, куда записать образ операционки. Если выберите DVD-диск, то будет создан ISO-образ, а при выборе USB flash drive загрузочная флешка создастся даже без предварительного ISO-образа. Далее все проходит в автоматическом режиме — Вам останется только дождаться окончания процедуры установки.

Кроме этого, вы можете использовать Media Creation Tool для обновления системы до последней версии Windows 10/11 непосредственно на вашем компьютере без создания загрузочного носителя.

ТОП-сегодня раздела «Обновления, патчи»

скачать ASUS BIOS UpdateASUS BIOS Update 7.18.03

ASUS BIOS Live Update — Фирменная утилита для обновления BIOS материнских плат ASUS через интернет…

скачать MSI LiveUpdateMSI LiveUpdate 6.2.0.74

MSI LiveUpdate — это полезные и мощные приложения для автоматической загрузки и обновления BIOS,…

Отзывы о программе Media Creation Tool

Артём про Media Creation Tool 21H1 Win10 / 21H2 Win11 [20-12-2022]

Люди, помогите пж у меня ошибка 0x800072f8f-0x20000
11 | 26 | Ответить

Правдоруб про Media Creation Tool 21H1 Win10 / 21H2 Win11 [13-10-2022]

Народ качать несоветую всё в сифаках, комп не включается после перезагрузки
| | Ответить

Kerxa про Media Creation Tool 21H1 Win10 / 21H2 Win11 [09-09-2022]

Это какая-то особая версия? У меня при установке не требует активации и создания аккаунта. После установки windows уже активированный. Когда качаю через vpn с офф. сайта, то там при установке просят создавать аккаунт и windows устанавливается не активированный.
| 3 | Ответить

Liliya про Media Creation Tool 10.0.18362.418 (1909) [03-03-2020]

Спасибо! Замучил UEFI.
10 | 10 | Ответить

костя про Media Creation Tool 10.0.18362.1 (1903) [14-12-2019]

мне пишет не хватает компанента
15 | 17 | Ответить

Понравилась статья? Поделить с друзьями:
  • Media creation tool windows 11 скачать торрент бесплатно
  • Media creation tool windows 11 без tpm
  • Media creation tool windows 10 что это такое
  • Media creation tool windows 10 скачать с официального сайта 64 бит
  • Media creation tool windows 10 скачать образ диска