I have files
Test1.zip
Test2.zip
Test3.zip
Test10.zip
Test11.zip
When i do a select in powershell using this command
Get-ChildItem -Path "c:temp" -Filter "*.zip" | Sort-Object -Ascending
when i run the command it comes out
Test1.zip
Test10.zip
Test11.zip
Test2.zip
Test3.zip
How can i make it come out ?
Test1.zip
Test2.zip
Test3.zip
Test10.zip
Test11.zip