Archive

Archive for the ‘Microsoft’ Category

Windows 8 Hyper-V : Powershell script to create vm’s based on csv file

March 3, 2012 Leave a comment

This is my first PowerShell 3.0 script to create Virtual Machine based on .csv file which contains the necessary information.

I created this script when in the Hands on Hyper-V PowerShell session at the MVP Global Summit, in Redmond.

Save the following .csv file ( I saved it on c:\vms )

OperatingSystem,MinimumMemoryMB,RecommendMemoryMB,BaseVhdPath Win7,512,1024,c:\VHD\7601.17514.101119-1850_x86fre_Enterprise_en-us_VL.vhd 2008R2,1024,2048,c:\VHD\WS2008R2_Enterprise_x64.vhd

——————————

Here is the Powershell script:

$vms={}

$vms=import-csv C:\vms\OperatingSystems.csv

foreach ($vm in $vms) {

#this command creates the VM with the recommend memory

New-VM -Name $vm.operatingsystem -MemoryStartupBytes $vm.RecommendedMemoryMB

# this command set’s the minimum memory for the OS

Set-Vm -Name $vm.operatingsystem -MemoryMinimumBytes $vm.MinimumMemoryMB

#how cool is the new command to extract the path and join to a new string…

$vhpath= join-path (Split-Path $vm.basevhdpath -Parent) -ChildPath ($vm.operatingsystem+’Diff.vhdx’)

#this command create a new differencing disk and attach it to a vm

New-VHD –ParentPath $vm.BaseVhdPath –Path $vhdpath -Differencing Add-VMHardDiskDrive -VMName $vm.operatingsystem -Path c:\vhd\Diff.vhdx

}

 

 

Client Hyper-V in Windows 8

March 1, 2012 2 comments

Client Hyper-V is the same computer virtualization technology previously available in Windows Server. In Windows 8 Consumer Preview, the technology is now built into the non-server version of Windows, often called the “desktop” version because it does not run on server-class hardware.
Because Client Hyper-V in Windows 8 Consumer Preview is the same technology as server Hyper-V IT Pros and developers do not need to learn any new tools or commands. You can move virtual machines (VMs) from Client Hyper-V to server Hyper-V. For example, you can build a “test lab” infrastructure hosted entirely on your laptop or desktop machine and export the VMs you create and test from your laptop into production.

Windows PowerShell scripts for managing virtual machines that you create using Client Hyper-V are fully compatible in with Windows Server 8 Hyper-V.

There a few features included in Windows Server 8 Hyper-V that are not included in Client Hyper-V. These include: the remote FX capability to virtualize GPUs (software GPU in RDP 8), Live VM migration, Hyper-V Replica, SR-IOV networking, and synthetic fiber channel.

HARDWARE : Hyper-V requires a 64-bit system that has Second Level Address Translation (SLAT). GB RAM is required. The RAM on your Client Hyper-V machine is allocated and de-allocated dynamically as required by the VMs. You can run several VMs on a Client Hyper-V machine (also called a “host”) that has the minimum 4GB of RAM, but you will need additional RAM for 5 or more VMs, depending on the RAM requirements for each VM.

Client Hyper-V supports server Hyper-V’s “Live Storage Move” capability. This means you can use your VMs fairly independent of the underlying storage. You can move VMs to and from one local drive to another, to a USB stick, or to a remote file share without needing to stop the VM.

To Enable using GUI:

  1. On the Control Panel click “Programs”, and then click “Programs and Features”
  2. Click “Turn Windows features on or off”
  3. Click “Hyper-V”, and then click “OK”, and then click “Close”
To Enable using Powershell :
Enable-WindowsOptionalFeature –FeatureName Microsoft-Hyper-V -Restart

Important :

    You must restart your machine, not just reboot, to complete installation

