Showing archive results for 2015

Dec 11, 2015
Post comments count0
Post likes count0

PowerTip: Find Module Path with Windows PowerShell

Doctor Scripto

Summary: Use Windows PowerShell to determine the location of a module.  How can I use Windows PowerShell to find the location of a module that I am using from a vendor?  Use the Path property of the module with Split-Path to show the parent: $ModuleName=(Get-Module –module DeployImage) $ModulePath=Split-Path $Mod...

Windows PowerShellPowerTipguest blogger
Dec 11, 2015
Post comments count0
Post likes count0

Using DeployImage and Windows PowerShell to Build a Nano Server: Part 5

Doctor Scripto

Summary: Use the DeployImage module to build bootable Windows PE media with deployment content.Honorary Scripting Guy, Sean Kearney, is here today to show you one of my favorite pieces of my DeployImage module—building a piece of bootable USB media that has everything I need to deploy Nano Server.   Note   This is a f...

Windows PowerShellguest bloggerSean Kearney
Dec 10, 2015
Post comments count0
Post likes count0

PowerTip: Escape Parsed Content in PowerShell String

Doctor Scripto

Summary: Use the backtick character to insert data normally parsed by Windows PowerShell in a string.  Certain characters (such as the colon and double quotation marks) are special in Windows PowerShell.            How can I use those in a parsed string?  Use the backtick character (usually under the tilde, a...

Windows PowerShellPowerTipguest blogger
Dec 10, 2015
Post comments count0
Post likes count0

Using DeployImage and Windows PowerShell to Build a Nano Server: Part 4

Doctor Scripto

Summary: Use the new cmdlets in the DeployImage module to simplify the deployment of a Nano Server.Honorary Scripting Guy, Sean Kearney, is here to get into the really fun part of deploying a Nano Server—the actual deployment part.   Note   This is a five-part series that includes the following posts: Yesterday, ...

Windows PowerShellguest bloggerSean Kearney
Dec 9, 2015
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Create Module Manifest

Doctor Scripto

Summary: Use Windows PowerShell to build a module manifest for GitHub.  How can I use Windows PowerShell to build a module manifest for my module in GitHub?  In Windows PowerShell 5.0 use the New-ModuleManifest cmdlet—for example, to create a sample            manifest in the C:\Foo folder, ty...

Windows PowerShellPowerTipguest blogger