PowerShell Array

Like any other programming language, the array is a type of data structure that can be used to store a collection of items of similar type but unlike any strongly typed language such as C, C# or java in PowerShell it’s not mandatory to specify the data type of array, the collection of items canLike any other programming language, the array is a type of data structure that can be used to store a collection of items of similar type but unlike any strongly typed language such as C, C# or java in PowerShell it’s not mandatory to specify the data type of array, the collection of items can […]

Read More…

PowerShell Newline

Sometimes when you work on PowerShell this question arrives, “how can I use Windows PowerShell to add a new line between lines for my text output?” The answer is simple you have to use `n (backtick with letter n) this will add Line break or Newline in PowerShell. PowerShell Newline in String Output Below example,Sometimes when you work on PowerShell this question arrives, “how can I use Windows PowerShell to add a new line between lines for my text output?” The answer is simple you have to use `n (backtick with letter n) this will add Line break or Newline in PowerShell. PowerShell Newline in String Output Below example, […]

Read More…