Category: NZTekonverse -> Uncategorised
-
Manipulating object tables in Powershell.
Last week I posted about creating object tables in Powershell. This was mainly for the purpose of being able to use Export-CSV to send the data out to a CSV file. This time I am going to have a brief look at some of the other things you can do with an object table, which…
-
Three Jaycar Torches
I have found torches purchased from Jaycar to be the best quality and useful LED small torches that I have owned lately. On the right you have a small pocket torch that has a slide-zoom head and runs on 3xAAA batteries (similar to ST3483). In the middle a more powerful equivalent with a twist zoom…
-
Creating object tables with Powershell
One of the useful things you get with Powershell is lots of functions that create data tables in memory that you can cycle through using Foreach to get an instance (equivalent to a record or row in a regular database) and then interrogate its properties (equivalent to columns). The Foreach loop automatically steps through all…
-
Detecting file change management in PowerShell
For some time Windows has supported in the Win32 API various events that are triggered when files or directories in a filesystem are changed and this appears to be supported in .NET as well. This then leads us to a natural question of whether we can support that in PowerShell. Due to PowerShell being essentially…
-
Using PowerShell to manage Google Apps
With the limitations of Google’s console to manage Google Apps for system admins, scripting and command line tools have naturally become a topic for the system admin community. Previous posts here have discussed the options for use of various tools and so far I have used both Dito GAM and PowerShell with extensions as a…