Export pdf to word document

Using the ConvertTo-HTML command, you can push collected information to an HtML file in the file system. this is useful, too, if you simply want to store the data to read later, or use as an archive for comparative processes. Here’s the format (still using the Get-service example): Get-Service | ConvertTo-HTML > C:\temp\services.htm ................
................