Posts

Showing posts from 2016

How to create User from the command prompt ?

Image
 In this Post , I will you tell you about how to create any user by using command prompt . in point of view working on the command prompt is so easy as compare than graphical . you just need to open command Prompt , then type some command on it and you will see some different result ? So , To create user from the command prompt You need to follow these steps:   1) Press Windows + R key from the keyboard . Run dialog box appears on the screen .here type cmd 2) Now, command prompt window appears on the screen . Here , You need to  type net user command  to see the available user in the system.  3)    Now if you want to create a new user type the command net user username password /add . (for example :    net user amit 123 /add) 4) So this command is used to create a new user .  If you want to check the new user that bis created or not , so check by using the command net user  (this command  is used to see the user list)   .  

How to enable and disable firewall by using command prompt.

Image
Before starting this tutorial the first question  arises in the mind that What is firewall.  So firewall is a component of the network that is used to protect the system from the unauthorized access. firewall is just like as the security guard that protects your environment of your building or the office.   there are two types of firewall :  1) Hardware Firewall  2) Software Firewall Hardware firewall is the network component or device that protect  your whole internal network from the unauthorized access.                                                                                 If we talk about software firewall it is an inbuilt feature of the Microsoft windows operating system that is used for protect your own system from the unauthorized access or third party user in the network  .This is  the icon of the software firewall.                                                                      There are two component by which  firewal

how to block command prompt in window operating system

Image

How to make bootable pen drive to install any operating system

Today in post we will learn about how to make a bootable  pen drive by using simply typing some commands on the command prompt.         To make a bootable pen drive you should have at least 4GB pen drive, operating system set up files and use some commands on the command prompt to make a pen drive bootable.       For making bootable pen drive you need to follow these steps: 1) first open the command prompt with administrative rights. for this type the cmd on the start search bar and right click on the cmd and select run as administrator.  2) Now a UAC dialog box appears on the screen click on YES button .  Here a command prompt appears on the screens . 3) on the command prompt , type the following commands:           DISKPART            LIST DISK            SELECT DISK 1           CLEAN      CREATE PARTITION PRIMARY      SELECT PARTITION 1      FORMAT FS=NTFS QUICK      ACTIVE            ASSIGN            EXIT 4) Now yo