MSDN subscription: Save product key and write to CSV file
Actually useless, but I like to save my keys locally so that I don't have to log in all the time. The MSDN offers the possibility to export the product keys as an XML file, but I don't have Excel everywhere... With the following Powershell script the XML file can be converted into a CSV file: $keyfile = "c:\temp\KeysExport.xml" $csvfile = "c:\temp\productkeys.csv" ... Read more