Summary: Populate a bootable USB key with content from Windows PE.
Honorary Scripting Guy, Sean Kearney, is here today sharing all you need to know about having a Windows PE key with Windows PowerShell.
Note This is a five-part series that includes the following posts:
Let’s remember that we’ve got that ...
Summary: Use Copy-Item to duplicate content with Windows PowerShell.
 How can I use Windows PowerShell to duplicate content?
 Use Copy-Item—for example, to duplicate all files and folders from C:\Foo to D:\Foo, run:
Copy-Item C:\Foo D:\Foo -recurse...
Summary: Build out the necessary file structure for a Windows PE environment.Honorary Scripting Guy, Sean Kearney, is here today to give you all you need to build out your own Windows PE file structure. Note This is a five-part series that includes the following posts:
Let’s think about what we’ve ...
Summary: Use the Out-Gridview cmdlet to easily build a GUI menu.
How can I easily build a GUI menu in Windows PowerShell so I can select items from a list?
Pipe any array to the Out-Gridview cmdlet and you can capture the results!
‘AddUser’,’RemoveUser’,’DeleteUser’,’...
Summary: Identify available USB keys and make them bootable devices.
Honorary Scripting Guy, Sean Kearney, is here to continue delving into having a cool PowerShell experience in a Windows PE environment. Today I’m going to show you how to use Windows PowerShell to identify USB keys and make them bootable devices.
Note ...