Starting something new

logo_itnetx

Today is my first day at itnetx gmbh, a consulting and engineering company located in Bern/Switzerland. itnetx is focussed on Microsoft Technologies, especially Microsoft Private Cloud Solutions, Microsoft System Center and Microsoft Virtualization. In 2011 itnetx has been awarded by Microsoft Switzerland as “Microsoft Partner of the year – Datacenter”

Since this are my preferred Microsoft technologies, it seems like a perfect match.

microsoftpartneroftheyear2011

Hyper-V 3: Import and Export VMs with PowerShell

Hyper-V-Powershell02

Aidan Finn (Virtual Machine MVP) just made a blog post about Hyper-V & PowerShell in Windows Server 8 and how you can enable Hyper-V via PowerShell in Windows Server 8. So this gave me the idea about doing a little more with PowerShell and Hyper-V 3.

I already did a blog post about how you can attach multiple VHDs to a SCSI Controller with PowerShell in Windows Server 8. In this post I will show how easy you can export and import a lot of Virtual Machines.

First you can run a Get-VM Test*, to check which VMs you will export.


Get-VM Test*

Now you can export the Virtual Machines


Get-VM Test* | Export-VM -Path "C:\VMs"

Now I removed the Virtual Machines in Hyper-V with Powershell (You could also add the -confirm parameter so you don’t have to press “y” for each VM.


Get-VM Test* | Remove-VM

And now you can import the Virtual Machines again


Get-Childitem "C:\VMs" -Recurse *.xml | Import-VM

Hyper-V-Powershell01

I will post more about PowerShell in Windows 8 and Windows Server 8 (Hyper-V 3) in the next upcommig weeks. If you want know more about what new Hyper-V features and improvments are coming in Windows Server 8, you can read the following blog post: “Hyper-V: Version 3 kills them all

 

Cisco UCS C200 M2 – Cisco Integrated Management Controller (CIMC)

 

Cisco-new-logo-should-be2-e1303030685744

The first things I tried with the new Cisco UCS C200 M2 servers was the CIMC (Cisco Integrated Management Controller). CIMC is the remote out-of-band management solution (IPMI) provided with Cisco servers, it’s basically the same like HP iLO or Dell DRAC.

One of the biggest advantages is that CIMC is included for free, so there is no extra license you need for extra features like KVM or stuff like that.

After working some hours with the CIMC I was really happy, no problems at all everything worked as expected. From the design it’s like the Cisco UCS Manager but better ;-) . I think it is much easier to use and much faster (it’s not Java).

Keyfeatures

  • Web based front-end
  • KVM and Virtual media
  • Change BIOS Settings
  • Active Directory connector
  • SNMP
  • IPMI (Very interesting with the Bare-metal deployment in SCVMM 2012)
  • SSH
  • Health Monitoring

CIMC01

Continue reading

Cisco UCS C200 M2 – Hardware

Cisco UCS C200 M2 Hardware

Today my two new virtualization nodes from Cisco arrived. For my Microsoft Hyper-V lab I needed two new nodes and I got a really good offering for two Cisco UCS C200 M2 High-Density Rack-Mount Servers.

The whole Cisco server series is optimized for virtualization and offers very cool features like a buildiin Cisco Integrated Management Controller (without extra charge) and Ciscos Extended Memory Technology which allows to use up to 192GB RAM.

Technical Specs

The Cisco UCS C200 M2 server is a high-density, 2-socket, 1 rack unit (RU) rack-mount server built for production-level network infrastructure, web services, and mainstream data center, branch, and remote-office applications.

  • Up to two Intel Xeon 5500 or 5600 Series multicore processors
  • Up to 192GB of industry-standard double data rate (DDR3) main memory
  • Up to eight 2.5-inch or four 3.5-inch internal SAS or SATA disk drives; up to 8 terabytes (TB) total
  • Built-in RAID 0 and 1 support for up to four or eight SATA drives; RAID 0 and 1 support for up to four or eight SAS or SATA drives with optional mezzanine card; and RAID 0, 1, 5, 6, 10 support for four SAS or SATA drives and RAID 0, 1, 5, 6, 10, 50 and 60 support for eight SAS or SATA drives with optional LSI MegaRAID card
  • Two half length Gen 2 PCIe slots-one full height x16 and one low profile x8 PCI Express-two integrated Gb Ethernet ports, and one 10/100 Mbps Ethernet management port for accessing the controller
  • Front- and back-panel interface with video, two USB, and serial port connections

More Information on Cisco.com

Hardware

The Hardware makes a really good first impression.

One of my next posts will be about the CIMC (Cisco Integrated Management Controller) which I really started to like.

Windows Server 8 Hyper-V Dynamic Memory Enhancements

I could test some features in the new version of Hyper-V which comes with the Windows Server 8 Developer Preview. I did a little overview about the a lot of new features in the new Hyper-V Version: Hyper-V: “Version 3 kills them all”. In this post I will write something about some new things in Hyper-V Dynamic Memory.

Windows Server 8 Developer Preview Hyper-V Memory Settings:

Dynamic Memory Windows Server 8

  • New maximum memory of a Virtual Machine is 512GB
  • You can now change the Dynamic Memory Settings during the VM is running. You don’t need to reboot.
  • You have now three values you can use, Startup RAM, Minimum RAM, Maximum RAM. In Windows Server 2008 R2 SP1 you could only setup Startup and Maximum RAM.
  • You can now active Dynamic Memory during the creation of the new Virtual Machine

Windows Server 2008 R2 SP1 Hyper-V Memory Settings:

Dynamic Memory Windows Server 2008 R2 SP1