Devin W.C. Ryan

PowerShell

All things PowerShell I felt like blogging about.

SharePoint List – Delete Columns Through PowerShell

Today my colleague ran into an issue where she added columns to a SharePoint 2013 list, later realised they were not what she wanted and was unable to delete them. I ended up doing up the following PowerShell script to delete the columns based on some examples I found online in both C# and PowerShell.  …

SharePoint List – Delete Columns Through PowerShell Read More »

Ping Results to Database

I updated my script to write the results to a database to allow for easier manipulation of the data through queries, instead of having to traverse a file, linearly.  The database design is very simple, consisting of only two tables, and can be easily expanded to contain more information about the device.   The bold …

Ping Results to Database Read More »

Ping Results with CSV

This is a project that came out of a wish list from a coworker to monitor,  at a glance, if something is up or down as well as have a bit of a history to analyze for any slow or dropped pings, hence the graph.  The first phase (script) ping.ps1 for performing the ping tests is …

Ping Results with CSV Read More »