I was working on a PowerShell script to list my servers and their specs the other day and one of the cool things I learned was how easy it is to push the result out as a HTML table. Why would you want to do that? Well, it can be (just) another way of presenting the models in a modelstore. Also it is a matter of copy and paste to grab the table over to Excel if that is your swag. So let's get on with the command: axmodel | select modelid, name, layer, version, elementcount | ` sort modelid | ConvertTo...(read more)
↧