Posts

Showing posts with the label Hyper-v

How to create a NIC Teaming on Windows Server 2012 UPDATED !

Image
CLICK ON THE BELOW LINK FOR THE UPDATED POST   How to Create/Configure a NIC Teaming on Server 2016/ 2012 Physical or VM's How to create/ enable a NIC Teaming on Windows Server 2012 /R2 NIC Teaming Overview NIC Teaming, also known as load balancing and failover (LBFO), allows multiple network adapters on a computer to be placed into a team for the following purposes: Bandwidth aggregation Traffic failover to prevent connectivity loss in the event of a network component failure  This feature has been a requirement for independent hardware vendors (IHVs) to enter the server network adapter market, but until now NIC Teaming has not been included in Windows Server operating systems. More Info: Windows Server 2012 R2  http://technet.microsoft.com/en-us/library/hh831648.aspx NIC Teaming Step  by Step I've made this tutorial on a Hyper-V 2012 Virtual Machine with Server 2012 R...

How automatically snapshot Hyper-V VMs Workflow PS Script

Image
Open your Windows  Power Shell  ISE as administrator. 1. Create a Folder to store your scripts . New-Item C:\Scripts   –ItemType Directory 2. Create the following scripts .  First create the Script for Checkpoints (AKA Snapshots) copy the script below.  File name cloud be VMCheclpointdailyjob.ps1 #This script was created to run  daily snapshots  of VMs Get-VM   SVRVM* | checkpoint-vm -SnapshotName "Daily Snapshot $(( Get-Date ).toshortdatestring())" –AsJob Second create the Script for Remove VM Snapshots, copy the script below. File name cloud be VMRemoveCheckpoints.ps1 At this point you can change what days you want to delete more days you can change the (Get-Date).AddDays(- #) . #Script to Remove VM Snapshots Get-VMSnapshot -VMName SVRVM* | Where-Object {$_.CreationTime -lt ( Get-Date ).AddDays(-5) } | Remove-VMSnapshot 3. Set the Task Scheduler to automate this pr...

What's new on Hyper-V 2012 R2? Top 5 new Hyper-V 2012 R2 features

Image
5 Top Features on Hyper-V 2012 R2 There's a lot of new features and so much great thing on this new release. 1.  New Gen of VM's Generation 2 virtual machines Legacy free !!! This is really nice, finally ! UEFI based Many emulated devices removed Boots from virtual SCSI or synthetic network adapters Enables UEFI secure boot standard Supported guest operating systems: 64-bit versions of Windows 8 and Windows Server 2012 64-bit versions of Windows 8.1 and Windows Server 2012 R2 20% Faster VM Boot / 50% Faster OS Install inside VM  . . 2. Enhanced VM Interaction Remote Desktop over VMBus/ Hardware Full remote desktop capabilities Shared clipboard Audio redirection Enhanced login and much more…. Enabled even when the network is down Integrated into Hyper-V Management experience Automatic Activation Virtual machines are automatically activates when hosted on Window ...

How to Install SCCM System Center Configuration Manager 2012 SP1 on Server 2012 Consultant Guide Part 1

Image
As Microsoft recommend test this in your lab first of all and then you can use this steps for your real-world implementations. Prerequisites First of all you will need 3 virtual machines to make this lab. DC (Domain Controller) SCCM (MGMT Server with SQL Server Enterprise) “ You can also deploy SQL in another server but i preferred install locally, remember that you will need a great performance.” Client (Windows 8) preferred  Features and roles you need to install on your SCCM Server. Roles Install the Web Server (IIS) Role with the following role services : • Common HTTP features • ASP.NET • Windows Authentication • IIS 6 Metabase Compatibility • IIS 6 WMI Compatibility Features  Install the following Features: • Background Intelligent Transfer Service (BITS) • Remote Differential Compression • .NET Framework 3.5.1 Features Verify that .NET Framework 4.0 is already installed on Server 2012 Here's an Power Shell script for...

What's Hyper-V Replica ?

Image
Hyper-V Replica Hyper-V Replica  is a new built-in feature of both  Windows Server 2012  and our FREE  Hyper-V Server 2012 products.  Hyper-V Replica enables Hyper-V hosts or clusters to enable distance replication of running VMs to remote Hyper-V hosts over a standard IP WAN connection.  It provides a very cost-effective disaster recovery solution in the event of a primary data center outage. To get this feature in the VMware world, we'd pay gobs of extra money to license "Site Recovery Manager", but in Hyper-V it's just included as part of the core feature set -  no extra cost .

What's Virtualization?

Image
Virtualization  were developed to maximize the use of computing resources. We can virtualize hardware, apps and many resources to reduce the final cost of energy and so much things.