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...
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...
Deploying Active Directory Domain Services 2012 R2 Guide 1.0 David Acevedo Step By Step to deploy Active Directory Domain Services Open your Server Manager Dashboard Click on Manage then Add Roles and Features it will appear the Wizard Click Next Select Role-Based o feature-based installation and Next Select a server from the server pool and Next. Note: In my case is the DC01 but you can have multiple servers add them the roles/features and you don’t need to access the remote servers. This helps you to consolidate administration. Select Active Directory Domain Services and all required features for ADDS click Add Features and Next . Next on Features Tab Next on AD DS Now Install (I recommend to select the Auto Restart ) Now you are Installing AD DS No...
Comments
Post a Comment