So basically instead of doing dir C:\ I have to learn to type List-Directory-With-Files Drive=C Folder=/ (made up example, but you get the point)
Being verbose would be a good thing (more readable than a cryptic acronym) if there was auto-complete support. A console should really be a small IDE that gives live feedback on what arguments are possible in the current context, etc. But that's not the way powershell was designed.
For example, if you type
dir | sort
it suggests Attributes, BaseName, CreationTime, .... All properties of file objects (which is what dir returns).Also there is PowerShell ISE, which is a IDE for powershell, but I haven't really tried it yet.