Quick PowerShell Tip! To list all of the IP addresses on your local system, along with the associated interface name: Get-NetIPAddress | ft IPAddress, InterfaceAlias This will include all IPv4 and IPv6 addresses.
Tag Archives: windows
“Ping Hostname” Returning an IPv6 Address Instead of IPv4? (Windows)
On Windows based PCs and Servers, and where IPv6 is enabled on one of the network adapters, you may find that when you do a: ping name-of-host … you get an IPv6 address returned in the results. But what if you want to test IPv4 connectivity? You can add a -4 switch to the ping …
Continue reading ““Ping Hostname” Returning an IPv6 Address Instead of IPv4? (Windows)”
When Did You Last Reboot Your Microsoft Windows 7 Machine? (Check Uptime)
Finding out when you last rebooted your Windows 7 machine can be completed using the “systeminfo” command. Open a Command Prompt by going to Start and opening “cmd”. You will then be presented with a command prompt window, where you need to type the systeminfo command below: C:\> systeminfo | find “System Boot Time” System …
Continue reading “When Did You Last Reboot Your Microsoft Windows 7 Machine? (Check Uptime)”
Installing the Telnet Client on Windows 2008 using a Command Prompt
Like Windows 7 and Windows Vista, the Telnet client isn’t installed by default. In Windows Server 2008, you can install it via the Server Manager GUI tool, but it is often quicker to install it via a command prompt/terminal. So, open a cmd.exe session and run the following: servermanagercmd -install telnet-client And that’s it – …
Continue reading “Installing the Telnet Client on Windows 2008 using a Command Prompt”
What is Aero Glass Remoting? Terminal Server Aero Glass? (Windows Server 2008 R2)
What is Aero Glass Remoting? Can I use Aero Glass on a remote Terminal Services/Remote Desktop session? Well, with Windows Server 2008 R2, Yes you can! It’s basically replicating the user experience you get locally of Aero Glass, on remote sessions. It may be useful for task switching etc. Check the guide out below: http://blogs.msdn.com/rds/archive/2009/06/23/aero-glass-remoting-in-windows-server-2008-r2.aspx
Install Microsoft PowerShell in Windows Server 2008 Quickly from the Command Prompt
Instead of going through the long-winded way of installing features using Server Manager, you can install PowerShell quickly in Windows Server 2008 from the command line using the following command: servermanagercmd -install powershell Why use the GUI when the command line is much quicker?
Windows 7 Keyboard Shortcut: Start an Application with Administrator Privileges
You’ll have noticed that Windows 7 is pretty strict with some applications on the tasks they can perform – I often find myself needing elevated privileges in a Command Prompt to edit the routing table for example. You can, of course, right click on the application from the start menu and run as Administrator, but …
Continue reading “Windows 7 Keyboard Shortcut: Start an Application with Administrator Privileges”
Viewing Previous Command History in Windows Command Prompt (cmd)
We all use the Windows Command Prompt, but there are quite a few very useful features you may not know about – one being command history viewing. To access the command history of your current session, press “F7” and you’ll be presented with a prompt containing the last commands you’ve executed. Please note that it …
Continue reading “Viewing Previous Command History in Windows Command Prompt (cmd)”
How to Create a Windows 7 System Repair Disc
Windows 7 has restored the “System Repair Disc” option so it’s easy to create. If you go to Start and search for “System Repair Disc“, it should find “Create a System Repair Disc”. If you open the application, you’ll get a prompt box to burn the image to CD/DVD. Choose your CD/DVD burner and click …
Continue reading “How to Create a Windows 7 System Repair Disc”
Finding the Uptime of Windows Server 2008
So, you want to see the date and time a Windows Server 2008 box last booted up. From a command prompt run: C:\> systeminfo | find “System Boot Time” System Boot Time: 17/12/2009, 23:09:04 You will then be shown the date and time the server was booted (as seen in the …
Continue reading “Finding the Uptime of Windows Server 2008”