Welcome to TechNet Blogs Sign in | Join | Help

Browse by Tags

All Tags » IT Pro Code Gal... » EducationIT   (RSS)

PowerShell PowerBoots

The good folks at Codeplex, the folks who bring you the free-as-in-beer Hyper-V PowerShell SnapIn also bring you the PowerShell PowerBoots . “ PowerBoots makes it easier for scripters to create graphical user interfaces in PowerShell, exposing much of

Hyper-V How To: Test Hosts for Proc Compatibility for VM Migration

In Windows Server 2008 R2 Hyper-V R2, when a running or a saved state virtual machine is migrated to another virtualization server (also called “host”), the destination server may have a processor with a different set of features. An operating system

Hyper-V How To: Free Tools for Hyper-V Management

Free-as-in-beer Codeplex help for Hyper-V admins. PowerShell Management Library for Hyper-V A project to provide a PowerShell management library for Hyper-V Hyper-V Web Manager Hyper-V Web Manager (HVWM) is a web-based management utility for Microsoft

Free-as-in-beer IT Pro Scripts

There wasn’t a lot of hoopla last month about the launch of Technet Script Center Gallery , but there should have been. 150+ scripts (just in the first month), free-as-in-beer, tagged and sorted and searchable… They even hand you an evergreen top ten

Free-as-in-beer PowerShellPack

10 modules to help supercharge your Windows PowerShell scripting. The PowerShellPack lets you write user interfaces in PowerShell script, manage RSS feeds, schedule operating system tasks, and much more. Here’s what you get: WPK Create rich user interfaces

Hyper-V How To: PowerShell Cmdlet Reference

Check out the newly released PowerShell cmdlet reference material at: Getting Started Guide for IT Pros Best Practice Analyzer (BPA) Failover Clustering Group Policy Active Directory Active Directory Rights Management Services AppLocker Power Shell Administration

Hyper-V How To: Turn Off IPV6

By default, IPv6 is enabled in Windows Server 2008. If you want to disable IPv6 for any reason – perhaps you have some VMs you want to exclude for testing, you have to use Registry Editor to completely disable IPv6. For those who prefer not to muck about

Welcome Codeplex Foundation

Check out the new free-as-in-beer CodePlex Foundation , an independent legal entity designed to facilitate contributions to open source projects, both from Microsoft and other software vendors and users. Codeplex.com has more than 10,000 free-as-in-beer

Hyper-V How To: Check if ICs are Current using Script

Some friends here on the Hyper-V team shared a PowerShell 2.0 script for checking the integration services/integration components to see if they are current in your VMs: # Test if the IC version is up to date param( [string]$vmName = $(throw "Must specify

Hyper-V How To: Check Hypervisor Heartbeat using Script

Some friends here on the Hyper-V team shared a PowerShell 2.0 script for checking in the hypervisor is running on a Hyper-V server (host/parent partition): # Check if Hypervisor is running $hypervisor = gwmi –ErrorAction SilentlyContinue Win32_PerfRawData_HvStats_HyperVHypervisor

Hyper-V How To: Snapshot a VM using Script

Some friends here on the Hyper-V team shared a PowerShell 2.0 script for taking a snapshot of your VMs: # Take a snapshot of a VM param( [string]$vmName = $(throw "Must specify virtual machine name") ) # Get the virtual machine by name $vm = gwmi -namespace

Hyper-V How To: Shut Down VMs using Script

Some friends here on the Hyper-V team shared a PowerShell 2.0 script for shutting down your VMs: # Shutdown a Virtual Machine (requires Integration Components) param( [string]$vmName = $(throw "Must specify virtual machine name") ) # Get the VM by name

Hyper-V How To: Set a Custom KVP using Script

Some friends here on the Hyper-V team shared a PowerShell 2.0 script for setting custom KVPs: # Set a Custom KVP param( [string]$vmName = $(throw "Must specify virtual machine name"), [string]$Key = $(throw "Must specify a key"), [string]$Value = $(throw

Hyper-V How to: Remove Virtual NIC using Script

Some friends here on the Hyper-V team shared a PowerShell 2.0 script for removing virtual NICs from your VMs: # Remove a NIC (synthetic ethernet port) from a virtual machine param( [string]$vmName = $(throw "Must specify virtual machine name"), [string]$ethPortName

Hyper-V How To: Map your Virtual Network Settings using Script

Some friends here on the Hyper-V team shared a PowerShell 2.0 script for getting a mapping your virtual network settings: # Navigate Network Topology to determine Virtual Switch type # ie: Internal, External, External-Shared, or Private # Prompt for the
More Posts Next page »
 
Page view tracker