Jump to content

Hey, I'm building my first PC this christmas I know how to do everything with the hardware but installing windows 10 seems really tricky downloading many files I don't know what to do. I want to make a bootable USB drive and install windows that way - How do i do it? Big thanks to anyone willing to help :)

Link to comment
https://linustechtips.com/topic/485193-making-a-bootable-usb-drive/
Share on other sites

Link to post
Share on other sites

Hey, I'm building my first PC this christmas I know how to do everything with the hardware but installing windows 10 seems really tricky downloading many files I don't know what to do. I want to make a bootable USB drive and install windows that way - How do i do it? Big thanks to anyone willing to help :)

microsoft covers it pretty well, the instructions will be easy to follow even for beginners as long as you read and follow them properly

 

https://www.microsoft.com/en-us/software-download/windows10

|CPU: Intel i7-5960X @ 4.4ghz|MoBo: Asus Rampage V|RAM: 64GB Corsair Dominator Platinum|GPU:2-way SLI Gigabyte G1 Gaming GTX 980's|SSD:512GB Samsung 850 pro|HDD: 2TB WD Black|PSU: Corsair AX1200i|COOLING: NZXT Kraken x61|SOUNDCARD: Creative SBX ZxR|  ^_^  Planned Bedroom Build: Red Phantom [quadro is stuck in customs, still trying to find a cheaper way to buy a highend xeon]

Link to post
Share on other sites

Hey, I'm building my first PC this christmas I know how to do everything with the hardware but installing windows 10 seems really tricky downloading many files I don't know what to do. I want to make a bootable USB drive and install windows that way - How do i do it? Big thanks to anyone willing to help :)

There is a software called Rufus through which u can create windows bootable drive tooo, but above mentioned software of microsoft will also do the work for you... 

You dont need to install the files in usb u have to use the software to make it bootable drive

Link to post
Share on other sites

There is a software called Rufus through which u can create windows bootable drive tooo, but above mentioned software of microsoft will also do the work for you... 

You dont need to install the files in usb u have to use the software to make it bootable drive

Wouldn't that just install Windows 10 to my Laptop right now?

 

I don't know what to do, I've downloaded those files now what?

Link to post
Share on other sites

  • 2 weeks later...

There is a software called Rufus through which u can create windows bootable drive tooo, but above mentioned software of microsoft will also do the work for you... 

You dont need to install the files in usb u have to use the software to make it bootable drive

what do i do? 

Link to post
Share on other sites

Hi There,

 

Assuming that you have access a PC that can utilize PowerShell follow the below steps. Please note that # at the beginning of some lines - is merely a note and should not be entered into the command window.

 

Get-Disk
 
#Please note that this will remove everything off of your USB drive, 
#Replace the "[X]" parameter in its entireity with number from previous command Output
 
Clear-Disk -Number [X] -RemoveData
 
#Use the same disk number and replace "[X]" in its entirety
#Replace "[Y]" in its entirety with random unused drive letter
 
New-Partition -DiskNumber [X] -UseMaximumSize -IsActive:$true -NewDriveLetter [Y]
 
#Use drive letter that matches your thumbdrive as defined in "New-Partition Step"
 
format-volume -FileSystem NTFS -DriveLetter [Y]
 
#Use drive letter that matches your thumbdrive as defined in "New-Partition Step"
 
bootsect.exe /NT60 ["Y"]
 
#Mount your iso image to OS and take note of the drive letter assigned, replace "[Z]" in its entierty with ISO images drive letter.
#Use drive letter that matches your thumbdrive as defined in "New-Partition Step"
 
Copy-Item -Recurse [Z]:\* [Y]:\ -Verbose
 
Hope that helps,
 
Jason
Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×