For more info: Windows 8 Client Hyper-V wiki page (FWLINK) (http://social.technet.microsoft.com/wiki/contents/articles/7704.client-hyper-v-survival-guide.aspx)

Windows Server 8 Beta builds are now available for download

March 1, 2012 Leave a comment

The Windows Server 8 Beta builds are now available for download.  Upgrades from previous builds are not supported or recommended.

http://msdn.microsoft.com/en-us/evalcenter/hh708764.aspx

To use Windows Server “8” Beta, you need to be aware of the following system requirements*: Component System Requirement
Processor • Minimum: 1.4 GHz 64bit processor
Memory • Minimum: 512 MB RAM
Available Disk Space • Minimum: 32 GB

Note: 32 GB should be considered an absolute minimum value for successful installation. Computers with more than 16 GB of RAM will require more disk space for paging, hibernation, and dump files. Drive DVD-ROM drive Display and Peripherals • Super VGA (800 x 600) or higher-resolution monitor • Keyboard • Microsoft Mouse or other compatible pointing device

*Actual requirements will vary based on your system configuration and the applications and features you choose to install. Processor performance is dependent upon not only the clock frequency of the processor, but the number of cores and the size of the processor cache. Disk space requirements for the system partition are approximate. Additional available hard-disk space may be required if you are installing over a network.

Windows 8 Consumer Preview are now live

March 1, 2012 Leave a comment

The Windows 8 Consumer Preview bits are now live. Everything you need to know, including links and information about the download is on the Springboard Series for Windows 8 on TechNet. Also, the Windows 8 TechNet forums are now live.

http://technet.microsoft.com/windows/windows-8

 

Remote Server Administration Tools for Windows 8 Consumer Preview

March 1, 2012 1 comment

 

Remote Server Administration Tools  enables you to manage roles and features that are installed on computers that are running Windows Server “8” Beta from a remote computer that is running Windows 8 Consumer Preview.

Download and install the version that matches the architecture of the computer on which you plan to install the administration tools :

To download the x64 bits : http://www.microsoft.com/downloads/info.aspx?na=41&srcfamilyid=ec294ec1-cf18-49e6-b65d-8a9a6522acbe&srcdisplaylang=en&u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2f4%2f3%2fF%2f43FAC524-F605-426E-A2AE-EAD03D264FDE%2fWindows6.2-KB958830-x64.msu

To download the 32 bits : http://www.microsoft.com/downloads/info.aspx?na=41&srcfamilyid=ec294ec1-cf18-49e6-b65d-8a9a6522acbe&srcdisplaylang=en&u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2f4%2f3%2fF%2f43FAC524-F605-426E-A2AE-EAD03D264FDE%2fWindows6.2-KB958830-x86.msu

**Remote Server Administration Tools for Windows 8 Consumer Preview can be installed ONLY on computers that are running Windows 8 Consumer Preview.** Remote Server Administration Tools cannot be installed on computers with an Advanced RISC Machine (ARM) architecture, or other system-on-chip devices.

Remote Server Administration Tools for Windows 8 Consumer Preview includes support for remote management of computers that are running the Server Core installation option or the Minimal Server Graphical Interface configuration of Windows Server “8” Beta, and in limited cases, the Server Core installation options of Windows Server 2008 R2, or Windows Server 2008. However, Remote Server Administration Tools for Windows 8 Consumer Preview cannot be installed on any versions of the Windows Server operating system.

Server Manager is included with Remote Server Administration Tools for Windows 8 Consumer Preview; GUI-based tools that are part of this release of Remote Server Administration Tools can be opened by using commands on the Tools menu of the Server Manager console. To use Server Manager to access and manage remote servers that are running Windows Server 2008 or Windows Server 2008 R2, you must install several updates on the older operating systems.

 

Categories: Microsoft, Virtualization Tags:

Find out what hotfix or update replaces other windows updates

February 18, 2012 Leave a comment

Sometimes you need an hotfix but you find that hotfix is currently unavailable for online request. How to find out a superseding hotfix.

I found out the procedure in this wiki page : http://social.technet.microsoft.com/wiki/contents/articles/windows-server-how-to-determine-update-supersedence-and-find-replacing-hotfixes.aspx

 

System Center 2012 Pre-Release Products : Download

February 17, 2012 Leave a comment

Download link :  http://technet.microsoft.com/en-au/evalcenter/hh505660

Available System Center 2012 Products:

  • System Center 2012 Configuration Manager RC provides comprehensive configuration management for the Microsoft platform that can help you empower users with the devices and applications they need to be productive while maintaining corporate compliance and control.
    System Requirements >>
    Available in these languages: English
  • System Center 2012 Endpoint Protection RC, built on System Center Configuration Manager, provides industry-leading threat detection of malware and exploits as part of a unified infrastructure for managing client security and compliance that can help you simplify and improve endpoint protection.
    System Requirements >>
    Available in these languages: English
  • System Center Operations Manager 2012 RC provides deep application diagnostics and infrastructure monitoring that can help you ensure the predictable performance and availability of vital applications and offers a comprehensive view of your datacenter, private, and public clouds.
    System Requirements >>
    Available in these languages: English
  • System Center Data Protection Manager 2012 Beta provides unified data protection for Windows servers and clients that can help you deliver scalable, manageable, and cost-effective protection and restore scenarios from disk, tape, and off premise.
    System Requirements >>
    Available in these languages: English
  • System Center Orchestrator 2012 RC provides orchestration, integration, and automation of IT processes through the creation of runbooks that can help you to define and standardize best practices and improve operational efficiency.
    System Requirements >>
    Available in these languages: English
  • System Center Virtual Machine Manager 2012 RC provides virtual machine management and services deployment with support for multi-hypervisor environments that can help you deliver a flexible and cost effective private cloud environment.
    System Requirements >>
    Available in these languages: English
  • System Center App Controller 2012 Beta provides a common self-service experience across private and public clouds that can help you empower application owners to easily build, configure, deploy, and manage new services.
    System Requirements >>
    Available in these languages: English
  • System Center Service Manager 2012 Beta provides flexible self-service experiences and standardized datacenter processes that can help you integrate people, workflows, and knowledge across enterprise infrastructure and applications.
    System Requirements >>
    Available in these languages: Chinese (Simplified), English, French, German, Italian, Japanese, Portuguese (Brazil), Russian, Spanish

Comprehensive list of Hyper-V updates ( 2008, 2008R2 and 2008R2SP1 versions )

February 17, 2012 Leave a comment

Quick note: the recommended for all Hyper-V configurations vs. recommended if you meet the scenario documented in the KB.

  • Recommended updates for all configurations: Required column = Yes
  • Recommended update if you meet the scenario: Required column = Yes, ONLY install if the issue applies to you.

Comprehensive list of Hyper-V updates : Applies To: Windows Server 2008

http://technet.microsoft.com/en-us/library/dd430893(WS.10).aspx

Comprehensive list of Hyper-VR2 updates : Applies To: Windows Server 2008R2

http://social.technet.microsoft.com/wiki/contents/articles/1349.hyper-v-update-list-for-windows-server-2008-r2.aspx

List of Hyper-V Packages Updated After the Release of Windows Server 2008 R2 Service Pack 1 (SP1) :

http://social.technet.microsoft.com/wiki/contents/articles/3150.list-of-hyper-v-packages-updated-after-the-release-of-windows-server-2008-r2-service-pack-1-sp1.aspx

NOTE: For Windows Server 2008 R2 Hyper-V systems with SP1 installed, there are two recommended updates for all configurations:

  • KB2263829 – Hyper-V networking issue that multiple customers hit; This fix is also published on WU.
  • KB2525835 – Security Update

Are you ready for the Microsoft Private Cloud?

January 20, 2012 Leave a comment

On February 21 & 22 Microsoft is running a 2-day virtual training event to help the world learn about the upcoming enhancements with the Creating & Managing a Private Cloud with System Center 2012 Jump Start.

It is 100% free and open to the public, so register now!

Sign up today at: http://mctreadiness.com/MicrosoftCareerConferenceRegistration.aspx?pid=298

Event Overview

Adopting this exciting new computing paradigm provides a whole new landscape of technology and career direction for IT professionals. Microsoft Learning and the Microsoft System Center 2012 team have partnered to bring you an exciting opportunity to learn what you need to know to deploy, manage and maintain Microsoft’s private cloud solution. Leveraging the popular Jump Start virtual classroom approach, the industry’s most gifted cloud experts will show attendees why this new private cloud solution, based on System Center 2012 and Windows Server, has garnered so much attention. Presenters include Symon Perriman, Sean Christensen, Adam Hall, Kenon Owens, Prabu Rambadran & Chris Van Wesep and there will be a live Q&A during the event.

Event Agenda

Day 1: Deployment & Configuration (Feb. 21)

· Part 1: Understanding the Microsoft Private Cloud

· Part 2: Deploying the Infrastructure Components

· Part 3: Deploying the Private Cloud Infrastructure

· Part 4: Deploying the Service Layer

· Part 5: Deploying the Applications & VMs

Day 2: Management & Operations (Feb. 22)

· Part 6: Managing the Infrastructure Components

· Part 7: Managing the Private Cloud Infrastructure

· Part 8: Managing the Service Layer

· Part 9: Managing the Applications & VMs

Sign up today at: http://mctreadiness.com/MicrosoftCareerConferenceRegistration.aspx?pid=298

Jump Start Overview

This accelerated Jump Start sponsored by Microsoft Learning is tailored for IT professionals familiar with Windows Server technologies, Hyper-V virtualization, and the System Center management solutions. The course is designed to provide a fast-paced and technical understanding of how and why Microsoft’s approach to the private cloud delivers scalability, security, flexibility and control. Here are few unique benefits of this course:

· Students have the opportunity to learn from and interact with the industry’s best cloud technologists!

· This high-energy, demo-rich learning experience will help IT Professionals understand why Microsoft private cloud solutions are making a splash in the industry.

· Students will see with their own eyes how Windows Server 2008 R2 and System Center 2012 work together to provide the best combination of security and scale.

· Information-packed agenda! Day one of this two-day online course will focus on designing and deploying the right solutions for your organization, while day two will provide an in-depth look at the tools available to help monitor, secure and control the operational aspects of a private cloud.

Sign up today at: http://mctreadiness.com/MicrosoftCareerConferenceRegistration.aspx?pid=298

Dell Advanced Infrastructure Manager (AIM) awarded Bronze Product of the 2011

January 18, 2012 Leave a comment

Dell’s Advanced Infrastructure Manager (AIM) is one of the more interesting systems management products to hit the market in recent years. It is a heterogeneous product, able to work with a variety of different vendors to maximize data center compute resources. It also automates storage and network connectivity, which eases the burden of reconfiguring the environment every time something in the data center changes. It’s a combination of features worthy of a Bronze systems management Product of the Year award for 2011.

IT resource utilization is becoming a more important metric every year, especially as IT budgets continue to shrink with the economy. Dell’s Advanced Infrastructure Manager is a great tool to help system administrators maximize their compute environment while decreasing the administration workload.

Source: http://searchdatacenter.techtarget.com/guide/SearchDataCenter-Products-of-the-Year-Systems-Management-winners-2011