How do I find out which JAXP implementation is in use and where it was loaded from?

It is quite difficult to predict what concrete JAXP factory implementation will be loaded without actually creating an instance because the process for selecting an implementation. From the Official JAXP FAQ (Question 14): When an application wants to create a new JAXP DocumentBuilderFactory instance, it calls the staic method DocumentBuilderFactory.newInstance(). This causes a search for … Read more

Get-Content and show control characters such as `r – visualize control characters in strings

One way is to use Get-Content’s -Encoding parameter e.g.: Get-Content foo.txt -Encoding byte | % {“0x{0:X2}” -f $_} If you have the PowerShell Community Extensions, you can use the Format-Hex command: Format-Hex foo.txt Address: 0 1 2 3 4 5 6 7 8 9 A B C D E F ASCII ——– ———————————————– —————- 00000000 … Read more

How can I list all processes running in Windows?

Finding all of the processes You can do this through the Process class using System.Diagnostics; … var allProcesses = Process.GetProcesses(); Running Diagnostics Can you give us some more information here? It’s not clear what you want to do. The Process class provides a bit of information though that might help you out. It is possible … Read more

IIS: Where can I find the IIS logs?

I think the default place for access logs is %SystemDrive%\inetpub\logs\LogFiles Otherwise, check under IIS Manager, select the computer on the left pane, and in the middle pane, go under “Logging” in the IIS area. There you will se the default location for all sites (this is however overridable on all sites) You could also look … Read more