Windows Vista™ Resource Kit
Posted Thursday, 06 September 2007 by Misha Hanin
Microsoft Press - Windows Vista Resource Kit.
by Mitch Tulloch, Tony Northrup, Jerry Honeycutt with the Vista Team.
ISBN: 0-7356-2283-3, 1568 Pages, Aprill 2007.

Get the definitive reference for deploying, configu-ring, and supporting Microsoft Windows Vista - with expert insights from Microsoft Most Valuable Professionals (MVPs) and the Windows Vista Team. This official Microsoft RESOURCE KIT provides more than 1,500 pages of in-depth technical guidance on automating deployment; implementing security enhancements; administering group policy, files and folders, and programs; and troubleshooting for Windows Vista. In addition, you get detailed information on Internet Explorer 7, Windows Firewall, and Windows Defender.
 

PXE, aka Pre-Execution Environment - Part 1
Posted Tuesday, 04 September 2007 by Misha Hanin

Few days ago, I’ve received 50 new servers without any OS preinstalled. The servers came without floppy drive and CD/DVD. I tried to connect an external CD (USB) or Disk on Key, but servers didn’t start. So, I decided to run PXE Boot. If you don't know what PXE is, here’s what is written in Wikipedia:


“The Preboot Execution Environment (PXE, aka Pre-Execution Environment, or 'pixie') is an environment to boot computers using a network interface card independently of available data storage devices (like hard disks) or installed operating systems.”

There are several solutions of PXE implementation. Microsoft has its Remote Installation Service (RIS), there are sort of HP, Symantec and Acronics. Some of them are based on Linux.
I decided not to straggle with Microsoft RIS or Linux and fortunately I found a more simple solution.
 
Free IIS 7 Beta Hosting
Posted Sunday, 02 September 2007 by Misha Hanin

Want to Go Live but don’t want to set up a server? These great Hosting partners have the answer and the best part is, it’s FREE! IIS7 Beta Hosting is an excellent way for developers & designers to take the sites they’ve played with on IIS7 in Windows Vista and test them early on IIS7 in Windows Server Codename "Longhorn" Beta 3 today. Furthermore, for PHP developers, this is a great opportunity to check out the new FastCGI component that enables scalable PHP hosting on Windows.


 News Source: www.iis.net
 
Announce from Microsoft
Posted Wednesday, 29 August 2007 by Misha Hanin
WS2008, Windows Vista SP1 and Windows XP SP3 are announced for Q1 2008

 
The System Administrator Song
Posted Sunday, 26 August 2007 by Misha Hanin

A funny song that sings the praises of System Administrators. Written by Wes Borg of Three Dead Trolls in a Baggie.

You need to have flashplayer enabled to watch this Google video

 
MS KB articles translated into French
Posted Wednesday, 22 August 2007 by Misha Hanin
Microsoft publishes a very large number of articles in its Knowledge Base (KB) but a lot are not translated and are available only in a machine translated version. The quality of these machine translations not being always perfect, Bernard Opic (Former MVP on Microsoft Office Outlook) offers translations into French of articles relating to Outlook, Exchange and Visual Studio Tools for Office (VSTO).

To read these articles translated into French, visit the site of media-tips to the following address:
http://www.media-tips.com/services/translations/index.asp
 
Virtual Server 2005 R2 SP1
Posted Wednesday, 22 August 2007 by Misha Hanin

Virtual Server 2005 R2 SP1, contains the following new functionality:

  • 32 physical processor support for the Enterprise edition
  • Native 64-bit Windows host support (not guest however)
  • Virtual Server host clustering
  • iSCSI support
  • Enhanced PXE boot
  • Hardware-assisted virtualization (Intel VT & AMD-V)
  • VHD Mount command-line tools and API
  • Volume Shadow Copy Service (VSS) support
  • Default size for dynamically expanding disks increased from 16GB to 127GB
  • More than 64 virtual machines (VMs) on 64-bit hosts
  • Service publication using Active Directory Service Connection Points. This allows all instances of the Virtual Server service to be located within the forest
 
