Love how many people are telling you "don't use powershell" instead of actually helping. Some tips:
- Powershell isn't case sensitive. Typing `ConvertTo-Json` is annoying, but you can write `convertto-json` instead.
- `alias` tells you all the built-in aliases.
- The autocomplete is really, really good. Press ctrl-space to get all the options to tab complete commands, flags, or flag values. IE you can pipe something to `select -prop` and autocomplete all the fields of the thing. Also you can autocomplete with wildcards, like `*Json`.
- Flags don't need to be written out in full, you can write `select -exp` instead of `select -ExpandProperty`.
- Pipe stuff to `Out-Gridview` to get a filterable, sortable popup!
- Powershell isn't case sensitive. Typing `ConvertTo-Json` is annoying, but you can write `convertto-json` instead.
- `alias` tells you all the built-in aliases.
- The autocomplete is really, really good. Press ctrl-space to get all the options to tab complete commands, flags, or flag values. IE you can pipe something to `select -prop` and autocomplete all the fields of the thing. Also you can autocomplete with wildcards, like `*Json`.
- Flags don't need to be written out in full, you can write `select -exp` instead of `select -ExpandProperty`.
- Pipe stuff to `Out-Gridview` to get a filterable, sortable popup!