Showing archive results for 2015

Dec 1, 2015
Post comments count0
Post likes count0

PowerTip: See All Images Contained in Windows Image File

Doctor Scripto

Summary: Use Windows PowerShell to identify all available images in a WIM file.  How can I use Windows PowerShell to see what images are stored in a WIM file?  Use the Get-WindowsImage cmdlet and target the WIM file, for example: Get-WindowsImage –imagepath Install.wim

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

Build a PowerShell-Enabled Windows PE Key: Part 2

Doctor Scripto

Summary: Customize a Windows PE environment to contain Windows PowerShell and DISM modules.Honorary Scripting Guy, Sean Kearney, is here again today with some early holiday gifts! A little PowerShell in a mean, lean green environment!   Note   This is a five-part series that includes the following posts: Now that we have th...

Scripting Guy!Windows PowerShellguest blogger
Nov 30, 2015
Post comments count0
Post likes count0

PowerTip: Determine Windows Architecture with PowerShell

Doctor Scripto

Summary: Use Windows PowerShell to identify whether you are running a 32-bit or 64-bit version of Windows.  How can I use Window PowerShell to see if my version of Windows is 32-bit or 64-bit?  Use Get-CimInstance and query the OSArchitecture property: (Get-CimInstance Win32_operatingsystem).OSArchitecture  

Windows PowerShellPowerTipguest blogger
Nov 30, 2015
Post comments count0
Post likes count0

Build a PowerShell-Enabled Windows PE Key: Part 1

Doctor Scripto

Summary: Sean Kearney explores installing the Windows ADK and validating its presence with Windows PowerShell. Honorary Scripting Guy, Sean Kearney, here filling in for The Scripting Guy. This week, I’m going to help you out with Windows PE.    Note   This is a five-part series that includes the following posts: First, w...

Scripting Guy!Windows PowerShellguest blogger
Nov 29, 2015
Post comments count0
Post likes count0

PowerTip: Update Module from PowerShell Gallery

Doctor Scripto

Summary: Boe Prox shows how to update a module from the Windows PowerShell Gallery. How can I update a module from the Windows PowerShell Gallery? Run the following command to check for an update to the module and install the update if one is found:Update-Module –Name PoshRSJob –VerboseVERBOSE: Checking for updates for module ...

Scripting Guy!Windows PowerShellPowerTip