Powershell Tip #98: Multiply strings By powershellgu | April 23, 2016 0 Comment Tip: You can multiply a string a number of times by using * PowerShell for ($i = 1; $i -le 10; $i++) { '#' * $i } 1234 for ($i = 1; $i -le 10; $i++){ '#' * $i}