• PowerShell has a number of built-in variables that can be used for all sorts of things. One of these variable is $MyInvocation. It is useful when you need detailed information about the context in which a script or function is being executed.

  • Sometimes we need to work with file sizes in Powershell and a lot of those are displayed or required in bytes. How to calculate with those quick and easy?

  • When writing scripts, one of the most important aspects to consider is how you name your custom functions. Good naming conventions not only make your code more readable and maintainable but also ensure consistency across your scripts and modules. In this blog post, we will explore the best practices and conventions for naming custom functions.

  • A quick reference to Date/Time formats in .NET notation.

  • When we want to sort IP Addresses in Powershell the normal result is alphabetical, but that is not wat we want. How to solve?

  • While running scripts lots of information, warnings and errors appear on the screen. How can we keep those for future reference?