w10install/README.md

814 lines
27 KiB
Markdown
Raw Normal View History

2021-02-21 20:52:45 +01:00
# Windows 10 automated install
## What is all this about?
2021-03-27 21:04:39 +01:00
The installation of systems (professional or private) is a tedious job. In general nobody enjoys this. Nowadays most private individuals also have at least 2 computers. In my case there are 3 PC's in my private office and 3 in my companie's office (I am the company owner). There are also 2 laptops. Mind you: I use these 8 PC's solely for my work and my hobby as a Linux developer.
2021-02-21 20:52:45 +01:00
It doesn't matter whether it's Linux, Windows or Mac OS: You need an automated installation if you want to avoid this waste of time. The installation of the system itself is usually not that much work - but installing and configuring the other applications (e.g. browser, email program, office package, etc.) is often very time-consuming.
Since I am forced to work with Windows on the desktop - for professional reasons - this collection of scripts / this HowTo is exclusively geared towards Windows - and that will not change either.
2021-03-27 23:02:34 +01:00
First I looked for a "professional" solution. Unfortunately I didn't find anything suitable. Sure - there is commercial software (so-called "enterprise" programs) but mostly these are bad or expensive or both or simply not available for normal users or small companies. I'm following the KISS principle privately and professionally - this is why complicated software (aka. bloatware) with agents, whistles and bells etc. pp. was out of the question.
2021-02-21 20:52:45 +01:00
2021-03-27 21:04:39 +01:00
Another major problem is the spying frenzy of software manufacturers. Yes - i mean you Microsoft! So this means primarily the removing of Windows 10 telemetry. But unsolicited updates, by third-party manufacturers, are just as plague. This project takes care of that problem - as far as possible - without impairing the functionality of the system in an intolerable manner. But what is still tolerable? This lies mostly in the eye of the beholder ...
2021-02-21 20:52:45 +01:00
2021-02-24 21:35:39 +01:00
Finally, there is the problem of obesity. Modern systems are getting fatter, slower, more complex and therefore uglier. The whole thing has now reached a level that is no longer acceptable for many users. That is why one of the core tasks of this project is to strip down Windows 10 as much as possible (without loosing to much functionality - see above). This also automatically results in a reduction of the attack surface (programs that do not exist cannot be attacked).
2021-02-21 20:52:45 +01:00
## Project goals
2021-02-21 21:13:55 +01:00
- Provide an automated and unattended Windows 10 installation
- Remove Microsoft's Windows 10 telemetry (as far as possible)
2022-12-29 12:38:43 +01:00
- Remove other annoying Microsoft "gimmicks" (for e.g.: "Hello" screen)
- Keep the installation *stable* and *reproducable*
(save all files to your local disk or upload the to a private ftp server)
- Install the system in OFFLINE mode (aka "airgapped" install)
- Download and install 3rd party software automatically
- Configure the system automatically
(and remove Microsoft crap as far as possible without breaking important functionalies)
- And finally obey the KISS principle: Keep It Simple Stupid!
2021-02-21 20:52:45 +01:00
2021-02-21 21:13:55 +01:00
---
2021-02-21 20:52:45 +01:00
2021-02-21 21:13:55 +01:00
# **Please read this to get started!**
2021-02-20 18:17:27 +01:00
**IMPORTANT:**
2022-12-29 12:38:43 +01:00
This whole thing was crafted and tested with Windows 10 version 20H2 v1 english, 64-bit.
2021-02-20 18:17:27 +01:00
2022-12-29 12:38:43 +01:00
This is actually the only *supported* version!
2021-02-20 18:17:27 +01:00
*What will you need to run this?*
2023-01-02 12:33:40 +01:00
- a working Windows 10 installation with ADMIN(!) rights
2022-12-29 12:38:43 +01:00
- a working *commandline* GIT client
2021-02-21 12:54:52 +01:00
- a windows ISO image or Windows Media creator
2021-02-20 18:17:27 +01:00
- some tools from Microsoft
2022-12-29 12:38:43 +01:00
- some other tools (like curl, 7zip etc. pp.)
- Optionally: a *licensed* copy of "NTLite"
(this is only needed in case you want to modify the windows image)
2021-02-20 18:17:27 +01:00
# 1. Setup your workspace
2021-03-27 21:46:58 +01:00
Note: This was tested with a standard Windows 10 installation (20H2 v1).
2023-01-02 12:33:40 +01:00
Login with ADMIN rights!
2021-03-27 21:46:58 +01:00
2021-02-20 18:17:27 +01:00
## 1.1 Create some directories
open cmd.exe and execute:
```dos
mkdir c:\tools
mkdir c:\temp
```
## 1.2 Set needed environment variables
```dos
set TOOLS=c:\tools
set T=c:\TEMP
```
Make them permanent (... in case you open a new cmd window):
```dos
setx TOOLS c:\tools
setx T c:\TEMP
```
# 2. Get/Install basic tools and software
## 2.1 Get 7-zip
[7-ZIP Website](https://www.7-zip.org)
Download latest 64bit MSI file from: https://7-zip.org/download.html and save it in your "Downloads" folder.
2021-02-20 18:17:27 +01:00
2021-02-28 14:10:59 +01:00
Unpack the MSI with:
2021-02-20 18:17:27 +01:00
```dos
2021-03-27 21:23:30 +01:00
cd /D %USERPROFILE%\Downloads
move /Y 7z*-x64.msi 7z-setup.msi
2021-03-27 21:23:30 +01:00
msiexec /a 7z-setup.msi TARGETDIR=%T%
2021-03-27 21:25:02 +01:00
cd ..
2023-01-02 12:39:58 +01:00
2021-02-20 18:17:27 +01:00
```
After extracting execute:
```dos
2021-02-28 14:10:59 +01:00
move /Y %T%\Files\7-Zip\7z.exe %TOOLS%
move /Y %T%\Files\7-zip\7z.dll %TOOLS%
del /S /Q /A %T%\7z-setup.msi 1>nul 2>nul
rd /S /Q %T%\Files
2022-12-29 12:38:43 +01:00
2021-02-20 18:17:27 +01:00
```
## 2.2 Get curl
[CURL Website](https://curl.se/windows)
Download latest 64bit zip file from: https://curl.se/download.html and save it in your "Downloads" folder.
2021-02-20 18:17:27 +01:00
Deploy curl.exe and libcurl.dll into the tools folder:
2021-02-20 18:17:27 +01:00
```dos
2021-03-27 21:38:29 +01:00
cd /D %USERPROFILE%\Downloads
move /Y curl*.zip curl.zip
2021-03-27 21:41:05 +01:00
%TOOLS%\7z -y -o%T%\curl e curl.zip
2021-02-20 18:17:27 +01:00
move /Y %T%\curl\curl.exe %TOOLS%
move /Y %T%\curl\libcurl*.dll %TOOLS%
move /Y %T%\curl\curl-ca-bundle.crt %TOOLS%
rd /S /Q %T%\curl
2021-03-27 21:41:05 +01:00
cd ..
2022-12-29 12:38:43 +01:00
2021-02-20 18:17:27 +01:00
```
## 2.3 Install GIT
[GIT for windows website](https://git-scm.com)
2023-01-02 12:18:00 +01:00
Download latest 64bit exe file from: https://git.com/git-for-windows/git/releases and save it in your "Downloads" folder.
2021-02-20 18:17:27 +01:00
Create the GIT configfile for the setup program (use notepad):
```text
[Setup]
Lang=default
Dir=c:\tools\git
Group=Git
NoIcons=1
SetupType=default
Components=gitlfs
Tasks=
EditorOption=CustomEditor
CustomEditorPath=notepad.exe
DefaultBranchOption=
PathOption=CmdTools
SSHOption=OpenSSH
TortoiseOption=false
CURLOption=OpenSSL
CRLFOption=CRLFCommitAsIs
BashTerminalOption=ConHost
GitPullBehaviorOption=Merge
UseCredentialManager=Disabled
PerformanceTweaksFSCache=Disabled
EnableSymlinks=Disabled
EnablePseudoConsoleSupport=Disabled
2022-12-29 12:38:43 +01:00
2021-02-20 18:17:27 +01:00
```
2023-01-02 12:08:33 +01:00
**Save it** as c:\temp\install-git.txt
2021-02-20 18:17:27 +01:00
Execute the Git setup:
```dos
2021-03-27 21:44:26 +01:00
cd /D %USERPROFILE%\Downloads
2023-01-02 12:08:33 +01:00
move /Y Git-*64-bit.exe git-setup.exe
2021-03-27 21:44:26 +01:00
git-setup.exe /LOADINF=c:\temp\install-git.txt /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
cd ..
2022-12-29 12:38:43 +01:00
2021-02-20 18:17:27 +01:00
```
Cleanup:
```dos
del /S /Q /A c:\temp\install-git.txt 1>nul
2022-12-29 12:38:43 +01:00
2021-02-20 18:17:27 +01:00
```
2021-03-27 21:44:26 +01:00
2021-02-20 18:54:54 +01:00
## 2.4 Modify system PATH
2021-02-20 18:17:27 +01:00
2021-02-21 20:52:45 +01:00
You need to extend your PATH variable with the following directories:
2021-02-21 12:54:52 +01:00
```text
%TOOLS%
%TOOLS%\git\bin
%TOOLS%\git\usr\bin
2022-12-29 12:38:43 +01:00
2021-02-21 12:54:52 +01:00
```
2021-02-21 20:52:45 +01:00
Or (in case you are fine with our path settings) execute:
2021-02-20 18:17:27 +01:00
```dos
set PATH=%SYSTEMROOT%;%SYSTEMROOT%\system32;%SYSTEMROOT%\system32\wbem;%SYSTEMROOT%\system32\WindowsPowerShell\v1.0;%LOCALAPPDATA%\Microsoft\WindowsApps;%TOOLS%;%TOOLS%\git\bin;%TOOLS%\git\usr\bin
setx PATH %SYSTEMROOT%;%SYSTEMROOT%\system32;%SYSTEMROOT%\system32\wbem;%SYSTEMROOT%\system32\WindowsPowerShell\v1.0;%LOCALAPPDATA%\Microsoft\WindowsApps;%TOOLS%;%TOOLS%\git\bin;%TOOLS%\git\usr\bin
2022-12-29 12:38:43 +01:00
2021-02-20 18:17:27 +01:00
```
2023-01-02 12:39:58 +01:00
## 2.5 Enable Powershell script execution
This is a very **important** step! (We need to allow the execution of any powershell script)
Start a Powershell window **with ADMIN rights** ("Run As Administrator")!
And Execute:
```dos
powershell -Command "Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine"
```
2021-02-21 15:43:09 +01:00
# 3. Clone this repository
2021-02-20 18:17:27 +01:00
```dos
cd /D %USERPROFILE%
2023-01-02 12:14:20 +01:00
mkdir workspace\git
cd workspace\git
git clone https://gitea.exabyte.systems/WINDOWS/w10install.git
2021-02-20 18:17:27 +01:00
cd w10install
2022-12-29 12:38:43 +01:00
2021-02-20 18:17:27 +01:00
```
2021-02-21 15:43:09 +01:00
2021-03-27 22:01:25 +01:00
2021-03-27 22:20:34 +01:00
# 4. Get essential building tools and software
2021-02-21 17:29:18 +01:00
2023-01-02 12:33:40 +01:00
You can download all the needed software packages with the script "01_DownloadAll.cmd".
2021-03-27 22:33:50 +01:00
To do this execute:
```dos
2023-01-02 12:18:00 +01:00
cd /D %USERPROFILE%\workspace\git\w10install
2021-03-27 22:33:50 +01:00
01_DownloadAll.cmd
2022-12-29 12:38:43 +01:00
2021-03-27 22:33:50 +01:00
```
2023-01-02 12:18:00 +01:00
Alternatively you can download everything seperately (see chapters below)
2021-03-27 22:33:50 +01:00
2021-03-27 22:20:34 +01:00
## 4.1 Basic software
2021-02-21 20:52:45 +01:00
2021-03-27 22:20:34 +01:00
The "basic" software is needed to make this work.
2021-02-21 20:52:45 +01:00
2021-03-27 22:20:34 +01:00
Execute:
```dos
2023-01-02 12:18:00 +01:00
cd /D %USERPROFILE%\workspace\git\w10install\software
2021-03-27 22:20:34 +01:00
download-from-source.cmd basic
2022-12-29 12:38:43 +01:00
2021-03-27 22:20:34 +01:00
```
2021-02-21 20:52:45 +01:00
2021-03-27 22:20:34 +01:00
Config file: basic.csv
2021-02-21 20:52:45 +01:00
2021-02-21 21:13:55 +01:00
2021-03-27 22:20:34 +01:00
## 4.2 Browser software
2021-02-21 21:13:55 +01:00
2021-03-27 22:20:34 +01:00
This contains firefox and some addons ...
2021-02-22 00:27:16 +01:00
2021-03-27 22:20:34 +01:00
To download it execute:
```dos
2023-01-02 12:18:00 +01:00
cd /D %USERPROFILE%\workspace\git\w10install\software
2021-03-27 22:20:34 +01:00
download-from-source.cmd browser
2022-12-29 12:38:43 +01:00
2021-03-27 22:20:34 +01:00
```
2021-02-21 20:52:45 +01:00
2021-03-27 22:20:34 +01:00
Config file: browser.csv
2021-02-21 17:29:18 +01:00
2021-03-27 22:20:34 +01:00
## 4.3 Optional software
2021-02-21 17:29:18 +01:00
2021-03-27 22:20:34 +01:00
This contains optional software. For e.g.: Purebasic, TotalCommander, em-Client, Steam, Softmaker, Purebasic, Teams, Visual Studio Code etc. pp. ...
2021-02-21 17:29:18 +01:00
2021-03-27 22:20:34 +01:00
To download it execute:
2021-02-21 17:29:18 +01:00
```dos
2023-01-02 12:18:00 +01:00
cd /D %USERPROFILE%\workspace\git\w10install\software
2021-03-27 22:20:34 +01:00
download-from-source.cmd optional
2022-12-29 12:38:43 +01:00
2021-02-21 17:29:18 +01:00
```
2021-02-21 21:28:57 +01:00
2021-03-27 22:20:34 +01:00
Config file: optional.csv
Notice: Purebasic is needed to compile the software in the folder "source". These tools are precompiled and i placed the compiled versions in the folder "tools" - but in case you want to make some changes you will have to install this. The free version is sufficient to compile these little machine programs. By the way: Purebasic is a really great Basic dialect. It is Ultrafast, produces really small executables, it's rock solid and you won't need such bullshit like "vbrun100.dll" (shame on you Microsoft) to execute these binaries. It was created by a french programmer (Frederic Laboureur). Please support them and buy a licence in case you like Purebasic!
2021-03-27 23:02:34 +01:00
2021-03-27 23:16:45 +01:00
## 4.4 Windows 10 ISO file
2021-03-27 23:02:34 +01:00
My actual work is based on the English version of Windows 20H2 v1 64-bit. So we will need the ISO-file: "Win10_20H2_English_x64.iso". You could:
- download it yourself from Microsoft,
- you could use the tool "MediaCreationTool20H2.exe" (provided in the folder "software")
- or you could use the "HeiDoc" Windows ISO Downloader
I prefer to use the Windows ISO downloader ("Windows-ISO-Downloader.exe" in the folder "software").
Just start it (no installation needed) and select "Windows 10" on the right side.
Select edition (left side) and choose "Windows 10 Home/Pro" from "Windows 10 Version 20H2 - October 2020".
2021-03-27 23:16:45 +01:00
**Please DO NOT USE the v2 version! This is not tested yet (you have been warned)!**
2021-03-27 23:02:34 +01:00
Click "Confirm".
Select "English"
2021-03-27 23:16:45 +01:00
**Please DO NOT USE "International English" or some other language!**
2021-03-27 23:02:34 +01:00
Click "Confirm"
Click "64-bit download"
2021-03-28 15:59:37 +02:00
Save the ISO file to the folder "software" in the folder "w10install" and wait for the download to finish.
2021-03-27 23:16:45 +01:00
# 5. Extract the Windows 10 ISO file
The ISO file must be extacted to the disk now. The files will be place in c:\temp. The script "02_ExtractIso.cmd" does all the work.
Just execute:
```dos
2023-01-02 12:18:00 +01:00
cd /D %USERPROFILE%\workspace\git\w10install
2021-03-29 01:54:53 +02:00
02_ExtractIso.cmd software\Win10_20H2_English_x64.iso
2022-12-29 12:38:43 +01:00
2021-03-27 23:16:45 +01:00
```
2021-03-27 23:22:56 +01:00
2021-03-28 15:59:37 +02:00
# 6. Upload software to private FTP server
2021-03-27 23:22:56 +01:00
2021-03-28 15:59:37 +02:00
The internet is changing constantly. Software is changing at all times. URI's (files) **disappear**! Especially Microsoft has the habit to remove old versions of operating systems from their download servers. *But 3rd parties do this too.*
In fact: This was one of the main reasons why i created this: I wanted to have a source i can trust - a source that will not change until i say so.
So my advice is: upload the software to your own ftp server or create a local copy on some USB drive and most important: KEEP this copy for yourself!
Uploading all the software to your own server is easy. Just create the folder "personal" (in w10install) and put a config file named "ftpsettings.cmd" in it:
2022-06-21 22:55:51 +02:00
Example for personal\ftpsettings.cmd:
2021-03-28 15:59:37 +02:00
```text
FTP_SERVER=example.com
FTP_PATH=/path/to/directory/w10install/W1020H2v1
FTP_USER=myuser
FTP_PASS=mypass
2022-12-29 12:38:43 +01:00
2021-03-28 15:59:37 +02:00
```
2023-01-02 12:18:00 +01:00
The folder "personal" is also used by some other scripts in this project. You can place config files or license files in this folder (This will be described in detail in some other chapters). It may be a good idea to have this folder ("personal") as GIT repository on git or somewhere else - just my 50 cents.
2021-03-28 15:59:37 +02:00
2022-06-19 11:28:23 +02:00
There is also a folder "company" which can be used for license files and special binaries. I'm also recommending to create a git repository that will be checked out by you just before creating the target media.
Both folders must be created before calling the script that copies all files to the stick. Both folders will be copied then to the target machine when installing it via the USB stick...
2021-03-28 15:59:37 +02:00
Please notice: In the example i have chosen the path "... w10install/W1020H2v1". Best practice would be to have a folder for each Windows version (W1020H2v1). All files (including the iso file) should be put there - this makes sure that you have everything in one place for the case that you come back a year later or so and you want to create a new USB stick with a older Windows version - for testing purposes.
## 6.1 Upload ALL files to a private ftp server
Lets say you want to upload all browser related software to your private ftp server.
Execute:
```dos
2023-01-02 12:18:00 +01:00
cd /D %USERPROFILE%\workspace\git\w10install\software
2021-03-28 15:59:37 +02:00
upload-to-ftp.cmd browser
2022-12-29 12:38:43 +01:00
2021-03-28 15:59:37 +02:00
```
The script reads the file "browser.csv" in folder "software" and uploads all files to your ftp server. The files will be uploaded in any case (the script is not checking the size of the file in the target or whether it's already present. This is a really dumb script - but IMHO there's no smarter way to do this in dos batch ...). This is the reason why i have created a script to upload single files (see next chapter).
## 6.2 Upload a SINGLE file to a private ftp server
Lets say you want to upload the driver software for the WFC5210 printer to your private ftp server.
Execute:
```dos
2023-01-02 12:18:00 +01:00
cd /D %USERPROFILE%\workspace\git\w10install\software
2021-03-28 15:59:37 +02:00
upload-to-ftp-singlefile.cmd WFC5210-setup.exe
2022-12-29 12:38:43 +01:00
2021-03-28 15:59:37 +02:00
```
HINT: You can use this also to upload the ISO file to the ftp server.
## 6.3 Download software from a private FTP server
When you have uploaded the entire software to your private ftp server you can download it again on another workstation with the script "download-from-ftp.cmd" and you are then not dependent on any of the original sources. This is useful when files "disappear" "accidentally" or "unintentionally" from some server. That is also a reason why I programmed all of this here.
Just execute:
```dos
2023-01-02 12:18:00 +01:00
cd /D %USERPROFILE%\workspace\git\w10install\software
2021-03-28 15:59:37 +02:00
download-from-ftp.cmd basic
download-from-ftp.cmd browser
download-from-ftp.cmd optional
download-from-ftp.cmd other
2022-12-29 12:38:43 +01:00
2021-03-28 15:59:37 +02:00
```
# 7. Install build tools
## 7.1 Windows ADK
2021-03-27 23:22:56 +01:00
This is needed to be able to edit the Microsoft XML files (needed for unattended installation) and for the creation of ISO files (last step in the build process - mainly needed for testing purposes).
To install it just execute:
```dos
2023-01-02 12:18:00 +01:00
cd /D %USERPROFILE%\workspace\git\w10install\scripts
2021-03-27 23:22:56 +01:00
install-adk.cmd
2022-12-29 12:38:43 +01:00
2021-03-27 23:22:56 +01:00
```
2021-03-27 23:31:34 +01:00
2021-03-28 15:59:37 +02:00
## 7.2 Other tools
2021-03-28 00:59:51 +01:00
Creating a new windows image and removing "builtin" packages needs a tool called "install_wim_tweak". To install this tool an some others just execute:
```dos
2023-01-02 12:18:00 +01:00
cd /D %USERPROFILE%\workspace\git\w10install\scripts
2021-03-28 00:59:51 +01:00
unpack-zipfiles.cmd
2022-12-29 12:38:43 +01:00
2021-03-28 00:59:51 +01:00
```
2021-03-27 23:31:34 +01:00
2023-01-02 13:45:56 +01:00
# 8. Build the Windows Images for unattended installations
2021-03-27 23:31:34 +01:00
2023-01-02 13:45:56 +01:00
Many things will be done here:
2021-03-27 23:31:34 +01:00
- extract the boot image (WIM file) and add tools to provide a boot menu etc. pp.
- extract Windows image (WIM file) and choose Windows 10 Pro version
- remove all apps from the windows image (except the Store app!)
2021-03-27 23:34:26 +01:00
2023-01-02 13:45:56 +01:00
**Please start your cmd.exe with "Run as Administrator"!**
2023-01-02 22:46:56 +01:00
*HINT: In case you need a "standard" windows media without modifications just skip the following 3 steps and proceed directly to the script "06_FormatStick.cmd" (chapter 9).*
2023-01-02 13:45:56 +01:00
## 8.1 Create a boot image
Execute:
```dos
cd /D %USERPROFILE%\workspace\git\w10install
2023-01-04 15:20:47 +01:00
03_PrepareBoot.cmd
2023-01-02 13:45:56 +01:00
```
This will create the new "boot.wim" image.
## 8.2 Prepare the new windows image
2021-03-27 23:31:34 +01:00
2021-03-28 11:29:42 +02:00
Execute:
2021-03-27 23:31:34 +01:00
```dos
2023-01-02 12:18:00 +01:00
cd /D %USERPROFILE%\workspace\git\w10install
2023-01-04 15:20:47 +01:00
04_PrepareImage.cmd /R
```
2023-01-04 16:04:32 +01:00
This will create/prepare the new "install.wim" and it will remove all apps that are listed in the file "image\apps-to-remove.csv".
*HINT: To leave the standard apps in the image just call the script without switch '/R'*
2023-01-04 15:20:47 +01:00
2023-01-02 13:45:56 +01:00
## 8.3 Edit the Windows image with "NTLite"
In case you have installed "NTLite" the script "04_PrepareImage.cmd" will start it and you can modify your windows image now.
2023-01-02 22:46:56 +01:00
**WARNING: Be careful what you remove - or you could end up with a non working windows installation.**
*SUGGESTION: Before modifying your windows image (and maybe screwing up everything) go through the whole process and test your boot media with a standard image.*
2023-01-02 13:45:56 +01:00
# 9. Finally create a new boot media
2021-03-28 11:29:42 +02:00
This has to be done in 3 steps:
- format a media (USB stick)
- create a standard Windows 10 boot media
- copy everything (custom image, software, config) to the media
2023-01-02 22:46:56 +01:00
## 9.1 Format the USB stick or a disk
2021-03-28 11:29:42 +02:00
Please use a fast USB 3 stick. The size should be 16 GB or more (you could use 8 GB but windows images are tending to get bigger and bigger. Additionally: We will copy lots of 3rd party software to the stick).
To create it execute:
```dos
2023-01-02 12:18:00 +01:00
cd /D %USERPROFILE%\workspace\git\w10install
2023-01-04 15:20:47 +01:00
05_FormatStick.cmd
2022-12-29 12:38:43 +01:00
2021-03-28 11:29:42 +02:00
```
2023-01-02 22:46:56 +01:00
*Choose the correct drive (this should be drive 1 or 2)*
2021-03-28 11:29:42 +02:00
**WARNING: Please be careful and make absolutely sure NOT TO DELETE any important data!**
Example run:
```text
====================
Format USB Stick ...
====================
Showing disk list ...
2023-01-02 13:45:56 +01:00
Microsoft DiskPart version 10.0.19041.1
2021-03-28 11:29:42 +02:00
Copyright (C) Microsoft Corporation.
2023-01-02 13:45:56 +01:00
On computer: FIREBIRD
2021-03-28 11:29:42 +02:00
Disk ### Status Size Free Dyn Gpt
-------- ------------- ------- ------- --- ---
2023-01-02 13:45:56 +01:00
Disk 0 Online 232 GB 0 B
Disk 1 Online 465 GB 1024 KB
Disk 2 Online 447 GB 384 GB
2021-03-28 11:29:42 +02:00
Leaving DiskPart...
2023-01-02 13:45:56 +01:00
Please select a disk: 2
OK using disk 2
Please select filesystem (exfat or fat32) [exfat]:
selected: exfat
IMPORTANT: maximum size for FAT32 is 32768!
Please enter size in MB [max]: 64000
selected size = 64000 [MB]
Please enter a label for the new disk: W10-20H2
WARNING ! This will DELETE ALL data on disk number [ 2 ]
REALLY delete disk 2 (Y/N)? y
Microsoft DiskPart version 10.0.19041.1
Copyright (C) Microsoft Corporation.
On computer: FIREBIRD
Disk 2 is now the selected disk.
2021-03-28 11:29:42 +02:00
2023-01-02 13:45:56 +01:00
DiskPart succeeded in cleaning the disk.
DiskPart successfully converted the selected disk to MBR format.
DiskPart succeeded in creating the specified partition.
Partition 1 is now the selected partition.
100 percent completed
DiskPart successfully formatted the volume.
DiskPart marked the current partition as active.
DiskPart successfully assigned the drive letter or mount point.
Leaving DiskPart...
2021-03-28 11:29:42 +02:00
READY.
USB stick formatted.
2022-12-29 12:38:43 +01:00
2021-03-28 11:29:42 +02:00
```
2023-01-02 22:46:56 +01:00
## 9.2 Copy the everything to the USB stick or a disk
2021-03-28 11:29:42 +02:00
2023-01-02 22:46:56 +01:00
Now it's time to copy the custom windows images, all scripts and additional 3rd party software to our boot media (USB stick).
2021-03-29 01:51:56 +02:00
2023-01-02 22:46:56 +01:00
*Notice: In the example we use drive "E:". Please make sure to use the correct drive letter for your USB drive!*
2021-03-28 11:29:42 +02:00
2021-03-29 01:54:00 +02:00
Execute:
2021-03-28 11:29:42 +02:00
```dos
2023-01-02 12:18:00 +01:00
cd /D %USERPROFILE%\workspace\git\w10install
2023-01-04 15:20:47 +01:00
06_Copy2Stick.cmd E:
2022-12-29 12:38:43 +01:00
2021-03-28 11:29:42 +02:00
```
2023-01-02 22:46:56 +01:00
IMPORTANT HINT: the script will ask for UEFI or BIOS mode. This means: In case you have a target machine that cannot boot in UEFI mode choose "BIOS" (or "B"). In all other cases UEFI may be a better choice. You can boot most modern boards in "BIOS" mode. Just enable "legacy" boot mode in you PC's firmware.
2023-01-02 14:33:56 +01:00
2021-03-28 11:29:42 +02:00
Example run:
2023-01-02 22:46:56 +01:00
```
searching for SCRIPT settings ...
OK. Loading SCRIPT settings ...
searching for COMPANY settings ...
OK. Loading COMPANY settings ...
2021-03-28 11:29:42 +02:00
2023-01-02 22:46:56 +01:00
=================================
Copying all data to USB Stick ...
=================================
using drive e: ...
BIOS or UEFI setup (B/U)? b
selected: BIOS
1 file(s) copied.
2021-03-28 11:29:42 +02:00
2023-01-02 22:46:56 +01:00
working on [ e:\autounattend.xml ] and replacing string [ ___MYUSER___ ] With [ support ] ...
working on [ e:\autounattend.xml ] and replacing string [ ___MYNAME___ ] With [ Exabyte Support ] ...
working on [ e:\autounattend.xml ] and replacing string [ ___MYPASS___ ] With [ ******** ] ...
working on [ e:\autounattend.xml ] and replacing string [ ___MYLANG___ ] With [ de-DE ] ...
copying all files in [ c:\TEMP\W10 ] to drive e: ...
2021-03-28 11:29:42 +02:00
-------------------------------------------------------------------------------
ROBOCOPY :: Robust File Copy for Windows
-------------------------------------------------------------------------------
2023-01-02 22:46:56 +01:00
Started : Montag, 2. Januar 2023 22:26:03
Source : c:\TEMP\W10\
Dest = E:\
2021-03-28 11:29:42 +02:00
2023-01-02 22:46:56 +01:00
Files : *.*
2021-03-28 13:02:24 +02:00
2023-01-02 22:46:56 +01:00
Options : *.* /256 /NDL /S /E /DCOPY:DA /COPY:DAT /PURGE /MIR /J /XX /R:10 /W:30
2021-03-28 11:29:42 +02:00
2023-01-02 22:46:56 +01:00
------------------------------------------------------------------------------
2022-12-29 12:38:43 +01:00
2023-01-02 22:46:56 +01:00
100% New File 128 c:\TEMP\W10\autorun.inf
[...]
100% New File 3584 c:\TEMP\W10\support\logging\en-us\actionqueueetw.dll.mui
2021-03-28 11:29:42 +02:00
2023-01-02 22:46:56 +01:00
------------------------------------------------------------------------------
2021-03-28 11:29:42 +02:00
2023-01-02 22:46:56 +01:00
Total Copied Skipped Mismatch FAILED Extras
Dirs : 85 84 1 0 0 1
Files : 900 900 0 0 0 1
Bytes : 5.727 g 5.727 g 0 0 0 7.7 k
Times : 0:00:39 0:00:33 0:00:00 0:00:06
2021-03-28 11:29:42 +02:00
2022-12-29 12:38:43 +01:00
2023-01-02 22:46:56 +01:00
Speed : 184186912 Bytes/sec.
Speed : 10539.259 MegaBytes/min.
Ended : Montag, 2. Januar 2023 22:26:43
2021-03-28 11:29:42 +02:00
2023-01-02 22:46:56 +01:00
copying folder [ tools ] to drive e: ...
2021-03-28 11:29:42 +02:00
2023-01-02 22:46:56 +01:00
100% New File 22016 C:\Users\mschmidt\workspace\git\WINDOWS\w10install\tools\allpull.exe
[...]
2021-03-28 11:29:42 +02:00
2023-01-02 22:46:56 +01:00
copying folder [ software ] to E:\tools ...
100% New File 1.6 m C:\Users\mschmidt\workspace\git\WINDOWS\w10install\software\7z-setup.msi
2021-03-28 13:02:24 +02:00
[...]
2021-03-28 11:29:42 +02:00
2023-01-02 22:46:56 +01:00
copying folder [ drivers ] to E:\tools ...
2021-03-28 13:02:24 +02:00
2023-01-02 22:46:56 +01:00
100% New File 488 C:\Users\mschmidt\workspace\git\WINDOWS\w10install\drivers\install-archerT5E-bluetooth.cmd
2021-03-28 13:02:24 +02:00
[...]
2023-01-02 22:46:56 +01:00
copying folder [ scripts ] to E:\tools ...
2021-03-28 13:02:24 +02:00
2023-01-02 22:46:56 +01:00
100% New File 5161 C:\Users\mschmidt\workspace\git\WINDOWS\w10install\scripts\autoconfig-all.cmd
2021-03-28 13:02:24 +02:00
[...]
2023-01-02 22:46:56 +01:00
copying folder [ source ] to E:\tools ...
100% New File 2123 C:\Users\mschmidt\workspace\git\WINDOWS\w10install\source\allpull.pb
2021-03-28 13:02:24 +02:00
[...]
2023-01-02 22:46:56 +01:00
copying folder [ optional ] to E:\tools ...
100% New File 456 C:\Users\mschmidt\workspace\git\WINDOWS\w10install\optional\install-antivir.cmd
2021-03-28 13:02:24 +02:00
[...]
2023-01-02 22:46:56 +01:00
copying folder [ company ] to E:\tools ...
100% New File 152 C:\Users\mschmidt\workspace\git\WINDOWS\w10install\company\ftpsettings.cmd
2021-03-28 13:02:24 +02:00
[...]
2023-01-02 22:46:56 +01:00
copying folder [ apps ] to E:\tools ...
100% New File 70 C:\Users\mschmidt\workspace\git\WINDOWS\w10install\apps\apps.txt
2021-03-28 13:02:24 +02:00
[...]
2023-01-02 22:46:56 +01:00
copying settings file to drive E: ...
1 file(s) copied.
copying custom setup script to E: ...
2021-03-28 13:02:24 +02:00
1 file(s) copied.
2023-01-02 22:46:56 +01:00
putting tools-copy script to E: ...
1 file(s) copied.
======
2021-03-28 11:29:42 +02:00
READY.
2023-01-02 22:46:56 +01:00
======
2022-12-29 12:38:43 +01:00
2021-03-28 11:29:42 +02:00
```
2021-03-28 13:02:24 +02:00
*Congratulations!*
**Your customized windows image for UNATTENDED installation is READY now. Remove the USB stick and put it into a PC you want to install.**
2023-01-02 22:46:56 +01:00
## 9.3 Create an ISO image
2021-03-28 13:46:21 +02:00
In case you need an ISO image you can create it with the following command:
```dos
2023-01-02 12:18:00 +01:00
cd /D %USERPROFILE%\workspace\git\w10install
2023-01-04 15:20:47 +01:00
07_MakeISOfromStick.cm E:
2023-01-02 22:46:56 +01:00
2021-03-28 13:46:21 +02:00
```
Example run:
```text
2023-01-02 22:46:56 +01:00
================================
Make ISO file from USB stick...
================================
2021-03-28 13:46:21 +02:00
2023-01-02 22:46:56 +01:00
using drive [ E: ] ...
2021-03-28 13:46:21 +02:00
OSCDIMG 2.56 CD-ROM and DVD-ROM Premastering Utility
Copyright (C) Microsoft, 1993-2012. All rights reserved.
Licensed only for producing Microsoft authorized content.
Scanning source tree (1000 files in 93 directories)
2023-01-02 22:46:56 +01:00
Scanning source tree complete (1209 files in 106 directories)
2021-03-28 13:46:21 +02:00
Computing directory information complete
2023-01-02 22:46:56 +01:00
Image file is 11892326400 bytes
2021-03-28 13:46:21 +02:00
2023-01-02 22:46:56 +01:00
Writing 1209 files in 106 directories to c:\temp\WIN10-AUTO.iso
2021-03-28 13:46:21 +02:00
100% complete
2023-01-02 22:46:56 +01:00
Final image file is 11895015424 bytes
2021-03-28 13:46:21 +02:00
Done.
2023-01-02 22:46:56 +01:00
======
2021-03-28 13:46:21 +02:00
READY.
2023-01-02 22:46:56 +01:00
======
2022-12-29 12:38:43 +01:00
2021-03-28 13:46:21 +02:00
```
Having an ISO image is useful for testing purposes or it maybe needed for a special use case - for e.g.: you want to install the system on some machine in the datacenter and the remote console needs an ISO image as boot media.
2023-01-02 22:46:56 +01:00
*Notice: This step is one of the reasons why we need the Windows ADK. The binary "oscdimg" is included in this Microsoft package. "oscdimg" is used by "08_MakeISOfromStick.cm" for creating the ISO image.*
2021-03-28 13:02:24 +02:00
2023-01-23 10:40:10 +01:00
# 10 Installation
(Using your stick/your disk to install a new machine.)
## 10.1 Firmware settings
Enter your firmware (typically by pressing "ESC", "F1" or "ENTF" while the machine is starting). DISABLE secure boot and all the other rubbish. Goto menu "Startup".
### 10.1.1 Boot order
Set your boot order in the machines "Startup" menu to:
- 1st Device: Hard Disk
- 2nd Device: USB Disk
Remove all other boot devices from the list.
![](firmware_boot_config.jpg)
### 10.1.2 Boot method
In case you want to install via BIOS method set the firmware to:
- Legacy only
In case you want to install via UEFI method set the firmware to:
- UEFI only
DO NOT USE "both" - in most cases this WILL cause trouble!
## 10.2 Booting
Power off your machine completely and boot it. Hit the "F12" key (or the key needed to select the boot device - in some cases this could also be "F11" or some other key) so that the machine starts from your newly generated USB drive.
![](firmware_boot_menu.jpg)
In the next screen select your USB disk:
![](firmware_boot_menu2.jpg)
## 10.3 Installing
After booting from the USB media you will see a menu. Select "INSTALL system" and click on "Yes" two times. *IMPORTANT! This will DELETE ALL DATA from your machine!* Answering "No" will reboot the machine without touching your data.
Clicking on the button "COMMAND shell" will start the rescue system.
Clicking on "Snapshot 64" will start the Bsckup/Restore program and you can restore your machine (from bare metal) over the network or with the attached USB drive using an image that was previously saved with "Snapshot 64").
![](setup_boot_menu.jpg)
## 10.4 Troubleshooting
*IMPORTANT!*
The windows setup program is not able to use "exfat" when starting in UEFI mode!
This means you can use 2 types of media to install a windows system:
1.) UEFI boot
- media **must** be formatted with **fat32** *ONLY*
- max. media size is **32768 MBytes**
- max. **WIM file** size must be smaller than **4 GBytes**
(because fat32 does not support files larger than 4 GBytes)
2.) BIOS boot
- media can be formatted with fat32 or exfat
- max. media size is limited by disk format (exfat can be larger)
- max. WIM file size can be larger than 4 GBytes
*Do NOT try to use exfat with UEFI boot!* This **will** result in the following error:
![](install_error.jpg)
```dos
Windows could not create a partition on disk 0. The error occured while applying the unattended answer file's <DiskConfiguration> setting. Error code: 0x80042565
```