Appendix E. General Troubleshooting Tips
This appendix contains a collection of general troubleshooting tips. They are not necessarily in any particular order of importance.
Remember that spelling counts. Always look for misspelled cmdlet names, property names, method calls, and so on. One feature of Windows PowerShell is that if you do not spell a property name correctly, when you try to run the script, it doesn't generate an error. In the code below, note that there is no output typed inside the shell—no error, nothing to indicate that you chose a bad property of the Win32_Service WMI class.
PS C:\> $wmi = Get-WmiObject -Class win32_service PS C:\> $wmi.badproperty PS C:\>
Don't break the pipeline. This one is particularly easy to do. Start with ...
Get Windows PowerShell™ Scripting Guide now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.