a c# method to create an XmlDocument from an XDocument October 19, 2016 public static XmlDocument ConvertToXmlDocument(XDocument input) { var xmlDocumentObj = new XmlDocument(); using (var xmlReader = input.CreateReader()) { xmlDocumentObj.Load(xmlReader); return xmlDocumentObj; } } Read more
Using Powershell to write SQL October 04, 2016 https://technet.microsoft.com/en-us/magazine/hh289310.aspx Read more
Concatenating Strings in Powershell October 04, 2016 It's something like this Write - Host "$($blah.Name) $($ blah .Desc) " Read more