Scripting Blog

A place to learn about PowerShell and share stories of automation

Import Multiple Virtual Machines with Windows PowerShell

Summary: Microsoft PowerShell MVP, Sean Kearney, talks about importing multiple virtual machines with Windows PowerShell in Windows Server 2012. Microsoft Scripting Guy, Ed Wilson, is here. If you are a seasoned Hey, Scripting Guy! Blog reader, you know that the most frequent guest blogger is Sean Kearney. If you are new to the blog, I ...

PowerTip: Use PowerShell to Get Status of BranchCache

Summary: Use Windows PowerShell 3.0 to get the status of BranchCache on your computer running Windows 8.  How can I use Windows PowerShell to get the status of Branch Cache on my computer running Windows 8?  Use the Get-BCStatus cmdlet, and check the BranchCacheIsEnabled property: (Get-BCStatus)....
Comments are closed.0 0

Use PowerShell to Initialize Raw Disks and to Partition and Format Volumes

Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell to initialize raw disks and to partition and format volumes. Microsoft Scripting Guy, Ed Wilson, is here. In yesterday’s post, Use PowerShell to Add VHDs and Configure New Virtual Machines, I was able to create and add new VHDs to previously existing ...

PowerTip: Find Services with the Same Dependencies with PowerShell

Summary: Use Windows PowerShell to find services that have the same dependencies.  How can I use Windows PowerShell to easily find services that have the same dependencies?  Use the Get-Service cmdlet with the RequiredServices parameter, and supply the name of the dependent service. (The following example shows ...