Sep 26 2008 4:57PM GMT
Posted by: Michael Khanin
Virtualization,
Hyper-V,
Win 2008 Core,
Virtual Server
Increased functionality and virtual machine control in the Windows Server 2008 Failover Cluster Management console for the Hyper-V role….
KB951308
Sep 26 2008 3:08PM GMT
Posted by: Michael Khanin
vista,
Windows Server 2008,
Win 2008 Core
Few days ago Microsoft released a Administrative Templates (ADMX) for Windows Server 2008. Windows Server 2008Administrative templates provide Group Policy setting information for the items that appear under Administrative Templates. Group Policy tools use Administrative template files to populate policy settings in the user interface.
Administrative template files in Windows Server 2008 and Windows Vista are divided into ADMX (language-neutral) and ADML (language-specific) files. ADML files are XML-based ADM language files that are stored in a language-specific folder. By default, the %Systemroot%\PolicyDefinitions folder on a local computer stores all ADMX files, and ADML files for all languages that are enabled on the computer. Download At Source: www.microsoft.com
Aug 26 2008 9:48PM GMT
Posted by: Michael Khanin
Virtualization,
vmware,
Application Virtualization,
Hyper-V,
Windows Server 2008,
Win 2008 Core,
App-V
On September 8th, 2008 Microsoft will launch its new virtualization products.
Attend this free summit on Microsoft® Virtualization Products and Practices and INCREASE your productivity!

Find out how Windows Server 2008® with Hyper-V™, Microsoft System Center - including Virtual Machine Manager 2008 - and Microsoft Desktop and Application Virtualization allow you to deploy, manage and get VIRTUAL now like never before.
Aug 15 2008 1:15PM GMT
Posted by: Michael Khanin
vmware,
Hyper-V,
Windows Server 2008,
Win 2008 Core,
App-V
Diskeeper announced that its flagship Diskeeper 2008 automatic defragmenter achieved Certified for Windows Server 2008 Hyper-V status from Microsoft. Diskeeper 2008 is one of the first three applications, out of 175 applications currently certified for Windows Server 2008, to earn the Hyper V designation.
Jul 22 2008 9:34PM GMT
Posted by: Michael Khanin
Windows Server 2008,
Win 2008 Core
I just finished with a script video_res.bat :). This scripts helps change the screen resolution in Windows Server 2008 Server Core. You can do this manually, but simple use Regedit, but you should know exactly what video driver is working right now in your system, my script does it for you, you just need to select the resolution and that it! Here is a content of video_res.bat:
@ECHO OFF
Rem ****************************************************************
Rem * *
Rem * Script to change display resolution in Windows 2008 Core *
Rem * *
Rem * http://thesystemadministrator.com - http://www.admininfo.ca *
Rem * *
Rem ****************************************************************
FOR /F “TOKENS=2 delims={}” %%a in (’”REG QUERY HKLM\SYSTEM\CurrentControlSet\Control\Video /s /f VolatileSettings”‘) do set VIDEOCARD=%%a
@echo Please select display resolution:
@echo 1 - 640×480
@echo 2 - 800×600
@echo 3 - 1024×768
@echo 4 - 1280×720
@echo 5 - 1280×800
@echo 6 - 1280×1024
@echo 7 - 1440×900
@echo 8 - 1600×1200
SET /P VRES=To set display resolution to 1024×768 type 1 :
IF /i %VRES%==1 REG ADD HKLM\SYSTEM\CurrentControlSet\Control\Video\{%VIDEOCARD%}000 /v DefaultSettings.XResolution /t REG_DWORD /d 640 /f® ADD HKLM\SYSTEM\CurrentControlSet\Control\Video\{%VIDEOCARD%}000 /v DefaultSettings.YResolution /t REG_DWORD /d 480 /f&goto :EOF
IF /i %VRES%==2 REG ADD HKLM\SYSTEM\CurrentControlSet\Control\Video\{%VIDEOCARD%}000 /v DefaultSettings.XResolution /t REG_DWORD /d 800 /f® ADD HKLM\SYSTEM\CurrentControlSet\Control\Video\{%VIDEOCARD%}000 /v DefaultSettings.YResolution /t REG_DWORD /d 600 /f&goto :EOF
IF /i %VRES%==3 REG ADD HKLM\SYSTEM\CurrentControlSet\Control\Video\{%VIDEOCARD%}000 /v DefaultSettings.XResolution /t REG_DWORD /d 1024 /f® ADD HKLM\SYSTEM\CurrentControlSet\Control\Video\{%VIDEOCARD%}000 /v DefaultSettings.YResolution /t REG_DWORD /d 768 /f&goto :EOF
IF /i %VRES%==4 REG ADD HKLM\SYSTEM\CurrentControlSet\Control\Video\{%VIDEOCARD%}000 /v DefaultSettings.XResolution /t REG_DWORD /d 1280 /f® ADD HKLM\SYSTEM\CurrentControlSet\Control\Video\{%VIDEOCARD%}000 /v DefaultSettings.YResolution /t REG_DWORD /d 720 /f&goto :EOF
IF /i %VRES%==5 REG ADD HKLM\SYSTEM\CurrentControlSet\Control\Video\{%VIDEOCARD%}000 /v DefaultSettings.XResolution /t REG_DWORD /d 1280 /f® ADD HKLM\SYSTEM\CurrentControlSet\Control\Video\{%VIDEOCARD%}000 /v DefaultSettings.YResolution /t REG_DWORD /d 800 /f&goto :EOF
IF /i %VRES%==6 REG ADD HKLM\SYSTEM\CurrentControlSet\Control\Video\{%VIDEOCARD%}000 /v DefaultSettings.XResolution /t REG_DWORD /d 1280 /f® ADD HKLM\SYSTEM\CurrentControlSet\Control\Video\{%VIDEOCARD%}000 /v DefaultSettings.YResolution /t REG_DWORD /d 1024 /f&goto :EOF
IF /i %VRES%==7 REG ADD HKLM\SYSTEM\CurrentControlSet\Control\Video\{%VIDEOCARD%}000 /v DefaultSettings.XResolution /t REG_DWORD /d 1440 /f® ADD HKLM\SYSTEM\CurrentControlSet\Control\Video\{%VIDEOCARD%}000 /v DefaultSettings.YResolution /t REG_DWORD /d 900 /f&goto :EOF
IF /i %VRES%==8 REG ADD HKLM\SYSTEM\CurrentControlSet\Control\Video\{%VIDEOCARD%}000 /v DefaultSettings.XResolution /t REG_DWORD /d 1600 /f® ADD HKLM\SYSTEM\CurrentControlSet\Control\Video\{%VIDEOCARD%}000 /v DefaultSettings.YResolution /t REG_DWORD /d 1200 /f&goto :EOF
Remember to Log Off and Log On again ;).