Easy way to split strings with PowerShell

I was asked about an easy way to split strings with PowerShell. The way that would allow to define the amount of characters of the newly generated strings. After a while I have prepared the following filter: The outcome is as follows: C:\> “whatever” | Split-String -CharCount 3 wha tev er

PowerShell and writing files demystified

Few days ago I was looking for a ways to speed up some of my tools. I was not stasifed with the content I had found on the web so I decieded to run some tests on my own. In the effect I created a small tool to validate different file write approach with different […]