I've never been one to make a new years resolution, but I think I'll try to learn powershell this year. Last year I took a crack at learning VBScript/WMI/ADSI and hopefully I'll have just as much luck learning PowerShell this year. I found this site ( that I like for the simple fact that the majority of the examples stay away from aliases. There is nothing wrong with aliases since it requires less typing, but for those of us learning it can make it more difficult to understand.
example - you see something like: ps | gm | ft -auto
If you're new to a language are you going to have any idea of what's going on with that line?
written out it's: get-process | get-member | format-table -auto
which isn't too much better if you're unfamiliar with the language, but it gives you a better idea of what's going on.
Just my two cents.
Anyone else come across or know of any other good sites?
dm4ever
--------------------------------------------------------------------------------
My approach to things: K.I.S.S - Keep It Simple Stupid
example - you see something like: ps | gm | ft -auto
If you're new to a language are you going to have any idea of what's going on with that line?
written out it's: get-process | get-member | format-table -auto
which isn't too much better if you're unfamiliar with the language, but it gives you a better idea of what's going on.
Just my two cents.
Anyone else come across or know of any other good sites?
dm4ever
--------------------------------------------------------------------------------
My approach to things: K.I.S.S - Keep It Simple Stupid