Showing results for September 2015 - Page 8 of 12 - Scripting Blog [archived]

Sep 13, 2015
0
0

Weekend Scripter: PowerShell 5 Class Inheritance and Overrides—The Video

Doctor Scripto
Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, presents a video where he talks about class inheritance and property overrides in Windows PowerShell 5.0.Microsoft Scripting Guy, Ed Wilson, is here. The air show in Tampa was awesome. Today the Scripting Wife and I decided to head to the Magic Kingdom at Disney World. It is a lot of fun, and beside...

Scripting Guy!Windows PowerShellWeekend Scripter
Sep 12, 2015
0
0

PowerTip: Use PowerShell to Create New Partition

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to create a new partition on a disk.  How can I use Windows PowerShell to create a new partition on a disk?  Use the New-Partition cmdlet, specify the disk number, and assign a new drive letter and size, for example: New-Partiton -DiskNumber 2 -UseMaximumSize -AssignDriveLetter

Scripting Guy!Windows PowerShellPowerTip
Sep 12, 2015
0
0

Weekend Scripter: Overloaded Class Constructors in PowerShell 5—The Video

Doctor Scripto
Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, introduces a video about overloaded class constructors in Windows PowerShell 5.0 in Windows 10.Microsoft Scripting Guy, Ed Wilson, is here. This is my birthday weekend, so today the Scripting Wife decided to take me to Tampa for the air show. As it turns out, my buddy and Microsoft evangelist, Blain...

Scripting Guy!Windows PowerShellscripting techniques
Sep 11, 2015
0
0

PowerTip: Clone Virtual Disk with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to clone a virtual disk.  How can I use Windows PowerShell to clone a virtual disk?  Use the New-VirtualDiskClone cmdlet, for example: New-VirtualDiskClone –virtualDiskFriendlyName “mydata” –TargetVirtualDiskName “ClonedData” –TargetStoragePoo...

Scripting Guy!Windows PowerShellPowerTip
Sep 11, 2015
0
0

Overriding Inheritance in PowerShell 5 Classes

Doctor Scripto
Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about overriding inheritance in Windows PowerShell 5.0 classes. Microsoft Scripting Guy, Ed Wilson, is here. One of the things that is pretty cool about Windows PowerShell 5.0 classes, is that I can override the things I inherit from a base class. This offers a lot of flexibility because it means t...

Scripting Guy!Windows PowerShellscripting techniques