PowerShell: Rename file to lowercase

,

1. Open PowerShell

2. CD into directory to work on

3. Execute the following command:

get-childitem * -recurse | rename-item -newname { $_.name.ToLower() }