510327: Virgo server reports os.name=win32 on Windows 10 

Tentatively change from win32 to "Windows 8"
diff --git a/org.eclipse.virgo.ide.runtime.core/src/org/eclipse/virgo/ide/runtime/internal/core/runtimes/Virgo35Provider.java b/org.eclipse.virgo.ide.runtime.core/src/org/eclipse/virgo/ide/runtime/internal/core/runtimes/Virgo35Provider.java
index 71c11fa..629b3c2 100644
--- a/org.eclipse.virgo.ide.runtime.core/src/org/eclipse/virgo/ide/runtime/internal/core/runtimes/Virgo35Provider.java
+++ b/org.eclipse.virgo.ide.runtime.core/src/org/eclipse/virgo/ide/runtime/internal/core/runtimes/Virgo35Provider.java
@@ -137,7 +137,7 @@
         if (isWindows10()) {
             // Work around for Equinox 3.9 not recognizing Windows 10 as win32, which results in failure of resolution
             // of native libraries see https://bugs.eclipse.org/bugs/show_bug.cgi?id=486353
-            list.add("-Dos.name=win32");
+            list.add("-Dos.name=\"Windows 8\"");
         }
 
         String fwClassPath = createFWClassPath(serverHome);