Is there a method of shortening PowerShell namespace references?
Typing [RootNameSpace1.NameSpace2.Namepsace3+SomeEnum]::SomeValue
is taxing and not a very good user expierence. I realize that you can reference System
level objects without a namespace such that [Type]::GetType(...
will work. Is there some manifest I could create or command I could use to shorten lengthy namespaces?