Administering App-V Here I leave the how you can virtualize one application and these operate from a single point, for so IT staff this less loaded. In a real environment to do manual installations on PC's and often the volume is very high. In these manuals facilities you could take if 50 machines are more or less 20 days 8 hours each of these. Another of the common forms is using images via Windows Deployment Services, and with the applications installed and so will reduce long enough, now these applications if they fail more work the machine physically or by remote desktop and it usually takes a long time to uninstalling and installing the same again. Solution: APP-V can help in about ...
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...
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...
Comments
Post a Comment