Microsoft announced the availability of the Offline Virtual Machine Servicing Tool 2.0. Offline Virtual Machine Servicing Tool 2.0, now with support for Hyper-V technology. Go here to get this new Solution Accelerator: http://technet.microsoft.com/en-us/library/cc501231.aspx With the availability of Hyper-VT technology, Microsoft is boosting the adoption of virtualization by providing a very robust and fast virtualization platform managed by Microsoft® System Center Virtual Machine Manager 2008. However, the challenge of keeping the virtual machine client operating system up to date remains. Virtual machines that are left offline for extended periods of time do not automatically receive operating system, antivirus, or application updates that would keep them compliant with current IT policy. The Offline Virtual Machine Servicing Tool 2.0 provides a way to automate the process of updating virtual machines running on virtual servers and Hyper-V with the latest operating system updates....
|
| | Read more... | In addition to continuously updating Live Search and trying to get developers on board with new features, Microsoft is also promoting Live Search via various deals and giveaways. The latest is Big Ticket Search, and surprisingly it's only for Canadians. Every search on the site gives you a chance to win a prize (1,488 total prizes): (2) 2009 Mitsubishi Lancer SE, value of $21,493(1) $10,000 cash(1) Two Raptors 09-10 Season Tickets, value of $8,000(5) Entertainment Centre, value of $5,330(1) Raptors VIP Package, value of $5,000(15) HP Pavilion 15.4" Laptop, value of $800(43) Xbox 360, value of $300(43) 80GB Zune, value of $230(400) Ticketmaster $100 Gift Card(15) Raptors signed basketballs, value of $100(15) Raptors signed jerseys, value of $100(947) Ticketmaster $50 Gift Card |
| It’s a lot of posts that explained how to detect HAL. Almost all of those solutions done in VB script. As well I’ve seen a lot of post about “problems’ running VB script under WinPE. So, one day I tried to create a batch file, that allows to detect a HAL under WinPE. I did all my tests under VistaPE 12 (I’ve used the VistaPE v.12 RC1). Here is content of HAL_Detector.bat script: @echo off REM . REM . - Advanced Configuration and Power Interface (ACPI) PC: ACPIPIC_UP REM . - ACPI Uniprocessor PC: ACPIAPIC_UP REM . - ACPI Multiprocessor PC: ACPIAPIC_MP REM . REM . Advanced Configuration and Power Interface (ACPI) PC REM . - halacpi.dll (renamed to hal.dll) REM . - ntkrnlpa.exe REM . - ntoskrnl.exe REM . REM . ACPI Uniprocessor PC REM . - halaacpi.dll (renamed to hal.dll) REM . - ntkrnlpa.exe REM . - ntoskrnl.exe REM . REM . ACPI Multiprocessor PC REM . - halmacpi.dll (renamed to hal.dll) REM . - ntkrpamp.exe (renamed to ntkrnlpa.exe) REM . - ntkrnlmp.exe (renamed to ntoskrnl.exe) REM . REM ……………….. Explanation About Diferent HAL Versions ………………… …….. REM . SETLOCAL SET PC-HAL= SET NumberOfLogicalProcessors= SET New-HAL= For /F “Tokens=3 Delims= ” %%a in (’REG QUERY HKLM\SYSTEM\CurrentControlSet\Enum\Root\ACPI_HAL000 /v HardwareID’) DO Set PC-HAL=%%a IF %PC-HAL% == acpipic Set New-HAL=ACPI_Uniprocessor_PC IF %PC-HAL% == acpiapic ( For /F %%a in (’@WMIC COMPUTERSYSTEM GET NumberOfLogicalProcessors /value^|find “NumberOfLogicalProcessors”‘) do Set %%a ) IF %NumberOfLogicalProcessors% == Set New-HAL=HAL_NOT_DETECTED IF %NumberOfLogicalProcessors% == 1 Set New-HAL=ACPI_Uniprocessor_PC IF %NumberOfLogicalProcessors% == 2 Set New-HAL=ACPI_Multiprocessor_PC IF %NumberOfLogicalProcessors% == 4 Set New-HAL=ACPI_Multiprocessor_PC @echo Detected HAL: %New-HAL% @echo Number of Logical Processors: %NumberOfLogicalProcessors% endlocal
|
| If you need to change Time Zone for a lot XP computers, you can do this by simple :) command: RunDLL32.exe shell32.dll,Control_RunDLL timedate.cpl,,/Z Central Standard Time
to change Time Zone to Jerusalem (GMT+02:00) run the following command: RunDLL32.exe shell32.dll,Control_RunDLL timedate.cpl,,/Z (GMT+02:00) Jerusalem |
| |
|
|