With the latest service build (7.1.67) of PrimalScript 2015 we introduced a new feature; custom PrimalSense. In the first part of this series we showed you how to create a simple list and what options you have for providing data…
Read More
With the latest service build (7.1.67) of PrimalScript 2015 we introduced a new feature; custom PrimalSense. In the first part of this series we showed you how to create a simple list and what options you have for providing data…
Read More
With the latest service build (7.1.67) of PrimalScript 2015 we introduced a new feature; custom PrimalSense. While many items in a script can be determined dynamically based on context and offered as a selection in a list, there are equally…
Read More
WMI has a large amount of namespaces, classes and properties. While the WMI Explorer allows you to browse, search and filter all these items, it also enables you to query the underlying data for all of this.
What you see…
Read More
PrimalCSV is another one of our community tools up for a review. As CSV is one of the file formats frequently used by administrators to transport large amounts of data from one script to the other, the need for a…
Read More
PowerShell 2.0 has added the ability to export and import objects and store them as CSV files. CSV (Comma Separated Values) files have been a common file format since they where first used around 1967 on IBM mainframes and have…
Read More
A while ago I published a short function to create CSV strings. While working on another task I came across $OFS, which is something I know about but never really think about. $OFS is an intrinsic PowerShell variable that controls…
Read More
Sometimes it’s the little things that can make life easier. Here’s one of them. We know that PowerShell treats comma separated items as an array:
PS C:\> $a=”a”,1,”b”,”jeff”,4
PS C:\> $aa1bjeff4PS C:\>
But what if you want back in its…
Read More
Ever wonder how you can use PowerShell’s native abilities to produce great-looking management reports – in CSV files, Eccel spreadsheets, HTML pages, and even charts and graphs? Well, come on down to TechMentor San Francisco where I’ll be giving a session…
Read More
Hopefully you found my last entry valuable. But I always like to take things a step further, especially when it comes to scripting and automation. So I turned my last script into a function that returns the value of a…
Read More