Summary: Microsoft Scripting Guy, Ed Wilson, talks about troubleshooting output from a Windows PowerShell script.
Hey, Scripting Guy! First, I want to say that you guys absolutely rock! I mean, I never miss a single day reading your posts. They are always right on, and it is like somehow you read my mind. I cannot tell you how many times...
Summary: Start Windows PowerShell with no profile to troubleshoot scripts.
How can I use Windows PowerShell to troubleshoot a script that sometimes works and sometimes does not?
Look for any external dependencies by starting Windows PowerShell with no profile. Use Start/Run, and in the ...
Summary: Microsoft Scripting Guy, Ed Wilson, helps a reader with a Windows PowerShell and SQL Server scripting issue.
Microsoft Scripting Guy, Ed Wilson, is here. This morning I am sipping a nice cup of Darjeeling tea. I added a bit of peppermint leaves, spearmint leaves, orange peel, licorice root, and a cinnamon stick. The result is very ...
Summary: Learn to find WMI classes that permit creating stuff.
How can I use Windows PowerShell to help me find WMI classes that will permit me to create stuff?
Use the Get-CimClass cmdlet, and specify the MethodName of create:
Get-CimClass -MethodName create...
Summary: Microsoft PFE, Ian Farr, continues his series about using Windows PowerShell to work with Authentication Policy Silos.
Microsoft Scripting Guy, Ed Wilson, is here. Welcome back today, guest blogger, Ian Farr. If you missed yesterday's post I suggest that you read it before reading todays post: Authentication Silos: Part ...