Universal TCP/IP Network Bootdisk - Version 6.01 Released!
Posted Tuesday, 21 August 2007 by Misha Hanin

The Universal TCP/IP Network Bootdisk is a DOS bootdisk that provides TCP/IP networking support. It's designed for use in Microsoft networking environments, on either peer-to-peer or domain based LANs. Currently 92 different network card drivers all included, all on the single 1.44MB disk!

Note: Take a look at Microsoft Article ID : 811497 to resolve a problems logging on to a Windows 2000-based server or a Windows 2003-based server

 
Dealing With Vista's Not-So-Secret Garbage Dump
Posted Saturday, 18 August 2007 by Misha Hanin
This is actually not an indictment of Vista alone, but something I've seen in Windows for quite some time now: the user profile \TEMP directory.  It fills up with the most amazing amount of trash imaginable, and over time it can cause programs to malfunction left and right in ways that defy analysis.
 
August 2007. Microsoft Security Releases ISO Image
Posted Friday, 17 August 2007 by Misha Hanin

This DVD ISO image file contains the security updates for Windows released on Windows Update on August 14th, 2007. The image does not contain security updates for other Microsoft products. This DVD5 ISO image is intended for administrators that need to download multiple individual language versions of each security update and that do not use an automated solution such as Windows Server Update Services (WSUS). You can use this ISO image to download multiple updates in all languages at the same time.

Important   Be sure to check the individual security bulletins at http://www.microsoft.com/technet/security

 
Adding Fonts to Command Line (cmd.exe)
Posted Thursday, 16 August 2007 by Misha Hanin
The properties on a CMD.EXE window allow you to select either Raster Fonts or Lucida Console. By editing a Registry, you can add other monospace fonts.
 
Free Office Live Products
Posted Monday, 13 August 2007 by Misha Hanin

Attract new customers
Microsoft Office Live Basics is the easy way to get started on the Web. If you have always wanted your own Web site, Microsoft has just made it easier — much easier. Plus, it's FREE.

    * Easy-to-use Web site design tools
    * Free domain name and Web hosting
    * 500 MB of Web site storage space
    * 25 company-branded e-mail accounts
    * Web site reports
    * Office Accounting Express 2007 (free download)
    * Microsoft Office Live adManager beta (search engine advertising tool)

 
Lost your admin password? Password tips for Windows admins
Posted Monday, 13 August 2007 by Misha Hanin
Passwords get lost. Passwords can get cracked. No systems administrator should be without a good password utility. . .or without some good workarounds for password problems. Here are five password-related tips from SearchWinComputing.com's systems management and desktop management experts.
 
Send keypresses by Launchkey
Posted Friday, 10 August 2007 by Misha Hanin

 If you need to send key to the any application, you can use a VBScript, like following example:

set WshShell = WScript.CreateObject("WScript.Shell")
   WshShell.Run "calc"
   WScript.Sleep 100
   WshShell.AppActivate "Calculator"
   WScript.Sleep 100
   WshShell.SendKeys "1{+}"
   WScript.Sleep 500
   WshShell.SendKeys "2"
   WScript.Sleep 500
   WshShell.SendKeys "~"
   WScript.Sleep 500
   WshShell.SendKeys "*3"
   WScript.Sleep 500
   WshShell.SendKeys "~"
   WScript.Sleep 2500

But, if you want to use a batch script, use a LaunchKey. LaunchKey is a freeware command-line utility that runs an application and sends keypresses to it.

 
Local Time According to http://www.google.com
Posted Thursday, 02 August 2007 by Misha Hanin

If you want to know the local time of the any country, do following:

In the Google Search box write down:-local time (and followed by this write the country's name) and hit the Enter key you will get the local time of that country instantly.

 
<< Start < Prev 11 12 13 14 15 16 17 18 Next > End >>