Learn some helpful IT Administrator tips and tricks.

Welcome to the most comprehensive list of tips and tricks for IT field, you'll find anywhere on the internet. I hope these tips help you get the most out of your internet.

Cloud Computing Next Generation of your company

Benefits of cloud computing is increased efficiency; services are rapidly deployed and ready for use in your company. Find out about the benefits of moving your business to cloud computing....

Support Tips and Tricks

Tips and Tricks for. Learning Before. Helping. Learning. Service. Research Computing... We are ...

Server, Network, System, Application | Diagram

Client-side Examples; Server-side Examples; Client-side Advantages ... this concept is to view the following diagram and considering some examples: ...

Good roadmap for System Engineer, Network Engineer

Roadmap global customer support professionals are focused on crucial, quick issue resolution and uninterrupted service.. HOW?

Friday, May 25, 2012

Windows Server 8 will be named Windows Server 2012

Windows Server 8
      Microsoft officials said during the opening keynote of the Microsoft Management Summit (MMS) 2012 in Las Vegas that the final name of Windows Server 8 will be “Windows Server 2012.”

      Windows Server 2012 will include Microsoft's new Resilient File System (ReFS) to handle large volumes, resiliency to corruption, and shared storage pools across machines. ReFS will only be available inside Windows Server 2012 initially, but Microsoft has plans to test it within the server edition and make it available to Windows 8 client users at a later date. Microsoft has also previously promised that the majority of applications that currently run on Windows Server 2008 and R2 "should work" on Windows Server 2012.


      Microsoft's naming strategy for Windows Server 2012 and its indication of a release later this year all but confirms that Windows 8 will be available before the end of 2012. The company has a near identical development timeframe for both operating systems, with a beta copy of both released earlier this year at the same time. Microsoft confirmed this week that the company will ship Windows 8 in a trio of editions, including Windows 8, Windows 8 Pro, and Windows 8 Enterprise. Special local language-only editions of Windows 8 will also be released in select emerging markets like China. The big naming news of the week was the company's decision to name its ARM edition of Windows 8 as Windows RT. Known previously as Windows on ARM or WOA, the single edition will only be available pre-installed on PCs and tablets with ARM processors. Microsoft has not yet announced any intentions for an ARM Windows Server edition yet, despite some OEMs exploring ARM server options recently.

Windows Server 2012

Configure IP Address and DNS using Command Prompt

Netsh IP Address
In order to configure TCP/IP settings such as the IP address, Subnet Mask, Default Gateway, DNS and WINS addresses and many other options you can use Netsh.exe. The requested operation requires elevation (Run as administrator).

The IP address of your computer can be set from the command prompt by running the following commands at an administrative level prompt:

netsh interface ip set address name="Local Area Connection" static 146.40.202.222 255.255.255.0 146.40.202.1 1

Netsh interface set ip address

Local Area Connection is the name of the adapter you want to modify. In single NIC systems it is normally called Local Area Connection.
146.40.202.222 is the IP address you want to set.
255.255.255.0 is the subnet mask.
146.40.202.1 is the gateway.
1 is the gateway metric. You can leave this as 1 for almost all cases.

If you want to enable DHCP you can run:
netsh interface ip set address name="Local Area Connection" dhcp

There are two commands for DNS since administrators typically configure a primary and secondary DNS server.
For the primary DNS run:
netsh interface ip set dns name="Local Area Connection" static 146.40.202.9

For the secondary run:
netsh interface ip add dns name="Local Area Connection" 146.40.203.9 index=2

Local Area Connection

If you want to configure the computer to use DNS from DHCP run:
netsh interface ip set dnsservers name="Local Area Connection" source=dhcp

When you are finished with all of your IP and DNS changes run ipconfig -all to review the new settings.

Enable Telnet with only one command

Command-Telnet
Enable Telnet with only one command... Starting with Windows Vista, Windows 7 and ....., Microsoft no longer includes the telnet command installed by default. It is still available but must be installed or enabled by the user. The normal way to enabled additional features is through the “Turn Windows features on or off” window found in Control Panel. This accomplishes the task but can be annoying when you are working in Command Prompt and need to use the telnet command right away.
Instead of going to Control Panel, there is a better way. At an administrative level command prompt, simply run:

dism /online /Enable-Feature /FeatureName:TelnetClient

Telnet will be available immediately after the dism command has completed running.

Command-Telnet