I think Microsoft might introduce that because they can’t stop them from quickly installing it because you can just modify the wim image or just use an older version
@@amogus7 Not Sure If Joking since you're on the Gentoo stage of Linux use, but yes, it's a windows api translater. Works pretty well all things considered, I can run Elite Dangerous with more stability then I had under Windows, and Proton, Steam's spin on Wine, works out of the box or with minor tweaks for most games.
The Arch Linux install is basically an exercise in reading comprehension and a barrier to entry to ensure anyone who survives it has at least a modicum of troubleshooting skill. Teach a man to fish, and all that.
btw I use arch Sorry, but if you Linux user, you can't like manual Windows installation Reason: Linux users don't like Windows, even Windows installed via command line
@@MP-tz2yn Yeah, I will try installing Windows 10 Manually, but I have Windows 11 so why would I do this? (jk I hate Windows 11 due to removed features)
Misha Petrov gpt table normally called GUILD Partition Table is a standard for the layout of partition tables of a physical computer storage device, such as a hard disk drive or solid-state drive, using universally unique identifiers, which are also known as globally unique identifiers.
@@xolagix lmao ok so i admit to not knowing what a gpt table is, but ive installed w10 for several people before and it was just like you said, a few yeses, wait for install, then the oobe. i dont recall any advanced technical stuff
I really didn't expect Windows to be manually installable, let's not even talk about how easy it is. I've struggled more trying to make my own Linux Arch install, holy shit.
@@NetRolller3D Yep, the easiest way to customize Windows. Make all necessary changes on VHD, sysprep (or even not - it works without, Windows should just recognize new hardware), and capture VHD to WIM, replace install.wim in original image and done.
The reverse is also possible: capture a custom install image using dism, replace install.wim in a stock ISO, and then install the customized system using the original GUI installer. This is actually how we stopped our IT department from using ancient DOS-based (as in actual 16-bit MS-DOS, not just command line) utilities for OS imaging, when said old utilities bottlenecked us to no larger than 2TB RAID arrayd.
@@archlinus5066 Even the kernel is updatable without rebooting using a piece of black magic called kpatch. It's only intended for life-critical servers that need 100% uptime, though, and the average Linux user is better off just turning it off and on again.
Welp, windows is HARDER to install, but in windows you don't need to SETUP your system (due to all settings are in installation image). In every linux you need to reboot just one time to install. I've counted three times here.
This command line installation is normally used by OEMs to slipstream Windows on their machines, it isn't really intended to be used for a normal installation. I did this on a separate partition several times on my system during the early days of Windows 10 for testing purposes, and in this scenario it's much easier since you don't have to reboot the system and much safer if you know what you're doing since you don't risk losing your data.
Yeah. I hate questions like: "Do you want to sign in Microsoft account?", or "Enter security question"... It's very interesting to install Windows this way.
i will try this on a vm later :) and the commands are: diskpart sel disk 0 convert gpt create part efi size=500 format fs=fat32 quick assign letter w create part primary format fs=ntfs quick assign letter c exit cd /d D:\sources dism /apply-image /imagefile:install.wim /index:1 /applydir:C:\ bcdboot C:\Windows /s W: regedit wpeutil reboot oobe\windeploy net user /add "your name" net localgroup /add users "your name" net localgroup /add administrators "your name" regedit exit
@@sparkie5571thx, was tryna do on 22h2 and on the iso it was install.esd, not .wim, wim is for older versions i suppose, since the video is 4 years old
the bcdboot C:\Windows /s W: command shows the help screen for bcdboot, help please! edit: it shows the error Failure when initializing library system volume
@@halfhalf622well it isn't that important, its required for automatic repair, when it's missing you get a "Your device needs to get repaired" instead of an attempt to repair automatically. If you don't mess with stuff on it, it's fine
@@Armi1Precovery partitions are required for automatic PC repair, when it's missing you get a "Your device needs to get repaired" instead of launching into automatic repair
*Enderman*: manually sets up partition scheme, copies binaries, boot files and os files, edits half a dozen of registries, manually creates an user, goes through windows' "let us steal all your data" agreement prompt and reboots two times. *Linux user*: sets up partition scheme, boot partition, default user, installs basic packages and reboots once. *Enderman*: "Still easier than linux".
@Hai Red 1. you don't need to, you can, but definitely not needed 2. not all linux distros are gentoo 3. gentoo is meant for the really power users, for those kinds of people gentoo isn't really hard, but if you have never used linux before or have only used Ubuntu/LinuxMint then yes it is really hard
Well as you see he was tryna manually install and maybe some debugging mode or something was there that made it login like that. I used to work with windows server editions and everytime you login to the user account it shows all those different texts instead of “welcome”
3:33 Gentoo is not just installed, it's compiled. It's more like making your own Linux distro from scratch. Arch on the other hand is (in my opinion) just a bit easyer to install manually.
@@OopsSpaghetti69420 It took me a while to do it aswell, in my case, I just had to try all the different drive letters (2 on the hard drive, one on the usb), and eventually I managed to find the file
@@baltazargorzny2959 Sorry for being late, but if it works on Windows 10, then it should work on Windows 11, because the two has the same version number. It should even work on Windows 2000/XP because of Recovery Console, and on Windows Vista because of the installer being (almost) the same as Windows 7-11.
using this as a way to install windows after it refuses to install and wants to format the whole hdd(I dual boot with arch linux so no way I am formatting the whole hdd)
For everyone that is trying to do this and can't access the D drive or run the DISM I hope this helps
For the D drive, if it says that the directiory doesn't exist, it means your iso architecture is both x64 and x86, when you do the command to go to the D drive, instead of using "D:\sources" use "D:\x64\sources" for 64 bits, and "D:\x86\sources" for 32 bits
For the DISM part, if it only gives errors (my case was error 2), try to change "install.wim" to "install.esd", this worked for me
3 years later... you know, this turned to be useful. for some reasons windows wasn't detecting my emmc storage on a 2 in 1 convertible, the manual installation worked perfectly fine tho, and made me able to install it. it still runs terribly poorly considering this thing has an intel atom, and i should have went linux, but oh well
I'm wondering if this "manual installation" process could be automated in the form of a batch file. I'm pretty sure it can at least partially be done. Considering that there's a "reg" command that allows you to edit the registry from the command prompt, I think that might be able to mess with user accounts and what not even before rebooting into the new installation.
They actually use this kind of tool on deployment servers. I intern at a public school district, and the deployment server applies the image in a similar fashion to this.
There are two important steps that needs to be mentioned. BEFORE starting this, you MUST enable EFI in the VM software. And then second thing : Enable the user after creating it and adding it to groups with ; net users [Username] /active:yes
I followed the exact steps, this didn’t work, maybe I’m using the iso file wrong? I used my iso, failed. I tried your windows 1607. Failed. What do I do?
Used to use a similar method with Windows 95, 98, 2K and XP takes me back... install via network install or folder install from DOS, this form of installation its not illegal at all ..
I wish I would've known how to do this when I was trying to Dual boot with Windows 7... I was getting an error which couldn't let me boot into OOBE and when I tried to bypass it by console commands I was getting an error that OOBE.exe does not exit or something like that but when I opened the Windows 7 folder from Windows 10 the OOBE file was there. This also happened when installing Vista so I just gave up.
hey enderman I’m doing this on a vm and when I dism the C: it says cant find dism in D: and it’s located at X:\windows\Logs\DISM\dism.log please help me!
@@Spoudey I do "bcdboot C:/Windows /s W:" and get "BFSVC Error: Could not open the BCD template store. Status = [c000000f]". I have no idea how to proceed.
Wow, this is honestly a pretty neat video XD. I didn't think windows would allow something like this, does it apply default settings (like privacy and etc), or are those only enabled when you're in the OOBE?
Windows gets so complicated with every damn update. I got some sort of 'blackboard' error running the installer on my m.2, and this helped me get back to Windows. Thanks a ton.
i don't know if you'll ever see this but you saved my life Tried to install windows with a corrupted usb drive and it wouldn't complete the install, but could access the cmd shell, had the install.wim in other hard drive but i couldn't get it to use it or boot it up
then i remembered this tutorial and i could apply it without problems Thank you :D
Now this is something even I'm too lazy to do and I've installed a basic Ubuntu server installation and then manually turned it into a desktop system just for fun.
I've automated ubuntu server installs for local testing and still can't be bothered to go through all that. Just seems faster to let the gui do everything. :/
@@stanleychen3298 if you'd like to talk more about this, you can add me on discord: Acid_Drop#1337
As far as the EFI partition goes id recommend using rEFInd and then just doing the windows 11 quick manual install, without generating stuff for the EFI partition and all that.. essentially it just keeps the EFI files in the windows 11 partition and refind can then recognize and boot them for you.
Hey how did you set up the EFI partition? I’m also going to try this out to install Windows 11 on my MacBook Pro but the EFI partition is daunting me. Mine is a 300MB partition with both MacOS boot files and Windows boot files(I currently have Windows 10 installed with Bootcamp) which I believe if I formatted it MacOS will no longer boot. Did you just assign it to letter W and execute the bcd command? Thanks
Man, for other people This would be another way of installing Windows but boi this thing saved my PC's life because I had nothing other than a failing Windows USB. TYSM Enderman ♥️♥️
I did it on my physical machine, to install Win 10 and thus make my PC become a dual-boot machine. Now I have Arch Linux and Windows 10 installed in Arch way.
Shift+F10
CMD:
diskpart
sel disk 0
convert gpt
create part efi size=500
format fs=fat32 quick
assign letter w
create part primary
format fs=ntfs quick
assign letter c
exit
cd /d D:\sources
dism /apply-image /imagefile:install.wim /index:1 /applydir:C:\
bcdboot C:\Windows /s W:
regedit
REGEDIT:
select HKEY_LOCAL_MACHINE
File > Load Hive - c:\windows\system32\config > SOFTWARE, Key Name: SOFT
File > Load Hive - c:\windows\system32\config > SYSTEM, Key Name: SYS
Go to HKEY_LOCAL_MACHINE\SOFT\Microsoft\Windows\CurrentVersion\Policies\System
(Right mouse button > New > DWORD (32-bit) Value > VerboseStatus, Value data: 1)
Edit DWORD EnableCursorSuppressions, Value data: 0
Go to HKEY_LOCAL_MACHINE\SYS\Setup
Edit CmdLine, Value data: cmd.exe
close regedit
CMD:
wpeutil reboot
CMD (AFTER REBOOT):
oobe\windeploy
net user /add USER
net localgroup /add users USER
net localgroup /add administrators USER
regedit
REGEDIT:
Go to HKEY_LOCAL_MACHINE\SYSTEM\Setup
Edit DWORD OOBEInProgress, Value data: 0
Edit DWORD SetupType, Value data: 0
Edit DWORD SystemSetupInProgress, Value data: 0
close regedit
Thanks bro! I was installing Windows 11 and I got the error "this machine cannot run this os" or something like that so I followed this video so now I can enjoy windows 11 on a virtual machine
I usually do it (as my job) as bcdboot <NTFS OS VOL>:\Windows /s <ESP letter> /f UEFI but your way works as well. Its quite common to execute this as somehow Windows Updates can brick the BCD. I do customers a favour by converting old machines that run MBR Legacy Windows to UEFI GPT (On devices with UEFI naturally).
lmaoing at 3:28 so hard right now. On the real tho... Gentoo is a pain - not because you manually configure it but have to compile it and it will compile differently depending on the USE flags you have set. Windows is still automating a LOT of shit in the OS with this method.
@@Endermanch I can't forget to mention that you can also inject updates into the installed image before rebooting to finish the deployment... (you could use WHDownloader to download the msu/cab files, and I think DISM prefers cabs over the usual msu format, where the update cabs are usually found inside them)
When we reimage our vertical wave inside cvs stores it installs windows manually just by inserting a flash drive and booting it up. Impressive I don’t have to do a thing!
This is how you would do this on a Legacy/MBR machine or VM: diskpart
sel disk 0
convert mbr create par prim size=500
format fs=ntfs quick
assign letter w
create part primary
format fs=ntfs quick
assign letter c
exit
cd /d D:\sources
dism /apply-image /imagefile:install.wim /index:1 /applydir:C:\
bcdboot C:\Windows /s W:
cd /d D:\boot bootsect /nt60 C: /force /mbr
(You can just reboot after this, but if you want to do it fully manually, go to 0:56 and type in the following commands)
regedit
wpeutil reboot
oobe\windeploy
net user /add "your name"
net localgroup /add users "your name"
net localgroup /add administrators "your name"
regedit
exit
Quality as usual.... can you tell me is it possible to change the initial windows 10 setup logo...i want to quickly see that it is indeed booting from the USB and not just loading back into the old installed windows.
When i try to boot up it won't it'll just leave the vmware thing and just go to network boot and also, it says windows boot manager.... No media. What does it mean
This may or not be bad, but I was actually following these steps on real hardware (Dell Inspiron 7370) because I'm stupid, and I know I have a much higher chance of messing up something important...
I just get the Error "Unable to access the Image" when installing. If I just skip oobe by creating a user and modifying the registry, it works just fine.
Wait, "Manually installing Windows 10" would be instead make all diskpart process, extract install.esd and copy every installation file one by one in the command prompt?
I wonder if there's a way to actually remove the Windows 10 Aero theme. It would make it look a lot better. I also have a theory: if you removed Windows Vista Aero, classic theme appears.
highly recommend this method for dell venue 5055 32 bit UEFI systems just download a 32 bit win iso image use rufus with ntfs as the format 4KB also gpt partition and select UEFI non csm and you are ready to go!
You don't need to import the registery hives, i skipped that when bypassing the checks for windows 11 using Computer\HKEY_LOCAL_MACHINE\SYSTEM (or SYS, whatever you prefer)\Setup\LabConfig (create the key LabConfig), And add dwords, BypassNameHereCheck (example: BypassCPUCheck)
hey enderman, i just booted up my pc yesterday and it says winload.efi is missing. are there any console commands i can use to copy it back onto the c drive? i have windows 8.1 and the original install disk
because when you are at OOBE, system is basically installed, it just needs to make users and get other things up, this is why audit mode is a thing, because the system is setup, we just need users, and we have some temp ones called defaultuser0 and Administrator
Isn't there a hidden recovery partition in newer computers with Windows 10 that also has a .wim file with Windows on it? If so, will this work in bringing Windows 10 back? Only asking because I'm gonna resell a crappy laptop
Hehe, this method is similar to how I often deploy windows except bypassing the oobe, but that is a trick I will borrow for a project I have wanted to do.
I normally use wimlib instead of dism though, as dism is more tied to what build of windows one is deploying.
Just curious, what does loading the SYS and SOFT hives into the registry do? Aren’t you editing the registry of the Windows PE environment that gets reset when the computer restarts anyway?
lol, this actually helped me with installing Windows 10 on a stubborn ProBook 640 G1. When installing normally, it used to crash before starting the OOBE (I think?) and then it get's stuck in a bootloop (It asks for the language and the WiFi password, wants to download some update, crashes, rinse and repeat)
But by installing with this method it actually worked without crashing. Lol.
One thing: I've used an USB stick created with the Media Creation Tool, so I have an .ESD file with multiple Windows 10 editions. As shown in 0:37 , Enderman used "/Index:1" which would have been "Windows 10 Home" for me. With the command "dism /Get-WimInfo /WimFile:D:\Sources\install.esd" one can list all the Windows 10 versions contained in the .ESD file. For me, it was the Index 5 for Windows 10 Pro.
Can this be done on windows xp? I wanna do experiments on my old laptop and when I download setup for windows 10 it says that its not a valid 32-bit app. Help me pls. Can I download it without setup or can I fix the setup pls? Pls help me... Btw I subbed u
Just curious, what does loading the SYS and SOFT hives into the registry do? Aren’t you editing the registry of the Windows PE environment that gets reset when the computer restarts anyway?
@@angelcaru Thanks, I somehow missed how he loaded the hives from the Windows drive. I actually ended up building a Windows PE installation with a script to deploy and provision drives with a custom WIM file I captured from an existing installation. (My teacher wanted custom images on 12 of his desktops for his classes)
Did this to install Windows 11 on a Mac without splitting the install.wim file. Used in conjunction with a UEFI:NTFS bootloader and an ExFAT UEFI driver.
The regular setup process kept throwing an error at the end for some reason.
Does anyone know why when I try the apply-image command it says me: Error:2 Impossible to find the specified file The DISM log file is available in X:\Windows\Logs\DISM\dism.log
its as simple as creating a few files in registry editor using the CMD provided whilst using Shift + F10 in the editor. create a new key, and add a bunch of bypass keys and set it as 1. (Look at more videos to understand)
Actully in early days of windows 10 on raspberry pi project it failed during fake booting screen so we launched cmd and added registry to skip over oobe and fake boot screen
The song reminds me of when my ROBLOX account got hacked (I recovered it) because the scam game had that song so when I clicked this video I felt like I was in that scam game
Works in Windows 11 !!! (at lest in a vm) Bypasses OOBE, and the need for a TPM/SecureBoot edit: actually, oobs appears again after restarting the vm. hmmm :(
You forgot one last step: Check HKLM\SYSTEM\Setup to see if Windows reverted those values that we set to 0. Mine got reverted and I didn't know about that, and the whole install got ruined just by a reboot -.-
Couldn't one also load and write to the registry using the "reg" command, so it'd be more automatable? You could even load said commands from some .BAT saved into pendrive.
Hello, I would like to ask would this work with a Ventoy USB 50GB storage to install windows 10 I am having trouble with installing windows 10 the normal way.
Try repairing Windows after "rd C:\ /s /q" or "File Shredder Destruction". Without REINSTALLING it!. (if messing with the missing or corrupt file , you can use backup.)
I've always wanted to manually install Windows XP, but all the installation files are stored in their own cab file rather then all in one like WIM file
So you've showed off what a great expert you are. Now don' t confuse people with completely unecesssary information cause standard installation is the simplest best option.
I think this manual installation is works on Windows 10 1809 only (I think not only 1809), because I use on Windows 10 20H2 and 2004 is not work in apply image :(
If someone ask "How to open command prompt in installer?" i have the answer Answer: After starting Windows setup then click Repair your computer then click troubleshot then click advanced then Command Prompt
One fact it also work in Windows 8 and 8.1 installer
Yes! That's Why dism Was made for, for manage Windows Images and don't negate me. You used it sometime for install .net framework 3.1 Offline or Other Windows Features because that's my Case!
The startup seems very similar to windows server startup which is really interesting to me. I think it's that windows server edition has to load everything users, group policy, desktop, etc. which is why all of those texts displayed at startup.
That may come in handy if you get errors ehile installing win 10 .In my case it may be a plan b, since it gives me the error of there not being drivers.
I did it on a vm but for some weird reason mine didn’t say waiting for the windows modules installer. But it took several minutes on “preparing windows”
Yo @Enderman or any other savvy... i'm stuck at 0:38 , i can't apply the image (i'm using Oracle VM VirtualBox), i have the "Optical Drive" in (the win 10.iso) help meh, i really wanna do it
Can a dell latitude e5530 with an icore of 5 run windows 10 smoothly,first it was a windows 7 pro,then a windows 8.1 pro,but last month or so I upgraded it to windows 10 pro
i have already win7 i want to upgrade win10 but i have only one hdd and my files like 400+ gb .if i want make win 10 how i can safe my stuff ? all files seriusly files
Got a question for any in depth nerds, whenever I turn my pc on “which I built and has a fresh install of windows on” a few seconds after booting to desktop I get an error saying that windows couldn’t find UAC.exe, how do I stop this error from coming up whenever I turn my pc on, ty
You must do the following to find the drive letter to the one with the install image (under normal conditions where additional drivers are not needed): diskpart list vol (where you should find the needed drive letter) exit (in order to proceed onwards)
Alright but maybe he forgot to mention it because he mentioned it in the OOBE skipping video but maybe there is some new subscribers or fans that came new
Fuck me. I've tried on all versions of Windows 10 I had and it didn't work (RTM, 1703 and 1903). On RTM and 1703, it boot loops and in 1903 it can't find the directory D:\sources
If you were somehow able to make a wim file of an XP/2000 installation, you could, but you would have to deploy the image with 7zip. And to make XP/2000 bootable, type in this command: D:\boot\bootsect /nt52 C:.
Hello Guys i know that im late commenting this video is working but i dont know why it is no working in Legacy but its working in uefi if you have an legacy dont convert it in gpt because that will not work if you have a uefi pc you can do this video I hope Enderman/Andrew can see this
Enderman: Open cmd and taskmgr On cmd types mkdir windows Opens Regedit, makes HKEYs On taskmgr Runs the explorer and winlogon Then closes installation and installs windows
how to avoid oobe? step 1: install windows 10 chinese step 2: try to change the language to english step 3: enjoy you sunny double xp weekend! good looting!
diskpart
sel disk 0
convert gpt
create part efi size=500
format fs=fat32 quick
assign letter w
create part primary
format fs=ntfs quick
assign letter c
exit
cd /d D:\sources
dism /apply-image /imagefile:install.wim /index:1 /applydir:C:\
bcdboot C:\Windows /s W:
regedit
Ministep - Load 2 hives from C:\WINDOWS\System32\config
wpeutil reboot
oobe\windeploy
net user /add "your name"
net localgroup /add users "your name"
net localgroup /add administrators "your name"
regedit
exit
Is it possible to Install Windows Vista with this method? :v
0 likes
Replies (1)
2019-12-30 20:35:28
Windows 10 is based on Vista, so I think that those commands (except for all the EFI partition thing) are valid for Vista installation too. You should try on a virtual environment or look up some information
Yes, this does work. If not with DISM, then with ImageX which is part of the Windows® Automated Installation Kit. But I would assume installing with DISM requires booting into the OS which you install as shown in this video, so it only works in a VM or directly booted most likely. Most manufacturers of OEMs just have an image that they update somewhat regularly which only needs the user to do the final steps of OOBE.
Much easier than manually installing Linux? Guess you've never installed Arch Linux before. Installing Arch is dead simple, once you've learned how. Gentoo however, is a completely different animal.
I wonder if there are practical applications for this. Like, if you could open two command prompts at once, maybe you could run the image deploy and EFI setup at the same time, or edit the registry while the windeploy is going on in the background. Or if there's a way to use an Arch USB stick to install Windows 10 on a machine for machines that can't boot off a USB stick, for seemingly no reason and not because of minimum requirements. Even so, an easy to use distribution like Mint is going to provide a way better experience than Windows 10, so a drastic measure like this should only be taken to run Windows 10 exclusive software (something your school forces you to use, games with anti-cheat software, etc.)
X:\format(local_drive) Formating local drive Format is done windows/system32>corruptnotepad=true Corrupting...
:( Your pc has been corrupted and needs to restart Estimated time:2h,8m,17s Progress:8%
Error code:RAMDOM_CORRUPTION_19
Restarting... Cannot restart,ram too low,needed ram: 28.84GB Ram here:3.50GB Data could not be backed up because of low ram Sorry for the inconvenience
diskpart Sel disk 0 Cre par pri Sel par 1 Active Format fs=ntfs quick Assign letter c: Exit DO NOT DO CD /d D:\sources Go to X: like it does after u do exit then type Dism /apply-image /imagefile:d:\sources\install.wim /index:1 /applydir:c:\ Wait it to finish.. Then do Bcdboot.exe C:\windows Reboot and your good to go!
It's working thanks you, I tried auto install and getting device is OK and getting ready 3 second and error 1 sec and force shutdown wtf. And I tried pc another install okay but oobe like first. I shutdown to laptop said Os not booting. Bruh now manual install is best
can you do it for legacy bios too because i want to do it manually not with the installer or you can type the commands that i need to replace from uefi to bios
Me using vmware workstation i've been dealing with some issues and this might acctually install windows WITHOUT HAVING TO DOWNLOAD WITH THAT GARBAGE SETUP >:D
Tip for anyone wanting to try this: Once you do everything up to the registry edits, boot up a version of WinPE. For whatever reason, removing the installation media or booting into it will result in your registry changes not being applied, but WinPE lets you force the vm to boot into the newly installed os with the registry changes applied, allowing you to use command prompt and windeploy. This is from personal experience.
Update: through further investigation, I have deduced the problem to the OS not being able to boot on it's own. I believe the registry changes are applied, but can't be used because I can't seem to get VirtualBox or VMWare to detect the boot files on its own. Hence where WinPE comes in. The version of WinPE I use allows you to boot to the OS straight from the iso, but I've found out that it doesn't actually use windows' boot manager file. It uses the boot manager file on the iso, and then likely loads winload and the kernel from your windows installation, as the first thing WinPE does is it looks for your system's bootloader (usually C:\Windows\System32\winload.exe). I've tried various things, since my own computer has it's boot files directly on C:\, I tried putting them there and in the EFI partition, but neither worked, I then tried switching between using boot files for bios, EFI, and UEFI, to no success. At this time, the only way I can personally make it boot is by loading in to windows 10 from Windows PE. Will update when I figure something else out because I'm actually intrigued by this
Update 2: through even further investigation, i found a microsoft support page where someone explained that you can essentially use a variation of BCDBoot that allows for all boot modes, including Bios, UEFI, and EFI, although i can still only boot from EFI in both virtualbox and VMWare, but this makes the VM bootable on it's own, removing the need to boot from windows pe. Will update when i figure out how to boot in bios or uefi mode, but bios would likely be harder as it would require using MBR instead of GPT format for the disk
Update 3: Through, you guessed it, even further investigation, I found out why the installer wasn't booting in EFI mode (I had to switch between bios and EFI a lot before). Turns out, that the iso I used didn't support EFI booting. To save time, I essentially packed the files in my computers "ESD" folder to save time, and this iso would only boot in bios and UEFI. So I tested an iso straight from the media creation tool, and voila, it boots, after redoing the whole process, I was able to do the manual installation, and boot into both the Installer and OS seamlessly just as it is shown in the video. This has been an amazing passion project I've been working on for the last couple of years, and it started with me sitting in virtualbox, thinking it wouldn't boot because the registry changes weren't saving, then I realized that Virtualbox has a checkbox for EFI booting, which I enabled, but the interface was a bit complicated, so I switched over to VMWare, which has a more simple boot process, where I was able to finish this passion project for the time being, and get a fully working system. I will still attempt to play around with other ways you can do this, such as doing it on an MBR disk with legcay bios, and attempting to boot with UEFI
The Thing where it uncompress install.wim it is faster that that gui setups stats we see also I checked disk usage in vmware it was using 30% it's way better than gui setup btw R.I.P indian windows 10 installing guides lmao gg.
Keep in mind if you have a risk file that supports x86 and 64bit, you'll need to also type which one u want. For example, D:\x86/64but\sources depending on which one
[diskpart]
create part primary size=500
format quick fs=ntfs label=Recovery
set id="de94bba4-06d1-4d40-a16a-bfd50179d6ac"
gpt attributes=0x8000000000000001
assign letter=R
On the DISM part, you can put additional options such as: /optimize /StartComponentCleanup /ResetBase so the installation can be sped up... (to speed up boot time)
- Diskpart and install stage -
diskpart
sel disk o
convert gpt
create part efi size = 500
format fs=fat32 quick
assign letter w
create part primary
format fs=ntfs quick
assign letter c
exit
cd /d D:\sources
dism /apply-image /imagefile:install.wim /index:1 /applydir:C:\
bcdboot C:\Windows /s W:
regedit
- Regedit stage -
Select HKEY_LOCAL_MACHINE
Open File - Load hive
go to C:\Windows\System32\config
select SOFTWARE
Name the hive SOFT
Open File - Load hive
go to C:\Windows\System32\config
select SYSTEM
Name the hive SYS
Go to HKEY_LOCAL_MACHINE\SOFT\Microsoft\Windows\CurrentVersion\Policies\SYSTEM
Create new DWORD And name it VerboseStatus
Put the value 1
Find the DWORD EnableCursorSuppresion And set the value to 0
Go to HKEY_LOCAL_MACHINE\SYS\Setup
Set the value CmdLine to cmd.exe
Reset
- OOBE Skip -
Press Shift+f10
In CMD type:
oobe\windeploy
net user /add salk
net localgroup /add users salk
net localgroup /add administrators salk
regedit
- Regedit stage 2 -
Go to HKEY_LOCAL_MACHINE\System\Setup
Set OOBEInProgress, SetupType, SystemSetupInProgress to 0
- Almost here... -
Now we exit the command prompt And see a screen saying: Please wait for ______ We should take a snapshot of our VM In case something goes wrong
Wait 3-5 Minutes depending on your PC or VM Performance
- Finish! -
After the long wait, we reset. if something seems wrong - we revert to the snapshot and wait, if everything works - we can continue.
We wait for windows to load, it should load correctly and work.
If you made it to the end - Congradulations! You just installed Windows 10 mannualy!
Yeah but it's easy to install (if you know some cli and there is a super detailed guide on how to do it with every needed command), it's super customizable (you can choose everything, from the kernel to the desktop environment) and you can change every part of the system as you want
Can’t wait for Windows installation speedruns
913 likesReplies (46)
The ssd nvme 4.0 meta
0 likesBro I Can Install Windows 10/11 In GPU :P
0 likes@@whirlingstars xdddd
0 likesuh
0 likesYou look like opera gx
0 likesIt's too hardware-dependent
0 likes@@AmaroqStarwind maybe installing also all of the drivers?
0 likesF
0 likesLMFAO yeah
0 likesOk fine
0 likesAlexa: Would you like to order an SSD that’s as fast as RAM?
0 likesMe: not possible
@@surprise1386 0 likes noob
0 likesDoes it work with win11?
0 likesJk i didnt actually measure time, but it was done in like 5 minutes or so
0 likesI got wr for auto install on non-modded windows 10 1803 on non-upgraded laptop from 2005-2006 lolll
0 likesin installer windows 10 not key is not istall
0 likesNo speedruns
0 likesWindows 10 Setup Manual%
0 likes@@superNova5837 yes
0 likesThis aged so well he did it
0 likesI think Microsoft might introduce that because they can’t stop them from quickly installing it because you can just modify the wim image or just use an older version
2 likesWhat would a 100% run be?
2 likesIF he can type fast, if so, that would be cool
0 likesSame
0 likesHe did that fam. I did with win 7
0 likesSus
0 likesIt’s dream undercover
0 likeswindows 10 install speedrun oobe glitch%
0 likes@@Spiderfffun 4
0 likesMe too
0 likes@@longlivekubek nooo why
0 likesI made one but i deleted video
0 likesye. imagine doing it on real pc expect you get a camera to speed run.
1 likeThat would be NonVM%
WINDOWS 10 SET UP IN 3 MINUTES WORLD RECORD
0 likes@@sussycatgirl no
0 likesWatch there be a TAS. LOL
3 likesKlixtra man kennt ihn :P
1 likelolololololololololoololololololoolololololololololololololololoololololololololololololololololoololollolololololoolollololoolololooooooooooooooooooollolololololololololoplollololollolollollop
1 likeIm gonna apply for this at speedrun.com
1 likeThis one also: https://youtu.be/URfT8YelV-4
1 likehttps://youtu.be/2fT_lAOfytk
4 likes@@whirlingstars windows installation %withoobe
6 likesXD
4 likesWindows 10 Installation NG% ( Reinstall it as fast as possible
12 likeswhat a time to be alive
9 likesWindows Installation any% (no scripts >:c )
72 likesEnderman: you can install Windows 10 manually via command line
771 likesArchLinux user happy noises
Replies (34)
@@bruhgaming-ue1ec and on ferrite memory
0 likesif you want an extra challenge, install it with 1.44mb floppy disks
0 likesi was about to comment that lol
0 likesYIPEEEEE
Rel
0 likes@@Ponywka 120% true
0 likesi use arch btw
I use Arch BTW
0 likes@@nico1337 BTW Says the guy with a Thomas the train profile pic.
0 likesNormal users be like :install go brrrrr
0 likes@@amogus7 Not Sure If Joking since you're on the Gentoo stage of Linux use, but yes, it's a windows api translater. Works pretty well all things considered, I can run Elite Dangerous with more stability then I had under Windows, and Proton, Steam's spin on Wine, works out of the box or with minor tweaks for most games.
0 likes@@TheFrantic5 what is wine? I guess some WinAPI compat layer.
0 likes@@nico1337 bTw I uSe GeNtOO
0 likesnon GUI linux user :
0 likesOk
1 likeGentoo linux users that install their linux from minimal cds: YESSSS
0 likesArch Linux user from zen installer: Am I a joke to you?
0 likesOnly arch users understand haha
0 likes@@TheFrantic5 Very well said indeed
0 likesi said
0 likeshoes mad
I was about to say something about Arch lol
1 like@@user-no3tu9kh3p Actually, a true Linux user wouldn't even know what Wine is.
0 likesI'm another Arch user and this is not fully command line because he used regedit, which is GUI
1 like@@Inf1e but arch needs editing config files
2 likes@@Ponywka I was waiting for someone to correct me. <3
1 like@@TheFrantic5 >spend hours configuring an emulator to run said game
9 likesWine - Wine is not emulator !!!
@@Ponywka As a Linux user, I like Windows when I just want to play a game without having to spend hours configuring an emulator to run said game.
7 likesWindows also makes a great pentesting victim.
The Arch Linux install is basically an exercise in reading comprehension and a barrier to entry to ensure anyone who survives it has at least a modicum of troubleshooting skill. Teach a man to fish, and all that.
11 likesbtw I use arch
6 likesSorry, but if you Linux user, you can't like manual Windows installation
Reason: Linux users don't like Windows, even Windows installed via command line
Well it's a lot harder, than Arch, due to some tweaks with registry.
4 likes@@NyanCatTW1 WHERE TF MY BOOK WITH LINUX???
0 likes@@nico1337 Of course.
1 likeIt does still do most of the stuff for you after typing a few commands
5 likesThe reference is good
4 likesThis is not comparable to a manual arch installation. You can't choose what you want. It has no build it yourself aspect by any means.
80 likesBtw I use arch
LinuxFromScratch user:
43 likesThis is how my non pc friends think installing windows is actually like
724 likesReplies (32)
@@xolagix yeah, Linux is ez to install. U just click the OS and the booting screen comes and BOOM.
0 likes@@acopier i never said it did
0 likes@@tauon_ not every distro has apt as the package manager
0 likes@@tauon_ i have used linux before and its very simple to install
1 likejust wait until they find out about linux
0 likes@@oblivion2755not THAT hard
0 likes@@oblivion2755 no...
0 likes@@xolagix it does not.
0 likes@@oblivion2755 actually, no.
0 likes@@xolagix wow this video installing Linux programs look like
0 likesThis is how installing Arch Linux is like
0 likesObIivion
0 likes@@MP-tz2yn Yeah, I will try installing Windows 10 Manually, but I have Windows 11 so why would I do this? (jk I hate Windows 11 due to removed features)
0 likes@@xolagix cries in arch linux
1 likejajajajajajja lol
0 likesthat's what installing arch linux looks like
0 likesbefore: can't like, it's at 69 likes
0 likesnow: can't like, it's at 420 likes
@@MP-tz2yn GPT is for modern computers, MBR is for old computers (ex. Win 7 PC)
0 likesyes, agreed.
0 likes@@MP-tz2yn for windows it has to do windows shit, on linux is just like: make partition && copy files && apt install default-packages
0 likeswhy tho ur cod
0 likesReality: just click next until it starts copying files
0 likes@@infrox3334 its almost just smashing enter
0 likeshow 2 install winXP
0 likes@@oblivion2755 naah
1 likeMisha Petrov gpt table normally called GUILD Partition Table is a standard for the layout of partition tables of a physical computer storage device, such as a hard disk drive or solid-state drive, using universally unique identifiers, which are also known as globally unique identifiers.
2 likes@@xolagix lmao ok so i admit to not knowing what a gpt table is, but ive installed w10 for several people before and it was just like you said, a few yeses, wait for install, then the oobe. i dont recall any advanced technical stuff
9 likes@@MP-tz2yn windows makes you configure the gpt table if i recall correctly.
5 likeslinux even with dualboot can do the thing seemlessly by itself.
They arnt wrong anymore
4 likes@@xolagix that's also how windows installs tho, it just takes longer
23 likesThis is how installing Win95 looked like.
19 likes@@user-no3tu9kh3p tfw installing linux is easier most of the time.
59 likes"yes yes yes yes agree yes yes user setup yes yes reboot"
I really didn't expect Windows to be manually installable, let's not even talk about how easy it is. I've struggled more trying to make my own Linux Arch install, holy shit.
312 likesReplies (21)
@@roridev indeed
0 likesIt is possible to install windows 11 like this xd
0 likesWhy wouldn't it be manually installable? The UI is (basically) only a layer on top of the command line
0 likesYeah, this looks much easier than installing Linux (mint) with the gui installer.
0 likes@@NetRolller3D Yep, the easiest way to customize Windows. Make all necessary changes on VHD, sysprep (or even not - it works without, Windows should just recognize new hardware), and capture VHD to WIM, replace install.wim in original image and done.
0 likesThe reverse is also possible: capture a custom install image using dism, replace install.wim in a stock ISO, and then install the customized system using the original GUI installer. This is actually how we stopped our IT department from using ancient DOS-based (as in actual 16-bit MS-DOS, not just command line) utilities for OS imaging, when said old utilities bottlenecked us to no larger than 2TB RAID arrayd.
0 likesYou could install like this starting from Vista
0 likes@@Inf1e it's more easier, but on a server reboot can be a problem
0 likes@@archlinus5066 in general its more safer to reboot
0 likes@@archlinus5066 Even the kernel is updatable without rebooting using a piece of black magic called kpatch. It's only intended for life-critical servers that need 100% uptime, though, and the average Linux user is better off just turning it off and on again.
3 likes@@Inf1e usually only kernel updates needs reboot to load, the other things can be updated without reboot
1 like@@luimu I know, there are many arch installers
1 likeBTW i use windows
2 likesWelp, windows is HARDER to install, but in windows you don't need to SETUP your system (due to all settings are in installation image). In every linux you need to reboot just one time to install. I've counted three times here.
1 like“Linux Arch”
8 likesI think a part of me just died reading that.
@@luimu cough Manjaro Architect cough cough apparently whatever god is up there is repenting for GNOME with this cough
3 likes69 likes
1 like@@archlinus5066 there is bunvh of GUI installers for arch linux so even newbies can do it now. https://sourceforge.net/projects/revenge-installer/
7 likesThis command line installation is normally used by OEMs to slipstream Windows on their machines, it isn't really intended to be used for a normal installation. I did this on a separate partition several times on my system during the early days of Windows 10 for testing purposes, and in this scenario it's much easier since you don't have to reboot the system and much safer if you know what you're doing since you don't risk losing your data.
13 likesInstall arch is difficult for a newbie, some experience with easier Linux distros is needed to install it
21 likesThat's how arch users install windows /s
23 likescool actually now you can skip that piece of trash oobe :)
354 likesReplies (17)
CTRL + Shift + F3
0 likes@@aparecidomartins5282 it is true however some people may want to skip it (to avoid setting up bloatware for example)
0 likes@GoldFishy GT Are you threatening me? I'm reporting this behavior.
0 likesLeave a like if you confirm of this is trust,leave a dislike if you confirm of this is lie,if you don't know,make nothing
0 likesThe complete name of OOBE is Out-of-Box-Experience
0 likes@@keisarimies Next year probably
0 likesYeah!
1 like@@iDontProgramInCpp when new vid on ur main channel
0 likes@@ChloekabanOfficial cool!
0 likesYeah. Even being the 100th like is better than the Out-Of-Box Experience in Windows 10.
4 likes@@sonicfon idk perhaps but that ruins the "manual" experience
3 likesShould create script for full experience
5 likes@@MinHinProm Of course!
0 likesthanks for the heart xdxd
0 likesYeah. I hate questions like: "Do you want to sign in Microsoft account?", or "Enter security question"... It's very interesting to install Windows this way.
4 likes@king toaster11 set up the user accounts and removes all traces of setup I guess (Windows XP had user, internet, Windows Update settings in the OOBE)
9 likesking toaster11 that’s when you setup windows
2 likesi will try this on a vm later :)
98 likesand the commands are:
diskpart
sel disk 0
convert gpt
create part efi size=500
format fs=fat32 quick
assign letter w
create part primary
format fs=ntfs quick
assign letter c
exit
cd /d D:\sources
dism /apply-image /imagefile:install.wim /index:1 /applydir:C:\
bcdboot C:\Windows /s W:
regedit
wpeutil reboot
oobe\windeploy
net user /add "your name"
net localgroup /add users "your name"
net localgroup /add administrators "your name"
regedit
exit
finished :)
Replies (24)
@@sparkie5571thx, was tryna do on 22h2 and on the iso it was install.esd, not .wim, wim is for older versions i suppose, since the video is 4 years old
0 likesYou are a fucking lifesaver
0 likesif the apply image dosent work try saying install.esd instead
0 likesthe bcdboot C:\Windows /s W: command shows the help screen for bcdboot, help please!
0 likesedit: it shows the error Failure when initializing library system volume
@@canal_abandonado711 it says error 3
0 likeshelpppp
@benimadımkaan you have an GPT disk and not a MBR disk, simple.
0 likes@@birdwatcher9080 it' C and D
0 likesD
0 likes@@lorishofer2889 :)
0 likes@@canal_abandonado711 np
0 likes@@lorishofer2889 thank you for correcting me
0 likes*applydir
0 likesBob Jones shift and F10
0 likesHow do you open the command prompt?
0 likes@@bobjones1999 idk because my hd don't have too much space to a vm
0 likesSo when you did it? How long did it take to install windows?
0 likesNad Nis shift and F10
0 likes@@nadeemnm2000 he shows on the video
0 likesHow do you open cmd in boot screen man?
0 likesOh yes
0 likes@@robloxcomputergames401 i know...
0 likesYou Spelled Some Words Worgsz
0 likesTime to install Windows using MS-DOS I guess
0 likesYou're a god. im trying this right now, will report back
6 likescurrently applying the windows image, one thing I had to change was the "create part efi=500" part where i entered "create part efi size=500"
another was that i used install.esd instead of install.wim for the command
"dism /apply-image /imagefile:install.wim /index:1 /apllydir:C:\"
other than those two different things with my older ISO, it all worked fine, thanks mate
Don't tell me i was the only one who saw the "subscribe" at 2:46.
240 likesReplies (36)
Wait really?
0 likesNow that you mentioned it now I can’t not see it
0 likesSpoiler: SUBSCRIBE pattern
0 likesI think you saw the subscribe ghost lol
0 likesI don't see it
0 likesWell, with that amount of genius it’s worth subscribing if you ask me.
0 likes@@egeakan7276 curser dummy
0 likesbruh
0 likesbruh
0 likesThat was freaking insane lmao
0 likesno there isnt.
0 likes?
0 likeswow 😯
0 likes@@ArtemisDibek enderman i türklerde izliyosa ben varya :)
0 likes@@enderdragon5849 he's drawing it with his cursor
0 likesI didn't see even I slow it down at x0.25
0 likesI saw "SUBSCRIBE.".
0 likesI do things like that on my desktop too lol
0 likesBroooo i saw it
0 likes@@Sculas your eyes are insane wow
0 likes@@ronture8279 I don't know :)
0 likesSet another speed and go to time. Turn off sound and press play. see magic:)
0 likes:)
1 likeSUBSCRIBE !
nice! you are the only one who saw that!
4 likesNoice.
0 likesHOW DID YOU SEE THAT?!?
4 likeswhat other secret messages has enderman been hiding from us?? :thinking:
2 likesOMG dhshkgahl
1 likeNice one xdddd
1 likeNo way XD
1 likeWith mouse pointer
2 likeslmaooo i knew the cursor was moving weird bruhh
10 likes@@Rikysonic xd
0 likes@@CrazyStreet hahaha
1 like@lucaskyy that's freaking insane!!
4 likesNice 😂
25 likeswell seen, I did not pay attention
Minus the OOBE skip reg hacks, this is actually a supported installation scenario, called "deploying" Windows in MS documentation.
56 likesEDIT: don't forget to create a recovery partition, though! (It's missing in the video.)
Replies (10)
@@halfhalf622you don't nedd it it's just the onedrive partition
0 likes@@andreytop1ggmeh you can just use bootable media instead, no biggie
2 likes@@halfhalf622well it isn't that important, its required for automatic repair, when it's missing you get a "Your device needs to get repaired" instead of an attempt to repair automatically. If you don't mess with stuff on it, it's fine
2 likes@@Armi1Precovery partitions are required for automatic PC repair, when it's missing you get a "Your device needs to get repaired" instead of launching into automatic repair
3 likesIs that even necessary?
0 likes@@halfhalf622 i think you run some tool that repairs recovery
0 likes@@halfhalf622 please say it wasnt a main machine
0 likesHow do you do that? I did this on a real machine and now I'm very concerned.
2 likes@@donovanelliott9060 i think it's creating an MSR/System reserved partition with diskpart
1 likeHow do you make a recovery partition?
4 likes*Enderman*: manually sets up partition scheme, copies binaries, boot files and os files, edits half a dozen of registries, manually creates an user, goes through windows' "let us steal all your data" agreement prompt and reboots two times.
236 likes*Linux user*: sets up partition scheme, boot partition, default user, installs basic packages and reboots once.
*Enderman*: "Still easier than linux".
Replies (11)
@CatRyBou having that on your computer has to be a flex
0 likeslol
0 likesGood Maths! A++
1 like@Hai Red which I did
2 likes@Hai Red still easier than linux, especially gentoo
1 likewhich means: easier than linux, much easier than gentoo
@Hai Red 1. you don't need to, you can, but definitely not needed
5 likes2. not all linux distros are gentoo
3. gentoo is meant for the really power users, for those kinds of people gentoo isn't really hard, but if you have never used linux before or have only used Ubuntu/LinuxMint then yes it is really hard
@Anish Vundela That's like the worst argument against linux
4 likesAnish Vundela why that’s just annoying
0 likeslmao
2 likes@@kangalio A slight anti-Linux behavior right there.
10 likesReal talk though, I didn't know Enderman was such a shill
12 likes3:12 User Boot Up looks like Windows Server
46 likesReplies (9)
it is
0 likes@@noynyt This feature is also in Windows 10 Home , Pro and Enterprise
0 likesI think its using Windows 10 Education
0 likes@@beedslolkuntus2070 well i have thise texts in my win 10 home i enabled it by regedit
0 likesI have this Verbose mode enabled on my Laptop using Regedit
2 likesVerbose Boot. Windows Server has it set on default
2 likesMartinixEP
4 likesWell as you see he was tryna manually install and maybe some debugging mode or something was there that made it login like that. I used to work with windows server editions and everytime you login to the user account it shows all those different texts instead of “welcome”
Wow I know. When I login remotly to windows server 2019
2 likesExacto Bro!
0 likes3:33 Gentoo is not just installed, it's compiled. It's more like making your own Linux distro from scratch. Arch on the other hand is (in my opinion) just a bit easyer to install manually.
14 likesReplies (3)
easier*
0 likes@@archlinus5066 Real Arch users download the sources from the SVN repository and build them manually.
2 likesOr maybe I'm just a Gentoo user trying to force from-source bliss on a system that doesn't want it....
Yup, arch is much easier to install, because the packages are already precompiled and you need to pacstrap only to install the base system.
4 likesJust the video I needed! I have an old pc that does not like to install windows 10 the normal way, hopefully doing this will work out :)
6 likesReplies (3)
@@itscharlie0110 thanks man, your a life saver
1 like@@OopsSpaghetti69420 It took me a while to do it aswell, in my case, I just had to try all the different drive letters (2 on the hard drive, one on the usb), and eventually I managed to find the file
2 likesim doing the same thing, just im getting stuck on the deployment of the image, it says”The system cannot find the file specified” im booting from usb
0 likesMe: It worked
23 likesMy Mom: Why is the FBI here
Enderman: manually installs Windows 10
65 likesWindows 10's automatic installation process: Am I a joke to you?
Replies (9)
LOL
0 likes@@helloworld145 was a laptop from 2013 and I was bored lol
0 likes@@dcfuksurmom "unsupported" WINDOWS ARE YOU FUCKING SERIOUS
0 likesyes actually, currently using this to install windows 11 on an "unsupported" system
0 likesYes, im installing windows 11 with manual installation lol
1 like@@beeschan7301 What? They just said "yes"
0 likesSo?
0 likesSinisig omg u stole my reply
0 likesYes
2 likesEnderman: you can install Windows 10 manually via command line
184 likesExcitement for computer nerds doing it on real hardware
Replies (10)
@@baltazargorzny2959 Sorry for being late, but if it works on Windows 10, then it should work on Windows 11, because the two has the same version number. It should even work on Windows 2000/XP because of Recovery Console, and on Windows Vista because of the installer being (almost) the same as Windows 7-11.
0 likesusing this as a way to install windows after it refuses to install and wants to format the whole hdd(I dual boot with arch linux so no way I am formatting the whole hdd)
0 likesI am 100% a computer nerd
Dos it work with win11
0 likesTried this on a vm then on my rig. Went perfectly!
0 likes@@adinouanouanoua happy pc noises
0 likesI simply can’t be arsed tho
0 likesEven better, real ARM64 hardware. Most of the time, you have to do dit like this on ARM64, due to custom driver injection.
0 likesI really did it to my main pc...
0 likes@@adinouanouanoua people who do it properly sad noises
2 likesNerd happy noises
10 likesFor everyone that is trying to do this and can't access the D drive or run the DISM I hope this helps
6 likesFor the D drive, if it says that the directiory doesn't exist, it means your iso architecture is both x64 and x86, when you do the command to go to the D drive, instead of using "D:\sources" use "D:\x64\sources" for 64 bits, and "D:\x86\sources" for 32 bits
For the DISM part, if it only gives errors (my case was error 2), try to change "install.wim" to "install.esd", this worked for me
I hope that helped some people
Replies (2)
9 months late but install.esd doesn't work either what do I do
0 likesThank you!
0 likes3 years later... you know, this turned to be useful. for some reasons windows wasn't detecting my emmc storage on a 2 in 1 convertible, the manual installation worked perfectly fine tho, and made me able to install it. it still runs terribly poorly considering this thing has an intel atom, and i should have went linux, but oh well
4 likes3:28 That's not a fair comparison. Imagine if install.wim didn't contain the NT kernel and you had to configure and build it by hand.
29 likesReplies (2)
@Alts'Alts Couldn't a nonfree program still be released in a compile-it-yourself form by minifying and obfuscating the released "source" code?
0 likesUmmmm... Yeah, but enderman is talking about how difficult it is to manually install them.
5 likesI'm wondering if this "manual installation" process could be automated in the form of a batch file. I'm pretty sure it can at least partially be done. Considering that there's a "reg" command that allows you to edit the registry from the command prompt, I think that might be able to mess with user accounts and what not even before rebooting into the new installation.
11 likesReplies (3)
@@franzageekUPLOAD IT ON YOUR CH
0 likesreg is windows default command
0 likeslol i am making it
1 like3:02
1 like"Please wait for the TrustedInstaller"
Enderman, you know how that will go
Yes!! Reminds the old days when I was installing arch like 5 times a day cuz I liked the installation process!
4 likesThey actually use this kind of tool on deployment servers. I intern at a public school district, and the deployment server applies the image in a similar fashion to this.
3 likesThere are two important steps that needs to be mentioned. BEFORE starting this, you MUST enable EFI in the VM software.
9 likesAnd then second thing : Enable the user after creating it and adding it to groups with ; net users [Username] /active:yes
Can we appreciate his hardwork of putting commands manually on each step. Salute to ur hardwork enderman
12 likesAnd if you run CMD during a BSOD and can open a program ...
18 likesWindows: In a joke for you ?
Replies (1)
I was thinking about that
1 likeMe : DAD I CAN REINSTALL WINDOWS 10 IN YOUR COMPUTER MANUALY ?
2 likesDAD : No. The computer work.
Replies (2)
@@SOTP. lol
0 likesMe DAD CAN REINSTALL WINDOWS 10 MANNUALLY?
1 likedad No the computer work
Me I delete system32 and I reinstall (manually)
dad WTF WHY YOU DELTED SYSTEM32 TO REINSTALL
Me dad is just to skip oobe
dad MICROSOFT WILL BAN THIS IP FOR WINDOWS
me are you kidding me?
Dad ok I kill you
Me ...
later...
me AH AH STOP PLS!!!
Dad is your lesson MUHAHAHAHAHAHAHAHAHA
rip (your name) ... - 2020
dad cool this breaker windows dead oh this is cool now I install windows
Later...
dad oh the breaker installed cool I go to Spotify.
10 years later...
video by enderman how to install windows 11 manually
Dad I install windows 11 manually for fun
Later...
dad WHAT WINDOWS NOT WORK I’m not good...
end
Incredible.
3 likesI didn't even know you can do that, but now we all know you are a genius.
0:24 This music reminds me of a Roblox Scam Game….
2 likesIMPORTANT NOTE: Make sure you are running in UEFI mode if you're doing this on a VM.
3 likesReplies (4)
@@felipeleon9918 create par pri size=500
0 likes@@henry789 but, What about the EFI partition? You can't create it on MBR
0 likesif you don't have uefi enabled just change the diskpart command con gpt to con mbr
1 likeGHOSTMINER
0 likesThe fact that this is actually faster than doing the actual setup...
2 likesWhen you installing Windows like installing gentoo
5 likesReplies (1)
And Arch
0 likesThanks, now I can install Windows a lot faster rather than waiting for the boring installation process
2 likes2:56 most likely making sure everything was set up correctly.
4 likesfor anyone using the newest version of windows
2 likesUSE install.esd instead of install.wim
(It worked on the Newest Version 4 me)
Replies (2)
Not all the time. My Windows 10 2004 ISO had install.wim.
0 likesTHANK YOU SOO MUCH
0 likesoobe.exe has stopped working. Reason : Got rejected by enderman
27 likes4 years later, and this video just saved me! Worked perfectly. Thank you!
0 likesAt 0:10, the video leaves out how you actually get that command prompt. By pressing Shift+F10 at the GUI setup prompt.
7 likesPro tip: Shift+F10 works at any point during Setup, before OOBE.
Replies (2)
@@SzymekCSC In most builds of Windows 10, Shift+F10 in OOBE will open a command window, but it will be invisible due to DWM treating OOBE specially.
0 likesEDIT: Turns out, that special treatment got broken in Windows 11. Shift+F10 during Windows 11 OOBE opens a normal, visible command prompt.
Even in OOBE!
0 likesI followed the exact steps, this didn’t work, maybe I’m using the iso file wrong? I used my iso, failed. I tried your windows 1607. Failed. What do I do?
1 likeWindows 10: arch linux edition.
12 likesmicrosoft: makes a terrible oobe
0 likesenderman: fine, ill do it myself
Installing Windows the Arch way
13 likesIdk the setup was showing error when installing Windows. So tried this & it worked. Thank you Enderman
1 like@Enderman how do you mess with licenses while in the buggy oobe exploit user mode thingy?
4 likesReplies (1)
2011 moment
0 likesUsed to use a similar method with Windows 95, 98, 2K and XP takes me back... install via network install or folder install from DOS, this form of installation its not illegal at all ..
2 likesGreat vid man but, would this work on a usb drive too?
3 likesReplies (2)
@@izzanmargie shift + f10 (its late ik)
0 likeswork, but you have idea to open command prompt in windows install Shift + f10
0 likesThe real Windows power user.
1 likeI wish I would've known how to do this when I was trying to Dual boot with Windows 7... I was getting an error which couldn't let me boot into OOBE and when I tried to bypass it by console commands I was getting an error that OOBE.exe does not exit or something like that but when I opened the Windows 7 folder from Windows 10 the OOBE file was there. This also happened when installing Vista so I just gave up.
15 likesWhen you're done installing Arch and you don't know what else to do
3 likesReplies (1)
ah s### here we go again
0 likescan you do this on a old computer and upgrade to windows 10 without windows 10 setup?
2 likeshey enderman I’m doing this on a vm and when I dism the C: it says cant find dism in D: and it’s located at X:\windows\Logs\DISM\dism.log please help me!
5 likesReplies (18)
go to D:\sources.
0 likes1: Type in cd /d D:\
2: Type in cd sources
3: Then do what you did.
now it gives me Error 2 The system can not find the file specified
0 likes@hashtags you might’ve incorrectly made a partition
0 likesAre you still here?
0 likes@@Spoudey I did, I have done the exact same thing as he. I don't understand how this will help me tho
0 likes@hashtags slow the video down to 0.25x and look for the part where Enderman creates an EFI partition
0 likes@@Spoudey How do I do that? Is that the command near the start of the video?
0 likes@hashtags make sure your EFI partition is W:
0 likes@@Spoudey I do "bcdboot C:/Windows /s W:" and get "BFSVC Error: Could not open the BCD template store. Status = [c000000f]". I have no idea how to proceed.
0 likes@hashtags Ok, I’ll still be here
0 likes@@Spoudey I deleted the VM so I'm trying reinstalling right now and trying again. I'll tell you what it says when I reach that part again
0 likes@hashtags can you tell me what error you get
0 likesWhat have you typed into the command prompt?
0 likes@@Spoudey when I try to use bcdboot it gives me an error, any idea about that?
0 likeshashtags You’re welcome!
0 likes@@Spoudey Thank you! I had this issue and you solved it.
1 likeOn some versions of Windows, install.wim might be install.esd. Hope it helps!
2 likesbut ive done it in x: but it didn’t work
0 likesWow, this is honestly a pretty neat video XD.
1 likeI didn't think windows would allow something like this, does it apply default settings (like privacy and etc), or are those only enabled when you're in the OOBE?
Replies (1)
It depends, but you can use a tool called WinNTSetup to change certain settings before even starting the deployment...
0 likes"btw I use win10"
17 likesReplies (1)
Iam too
0 likesWindows gets so complicated with every damn update. I got some sort of 'blackboard' error running the installer on my m.2, and this helped me get back to Windows. Thanks a ton.
0 likesThanks bro i literally did it on a real hardware lol
3 likesi don't know if you'll ever see this but you saved my life
0 likesTried to install windows with a corrupted usb drive and it wouldn't complete the install, but could access the cmd shell, had the install.wim in other hard drive but i couldn't get it to use it or boot it up
then i remembered this tutorial and i could apply it without problems
Thank you :D
Now this is something even I'm too lazy to do and I've installed a basic Ubuntu server installation and then manually turned it into a desktop system just for fun.
3 likesReplies (1)
I've automated ubuntu server installs for local testing and still can't be bothered to go through all that. Just seems faster to let the gui do everything. :/
0 likesUsing this to install windows 11 on my mac, thanks enderman for the idea from the stream earlier today
2 likesReplies (2)
@@stanleychen3298 if you'd like to talk more about this, you can add me on discord: Acid_Drop#1337
0 likesAs far as the EFI partition goes id recommend using rEFInd and then just doing the windows 11 quick manual install, without generating stuff for the EFI partition and all that.. essentially it just keeps the EFI files in the windows 11 partition and refind can then recognize and boot them for you.
Hey how did you set up the EFI partition? I’m also going to try this out to install Windows 11 on my MacBook Pro but the EFI partition is daunting me. Mine is a 300MB partition with both MacOS boot files and Windows boot files(I currently have Windows 10 installed with Bootcamp) which I believe if I formatted it MacOS will no longer boot. Did you just assign it to letter W and execute the bcd command? Thanks
0 likesSo this is the way to activate windows 10 for free
4 likesReplies (1)
Wait... YOU'RE RIGHT!
3 likesI watched this vid again for views. Enderman is truly the best youtuber i saw and watching him since 2021!!! Hope your channel never gets terminated.
1 likeReplies (1)
Thanks for liking my comment <3
0 likesNice, but why you should do this?😂
30 likesReplies (15)
to make it quick
0 likesidk
0 likesOOBE.
0 likesYou don't have to agree to the ToS as you never saw them
3 likesBecause N____E_____-R______D______S rule the world!
1 liketo skip the freaking oobe
1 likeBcuz Cortana is annoying as a tech scammer
4 likesMaybe for not waiting that stupid OOBE to take 15 minutes to do a single thing
7 likesskip oobe
1 likeTo show off your tech skills?
3 likesReal question: Why shouldn't you do this?
4 likesTo skip the OOBE and for advanced users
6 likesSkip the trash Oobe
11 likesWhy not?
6 likesbecause you can
81 likeswell this video is now helpful for people have old computers and want to ran windows 11
1 likeEnderman: Installs Windows manually
2 likesMy virtual machines that skip oobe: Am I a joke to you?!?!?
I tried this, and it worked!!Thank you!
2 likesBill Gates: "Thats Illegal"
5 likesReplies (2)
@@dusscode r/woooosh
0 likesYou do realize that Bill Gates doesn't have anything to do with Microsoft now, right?
5 likesMy mom: this is, how i must install windows, its too hard
0 likesMe: find product key on internet and install, its not that difficult
First we learned of a way to activate Windows for free and now we have a way of installing Windows 10 manually for free.
7 likesMicrosoft is surely going to take notice:
Replies (1)
Didn't you mean notes?
0 likesIt's like behind the scenes of Windows installation
1 likeKur
13 likesReplies (6)
@-KRAKEN! Да...
0 likes@@MeTechOf idk i just wrote it it mean penis in my country lol
0 likeswat
0 likesco
0 likesch
1 likemać
8 likesArch Users: Finally a worthy opponent.
2 likesThe perfect programer doesn't exi-
0 likesEnderman: Hold my windows 10
Hey Enderman, this video was really useful for me, I needed it, I hope they don't close your channel
0 likesEnderman: It's big brain time
0 likesNext step is to create a batch script.
1 likeEnderman: my head is sick cause this click noise
0 likesYou think we wouldn't see that you wrote "subscribe!" and a smiley face on the screen while waiting for the "Windows Modules Installer"
0 likesThis tutorial definitely helped me install windows 11 because it won't install for some reason on my vm
0 likesMan, for other people This would be another way of installing Windows but boi this thing saved my PC's life because I had nothing other than a failing Windows USB. TYSM Enderman ♥️♥️
0 likesWow, this man work for Microsoft
1 likeI installed win10 on my school computer manually
2 likesMy teacher: what the fuc* was that
My principal: okie now u are computer class teacher
Me: bruh sub enderman...
The legend goes on...
0 likesOne of the DWORDS < Well be right back >
0 likesYOU'VE GOT A FEELING
1 likeEnderman, thoses videos are gold knowledge for sysadmins who wants to tamper hard with their images.
0 likes2:45 Enderman is writing with the cursor "SUBSCRIBE!"
0 likesCan I do this without loading hives?
1 likeI have a feeling SYS AND SYSTEM AND SOFT AND SOFTWARE are the same
OOBE: Imma head out you'll do the job.
0 likesInstalling Arch Linux but it’s actually windows
1 likeEnderman : skips the gui installation
0 likesgui installation : am I a joke to you?
Verry cool. You know verry much about windows.
0 likesAnd that’s how I started doing this method. Thanks for that!
0 likesIs this faster than installing normally?
1 like3:02 PLEASE WAIT FOR THE TRUSTEDINSTALLER
0 likesReplies (1)
TrustedInstaller fake.. its isnt an user. TrustedInstaller prevents to delete system files.
0 likesTHANK you so much you saved my life!!!!
1 likeI did it on my physical machine, to install Win 10 and thus make my PC become a dual-boot machine. Now I have Arch Linux and Windows 10 installed in Arch way.
0 likesThanks, i hate waiting 50 minutes in that GUI. Instead i can do it my self in 5-10 minutes.
0 likesGeoxor is awesome! I listen to him for 9 months.
0 likesHey Enderman! Using NTLite you can make a windows ISO without the windows Module Installer!
1 likeArch Linux watching from a distance.
0 likesMIND BLOWING
0 likesThis is how we’re gonna install our Windows computers for now on while skipping OOBE.
0 likesValuable content thank you, I really appreciate pepole that actually knows how windows works at this level
0 likesWindows 11 (I watched ur video) isn't supported on my pc because of TPM, and I installed it by this guide!
1 likeAmazing! I've to check it out on VM :))
1 likeIt's kind of hard for people with fast CPUs you have a slim chance that this could work and couldn't...
2 likesThank you, enderman! I know how to MANUALLY install windows 7 with all of your help.
0 likesAlso correction, windows 11. I can't even install Windows 7 tho
Actually install a distro through a cli (like in arch) is pretty easy
2 likesManually installing Windows 10
1 likeSteps:
Shift+F10
CMD:
diskpart
sel disk 0
convert gpt
create part efi size=500
format fs=fat32 quick
assign letter w
create part primary
format fs=ntfs quick
assign letter c
exit
cd /d D:\sources
dism /apply-image /imagefile:install.wim /index:1 /applydir:C:\
bcdboot C:\Windows /s W:
regedit
REGEDIT:
select HKEY_LOCAL_MACHINE
File > Load Hive - c:\windows\system32\config > SOFTWARE, Key Name: SOFT
File > Load Hive - c:\windows\system32\config > SYSTEM, Key Name: SYS
Go to HKEY_LOCAL_MACHINE\SOFT\Microsoft\Windows\CurrentVersion\Policies\System
(Right mouse button > New > DWORD (32-bit) Value > VerboseStatus, Value data: 1)
Edit DWORD EnableCursorSuppressions, Value data: 0
Go to HKEY_LOCAL_MACHINE\SYS\Setup
Edit CmdLine, Value data: cmd.exe
close regedit
CMD:
wpeutil reboot
CMD (AFTER REBOOT):
oobe\windeploy
net user /add USER
net localgroup /add users USER
net localgroup /add administrators USER
regedit
REGEDIT:
Go to HKEY_LOCAL_MACHINE\SYSTEM\Setup
Edit DWORD OOBEInProgress, Value data: 0
Edit DWORD SetupType, Value data: 0
Edit DWORD SystemSetupInProgress, Value data: 0
close regedit
CMD:
exit
But windows 7 ?
1 likeThank you,
0 likesThis helped me alot I managed to get windows running on external hardrive because of this.
next video: making windows 11 on notepad
1 likeThe first song in this video is the only song I've heard In an enderman video that I've also heard before
0 likesSpanish (auto generated)
0 likes00:04
[Música]
00:15
no no no
00:17
no no
00:22
y canadá
00:33
y
00:47
[Música]
01:13
[Aplausos]
01:14
[Música]
01:29
[Música]
01:38
i
01:39
[Música]
01:42
no
01:45
y
01:55
[Música]
02:11
[Música]
03:04
suelo
03:10
o no
03:14
[Música]
Nice music
1 likeso many thumbs up 👍👍👍📸
1 likeThis setup still works for Windows 11
1 likeWow so intresting!
0 likesThanks for letting me copy the steps on a piece of paper don't mind my unreadable writing lmao
0 likesThanks for this! I'll keep coming back to this since my Mac won't boot efi windows installs correctly and i can install bios using this :)
0 likesThanks bro! I was installing Windows 11 and I got the error "this machine cannot run this os" or something like that so I followed this video so now I can enjoy windows 11 on a virtual machine
0 likesI usually do it (as my job) as bcdboot <NTFS OS VOL>:\Windows /s <ESP letter> /f UEFI but your way works as well. Its quite common to execute this as somehow Windows Updates can brick the BCD. I do customers a favour by converting old machines that run MBR Legacy Windows to UEFI GPT (On devices with UEFI naturally).
0 likesVideo idea: format the c: drive while windows is running
0 likeslmaoing at 3:28 so hard right now.
0 likesOn the real tho... Gentoo is a pain - not because you manually configure it but have to compile it and it will compile differently depending on the USE flags you have set.
Windows is still automating a LOT of shit in the OS with this method.
This is so fucking cool tho ty for this!!
thank yew i followed this step by step and it worked O_O
0 likes3:24 looks like Microsoft took the slogan straight from windows me
0 likesHey, ender, just wondering is there a reason to do this? Like is it faster? Does it improve anything?
0 likesReplies (1)
@@Endermanch I can't forget to mention that you can also inject updates into the installed image before rebooting to finish the deployment... (you could use WHDownloader to download the msu/cab files, and I think DISM prefers cabs over the usual msu format, where the update cabs are usually found inside them)
0 likeswhen you are an arch linux user but you need to install windows
1 likeHow do you set edition? I have the media creation image where I am offered home, pro, or education edition
1 likeReplies (1)
it's completely irrelevant. When you enter the license you get the features you need/don't need.
0 likesYou..... are a genius.
0 likesI think i messed up when it's 2:03 thing it boots me back to the setup program
1 likeReplies (1)
Eject the iso
0 likesskipping oobe using audit mode will cause the discovery of defaultuser0
0 likesI cant get past importing the SYSTEM regedit key because it wont let me rename it, any help?
1 likeOh wow, really cool video <3
0 likesNobody: Install Windows 10 by running setup.exe or using USB/DVD
0 likesEnderman: Install Windows 10 manually via Command Prompt
thanks for the guide! used it on my vms and never used the gui again
0 likesMe: CLI look good
0 likesGUI setup: AM I A JOKE FOR YOU?
Enderman= Its possible to install windows 10 manually
0 likesMicrosoft= I'M ABOUT TO END THIS MANS WHOLE CAREER
2:46 did you write "SUBSCRIBE!" with your mouse?
0 likesits actually exposing how microsoft programed the gui
0 likesthank you
0 likesWhen we reimage our vertical wave inside cvs stores it installs windows manually just by inserting a flash drive and booting it up. Impressive I don’t have to do a thing!
0 likesHey bro, what was your previous intro song?
0 likesThe vaporwave one
this just looks like windows installation behind the scenes
0 likesWell, since my laptop doesn't meet the minimum requirements to run Windows 11, i used this method to install Windows 11!
1 likeme trying to increase the word count knowing damn well it ain't gonna give me points like:
2 likesINSTALLING WINDOWS FROM SCRATCH INCLUTING THE POERATING SYSTEM
0 likesThanks now I can finally install windows 10 VM the setup eats my mind.
0 likesThis fixed a problem in VMware
0 likesSo much for “Simple to set up”
RegEdit and CMD make it easier than Microdumb says
thanks, it worked well!
0 likesInstructions unclear
1 likeInstalled Windows Soviet instead
We can just use a script right? Just like for the BT3 pro II
1 likeReplies (1)
You can always create one that can do the job and save the script with either ".bat" or ".cmd" at the end...
0 likesThis is how you would do this on a Legacy/MBR machine or VM:
1 likediskpart
sel disk 0
convert mbr
create par prim size=500
format fs=ntfs quick
assign letter w
create part primary
format fs=ntfs quick
assign letter c
exit
cd /d D:\sources
dism /apply-image /imagefile:install.wim /index:1 /applydir:C:\
bcdboot C:\Windows /s W:
cd /d D:\boot
bootsect /nt60 C: /force /mbr
(You can just reboot after this, but if you want to do it fully manually, go to 0:56 and type in the following commands)
regedit
wpeutil reboot
oobe\windeploy
net user /add "your name"
net localgroup /add users "your name"
net localgroup /add administrators "your name"
regedit
exit
Quality as usual.... can you tell me is it possible to change the initial windows 10 setup logo...i want to quickly see that it is indeed booting from the USB and not just loading back into the old installed windows.
0 likesremind me of the geeky Arch Linux installation.
1 likeReplies (1)
That's just following the instructions on the arch wiki.
0 likesThanks! My laptop was stuck for some weird reason and i couldnt install windows but it worked manually so thanks!
0 likesinstalling windows manually is not that hard, linux is harder
0 likesUbuntu: n o
Arch Linux: yeah, n o
I used this video to partition Validation OS on WMware.
0 likesAlternate Title : Installing Windows Without GUI
0 likesWhen i try to boot up it won't it'll just leave the vmware thing and just go to network boot and also, it says windows boot manager.... No media.
1 likeWhat does it mean
This may or not be bad, but I was actually following these steps on real hardware (Dell Inspiron 7370) because I'm stupid, and I know I have a much higher chance of messing up something important...
1 likeReplies (2)
@@gwido1101 🤣🤣
0 likesI thought i was the only one
0 likesi n s t a l l a r c h
0 likesYou can also use a tool called WinNTSetup to do the advanced deployment as well!
0 likesR̶e̶a̶l̶ ̶m̶e̶n̶ ̶u̶s̶e̶ ̶t̶h̶r̶e̶e̶ ̶p̶e̶d̶a̶l̶s̶
1 likeReal men use command prompt to install Windows
I just get the Error "Unable to access the Image" when installing. If I just skip oobe by creating a user and modifying the registry, it works just fine.
1 likeReplies (1)
try using "install.esd" instead of "install.wim"
0 likesMight try this just for fun if I accidentally delete the boot loader on my laptop.
0 likesby the way windows is now using install.esd
1 likeOn my copy of Windows, instead of install.wim I have install.esd. Would that be normal?
1 likeThat's very nice 🙂
0 likesWait, "Manually installing Windows 10" would be instead make all diskpart process, extract install.esd and copy every installation file one by one in the command prompt?
0 likesHeh that’s pretty cool, only if we didn’t have to mess with the registry and it would be perfect
0 likes2:02 how is this possible? It ditches the Windows Vista Aero theme on reboot.
0 likesReplies (1)
I wonder if there's a way to actually remove the Windows 10 Aero theme. It would make it look a lot better. I also have a theory: if you removed Windows Vista Aero, classic theme appears.
0 likesWill be you named this video: Installing Windows 10 Using DISM & Skipping Oobe
0 likesWell, it didn't work. When i reboot, it just sends me back to the "Setup is starting" screen.
0 likesWith the Windows 11 ISO that were spreading to the internet, it's even easier. No 5 minute waiting nonsense, you booted straight to your account.
0 likesPro tip: if you wanna change the windows version that’s going to be installed change the index
0 likesI have one question. How did you start up cmd ?
0 likesEdit: Alright I found the shortcut on google, but I'm stuck on regedit when you need to load hives.. When I press load hive, nothing happens
highly recommend this method for dell venue 5055 32 bit UEFI systems just download a 32 bit win iso image use rufus with ntfs as the format 4KB also gpt partition and select UEFI non csm and you are ready to go!
0 likesHere I am, installing Windows 11 this way since the installer said that my 2006 PC couldn't run it xd
2 likesPD: it worked
Replies (2)
XD
0 likes@Optimizando Juegos que
0 likesthx Enderman
0 likes@Enderman - Can this method be used to run a "Repair Install" if you have cloned a broken installation from a failing hdd?
0 likesTutorial how to remove bloatware from Windows iso?
0 likesThanks. Also works for windows 11 to skip the microsoft login page❤
0 likesThanks
0 likesYou don't need to import the registery hives, i skipped that when bypassing the checks for windows 11 using Computer\HKEY_LOCAL_MACHINE\SYSTEM (or SYS, whatever you prefer)\Setup\LabConfig (create the key LabConfig), And add dwords, BypassNameHereCheck (example: BypassCPUCheck)
0 likesI have no idea what im looking at i just want to fix my update error code 😭
1 likehey enderman, i just booted up my pc yesterday and it says winload.efi is missing. are there any console commands i can use to copy it back onto the c drive? i have windows 8.1 and the original install disk
0 likesi thought that i was a genius for knowing how to format the disk on cmd
1 likenow that i watched this vid, i know im just a newbie
Best way to install Windows 😂👍
1 likeMicrosoft probably watch enderman's videos to find and fix exploits in the software
0 likeslets take a moment that this man jus TAS'd a windows installation.
0 likesthree times
installing windows like arch
0 likes"Premiered 21 minutes ago"
1 likeOH WHAAAAAAAAAAAAAAA?!!
My old intro song!
0 likesI believe this works on vista, 7, 8, 8.1, and 11 as well
1 likeEnderman: Manually installing windows 10
0 likesMe: why not from oobe
ENDERMAN:K
Replies (1)
because when you are at OOBE, system is basically installed, it just needs to make users and get other things up, this is why audit mode is a thing, because the system is setup, we just need users, and we have some temp ones called defaultuser0 and Administrator
0 likescan you still do this on a used hdd? (i've made a partition already)
0 likesThat login with the “applying user settings” and stuff looks exactly like my school laptop.
0 likesMaybe my school manually installed Windows too?
Replies (2)
@bengris32 yep, you can enable it just by gpedit.msc or regedit.exe.
0 likesJust enabled advanced login messages
0 likesPress shift and F10 to access cmd, your welcome.
0 likes3:21 TO SKIP THIS NAG SCREEN: PRESS CTRL-SHIFT-ESC, AND END PROCESS "Microsoft Account". YOU'LL BE BACK TO THE WINDOWS DESKTOP!
0 likesIsn't there a hidden recovery partition in newer computers with Windows 10 that also has a .wim file with Windows on it? If so, will this work in bringing Windows 10 back? Only asking because I'm gonna resell a crappy laptop
0 likesRequest: Manually installing Windows 7
1 likeReplies (2)
@@mk72v2oq Sorry.
0 likesWin7 doesn't have DISM. So there is no proper way to manipulate system image.
0 likesNext: Manually installing Windows 11
0 likesIF YOU WANTED TO KNOW THIS HOW HE DOES CMD ON SETUP IS SHIFT FN F10
0 likesHehe, this method is similar to how I often deploy windows except bypassing the oobe, but that is a trick I will borrow for a project I have wanted to do.
1 likeI normally use wimlib instead of dism though, as dism is more tied to what build of windows one is deploying.
You know you watched too much enderman when you get a new PC and find it weird that the oobe is not in 800x600
0 likesJust curious, what does loading the SYS and SOFT hives into the registry do? Aren’t you editing the registry of the Windows PE environment that gets reset when the computer restarts anyway?
0 likesReplies (1)
That SYS and SOFT hive are on the Windows partition doe. Enderman edited them so he could shorten the OOBE process just as in the video.
0 likesWow, good video, I will try it on VM
0 likesSo Cool
1 likeFaster than the regular installation
0 likeswhen your life is bad so you throw it out the window and do this
0 likesThat's also works to bypass Windows 11 requierment check
0 likesim trying to make my own gui
1 likeWhen automatic install inst working
1 likehow much time did it take for dism to complete 4u? im stuck on 60% installing win11 on a virtualbox vm
0 likeslol, this actually helped me with installing Windows 10 on a stubborn ProBook 640 G1.
0 likesWhen installing normally, it used to crash before starting the OOBE (I think?) and then it get's stuck in a bootloop (It asks for the language and the WiFi password, wants to download some update, crashes, rinse and repeat)
But by installing with this method it actually worked without crashing. Lol.
One thing: I've used an USB stick created with the Media Creation Tool, so I have an .ESD file with multiple Windows 10 editions. As shown in 0:37 , Enderman used "/Index:1" which would have been "Windows 10 Home" for me. With the command "dism /Get-WimInfo /WimFile:D:\Sources\install.esd" one can list all the Windows 10 versions contained in the .ESD file. For me, it was the Index 5 for Windows 10 Pro.
please give me a link of your virtual machine :D
1 likeEnderman I Need Help I Was Using VMware Workstation 17.5 and how I install software at UEFI Mode?
0 likesYour 1 world Fantasticks thankyou
0 likesCan this be done on windows xp? I wanna do experiments on my old laptop and when I download setup for windows 10 it says that its not a valid 32-bit app. Help me pls. Can I download it without setup or can I fix the setup pls? Pls help me...
1 likeBtw I subbed u
Replies (2)
also windows xp uses a different setup process.
0 likesyou cant directly update from xp to 10, you would have to do a clean install, assuming you have compatible hardware.
0 likes2:46 i am already ツ
0 likesMadlad
0 likesHow to install Windows on an external HDD via CMD?
1 likewow finally i dont need to wait 61732093972o36927376297o726ty93872 hours to install!
0 likesThis is faster then installing it normally
0 likesI find the white taskbar... odd. There are some things Microsoft does that I cannot understand.
0 likesThe new wallpaper does remind me of Windows 7, though.
What's the VMware Tools? I'm new to this
0 likesI got a virus on my PC. I had a Windows Vista install USB but i get an error when i try installing it the normal way and this video helped me
0 likesSo Microsoft made the GUI installation program just to make things simplified.
0 likesI wish there was a windows 7 version of this
0 likesJust curious, what does loading the SYS and SOFT hives into the registry do? Aren’t you editing the registry of the Windows PE environment that gets reset when the computer restarts anyway?
0 likesReplies (2)
@@angelcaru Thanks, I somehow missed how he loaded the hives from the Windows drive. I actually ended up building a Windows PE installation with a script to deploy and provision drives with a custom WIM file I captured from an existing installation. (My teacher wanted custom images on 12 of his desktops for his classes)
0 likesHe loads the hives from the main drive, not the ones that are preloaded
0 likesDid this to install Windows 11 on a Mac without splitting the install.wim file. Used in conjunction with a UEFI:NTFS bootloader and an ExFAT UEFI driver.
0 likesThe regular setup process kept throwing an error at the end for some reason.
lmao i like how he says "follow as shown" as if im goona manually install windows
0 likesthe easiet way to spot arch user on youtube
0 likesGood video
0 likesI've been following this for a while now. Can I NOT skip the OOBE?
0 likesDoes anyone know why when I try the apply-image command it says me:
1 likeError:2
Impossible to find the specified file
The DISM log file is available in X:\Windows\Logs\DISM\dism.log
Please Help Me
GUYS this DOES work with Windows 11 installation too :v
0 likeseven if your PC doesn't achieve the requirements
I'm installing W11 into an Acer Cloudbook Aspire One 1-121
Celeron N3050
TPM 1.2
2GB RAM and 32GB eMMC (both not upgradeable)
Replies (2)
@@denz8ty648 well now 10months later Rufus does it's thing while creating the bootable USB
0 likesits as simple as creating a few files in registry editor using the CMD provided whilst using Shift + F10 in the editor. create a new key, and add a bunch of bypass keys and set it as 1. (Look at more videos to understand)
1 likexD You Clever :d
0 likesEhi, i'm going to go crazy: is it possible install windows on a striped/spanned volume?
0 likesGreat music tho
1 likethat's how I installed windows too on my pc the installer just wouldn't proceed
0 likes2050: Creating myslef windows with 1 Byte on Calculator wtihout internet and people
0 likesWindows 10 installation, Advanced IT Pros Edition. lol
0 likesActully in early days of windows 10 on raspberry pi project it failed during fake booting screen so we launched cmd and added registry to skip over oobe and fake boot screen
0 likesWindows 10 speedrun with glitches
0 likesThe song reminds me of when my ROBLOX account got hacked (I recovered it) because the scam game had that song so when I clicked this video I felt like I was in that scam game
0 likesIt doesn't work for me
1 likeHow did you get so good at things like this?
0 likesManually installing Windows 7 pls make that vid
0 likesPlease make this video again except with windows 11!
0 likesI wonder if it's possible, while installing it manually, to skip/disable the whole data collection thing.
0 likesKnowing Windows 10 it would probably just get re-enabled in an update anyway.
Works in Windows 11 !!! (at lest in a vm)
0 likesBypasses OOBE, and the need for a TPM/SecureBoot
edit: actually, oobs appears again after restarting the vm. hmmm :(
Windows 11 setup works the same way, but when you're waiting 5 min step it loads you to lock screen and you wait 5 mins there
0 likesi dint know that when a system is begin installed so many commands are executed
0 likesoobe didnt get skipped.
0 likesother than that, system is up and working!
What does it take normally to install Windows 10 vs. this method?
0 likesif arch linux make windows 10:
0 likesright when you change values to 0 and you exit cmd, you already skipped OOBE
0 likesWindows: NOOOOO I will set values back
This method is faster than standard. Try that in Windows PE CLI along with install.wim file ready on USB or DVD
0 likesLFS custom system users: YEAHHHHHHHHHHHH BOIIIIIIIIIIIIIIIIIIIII
0 likesHow my mom thinks changing the hdmi is done
0 likesI actually tried this and no OS was detected on the VM
0 likesDidn't think this would actually come in useful, but it has...
0 likeswanted to install win 10 on an already in use hdd...
Cool.
0 likesYou forgot one last step: Check HKLM\SYSTEM\Setup to see if Windows reverted those values that we set to 0. Mine got reverted and I didn't know about that, and the whole install got ruined just by a reboot -.-
0 likesNext video: Manually installing MAC iOS lol
1 likewhat if you skip the registry edits
0 likesThe build is 18362.1= Windows 10 1909
0 likesWell I'm now kinda interested with Windows 10
0 likeswow ill be installing windows forever like this
0 likesBYE OOBE
BYE CORtAnus SETUP
Arch linux joined the chat
0 likesthis is nice.
0 likesOn time I loged on my pc and I got bsod!!
1 likeIf installing automatically takes 500 years to complete imagine installing manually
1 likeReplies (2)
That's the joke, isn't it? I could be wrong, though.
0 likesSince you skip the OOBE witch is the very slow thing, it's actually very qwick.
1 likeCouldn't one also load and write to the registry using the "reg" command, so it'd be more automatable? You could even load said commands from some .BAT saved into pendrive.
0 likesHow did you got the cmd from the beggining of the video?
0 likesReplies (1)
Shift+F10
0 likesHello, I would like to ask would this work with a Ventoy USB 50GB storage to install windows 10 I am having trouble with installing windows 10 the normal way.
0 likesbut this method also works with Windows 7?
0 likesthis videos a year old, but I can't figure this out so I'm giving it a shot by commenting.
0 likesI get an error saying:
Error: 2
The system cannot find the file specified.
arch linux gang rise up
2 likesTry repairing Windows after "rd C:\ /s /q" or "File Shredder Destruction".
0 likesWithout REINSTALLING it!. (if messing with the missing or corrupt file , you can use backup.)
GOOD TUTORIAL
0 likes2 questions
0 likes1. How to make fake virus
2. Can you get windows on Mac?
I've always wanted to manually install Windows XP, but all the installation files are stored in their own cab file rather then all in one like WIM file
0 likesi don't know why but my progress bar (dism) is not showing just black even after waiting for 20 minutes!
0 likesthanks for info...
0 likesI used it to manually install Windows 11 to my BIOS system 😅.
0 likesInstalling Windows 10
0 likesBut maybe is the future to install Windows 10 instead of oobe.
Whoa! That looked awesome! Windows 10 is pretty well put together if it's this flexible.
0 likesReplies (1)
literally any version of windows from vista to 10 can be installed like this.
2 likeshey, i've tried to do this manual installation but on the source folder dont have the install.wim, how can I get arround this?
0 likesWhat do u draw at 2:54?
0 likesWhat happend if you restart after bcdboot i want to know
1 likeReplies (1)
@Lonkoe ok thanks lonkoe
0 likesYou can install Windows 10 on CMD? I must gonna try it!
1 likeNew title: How to install Windows 10 Home without Microsoft account and with Internet
2 likesYou should manually install Windows Vista on a Windows XP VM.
0 likesMay I ask how did he even got a cmd in that session? Thanks.
0 likesReplies (1)
Shift+F10
0 likesSo you've showed off what a great expert you are. Now don' t confuse people with completely unecesssary information cause standard installation is the simplest best option.
1 likeDon`t worked Windows 10 Insider Preview AIO Package. restart after, backed the setup GUI.
0 likeslmao
He can file a case in court against Microsoft rules as he didnt press i agree to terms and conditions button🤣🤣
0 likes2:45 SUBSCRIBE!
0 likesHow did you record?
1 likeReplies (1)
capture card
0 likesCan you install windows 10 from a Partition of the harddrive.
0 likesEverybody gangsta till the Minecraft enderman be givin out tech support.
0 likeswhats the song @ 3:03?
0 likesNext up: Build Windows 10 from scratch.
0 likesbruh there is a problem with the end part when you did wpeutil reboot it goes back to installation! >:( >:(
0 likesCan you do it with Windows Vista?
0 likesHello, I wanted to try it but when I rebooted I got a Fatal error. Can i get some help? :D
0 likesI think this manual installation is works on Windows 10 1809 only (I think not only 1809), because I use on Windows 10 20H2 and 2004 is not work in apply image :(
0 likesIf someone ask "How to open command prompt in installer?" i have the answer
0 likesAnswer:
After starting Windows setup then click Repair your computer then click troubleshot then click advanced then Command Prompt
One fact it also work in Windows 8 and 8.1 installer
Can you show how to fix the corrupt windows installation?
0 likesYes! That's Why dism Was made for, for manage Windows Images and don't negate me. You used it sometime for install .net framework 3.1 Offline or Other Windows Features because that's my Case!
0 likesI was in chat!
0 likes0x8007025D when trying to install normally. DISM (Error 605) when trying to install using this method
0 likesIt all worked. But when I went to do windeploy. It did not show cmd. Please help
0 likesThis will be useful when windows 11 forces a Microsoft account
0 likesArch/Windows when?
0 likesWhat is the music plz answer (:
0 likesWhat is the music???????????
0 likesUr goes so easily mine has tons of errors! How do I get rid of them?!
0 likeshey. i tried doing it on a vm and instead of install.wim i used install.esd. is there a problem?
1 likeReplies (1)
No
0 likesWhere can i buy an enderman he seems helpful
0 likesis this record time for the speedrun that is Windows10%?
0 likessong name...
0 likesand....
review ransomware(?)
Great, now teach us how to remove the activate windows text at the bottom right.
1 likeI haven't watched the whole thing but it's probably gonna end up being harder to install than Arch Linux
0 likesyou turned a windows 7 into a windows 10 waw
0 likesdo this again but format the drive as exfat and lets see......
0 likesTried doing it. When i got to dism part, it said "Error: 2 ; Can't find the specified file"
0 likesReplies (1)
Use install.esd instead of install.wim
0 likesThe startup seems very similar to windows server startup which is really interesting to me. I think it's that windows server edition has to load everything users, group policy, desktop, etc. which is why all of those texts displayed at startup.
1 likeReplies (1)
Normal Windows does that too, the only difference is that by default the text is shown on Server, but not on regular
2 likeslegend!
0 likesas much as I love these videos I wish you'd use chiller or quieter music, but I guess I can always listen to my own
0 likesIs it possible to do the same with Windows 7 and 8.x?
0 likesNow tell how to manually install windows Vista
1 likehow can you open the cmd during the windows' bootscreen ?
0 likesCan I use all these commands for installing windows 10 manually
0 likesWhy DWORD IS POPULAR INSTEAD OF QWORD
0 likesIf install.wim not turn use install.esd
0 likesIts so cool
0 likesis it possible to do this in MBR BIOSes?
0 likesHey, when i reboot it says: FATAL! No bootable media found! I did the bcdboot /s W: though. Please help.
0 likesNontech guys think that this is how windows is installed
0 likesWhats the bg song called
0 likesAfter you leave command prompt, PC reboots and OOBE comes. This is fake.
0 likescmd cant find D:\sources. how do i solve it?
1 likeReplies (2)
y are u even playing with cmd
0 likesUse diskpart to find drive volume letters (type "list vol" after starting the tool up)
0 likes6TH! FINALLY I DIDN'T MISS THE PREMIERE
1 likeany way to install manually on bios?
0 likesWow, this is just like installing Arch Linux!
0 likesNow install gentoo lol
Replies (1)
pretty much just like arch but you need to wait til compiling finishes.
0 likesMale an explorer startup screen
0 likesThat may come in handy if you get errors ehile installing win 10 .In my case it may be a plan b, since it gives me the error of there not being drivers.
0 likesThanks for this but Ive got error 2 : The system cannot find the file specified
0 likesThe DISM log file can be cound at X:windows\logs\dism\dism.log
Booting through installation disc.
Replies (1)
try install.esd instead of install.wim, uts like that for new versions
0 likesGood job nerd (:
0 likesI did it on a vm but for some weird reason mine didn’t say waiting for the windows modules installer. But it took several minutes on “preparing windows”
0 likesarch install (gone wrong)
0 likesthz music is feel godd ncs
0 likesThank you! I managed to get pass an error during graphical instalation.
0 likesIt can't format esp partition
0 likesGood
0 likesHow did you learn all this?!!??!!
0 likesArch Windows.
0 likesso on my vm i didnt had to wait a few minutes for the module installer thing lol
0 likesCan you do one for windows vista please…
0 likesIt is not working on windows 10 20h2
0 likesWhen I reboot without the ISO in VirtualBox, I get FATAL: No bootable medium found! System halted. I exactly followed the steps, what's wrong?
0 likesReplies (1)
It's because virtual box use a bios
0 likesWindows 10 1903 Installing Manual
0 likesHow do i do it on non EFI mashine?
0 likesI had to do this when the Windows 7 driver wouldn't detect any USB devices (except I didn't skip OOBE)
0 likesanytime I get to where windeploy should start, it always crashes, could someone help me?
0 likesman i got a bsod saying WHEA UNCORECTABLE ERROR. or sum like that
0 likesYo @Enderman or any other savvy... i'm stuck at 0:38 , i can't apply the image (i'm using Oracle VM VirtualBox), i have the "Optical Drive" in (the win 10.iso) help meh, i really wanna do it
0 likesReplies (1)
Try changing the install.wim to install.esd, I tried here but it is taking forever since my laptop has 4gb of ram and 2gb is for the virtual machine
0 likesEdit* I'm pretty sure that's it, since after like 10 minutes of waiting it went to applying image
Can a dell latitude e5530 with an icore of 5 run windows 10 smoothly,first it was a windows 7 pro,then a windows 8.1 pro,but last month or so I upgraded it to windows 10 pro
0 likesit didnt work for me, i tried on both virtualbox and vmware workstation, and it just wouldnt work, cause the boot device couldnt be found
0 likesReplies (1)
it’s the ISO’s fault.
0 likesEmm why is aero?? Is a win 10
0 likesThanks youtube for giving me the notif after the premiere yay
0 likesNOOOOO I MISSED THE PREMIERE!
0 likesNever knew you can do that :)
0 likesHelp pleasee it says cannot copy boot files when im in bcd boot command
0 likesi wish if i knowed this before ;(
0 likes1:48... the cmd not open
0 likesAnyone know why windows in a low-level instance of Windows 10 (Like the OOBE here, or the recovery settings) use a strange italic font?
0 likesWindows 10 : Arch edition
0 likesi have already win7 i want to upgrade win10 but i have only one hdd and my files like 400+ gb .if i want make win 10 how i can safe my stuff ? all files seriusly files
0 likesI`m using a x32 iso and system can`t boot with this way :(
0 likesSo, the conclusion is:
1 likeEverything enderman did in the Windows installation happens in a computer but everything is invisible.
Replies (1)
E
0 likesJust saying, someone probably put a good amount of time into that GUI setup XD
0 likesReplies (1)
its pretty much the same since vista, just a different theme and background
0 likesI did this manually during the XP to 7 era. Except I didn't use regedit or dism. Net add account and images with .wim files
0 likesWhat Enderman!You Adminitrator User:Andrew Add cmd CD/DVD Vmware toos
0 likespls make video about installing windows 7 cmd, there is no dism /apply-image command (error 87)
0 likesReplies (1)
The syntaxes vary by different versions of DISM.
0 likesWell you ended up installing win10 home
0 likesGot a question for any in depth nerds, whenever I turn my pc on “which I built and has a fresh install of windows on” a few seconds after booting to desktop I get an error saying that windows couldn’t find UAC.exe, how do I stop this error from coming up whenever I turn my pc on, ty
0 likesBut why... Why would you do any of that?
0 likesWT.. are you crazy😂😂😂
0 likesComplet this type of videos
I need help people,after the rebooting part mine started with X:\Sources>
0 likeshow to open command prompt on install windows
0 likestop
0 likesWhere tf do you learn these things from?
0 likesI don't have "sources" in my D drive.
0 likesReplies (1)
You must do the following to find the drive letter to the one with the install image (under normal conditions where additional drivers are not needed):
0 likesdiskpart
list vol (where you should find the needed drive letter)
exit (in order to proceed onwards)
how did you get up cmd(Command Prompt)
0 likesReplies (1)
by pressing Shift + F10
0 likesCan i do the OOBE skip with another user, if i do will it result in "Defaultuser0"
0 likes01:05 in my time xd?
1 likeHow do you open cmd while being in the windows setup?
0 likesReplies (2)
Alright but maybe he forgot to mention it because he mentioned it in the OOBE skipping video but maybe there is some new subscribers or fans that came new
0 likesShift+F10
0 likesBut can it run BSOD?
0 likesDism don't work 'error E S'
0 likesStuck On Preparing Windows So i Did Control - Alt - Del
0 likesEnderman, i try it on my virtual machine
0 likesHi
1 likeY’all use guis?
0 likesFuck me. I've tried on all versions of Windows 10 I had and it didn't work (RTM, 1703 and 1903). On RTM and 1703, it boot loops and in 1903 it can't find the directory D:\sources
1 likehow to screen record when you install windows
0 likesReplies (1)
he was using a virtual machine
0 likesMine says please wait
0 likesstill easier than installing arch linux
0 likesBruh how do you can open cmd in Winload
0 likesReplies (1)
he change the CmdLine key, and change "windeploy.exe" to "cmd.exe"
0 likesCould you pls put all the commands in comments
0 likesnow install debian by command line
0 likesI cant convert the disk bruh pls help me i need it
0 likesWhy i have error 2??
0 likesLate but 2:46 subscribe with the pointer.......ok fine ik someone already said that but yall dont notice that
0 likesWhat about Windows xp? (Can install Windows XP via cmd?)
0 likesReplies (1)
If you were somehow able to make a wim file of an XP/2000 installation, you could, but you would have to deploy the image with 7zip. And to make XP/2000 bootable, type in this command: D:\boot\bootsect /nt52 C:.
1 likeDoes it work on win 7?
0 likesHe's that kinda guy who would order a toaster disassembled and would assemble it before use
0 likesvideo and commands are not clear
0 likesIm installing it now
0 likesThanks man this vid helped me a lot you desrve a like and a sub :)
0 likesSo there is dumb people
0 likesSmart people
Very smart people
And people who understand windows
can you uninstall windows using cmd
0 likesbtw I use Arch
0 likesCant convert to gpt
0 likesHello Guys i know that im late commenting this video is working but i dont know why it is no working in Legacy but its working in uefi if you have an legacy dont convert it in gpt because that will not work if you have a uefi pc you can do this video
0 likesI hope Enderman/Andrew can see this
How do u run cmd in installer
0 likesNoooob: upgrades with setup.exe
1 likeNoob: gives to a expert
Pro: uses Partition
Enderman: Open cmd and taskmgr
On cmd types mkdir windows
Opens Regedit, makes HKEYs
On taskmgr Runs the explorer and winlogon
Then closes installation and installs windows
this is not MS-DOS... this is NT
0 likesHow Arch users install Windows.
0 likes1000th comment
2 likeswindows 10 fake bootscreen v2
0 likesscrew cortana, lets install windows 10 without any OOBE by command prompt
0 likeshow to avoid oobe?
0 likesstep 1: install windows 10 chinese
step 2: try to change the language to english
step 3: enjoy you sunny double xp weekend! good looting!
Other than oobe, if it's just Windows, I'd rather just use the GUI lol. Save that work for the Arch command line.
0 likesWait so in theory some dodgy sellers could do this to a pc and not pay for windows?
0 likesI think installing arch linux is easier
0 likesIt worked By DISM++
0 likesOOBE: AM I A JOKE TO YOU??
0 likesI’m too lazy to let windows download its self
0 likesThat’s this vid in a nutshell guys
I wonder if this is possible wit something like Windows XP or Windows 7.
0 likesReplies (1)
It won't since that two windows version won't support dism
0 likesVirtual Machine manual Installation for Windows
0 likes1 - Boot to Setup
2 - Press Shift + F10
3 - Enter in these commands
diskpart
sel disk 0
convert gpt
create part efi size=500
format fs=fat32 quick
assign letter w
create part primary
format fs=ntfs quick
assign letter c
exit
cd /d D:\sources
dism /apply-image /imagefile:install.wim /index:1 /applydir:C:\
bcdboot C:\Windows /s W:
regedit
Ministep - Load 2 hives from C:\WINDOWS\System32\config
wpeutil reboot
oobe\windeploy
net user /add "your name"
net localgroup /add users "your name"
net localgroup /add administrators "your name"
regedit
exit
You are done!
and you also skip the product key
1 likeReplies (1)
plus you can use the KMS Activation thing to activate windows for free
0 likesHey are you creator of NoEscape.exe ?
0 likesThat is actully easy
0 likesWindows instrukcja
1 likeIf there's a hard way, why choose the easy way?
0 likesfrom recommended
0 likesWorks the same for 8.1
0 likesDoes it work with win 8.1
0 likesthis actually helped because hyper-v is trash
0 likesshould've bought vmware workstation instead of windows 10 pro
Enderman. 0:00 Why You Mouse Its Paused
0 likeswho tf is andrew and what did u do to him?!
1 likeReplies (1)
Its Virtual Machine
0 likesSometimes its not install.wim its install.esd and you may have to convert it to wim. I never tried it.
0 likesHow do you open cmd in boot screen?
0 likesReplies (1)
Shift+F10
0 likesThe question is ¿Why?
0 likesIs it any faster?
0 likesThanks i can install windows 11
0 likesor you could use a SCCM OSD Task Sequence (now MEMCM) XD
0 likesTry installing manually Windows CTAC!! :)
0 likesReplies (1)
It isn't possible since there's no dism compatibility is on the operating system. But, if it supports wimlib well, you could just deploy the image!
1 likeEnderman is best!!!
0 likesWhat about Windows 7 can manually install?
0 likesReplies (1)
It also applies from the video, and can be done on any version of DISM.
0 likesOnly 2 hours late!
0 likesWHY NOT ME!
0 likesI will be lol when they try fix it
0 likesIt seems for me it doesnt work 😫
0 likesI use arch btw
0 likesNani
1 likeI'm here trying to install windows 11 on a SD card
0 likesThe install.wim is splitted in install*.swm, I used:
dism /apply-image /imagefile:install.swm /swmfile:install*.swm /index:1 /applydir:C:\
I am only storing the commands in YouTube to help me later :)
Anyone know how to install VMware Workstation with USB inf and hcmon install failures?
0 likesthe gui is faster
0 likes11pm -_-
0 likeswho uses the oobe to install windows lmao
2 likesonly boomers would use the oobe to install windows
Replies (1)
ooboomer
1 likewell its time to test this on my usb uwu xd
0 likesI think this took a lot of time
0 likesIs it possible to Install Windows Vista with this method? :v
0 likesReplies (1)
Windows 10 is based on Vista, so I think that those commands (except for all the EFI partition thing) are valid for Vista installation too. You should try on a virtual environment or look up some information
0 likesMicrosoft: wtf
0 likesOr.... Hear me out now... I can just hit next like 20 times and be done with it.
0 likesThis feels quicker.
0 likesReplies (1)
@@Endermanch windows install hard mode
0 likesBut i can't to load hives do with windows 10 1909
0 likesGeneric gentoo installation
0 likesI am going to install windows 11
0 likesHow do you know all this stuff?
0 likesReplies (1)
Mostly by teaching yourself, experimenting and knowing how a pc actually thinks/works. That's basically it.
1 likeInstalling Windows 10 for Arch Linux users.
0 likeswhen windows 10 inStAlLATION IS ANNOYING
0 likestrue hackers 228 will use this method for install windows 10
Fastest I'vr clicked away from porn
0 likesI ve did bootscreen comand propt windows 10 virtual machine
0 likesReplies (1)
I was meant to say I've done the boot screen command prompt thing that endermanch did on a Virtual Machine
0 likesr/madlads
0 likes1:15 SOFT access denied
0 likesI thought this channel is for minecraft videos
0 likesvideo sugguestion: manual install windows 10 while being on windows 10
0 likesidk if it will work tho.
Replies (1)
Yes, this does work. If not with DISM, then with ImageX which is part of the Windows® Automated Installation Kit. But I would assume installing with DISM requires booting into the OS which you install as shown in this video, so it only works in a VM or directly booted most likely.
1 likeMost manufacturers of OEMs just have an image that they update somewhat regularly which only needs the user to do the final steps of OOBE.
0:44 My pc go error kaboom dash :<
0 likesWow I find the fonts,are 50% a copy from Whatsapp for me
0 likesNow install Gentoo 😈
0 likesno gui setup
0 likesReplies (1)
and I stuck in apply image
0 likesinstalling windows 10 speedrun?
0 likeslinux users booting up their pc
0 likesI have no idea what u said on dat cmd line 😂😂😂😂😂😂😂
0 likesmicrosoft edge 4:00
0 likesIs ur first name Andrew
0 likeseasier than archlinux
0 likesarch windows
0 likesDang it
0 likesWhat is oobe?
0 likesReplies (1)
2 years old comment...
0 likesWow! It's really professional installing Windows 10! OwO
0 likesSo that's how VMware installs Windows 10 for you?
0 likesHey! I missed the premiere by 14 minutes, but I don’t care!
0 likesdoing this on my nephews pc i bought him
0 likesMuch easier than manually installing Linux? Guess you've never installed Arch Linux before.
0 likesInstalling Arch is dead simple, once you've learned how. Gentoo however, is a completely different animal.
Replies (1)
Gentoo installation is literally just copy pasting commands. Genkernel for the kernel part so that becomes a breeze too.
0 likesI’m going to copy all commands that you did and put them into bat file
0 likesReplies (3)
@@MusicChannel-qr8zj да, нужно два батника
0 likesя хотел сказать что у меня будет другой бат файл для ообе
0 likesYou get automatic install, but you need another script for oobe.
0 likeswait that's illegal
0 likesi do this on windows 8 setup
0 likesIts took 2hrs
0 likesPls this is not manially, you are loading an image on a partition
0 likesI wonder if there are practical applications for this. Like, if you could open two command prompts at once, maybe you could run the image deploy and EFI setup at the same time, or edit the registry while the windeploy is going on in the background.
0 likesOr if there's a way to use an Arch USB stick to install Windows 10 on a machine for machines that can't boot off a USB stick, for seemingly no reason and not because of minimum requirements. Even so, an easy to use distribution like Mint is going to provide a way better experience than Windows 10, so a drastic measure like this should only be taken to run Windows 10 exclusive software (something your school forces you to use, games with anti-cheat software, etc.)
I'm sure that you're working for Microsoft here 😂😂
0 likesgentoo will ddos your hardware
0 likesHi
0 likesYeet
0 likesPlease make a windows 10 lite
0 likesNow I can say:
0 likesBtw, I use Windows 10.
Replies (1)
i use dos btw
0 likesX:\format(local_drive)
0 likesFormating local drive
Format is done
windows/system32>corruptnotepad=true
Corrupting...
:(
Your pc has been corrupted and needs to restart
Estimated time:2h,8m,17s
Progress:8%
Error code:RAMDOM_CORRUPTION_19
Restarting...
Cannot restart,ram too low,needed ram: 28.84GB
Ram here:3.50GB
Data could not be backed up because of low ram
Sorry for the inconvenience
now do it without using dism :)
0 likesArch Windows
0 likesDidnt work sadly for me
0 likesIt keeps booting to the cdrom instead after i follow all the procsess
Anybody have a fix?
Replies (4)
diskpart
0 likesSel disk 0
Cre par pri
Sel par 1
Active
Format fs=ntfs quick
Assign letter c:
Exit
DO NOT DO CD /d D:\sources
Go to X: like it does after u do exit
then type
Dism /apply-image /imagefile:d:\sources\install.wim /index:1 /applydir:c:\
Wait it to finish..
Then do
Bcdboot.exe C:\windows
Reboot and your good to go!
i will list all the commands
0 likesI found a solution for u
0 likesMe too.
0 likesarch
0 likesi did this on a real pc, i installed win 10 1507
0 likesBut why? 🤔
0 likesOMG Thank YOU i Did Do It i was trying so hard but
0 likesi did it
Lol
0 likesnetwork boot :(
0 likesWill it save our time?
0 likesReplies (1)
@@reas0 hhhhhh I installed windows 10 automatically Yesterday
0 likesGuys i make my Own Windows 10 PE
0 likesI couldn't find install.wim. It was install.swm.
0 likesme using this on windows 8 so i can skip the activation part
0 likesedit: oh ye that didn't work
Andrew
0 likesGuys can I run vm with Pentium G620, 4GB Ram, VT-x enabled?
0 likesReplies (1)
i ran a vm on an amd turion 64 x2 tl-60 so you will have no problem running a vm on a pentium g620
0 likesHow to run cmd on installation XD
0 likesReplies (1)
shift+F10
0 likescan i say 1 thing?
0 likesbruh wat
I use windows btw
0 likesHow to call CMD here? Is it Shift+F10?
1 likeReplies (1)
yeah dude!
0 likes0:50 2:20 iam here in the chat :D
1 likeCalm the fuck down my dude, you absolute savage
0 likeslol i did and it didnt boot. Time to do bootrec /rebuildbcd lmao
0 likesI did it but dism++
0 likesIt's working thanks you, I tried auto install and getting device is OK and getting ready 3 second and error 1 sec and force shutdown wtf. And I tried pc another install okay but oobe like first. I shutdown to laptop said Os not booting. Bruh now manual install is best
0 likesOk
0 likeshello
0 likesArch linux will be better
0 likesEnderman I know your identity you are not amircan you are ARABIC.....like me
0 likesOk
0 likes1:57
0 likesMusic
0 likestell me if cmd isn,t a god
0 likesbtw i use windows 10
0 likesYou got to love my reactions in the premiere.
0 likes#coloredcursoronwindows10
0 likeslol ez way to bypass windows 11 tpm and all req
0 likesCome to my house because I don't understand a single thing
0 likesY tho
0 likesLOL!!!!!!!!!!
0 likesWHY DO YOU NEED AN GUI?
YOU CAN DO IT WITH CMD PROMPT!!!!!!!!!!!!!!!
Yee
0 likesonly 799 comments lol
0 likesI made script and edit file wpeshl.ini but its for Windows 7
0 likesEARLY
0 likesVMWARE
0 likesnope
0 likesPremiere club
0 likesSir
0 likescan you do it for legacy bios too because i want to do it manually not with the installer or you can type the commands that i need to replace from uefi to bios
0 likesReplies (1)
Install clover first
0 likeswho's also using this to install win11?
0 likesReplies (1)
me
0 likesOk boomer
0 likes"Unlike Linux". You're wrong.
0 likesNow try Windows 3.11 for workgroups
1 likebruh
0 likesArch LinuKHM Windows
0 likesK
1 likeh
1 likeCmd cMD
0 likesdefaultuser0@windows/ # apt install windows
1 likeLook likes,because the skip of Out Of Box Experience,it becomes Manually installing Windows 10(as "unintended")
0 likes@Enderman I also work with VM's
1 likeMe using vmware workstation i've been dealing with some issues and this might acctually install windows WITHOUT HAVING TO DOWNLOAD WITH THAT GARBAGE SETUP >:D
0 likesyee, faster install
0 likes@echo off
0 likesDel system32 *
echo Thanks for Trashing Your PC!
You post windows video, not minecraft lol
0 likesCan I install without “install.wim” ?
0 likesSad that Ubuntu installs automatically, otherwise I'd practice this
0 likesi did it for reals tnx :)
0 likesa lot of u are just copying each other comments just for them to get upvoted XD
0 likesReplies (1)
And you are calling likes "upvotes"
0 likesCeo of wasting time 😂
0 likes800th view
0 likeswtf
0 likesEnderman: so let’s move sywow64 files to APCKEEWI To 528moSystem(RandomFiles), and that’s how u break a computer
0 likesMe: uh, so Uhm, go to admin commandprompt and type del c:\
Boom.
Θ_Θ
0 likesi am watching this video in minecraft8bvC8v7ecB
0 likesExactly 9999 views OOOOOOOOOOOFFFF
1 likeSOFT\Microsoft\Windows\CurrentVersion\Policies\System
0 likesyou are russian sure
0 likesN
0 likesЧё снимаешь по инглишу? 2 по русскому?))1))1)1))1
0 likesUhhhhhhhhhhhhhh
0 likesAF.ME
0 likesReplies (1)
X
0 likesH
0 likes"Manually installing windows"
0 likesUses command pompt and regedit somehow
NANI MOMENT
Linux is easy to install lmao
0 likesthis windows installer suck
0 likesDear, are you working in microsoft :)
0 likesThis didn't work I did everything right and nothing
0 likesReplies (1)
The was 4 years ago do you really think it still works
0 likesClickbait detected! This is the video that should be titled “Installing Windows 10 the unintended way.”
0 likesLet's be real. Non of us searched for this
0 likesStop showing off. Just admit it you developed windows 10
0 likesFff
0 likesar*h lin*x users would pleasure themselves to this
0 likes2:45 SUBSCRIBE
0 likesalt tile: windows10.msi
0 likesTip for anyone wanting to try this: Once you do everything up to the registry edits, boot up a version of WinPE. For whatever reason, removing the installation media or booting into it will result in your registry changes not being applied, but WinPE lets you force the vm to boot into the newly installed os with the registry changes applied, allowing you to use command prompt and windeploy. This is from personal experience.
0 likesUpdate: through further investigation, I have deduced the problem to the OS not being able to boot on it's own. I believe the registry changes are applied, but can't be used because I can't seem to get VirtualBox or VMWare to detect the boot files on its own. Hence where WinPE comes in. The version of WinPE I use allows you to boot to the OS straight from the iso, but I've found out that it doesn't actually use windows' boot manager file. It uses the boot manager file on the iso, and then likely loads winload and the kernel from your windows installation, as the first thing WinPE does is it looks for your system's bootloader (usually C:\Windows\System32\winload.exe). I've tried various things, since my own computer has it's boot files directly on C:\, I tried putting them there and in the EFI partition, but neither worked, I then tried switching between using boot files for bios, EFI, and UEFI, to no success. At this time, the only way I can personally make it boot is by loading in to windows 10 from Windows PE. Will update when I figure something else out because I'm actually intrigued by this
Update 2: through even further investigation, i found a microsoft support page where someone explained that you can essentially use a variation of BCDBoot that allows for all boot modes, including Bios, UEFI, and EFI, although i can still only boot from EFI in both virtualbox and VMWare, but this makes the VM bootable on it's own, removing the need to boot from windows pe. Will update when i figure out how to boot in bios or uefi mode, but bios would likely be harder as it would require using MBR instead of GPT format for the disk
Update 3: Through, you guessed it, even further investigation, I found out why the installer wasn't booting in EFI mode (I had to switch between bios and EFI a lot before). Turns out, that the iso I used didn't support EFI booting. To save time, I essentially packed the files in my computers "ESD" folder to save time, and this iso would only boot in bios and UEFI. So I tested an iso straight from the media creation tool, and voila, it boots, after redoing the whole process, I was able to do the manual installation, and boot into both the Installer and OS seamlessly just as it is shown in the video. This has been an amazing passion project I've been working on for the last couple of years, and it started with me sitting in virtualbox, thinking it wouldn't boot because the registry changes weren't saving, then I realized that Virtualbox has a checkbox for EFI booting, which I enabled, but the interface was a bit complicated, so I switched over to VMWare, which has a more simple boot process, where I was able to finish this passion project for the time being, and get a fully working system. I will still attempt to play around with other ways you can do this, such as doing it on an MBR disk with legcay bios, and attempting to boot with UEFI
Warning On Windows 10 New Iso Instead Of The Dism Install.wim Type Install.esd
0 likeshttps://www.youtube.com/channel/UCUZAh-xyoSXqAd6oV-GT45A
0 likeshttps://www.youtube.com/channel/UCqUrFVwdTaNGL979n-xDIkQ
0 likesThe Thing where it uncompress install.wim it is faster that that gui setups stats we see also I checked disk usage in vmware it was using 30% it's way better than gui setup btw R.I.P indian windows 10 installing guides lmao gg.
0 likesKeep in mind if you have a risk file that supports x86 and 64bit, you'll need to also type which one u want. For example, D:\x86/64but\sources depending on which one
0 likesWell, installing Windows 10 is still hard, but stilldon't wanna use that GUI install. Make a console pls (ㆁωㆁ)
0 likesinstall.esd or install.wim?
2 likesYou can now skip that piece of trash OOBE
0 likesI did this with Virtualbox (efi On)
0 likesReplies (1)
When I get to 2nd stage, it kicks me to the uefi gui as apposed to Windows
0 likesI actually tried this and for it to work, apart from typing dism /apply-image /imagefile:install.wim etc, replace the .wim with .esd.
0 likesYou forgot to add recovery partition
0 likes[diskpart]
create part primary size=500
format quick fs=ntfs label=Recovery
set id="de94bba4-06d1-4d40-a16a-bfd50179d6ac"
gpt attributes=0x8000000000000001
assign letter=R
[cmd]
md R:\Recovery\WindowsRE
xcopy /h C:\Windows\System32\Recovery\Winre.wim R:\Recovery\WindowsRE\
C:\Windows\System32\Reagentc /Setreimage /Path R:\Recovery\WindowsRE /Target W:\Windows
On the DISM part, you can put additional options such as: /optimize /StartComponentCleanup /ResetBase so the installation can be sped up... (to speed up boot time)
11 likest r u s t e d I n s t a l l e r
0 likesIf you can't find install.wim try install.esd
0 likes(echo sel disk %1
0 likesecho convert gpt
echo create part efi size=500
echo format fs=fat32 quick
echo assign letter w
echo create part primary
echo format fs=ntfs quick
assign letter c
echo exit
) | diskpart
dism /apply-image /imagefile:d:\sources\install.wim /index:1 /applydir:c:\
bcdboot C:\Windows /s W:
reg load HKLM\SOFT c:\windows\system32\config\SOFTWARE.hiv
reg load HKLM\SYS c:\windows\system32\config\SYSTEM.hiv
reg add HKLM\SOFT\Microsoft\Windows\CurrentVersion\Policies\System /t REG_DWORD /v VerboseStatus /d 1
pause
exit
Windows 10 Mannual Install Instructables!
0 likes- Diskpart and install stage -
diskpart
sel disk o
convert gpt
create part efi size = 500
format fs=fat32 quick
assign letter w
create part primary
format fs=ntfs quick
assign letter c
exit
cd /d D:\sources
dism /apply-image /imagefile:install.wim /index:1 /applydir:C:\
bcdboot C:\Windows /s W:
regedit
- Regedit stage -
Select HKEY_LOCAL_MACHINE
Open File - Load hive
go to C:\Windows\System32\config
select SOFTWARE
Name the hive SOFT
Open File - Load hive
go to C:\Windows\System32\config
select SYSTEM
Name the hive SYS
Go to HKEY_LOCAL_MACHINE\SOFT\Microsoft\Windows\CurrentVersion\Policies\SYSTEM
Create new DWORD And name it VerboseStatus
Put the value 1
Find the DWORD EnableCursorSuppresion And set the value to 0
Go to HKEY_LOCAL_MACHINE\SYS\Setup
Set the value CmdLine to cmd.exe
Reset
- OOBE Skip -
Press Shift+f10
In CMD type:
oobe\windeploy
net user /add salk
net localgroup /add users salk
net localgroup /add administrators salk
regedit
- Regedit stage 2 -
Go to HKEY_LOCAL_MACHINE\System\Setup
Set OOBEInProgress, SetupType, SystemSetupInProgress to 0
- Almost here... -
Now we exit the command prompt And see a screen saying: Please wait for ______
We should take a snapshot of our VM In case something goes wrong
Wait 3-5 Minutes depending on your PC or VM Performance
- Finish! -
After the long wait, we reset. if something seems wrong - we revert to the snapshot and wait, if everything works - we can continue.
We wait for windows to load, it should load correctly and work.
If you made it to the end - Congradulations! You just installed Windows 10 mannualy!
- End -
Thanks!. I have learned about install Windows without setup (Manually). (aka copying install.wim to hard drive)
0 likesI use dism in combination with unattend.xml to create an local admin account. This is part of of an automated setup in our company.
0 likesr e a l e d u c a t i o n v i d e o
0 likesAutomatic installation for pussies)
0 likesbruh trustedinstaller is in this vid too 3:01
3 likesReplies (2)
NX-LEM oki...
0 likesjust ignore that one who cares about it
0 likesUnlike Linux
1 likeWhat, why so stupid? You didn't manually install it. You just extracted install.wim and created a user
On Linux you download things you need and not have things like candy crush etc.
"Unlike Linux"
8 likesDude, have you seen ArchLinux? The only way to install it is using CLI
Replies (2)
Yeah but it's easy to install (if you know some cli and there is a super detailed guide on how to do it with every needed command), it's super customizable (you can choose everything, from the kernel to the desktop environment) and you can change every part of the system as you want
0 likes@Channel07 Gentoo Linux also got a GUI, but optional as I remembered from its site
0 likesThis comment is useless
0 likesReplies (1)
I’m sure it will serve a purpose one day
0 likes