The “Hey, Scripting Guys!” blog has been retired. There are many useful posts in this blog, so we keep the blog here for historical reference. However, some information might be very outdated and many of the links might not work anymore.
New PowerShell content is being posted to the PowerShell Community blog where members of the community can create posts by submitting content in the GitHub repository.
Summary: Boe Prox shows how to update a module from the Windows PowerShell Gallery.(image) How can I update a module from the Windows PowerShell Gallery?(image) 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 ...
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...
Summary: Boe Prox shows how to add a custom function to a runspace pool.(image) How can I use Windows PowerShell to add a custom function to a runspace pool?(image) Use the following approach:#Custom FunctionFunction ConvertTo-Hex { Param([int]$Number) '0x{0:x}' -f $Number}#Get body of function$...
Summary: Boe Prox shows us some tips about using runspace pools for multithreading.
Honorary Scripting Guy and Cloud and Datacenter Management MVP, Boe Prox, here today filling in for my good friend, The Scripting Guy.
Note   This is a four-part series that includes the following posts:
After spending the past ...
Summary: Boe Prox shows how retrieve a seemingly lost Async object from a runspace.(image) How can I get the seemingly lost Async object created by BeginInvoke?(image) Use Reflection to pull this information out of a Runspace object and get the Async object, which is required &...