How To Create a Virtual Machine On VMWare ESXi 5.5?

To Create a Virtual Machine On VMWare ESXi 5.5 follow steps below: Log in to Vsphere client and right click on the host(172.16.100.88) and click “New Virtual Machine…”: 2. Configuration windows choose “Typical” and click next: 3. Type your VM name and click next: 4. Select Datastore… Read More

Enable Wireless in Windows Server 2012 and 2016

Enable Wireless in Windows Server 2012 and 2016 follow steps below: 1. First we need to know “Wireless LAN Service” enabled or not  .  For that open powershell and run the command below(like as picture): Get-WindowsFeature  “Wireless LAN Service” 2. As we see service not enabled… Read More

How to Configure IP Address with PowerShell?

Configure IP Address with PowerShell follow steps below: 1.To change ip address we need to use the “New-NetIPAddress” command New-NetIPAddress -Ethernet -IPAddress 172.16.171.51 -PrefixLength 24 -DefaultGateway 172.16.171.1 2. To set DNS ip address we need to use the “Set-DNSClientServerAddress“ command: Set-DnsClientServerAddress -Ethernet  -ServerAddresses 172.16.171.51 3. To look at… Read More

Domain Password Policies

By default in  Active Directory, the Default Domain Policy establishes the domain password policy for all users configured and stored in Active Directory. It is looks like below: (Start Menu → Administrative Tools → Group Policy Management and Right-click Default Domain Policy and select Edit.… Read More