You are here:   Home
Dec
14
2008

PRO: Designing Messaging Solutions with Microsoft Exchange Server 2007 (70-237)

I’ve just passed additional MS exam, PRO: Designing Messaging Solutions with Microsoft Exchange Server 2007 (70-237)!  Got 935 on it :) .

This one was easy that previous, 70-236. I’ve got a lot of questions about clustering, HA and multi-sites design. It was just 37 questions in this exam.

The study resources I used to pass are:

Book “Microsoft Exchange Server 2007? http://www.amazon.com/Microsoft-Exchange-Server-2007-Unleashed/dp/0672329204/ref=pd_sim_b_1/191-1807479-9996238 (yes, this book again :) )

http://www.msexchange.org/
http://msexchangeteam.com/
http://technet.microsoft.com/
http://www.cbtnuggets.com/

 
Dec
08
2008

TS: Configuring Exchange Server 2007 (70-236)

I’ve just passed my TS: Configuring Exchange Server 2007 (70-236)!  Got 100% on it.

For those of you intending to write this, even do not try to register for it if you do not have good understanding in PowerShell. I’ve got about 80% of questions about how to do things by using PowerShell. You have to answer a 53 questions in this exam and they give you 150 mins. to write the exam.

The study resources I used to pass are:

Book “Microsoft Exchange Server 2007?  http://www.amazon.com/Microsoft-Exchange-Server-2007-Unleashed/dp/0672329204/ref=pd_sim_b_1/191-1807479-9996238

http://www.trainsignal.com/Exchange-Server-2007-Training-P22.aspx

http://www.msexchange.org/articles_tutorials/exchange-server-2007/

http://msexchangeteam.com/

http://www.msexchange.org/articles_tutorials/exchange-server-2007/management-administration/exchange-2007-sp1-mailbox-management-part1.html

http://www.msexchange.org/tutorials/Managing-mailboxes-Exchange-Server-2007-Part1.html

http://technet.microsoft.com/en-us/library/aa998579.aspx

http://www.exchangeninjas.com/

http://www.exchangeinbox.com/article.aspx?i=83

http://technet.microsoft.com/en-us/library/bb124977.aspx

As I said, make sure you really have good understanding in PowerShell before you write the exam.

 
Nov
26
2008

Offline Virtual Machine Servicing Tool 2.0 Released

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...
 
Nov
21
2008

Canadians: Use Live Search, win a 2009 Mitsubishi Lancer SE

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
  •  
    Oct
    28
    2008

    Detect HALs under WinPE (Vista) by Running Batch Script

    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

     
    Oct
    24
    2008

    How to Set Time Zone from Command Line

    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

     

     
    StartPrev41424344454647484950NextEnd

    Hi, my name is Misha Hanin. I have served as an IT Network Administrator and IT Consultant for over 15 years. I have a number of certifications including CNE, Citrix CCA, VMWare VCP, MCP+I, MCSE, MCTS, MCITP Enterprise Messaging Administrator & MCITP Enterprise Administrator .

    Microsoft presented me with the 2008 Microsoft® MVP Award (MVP) in Windows Server - Admin Frameworks! More...




    Subscribe to CuruIT
    Get tips, news and tutorials via RSS, Email or Twitter

    Enter your email address:


    Subscribe to my news feed for free Follow me on Twitter! Become a CuruIT fan on Facebook :) Become a CuruIT fan on YouTube :)