PowerShell Tip : Extract Comments from Script

Hello Reader! To Review and understand scripts written by another developer,  I often find Comments helpful. PURPOSE :  I was looking for a way through which we can extract all comments. Just to get a skeleton view of script’s functionalities documented by the programmer. Saves me some time! So today’s tip is about extracting all comments from a Powershell script,… Read More PowerShell Tip : Extract Comments from Script

Powershell Tip : Identify variables in the scripts open in Powershell ISE

Inspired by “Leon Bambrick” blog, I’ve decided to start a Category on my blog wherein I’ll be posting small stuff that I learn that never get a chance to land up on a blog post. It can be a Tip, single line of code or concept, anything that is worth sharing. Leon is a great… Read More Powershell Tip : Identify variables in the scripts open in Powershell ISE

PowerShell : Import / Query All Windows System Error Codes for Description

Hey there! We often come across Error codes (or Exit Codes) in windows operating system environment, but most of the time we’re unsure what these numerical values actually mean, unless we try Googling it out the number. WHAT IS ERROR \ EXIT CODE ? The Exit code or Return code or System Error code of a… Read More PowerShell : Import / Query All Windows System Error Codes for Description