Showing results for November 2015 - Scripting Blog [archived]

Nov 30, 2015
0
0

PowerTip: Determine Windows Architecture with PowerShell

Doctor Scripto
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
0
0

Build a PowerShell-Enabled Windows PE Key: Part 1

Doctor Scripto
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
0
0

PowerTip: Update Module from PowerShell Gallery

Doctor Scripto
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
Nov 29, 2015
0
0

Weekend Scripter: A Look at the PoshRSJob Module

Doctor Scripto
Doctor Scripto

Summary: Boe Prox presents a module for working with runspaces. Honorary Scripting Guy and Cloud and Datacenter Management MVP, Boe Prox, here today filling in for my good friend, The Scripting Guy. Today I finish up my series about using runspaces in PowerShell by showing you a module that I put together that makes working with runspaces a lot ...

Scripting Guy!Windows PowerShellguest blogger
Nov 28, 2015
0
0

PowerTip: Add Custom Function to Runspace Pool

Doctor Scripto
Doctor Scripto

Summary: Boe Prox shows how to add a custom function to a runspace pool. How can I use Windows PowerShell to add a custom function to a runspace pool? Use the following approach:#Custom FunctionFunction ConvertTo-Hex {    Param([int]$Number)    '0x{0:x}' -f $Number}#Get body of function$Definition = Get-Conte...

Scripting Guy!Windows PowerShellPowerTip