zeldor.biz

Linux, programming and more

Copyright © 2023
Log in

Windows 7 System Requirements

January 2, 2011 by Igor Drobot Leave a Comment

Before you install Windows 7, you need to ensure that the physical or virtual computer being used in your evaluation has the appropriate system resources.




If you want to run Windows 7 on your PC, here’s what it takes:
* 1 gigahertz (GHz) or faster 32-bit (x86) or 64-bit (x64) processor.
* 1 gigabyte (GB) RAM (32-bit) or 2 GB RAM (64-bit).
* 16 GB available hard disk space (32-bit) or 20 GB (64-bit).
* DirectX 9 graphics device with WDDM 1.0 or higher driver.

Filed Under: Windows Tagged With: Windows 7

Windows 7 – Enable Telnet

November 22, 2010 by Igor Drobot Leave a Comment

Telnet

It’s very rare that I use telnet these days, so it took some time for me to notice that by default it was not packaged with Windows 7.

Enable Telnet:

1. Start
2. Control Panel
3. Programs And Features
4. Turn Windows features on or off
5. Check Telnet Client
6. Hit OK

Filed Under: Windows Tagged With: Telnet, Windows 7

Windows powershell

September 12, 2010 by Igor Drobot Leave a Comment


The Windows PowerShell is a free and very useful new task-based command line shell and scripting language for system administration which provides automation for Windows – desktops and servers.

Windows PowerShell makes administrators more productive.

Get Bios Information:

1
Get-WmiObject -class Win32_BIOS

Get-WmiObject -class Win32_BIOS

Get CPU Information:

1
Get-WmiObject -class Win32_Processor

Get-WmiObject -class Win32_Processor

Get mainboard Information:

1
Get-WmiObject -class Win32_Baseboard

Get-WmiObject -class Win32_Baseboard

Get OS Version:

1
Get-WmiObject -class Win32_OperatingSystem

Get-WmiObject -class Win32_OperatingSystem

Get running processes:

1
Get-Process | Where-Object {$_.StartTime -lt (Get-Date).AddMinutes(-1)} | Format-Table ID, Name, StartTime

Get-Process | Where-Object {$_.StartTime -lt (Get-Date).AddMinutes(-1)} | Format-Table ID, Name, StartTime

Filed Under: Windows Tagged With: CMD, Powershell, Windows, Windows 7

Windows 7 and IPv6

July 18, 2010 by Igor Drobot Leave a Comment

IPv6 has been “the ultimate next generation of TCP/IP protocols” for so long that you can be forgiven for thinking that it will never be useful. However, with Windows 7, developer of Microsoft has finally given network administrators and normal users a reason to consider using IPv6.

This screen shot shows you, how easy it is to configure IPv6 address:

Filed Under: Windows Tagged With: Ipv6, networking, Windows, Windows 7

  • « Previous Page
  • 1
  • 2