Specifically, I am trying to detect Windows XP users as they are not compatible with my software.
Is there a way to detect with at least 70% or higher accuracy?
window.navigator.appVersion.split("NT")[1].split(";")[0].trim()
Will return the Windows version.