Summary: Microsoft PowerShell MVP, Will Anderson, talks about his first Windows PowerShell Summit.
Microsoft Scripting Guy, Ed Wilson, is here. Wow! What a week...or part of a week. Windows PowerShell Summit North America 2015 was here in Charlotte, NC this past week. The Scripting Wife and I met a lot of new people and made new friends. One ...
Summary: Determine if a property is a member of an object in Windows PowerShell.
How can I determine if a specific property is actually a member of an object in my Windows PowerShell script?
Use the Get-Member cmdlet, and cast the response into a Boolean data type by using the [bool] type &...
Summary: Microsoft PowerShell MVP, Teresa Wilson, talks about the Scripting Guys booth schedule.
Microsoft Scripting Guy, Ed Wilson, is here. It is that time of year again. Conference time. TechEd North America is no more, but Microsoft Ignite is on the horizon. May 4-8, 2015 in Chicago! It is already sold out, but you can see the ...
Summary: Learn how to roll back an active Windows PowerShell transaction.
I started a transaction to modify the registry on my computer running Windows 8.1, but something failed, and I want to roll back the transaction. How can I do this?
Use the Undo-Transaction cmdlet to ...
Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell to move user files and update the registry.
Hey, Scripting Guy! I need to move a bunch of user files from their local computer to a network share so we can back up the user's data prior to migrating their desktops. I know there are various tools I can ...