$ 0 0 Summary: Learn how to use Windows PowerShell select the first two letters from a string. How can I use Windows PowerShell to remove the first two letters from a string? Use the SubString method, for example:$a = “String”$a.substring(2)