Hi,
Due to the nature of the implementation I am required to work with I have to load all the natives manually. I have written a hook into gluegen and jogamp and load the correct natives and it works a treat. However, joal seems to be a little more stubborn. I have tried manually loading the natives for joal after gluegen and jogl but before AudioSystem3D.init(); However, I get the following error... com.jogamp.openal.ALException: java.lang.ExceptionInInitializerError com.jogamp.openal.ALFactory.initialize(101) com.jogamp.openal.ALFactory.getAL(122) com.jogamp.openal.sound3d.AudioSystem3D.init(66) I am wondering if anyone knows the best, or correct, way to load the natives manually for joal. Many Thanks P |
please elaborate why the way gluegen loads the joal and openal-soft natives do not work for your usecase, it is flexible and should fit all deployment usecases we know of. joal require that an openal implementation exist on the platform, for platforms that do not have system openal drivers we provide openal-softhttp://jogamp.org/wiki/index.php/JogAmp_JAR_File_Handling 2014-04-07 11:16 GMT+02:00 TheLittleP [via jogamp] <[hidden email]>: Hi, |
basically, the initial app is a jar downloader. after it has been instantiated and initialised it then downloads gluegen, jogl and joal it copies the jars to a temp directory determined by gluegen temp cache.
although Platform is instantiated it is essentially bypassed. I have added code to JNILibLoader to unpack the required natives and load them into the system. joal doesn't seem to make calls to JNILibLoader in the same way gluegen and jogl do... |
I believe I have sussed this out.
I have found where joal makes a call to JNILibLoaderBase to load the natives. I can put a similar hook in to unpack them and load them manually. Thanks anyway :) |
Administrator
|
But we don't understand why you can't use the build-in mechanism as is. If yours breaks, you'll be mostly alone to fix it. If you use ours, it will be our problem.
Julien Gouesse | Personal blog | Website
|
I don't truly understand why the built in mechanism doesn't work either.
I have placed the natives in the same jar in the /natives/ directory as the fat jar method explains yet when it comes to initialisation the built in mechanism results in searching the user directory and the system path and fails. Before my modifications I found that the TempJarCache isn't initialised. I concluded that this must have something to do with Platform not being initialised with the system class loader. My implementation of ClassLoader downloads jars to a permanent cache on a demand basis giving full privileges to the classes. My workaround has been to alter JNILibLoaderBase so that in initialises TempJarCache and extracts the native that has been called for, loads it and then returns success. This works very well. Believe me when I would have preferred to use the built in mechanism as I have spent hours trying to solve this. Regards P |
2014-04-08 12:14, TheLittleP [via jogamp] skrev:
> I don't truly understand why the built in mechanism doesn't work either. > > I have placed the natives in the same jar in the /natives/ directory as the fat jar method explains yet when it comes to initialisation the built in mechanism results in searching the user directory and the system path and fails. > > Before my modifications I found that the TempJarCache isn't initialised. I concluded that this must have something to do with Platform not being initialised with the system class loader. My implementation of ClassLoader downloads jars to a permanent cache on a demand basis giving full privileges to the classes. > > My workaround has been to alter JNILibLoaderBase so that in initialises TempJarCache and extracts the native that has been called for, loads it and then returns success. This works very well. > > Believe me when I would have preferred to use the built in mechanism as I have spent hours trying to solve this. > > Regards > P > Please post a Short, Self Contained, Correct (Compilable), Example http://www.sscce.org/ demonstrating the issue with the built in mechanism. Cheers Xerxes |
Hi,
I believe the problem has been caused by my implementation of ClassLoader. Initially my focus was to ensure the certificates for each entry were valid and I neglected that getResource should return a valid URL for the directories. I have now corrected this and the JNILibLoaderBase moves onto the next stage of loading the fat natives. I currently get this error... java.io.IOException: Cannot not find: file:/MyDownloadCache.jar com.jogamp.common.util.IOUtil.getClassURL(389) com.jogamp.common.util.JarUtil.getJarURI(142) com.jogamp.common.util.JarUtil.getJarSubURI(336) com.jogamp.common.util.JarUtil.getJarFileURI(359) com.jogamp.common.jvm.JNILibLoaderBase.addNativeJarLibsImpl(203) com.jogamp.common.jvm.JNILibLoaderBase.addNativeJarLibs(438) javax.media.opengl.GLProfile$1.run(155) java.security.AccessController.doPrivileged(-2) javax.media.opengl.GLProfile.initSingleton(123) javax.media.opengl.GLProfile.getProfileMap(2008) javax.media.opengl.GLProfile.get(896) javax.media.opengl.GLProfile.get(925) javax.media.opengl.GLProfile.getMaximum(631) com.ardor3d.framework.jogl.CapsUtil.getProfile(24) com.ardor3d.framework.jogl.CapsUtil.getCapsForSettings(52) com.ardor3d.framework.jogl.CapsUtil.getCapsForSettings(35) com.ardor3d.framework.jogl.JoglNewtAwtCanvas.<init>(41) com.ardor3d.framework.jogl.JoglNewtAwtCanvas.<init>(36) I believe this is caused because, although the jar file does exists, my ClassLoader holds the downloaded jars open to stop any tampering whilst the app is running. I will create a test implementation where the jars are not held open to see if the built in mechanism then successfully installed the natives. I will be very delighted if this does work and I will permanently alter my implementation of ClassLoader to lock the jars once the natives have been loaded. Regards P |
Hi,
Xerxes, here is the problem I am experiencing with the fat loader... What appears to be the problem is it is getting the architecture wrong. The determined architecture for my PC is natives/windows-i586/ but if you look at the file not found error it is trying to find natives\windows-amd64\ If the fat loader attempts to install the amd64 architecture natives it is not unpacking them. The natives for i586 architecture have all been unpacked successfully. upon this error the JNILibLoader falls back to my hook which loads the correct native so at least I have it working. I hope this helps :) loadLibraryInternal libraryName=gluegen-rt ClassLoader=com.a.load.Library@13b2fdc TempJarCache.isInitialized()=true nativeDir=C:\Users\Penny\AppData\Local\Temp\jogamp_0000\file_cache\jln4876335212312446813\jln754577032892538143 nativeArch=natives/windows-i586/ (cl instanceof iNativer)=true here #1 here #2 here #3 here #5 here #5 JNILibLoaderBAse.addNativeJarLibs #2 TempJarCache.isInitialized=true Class Array length=3 [0]=class jogamp.nativewindow.NWJNILibLoader [1]=class javax.media.opengl.GLProfile [2]=class com.jogamp.newt.NewtFactory jarName=core.jar jarBasename=core nativeJarBasename=core-natives-windows-i586.jar classJarURI=jar:file:/C:/Users/Penny/AppData/a/core.jar!/jogamp/nativewindow/NWJNILibLoader.class jarSubURI=file:/C:/Users/Penny/AppData/a/core.jar ClassLoader=com.a.load.Library@13b2fdc nativeLibraryPath=natives/windows-i586/ jarUriRoot_s=file:/C:/Users/Penny/AppData/a/ nativeLibraryURI=jar:file:/C:/Users/Penny/AppData/a/core.jar!/natives/windows-i586/ jarUriRoot_s=file:/C:/Users/Penny/AppData/a/ nativeJarURI=jar:file:/C:/Users/Penny/AppData/a/core.jar!/natives/windows-i586/ ======================================== ERROR:Wed Apr 09 11:04:29 BST 2014 Thread=Thread[Thread-22,4,http://zenny-x11.home/play/-threadGroup] java.io.FileNotFoundException: C:\Users\Penny\AppData\Local\Temp\jogamp_0000\file_cache\jln4876335212312446813\jln754577032892538143\natives\windows-amd64\gluegen-rt.dll (The system cannot find the path specified) java.io.FileOutputStream.open(-2) java.io.FileOutputStream.<init>(-1) java.io.FileOutputStream.<init>(-1) com.jogamp.common.util.JarUtil.extract(579) com.jogamp.common.util.cache.TempJarCache.addNativeLibs(221) com.jogamp.common.jvm.JNILibLoaderBase.addNativeJarLibsImpl(239) com.jogamp.common.jvm.JNILibLoaderBase.addNativeJarLibs(474) javax.media.opengl.GLProfile$1.run(155) java.security.AccessController.doPrivileged(-2) javax.media.opengl.GLProfile.initSingleton(123) javax.media.opengl.GLProfile.getProfileMap(2008) javax.media.opengl.GLProfile.get(896) javax.media.opengl.GLProfile.get(925) javax.media.opengl.GLProfile.getMaximum(631) com.ardor3d.framework.jogl.CapsUtil.getProfile(24) com.ardor3d.framework.jogl.CapsUtil.getCapsForSettings(52) com.ardor3d.framework.jogl.CapsUtil.getCapsForSettings(35) com.ardor3d.framework.jogl.JoglNewtAwtCanvas.<init>(41) com.ardor3d.framework.jogl.JoglNewtAwtCanvas.<init>(36) com.a.core.A.getJoglNewtAwtCanvas(548) com.a.core.A.changeCanvas(514) com.a.core.A.access$1100(54) com.a.core.A$ARunner.run(470) java.lang.Thread.run(-1) ======================================== |
actually, it might be my hook which is successfully unpacking the natives.
|
Administrator
|
In reply to this post by TheLittleP
What happens when you try to run JOGL demos with this machine? Which microprocessor does it use? Is your VM for 32 bits architecture too?
If your machine supports both 32 and 64 bits libraries but GlueGen considers that 64 bits ones should be loaded whereas your installer provides only the JARs containing 32 bits libraries, it won't work but maybe the problem comes from the fat loader which doesn't use the same algorithm to determine the architecture. How does your hook determine and unpack the "good" library?
Julien Gouesse | Personal blog | Website
|
Hi,
I will post my changes to JNILibLoaderBase below. JNILibLoader goes progressively through a number of attempts to unpack the natives and load them. I presume the fat natives fail because of the mismatch in architecture. However, as a last ditch attempt JNILibLoader searches the system path. This is the only place where I could determine the name of the native it is attempting to load. during loadLibraryInternal and after the UnsatisfiedLinkError it enters mode 4. At this point I determine the TempCache directory, the platform os & arch. I query the posiblePaths to determine the file name of the native. With this information I make a call to my ClassLoader with these 3 bits of information and if it finds the native it unpacks it to the temp cache location and returns true if successful. if successful I load the native into the system and return success. Its very hacky but it works. The problem I have at the moment is that joal doesn't seem to get as far as the last ditch attempt to load its natives so I might try loading the joal natives as part of the course during gluegen load, which is currently remed out due to other testing, and when joal attempts to load its natives, if I have previously loaded them I will simply return successful and hope it works... /* * Copyright (c) 2003 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * - Redistribution of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of Sun Microsystems, Inc. or the names of * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * This software is provided "AS IS," without a warranty of any kind. ALL * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, * INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A * PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN * MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE FOR * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR * ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR * DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE * DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, * ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, EVEN IF * SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * * You acknowledge that this software is not designed or intended for use * in the design, construction, operation or maintenance of any nuclear * facility. * * Sun gratefully acknowledges that this software was originally authored * and developed by Kenneth Bradley Russell and Christopher John Kline. */ package com.jogamp.common.jvm; import com.arxary.load.iNativer; import java.io.File; import java.io.IOException; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.net.URI; import java.net.URISyntaxException; import java.net.URL; import java.security.AccessController; import java.security.PrivilegedAction; import java.util.Arrays; import java.util.HashSet; import java.util.Iterator; import java.util.List; import com.jogamp.common.os.NativeLibrary; import com.jogamp.common.util.IOUtil; import com.jogamp.common.util.JarUtil; import com.jogamp.common.util.PropertyAccess; import com.jogamp.common.util.cache.TempJarCache; import jogamp.common.Debug; import jogamp.common.os.PlatformPropsImpl; import com.jogamp.common.os.Platform.OSType; public class JNILibLoaderBase { public static final boolean DEBUG = Debug.debug("JNILibLoader"); public interface LoaderAction { /** * Loads the library specified by libname.<br> * The implementation should ignore, if the library has been loaded already.<br> * @param libname the library to load * @param ignoreError if true, errors during loading the library should be ignored * @param cl optional ClassLoader, used to locate the library * @return true if library loaded successful */ boolean loadLibrary(String libname, boolean ignoreError, ClassLoader cl); /** * Loads the library specified by libname.<br> * Optionally preloads the libraries specified by preload.<br> * The implementation should ignore, if any library has been loaded already.<br> * @param libname the library to load * @param preload the libraries to load before loading the main library if not null * @param preloadIgnoreError if true, errors during loading the preload-libraries should be ignored * @param cl optional ClassLoader, used to locate the library */ void loadLibrary(String libname, String[] preload, boolean preloadIgnoreError, ClassLoader cl); } private static class DefaultAction implements LoaderAction { @Override public boolean loadLibrary(String libname, boolean ignoreError, ClassLoader cl) { boolean res = true; if(!isLoaded(libname)) { try { loadLibraryInternal(libname, cl); addLoaded(libname); if(DEBUG) { System.err.println("JNILibLoaderBase: loaded "+libname); } } catch (UnsatisfiedLinkError e) { res = false; if(DEBUG) { e.printStackTrace(); } if (!ignoreError && e.getMessage().indexOf("already loaded") < 0) { throw e; } } } return res; } @Override public void loadLibrary(String libname, String[] preload, boolean preloadIgnoreError, ClassLoader cl) { if(!isLoaded(libname)) { if (null!=preload) { for (int i=0; i<preload.length; i++) { loadLibrary(preload[i], preloadIgnoreError, cl); } } loadLibrary(libname, false, cl); } } } private static final HashSet<String> loaded = new HashSet<String>(); private static LoaderAction loaderAction = new DefaultAction(); public static boolean isLoaded(String libName) { return loaded.contains(libName); } public static void addLoaded(String libName) { loaded.add(libName); if(DEBUG) { System.err.println("JNILibLoaderBase: Loaded Native Library: "+libName); } } public static void disableLoading() { setLoadingAction(null); } public static void enableLoading() { setLoadingAction(new DefaultAction()); } public static synchronized void setLoadingAction(LoaderAction action) { loaderAction = action; } public static String getURIDirname(String uriS) throws IllegalArgumentException, URISyntaxException { if(null == uriS) { throw new IllegalArgumentException("uriS is null"); } // from // file:/some/path/gluegen-rt.jar _or_ rsrc:gluegen-rt.jar // to // file:/some/path/ _or_ rsrc: int idx = uriS.lastIndexOf('/'); if(0 > idx) { // no abs-path, check for protocol terminator ':' idx = uriS.lastIndexOf(':'); if(0 > idx) { throw new IllegalArgumentException("URI does not contain protocol terminator ':', in <"+uriS+">"); } } uriS = uriS.substring(0, idx+1); // exclude jar name, include terminal '/' or ':' if( DEBUG ) { System.out.println("getJarURIDirname res: "+uriS); } return uriS; } /** * * @param classFromJavaJar * @param classJarURI * @param jarBasename jar basename w/ suffix * @param nativeJarBasename native jar basename w/ suffix * @param msg * @return * @throws IOException * @throws SecurityException * @throws URISyntaxException */ /* pp */ static final boolean addNativeJarLibsImpl(Class<?> classFromJavaJar, URI classJarURI, String jarBasename, String nativeJarBasename, StringBuilder msg) throws IOException, SecurityException, URISyntaxException { boolean ok = false; if(TempJarCache.isInitialized()) { DB.print("classJarURI="+classJarURI); final URI jarSubURI = JarUtil.getJarSubURI( classJarURI ); DB.print("jarSubURI="+jarSubURI); if(null == jarSubURI) { throw new IllegalArgumentException("JarSubURI is null of: "+classJarURI); } //final String jarUriRoot_s = jarSubURI.toString(); final String jarUriRoot_s = getURIDirname( jarSubURI.toString() ); final String nativeLibraryPath = "natives/"+PlatformPropsImpl.os_and_arch+"/"; final ClassLoader cl = classFromJavaJar.getClassLoader(); DB.print("ClassLoader="+cl); DB.print("nativeLibraryPath="+nativeLibraryPath); DB.print("jarUriRoot_s="+jarUriRoot_s); final URL nativeLibraryURI = cl.getResource(nativeLibraryPath); DB.print("nativeLibraryURI="+nativeLibraryURI); if( null != nativeLibraryURI ) { // We probably have one big-fat jar file, containing java classes // and all native platform libraries under 'natives/os.and.arch'! DB.print("jarUriRoot_s="+jarUriRoot_s); final URI nativeJarURI = nativeLibraryURI.toURI(); // final URI nativeJarURI = JarUtil.getJarFileURI(null,jarUriRoot_s+jarBasename); DB.print("nativeJarURI="+nativeJarURI); DB.print("classFromJavaJar="+classFromJavaJar); TempJarCache.addNativeLibs(classFromJavaJar, nativeJarURI); // TempJarCache.addNativeLibs(classFromJavaJar, nativeJarURI); ok = true; DB.print("SUCCESS!"); // msg.append(jarBasename).append(" -> fat: ").append(nativeJarURI); // } } if( !ok ) { // We assume one slim native jar file per 'os.and.arch'! final URI nativeJarURI = JarUtil.getJarFileURI(jarUriRoot_s+nativeJarBasename,cl); msg.append(nativeJarBasename).append(" -> slim: ").append(nativeJarURI); TempJarCache.addNativeLibs(classFromJavaJar, nativeJarURI); // ok = TempJarCache.addNativeLibs(classFromJavaJar, nativeJarURI, null /* nativeLibraryPath */); } } else { msg.append("TempJarCache n/a"); } if(DEBUG) { System.err.println(msg.toString()+" - OK "+ok); } return ok; } /** * Loads and adds a JAR file's native library to the TempJarCache.<br> * The native library JAR file's URI is derived as follows: * <ul> * <li> [1] <code>GLProfile.class</code> -> </li> * <li> [2] <code>http://lala/</code> -> </li> * <li> [4] <code>http://lala/'nativeJarBaseName'-'os.and.arch'.jar</code> </li> * </ul> * Where: * <ul> * <li> [1] is the <code>classFromJavaJar</code></li> * <li> [2] is it's URI path</li> * <li> [4] is the derived native JAR filename</li> * </ul> * * @param classFromJavaJar GLProfile * @param nativeJarBasename jogl-all * @return true if the native JAR file loaded successful or were loaded already, false in case of an error */ public static final boolean addNativeJarLibs(Class<?> classFromJavaJar, String nativeJarBasename) { if(TempJarCache.isInitialized()) { final StringBuilder msg = new StringBuilder(); try { final URI classJarURI = JarUtil.getJarURI(classFromJavaJar.getName(), classFromJavaJar.getClassLoader()); final String jarName = JarUtil.getJarBasename(classJarURI); return addNativeJarLibsImpl(classFromJavaJar, classJarURI, jarName, nativeJarBasename+"-natives-"+PlatformPropsImpl.os_and_arch+".jar", msg); } catch (Exception e0) { // IllegalArgumentException, IOException System.err.println("Catched "+e0.getClass().getSimpleName()+": "+e0.getMessage()+", while "+msg.toString()); if(DEBUG) { e0.printStackTrace(); } } } else if(DEBUG) { System.err.println("JNILibLoaderBase: addNativeJarLibs1: disabled due to uninitialized TempJarCache"); } return false; } /** * Loads and adds a JAR file's native library to the TempJarCache, * calling {@link JNILibLoaderBase#addNativeJarLibs(Class[], String, String[])} * with default JOGL deployment configuration: * <pre> return JNILibLoaderBase.addNativeJarLibs(classesFromJavaJars, "-all", new String[] { "-noawt", "-mobile", "-core", "-android" } ); * </pre> * If <code>Class1.class</code> is contained in a JAR file which name includes <code>singleJarMarker</code> -all, * implementation will attempt to resolve the native JAR file as follows: * <ul> * <li>ClassJar-all[-noawt,-mobile,-android]?.jar to ClassJar-all-natives-os.and.arch.jar</li> * </ul> * Otherwise the native JAR files will be resolved for each class's JAR file: * <ul> * <li>ClassJar1[-noawt,-mobile,-core,-android]?.jar to ClassJar1-natives-os.and.arch.jar</li> * <li>ClassJar2[-noawt,-mobile,-core,-android]?.jar to ClassJar2-natives-os.and.arch.jar</li> * <li>..</li> * </ul> */ public static final boolean addNativeJarLibsJoglCfg(final Class<?>[] classesFromJavaJars) { return addNativeJarLibs(classesFromJavaJars, "-all", joglDeployCfg); } private static final String[] joglDeployCfg = new String[] { "-noawt", "-mobile", "-core", "-android" }; /** * Loads and adds a JAR file's native library to the TempJarCache.<br> * The native library JAR file's URI is derived as follows: * <ul> * <li> [1] <code>GLProfile.class</code> -> </li> * <li> [2] <code>http://lala/gluegen-rt.jar</code> -> </li> * <li> [3] <code>http://lala/gluegen-rt</code> -> </li> * <li> [4] <code>http://lala/gluegen-rt-natives-'os.and.arch'.jar</code> </li> * </ul> * Where: * <ul> * <li> [1] is one of <code>classesFromJavaJars</code></li> * <li> [2] is it's complete URI</li> * <li> [3] is it's base URI</li> * <li> [4] is the derived native JAR filename</li> * </ul> * <p> * Generic description: * <pre> final ClassLoader cl = GLProfile.class.getClassLoader(); final String newtFactoryClassName = "com.jogamp.newt.NewtFactory"; final Class<?>[] classesFromJavaJars = new Class<?>[] { Class1.class, Class2.class }; JNILibLoaderBase.addNativeJarLibs(classesFromJavaJars, "-all", new String[] { "-suff1", "-suff2" } ); * </pre> * If <code>Class1.class</code> is contained in a JAR file which name includes <code>singleJarMarker</code>, here -all, * implementation will attempt to resolve the native JAR file as follows: * <ul> * <li>ClassJar-all[-suff1,-suff2]?.jar to ClassJar-all-natives-os.and.arch.jar</li> * </ul> * Otherwise the native JAR files will be resolved for each class's JAR file: * <ul> * <li>Class1Jar[-suff1,-suff2]?.jar to Class1Jar-natives-os.and.arch.jar</li> * <li>Class2Jar[-suff1,-suff2]?.jar to Class2Jar-natives-os.and.arch.jar</li> * </ul> * </p> * <p> * Examples: * </p> * <p> * JOCL: * <pre> // only: jocl.jar -> jocl-natives-os.and.arch.jar addNativeJarLibs(new Class<?>[] { JOCLJNILibLoader.class }, null, null ); * </pre> * * Newt Only: * <pre> // either: [jogl-all.jar, jogl-all-noawt.jar, jogl-all-mobile.jar, jogl-all-android.jar] -> jogl-all-natives-os.and.arch.jar // or: nativewindow-core.jar -> nativewindow-natives-os.and.arch.jar, // newt-core.jar -> newt-natives-os.and.arch.jar JNILibLoaderBase.addNativeJarLibs(new Class<?>[] { NWJNILibLoader.class, NEWTJNILibLoader.class }, "-all", new String[] { "-noawt", "-mobile", "-core", "-android" } ); * </pre> * </p> * <p> * JOGL: * <pre> final ClassLoader cl = GLProfile.class.getClassLoader(); // either: [jogl-all.jar, jogl-all-noawt.jar, jogl-all-mobile.jar, jogl-all-android.jar] -> jogl-all-natives-os.and.arch.jar // or: nativewindow-core.jar -> nativewindow-natives-os.and.arch.jar, // jogl-core.jar -> jogl-natives-os.and.arch.jar, // (newt-core.jar -> newt-natives-os.and.arch.jar)? (if available) final String newtFactoryClassName = "com.jogamp.newt.NewtFactory"; final Class<?>[] classesFromJavaJars = new Class<?>[] { NWJNILibLoader.class, GLProfile.class, null }; if( ReflectionUtil.isClassAvailable(newtFactoryClassName, cl) ) { classesFromJavaJars[2] = ReflectionUtil.getClass(newtFactoryClassName, false, cl); } JNILibLoaderBase.addNativeJarLibs(classesFromJavaJars, "-all", new String[] { "-noawt", "-mobile", "-core", "-android" } ); * </pre> * </p> * * @param classesFromJavaJars For each given Class, load the native library JAR. * @param singleJarMarker Optional string marker like "-all" to identify the single 'all-in-one' JAR file * after which processing of the class array shall stop. * @param stripBasenameSuffixes Optional substrings to be stripped of the base URI * * @return true if either the 'all-in-one' native JAR or all native JARs loaded successful or were loaded already, * false in case of an error */ private static void printClassArray(Class<?>[] _ca) { if(_ca==null) { DB.print("Class Array is NULL"); return; } DB.print("Class Array length="+_ca.length); for(int i=0;i<_ca.length;i++) { DB.print("["+i+"]="+_ca[i]); } } private static void printStringArray(String[] _sa) { if(_sa==null) { DB.print("String Array is NULL"); return; } DB.print("String Array length="+_sa.length); for(int i=0;i<_sa.length;i++) { DB.print("["+i+"]="+_sa[i]); } } public static boolean addNativeJarLibs(Class<?>[] classesFromJavaJars, String singleJarMarker, String[] stripBasenameSuffixes) { DB.print("JNILibLoaderBAse.addNativeJarLibs #2"); if(DEBUG) { System.err.println("JNILibLoaderBase: addNativeJarLibs0(classesFromJavaJars "+Arrays.asList(classesFromJavaJars)+", singleJarMarker "+singleJarMarker+", stripBasenameSuffixes "+(null!=stripBasenameSuffixes?Arrays.asList(stripBasenameSuffixes):"none")); } boolean ok = false; if(TempJarCache.isInitialized()) { DB.print("TempJarCache.isInitialized="+TempJarCache.isInitialized()); printClassArray(classesFromJavaJars); final StringBuilder msg = new StringBuilder(); int count = 0; try { boolean done = false; ok = true; for(int i=0; !done && ok && i<classesFromJavaJars.length && null!=classesFromJavaJars[i]; i++) { final ClassLoader cl = classesFromJavaJars[i].getClassLoader(); final URI classJarURI = JarUtil.getJarURI(classesFromJavaJars[i].getName(), cl); final String jarName = JarUtil.getJarBasename(classJarURI); DB.print("jarName="+jarName); ok = null != jarName; if(ok) { final String jarBasename = jarName.substring(0, jarName.indexOf(".jar")); // ".jar" already validated w/ JarUtil.getJarBasename(..) final String nativeJarBasename = stripName(jarBasename, stripBasenameSuffixes)+"-natives-"+PlatformPropsImpl.os_and_arch+".jar"; DB.print("jarBasename="+jarBasename); DB.print("nativeJarBasename="+nativeJarBasename); done = null != singleJarMarker && jarBasename.indexOf(singleJarMarker) >= 0; // done if single-jar ('all' variant) ok = JNILibLoaderBase.addNativeJarLibsImpl(classesFromJavaJars[i], classJarURI, jarName, nativeJarBasename, msg); if(ok) { count++; } if(DEBUG && done) { System.err.println("JNILibLoaderBase: addNativeJarLibs0: end after all-in-one JAR: "+jarBasename); } } } } catch (Exception e0) { DB.handle(e0); // IllegalArgumentException, IOException System.err.println("Catched "+e0.getClass().getSimpleName()+": "+e0.getMessage()+", while "+msg.toString()); if(DEBUG) { e0.printStackTrace(); } ok = false; } if(DEBUG) { System.err.println("JNILibLoaderBase: addNativeJarLibs0(..) done, count "+count+", ok "+ok); } } else if(DEBUG) { System.err.println("JNILibLoaderBase: addNativeJarLibs0: disabled due to uninitialized TempJarCache"); } return ok; } private static final String stripName(String name, String[] suffixes) { if(null != suffixes) { for(int i=0; i<suffixes.length && null != suffixes[i]; i++) { int idx = name.indexOf(suffixes[i]); if(0 < idx) { return name.substring(0, idx); } } } return name; } /** * Loads the library specified by libname, using the {@link LoaderAction} set by {@link #setLoadingAction(LoaderAction)}.<br> * The implementation should ignore, if the library has been loaded already.<br> * @param libname the library to load * @param ignoreError if true, errors during loading the library should be ignored * @param cl optional ClassLoader, used to locate the library * @return true if library loaded successful */ protected static synchronized boolean loadLibrary(String libname, boolean ignoreError, ClassLoader cl) { if (loaderAction != null) { return loaderAction.loadLibrary(libname, ignoreError, cl); } return false; } /** * Loads the library specified by libname, using the {@link LoaderAction} set by {@link #setLoadingAction(LoaderAction)}.<br> * Optionally preloads the libraries specified by preload.<br> * The implementation should ignore, if any library has been loaded already.<br> * @param libname the library to load * @param preload the libraries to load before loading the main library if not null * @param preloadIgnoreError if true, errors during loading the preload-libraries should be ignored * @param cl optional ClassLoader, used to locate the library */ protected static synchronized void loadLibrary(String libname, String[] preload, boolean preloadIgnoreError, ClassLoader cl) { if (loaderAction != null) { loaderAction.loadLibrary(libname, preload, preloadIgnoreError, cl); } } // private static final Class<?> customLauncherClass; // FIXME: remove private static final Method customLoadLibraryMethod; static { final String sunAppletLauncherProperty = "sun.jnlp.applet.launcher"; final String sunAppletLauncherClassName = "org.jdesktop.applet.util.JNLPAppletLauncher"; final Method loadLibraryMethod = AccessController.doPrivileged(new PrivilegedAction<Method>() { @Override public Method run() { // FIXME: remove final boolean usingJNLPAppletLauncher = Debug.getBooleanProperty(sunAppletLauncherProperty, true); Class<?> launcherClass = null; Method loadLibraryMethod = null; if (usingJNLPAppletLauncher) { try { launcherClass = Class.forName(sunAppletLauncherClassName); } catch (ClassNotFoundException cnfe) { // oops .. look like JNLPAppletLauncher doesn't exist, despite property // this may happen if a previous applet was using JNLPAppletLauncher in the same JVM System.err.println("JNILibLoaderBase: <"+sunAppletLauncherClassName+"> not found, despite enabled property <"+sunAppletLauncherProperty+">, JNLPAppletLauncher was probably used before"); System.setProperty(sunAppletLauncherProperty, Boolean.FALSE.toString()); } catch (LinkageError le) { throw le; } if(null != launcherClass) { try { loadLibraryMethod = launcherClass.getDeclaredMethod("loadLibrary", new Class[] { String.class }); } catch (NoSuchMethodException ex) { if(DEBUG) { ex.printStackTrace(); } launcherClass = null; } } } if(null==launcherClass) { String launcherClassName = PropertyAccess.getProperty("jnlp.launcher.class", false); if(null!=launcherClassName) { try { launcherClass = Class.forName(launcherClassName); loadLibraryMethod = launcherClass.getDeclaredMethod("loadLibrary", new Class[] { String.class }); } catch (ClassNotFoundException ex) { if(DEBUG) { ex.printStackTrace(); } } catch (NoSuchMethodException ex) { if(DEBUG) { ex.printStackTrace(); } launcherClass = null; } } } return loadLibraryMethod; } } ); customLoadLibraryMethod = loadLibraryMethod; } private static boolean nativesWaiting=true; private static String nativeDir=null; private static String nativeArch=null; // private static int nativeType=-1; // private static iNativer nativeCL=null; private static void loadLibraryInternal(String libraryName, ClassLoader cl) { DB.print("loadLibraryInternal libraryName="+libraryName+" ClassLoader="+cl); // Note: special-casing JAWT which is built in to the JDK int mode = 0; // 1 - custom, 2 - System.load( TempJarCache ), 3 - System.loadLibrary( name ), 4 - System.load( enumLibNames ) if (null!=customLoadLibraryMethod && !libraryName.equals("jawt")) { // FIXME: remove if(DEBUG) { System.err.println("JNILibLoaderBase: customLoad("+libraryName+") - mode 1"); } try { customLoadLibraryMethod.invoke(null, new Object[] { libraryName }); mode = 1; } catch (Exception e) { Throwable t = e; if (t instanceof InvocationTargetException) { t = ((InvocationTargetException) t).getTargetException(); } if (t instanceof Error) { throw (Error) t; } if (t instanceof RuntimeException) { throw (RuntimeException) t; } // Throw UnsatisfiedLinkError for best compatibility with System.loadLibrary() throw (UnsatisfiedLinkError) new UnsatisfiedLinkError("can not load library "+libraryName).initCause(e); } } else { // System.err.println("sun.boot.library.path=" + Debug.getProperty("sun.boot.library.path", false)); final String libraryPath = NativeLibrary.findLibrary(libraryName, cl); // implicit TempJarCache usage if used/initialized if(DEBUG) { System.err.println("JNILibLoaderBase: loadLibraryInternal("+libraryName+"), TempJarCache: "+libraryPath); } if(null != libraryPath) { if(DEBUG) { System.err.println("JNILibLoaderBase: System.load("+libraryPath+") - mode 2"); } System.load(libraryPath); mode = 2; } else { if(DEBUG) { System.err.println("JNILibLoaderBase: System.loadLibrary("+libraryName+") - mode 3"); } try { System.loadLibrary(libraryName); mode = 3; } catch (UnsatisfiedLinkError ex1) { if(nativesWaiting) { nativesWaiting=false; if(PlatformPropsImpl.OS_TYPE!=OSType.ANDROID) { DB.print("TempJarCache.isInitialized()="+TempJarCache.isInitialized()); if(!TempJarCache.isInitialized()) { try{ TempJarCache.initSingleton(); }catch(Throwable t){} } if(TempJarCache.isInitialized()) { nativeDir=TempJarCache.getTempFileCache().getTempDir().getAbsolutePath(); nativeArch="natives/"+PlatformPropsImpl.os_and_arch+"/"; } //String oa=PlatformPropsImpl.os_and_arch; //if(oa.equals("android-armv6"))nativeType=1; //if(oa.equals("linux-amd64"))nativeType=2; //if(oa.equals("linux-armv6"))nativeType=3; //if(oa.equals("linux-armv6hf"))nativeType=4; //if(oa.equals("linux-i586"))nativeType=5; //if(oa.equals("macoxs-universe"))nativeType=6; //if(oa.equals("solaris-amd64"))nativeType=7; //if(oa.equals("solaris-i586"))nativeType=8; //if(oa.equals("windows-amd64"))nativeType=9; //if(oa.equals("windows-i586"))nativeType=10; //nativeCL=(iNativer)cl; // }catch(Throwable t){} } } boolean ok=false; DB.print("nativeDir="+nativeDir); DB.print("nativeArch="+nativeArch); DB.print("(cl instanceof iNativer)="+(cl instanceof iNativer)); if(nativeDir!=null&&nativeArch!=null) { DB.print("here #1"); if(cl instanceof iNativer) { DB.print("here #2"); List<String> possiblePaths=NativeLibrary.enumerateLibraryPaths(libraryName,libraryName,libraryName,true,cl); Iterator<String> iter=possiblePaths.iterator(); DB.print("here #3"); if(iter.hasNext()) { DB.print("here #5"); String path=iter.next(); String name=path.substring(path.indexOf(libraryName)); ok=((iNativer)cl).loadNative(name,nativeArch,nativeDir); if(ok) { try{ DB.print("here #5"); File f=new File(nativeDir,name); System.load(f.getAbsolutePath()); }catch(Throwable t){ ok=false; } } } } if(ok)mode=4; } if(DEBUG) { System.err.println("ERROR (retry w/ enumLibPath) - "+ex1.getMessage()); } List<String> possiblePaths = NativeLibrary.enumerateLibraryPaths(libraryName, libraryName, libraryName, true, cl); // Iterate down these and see which one if any we can actually find. for (Iterator<String> iter = possiblePaths.iterator(); 0 == mode && iter.hasNext(); ) { String path = iter.next(); if (DEBUG) { System.err.println("JNILibLoaderBase: System.load("+path+") - mode 4"); } try { System.load(path); mode = 4; } catch (UnsatisfiedLinkError ex2) { if(DEBUG) { System.err.println("n/a - "+ex2.getMessage()); } if(!iter.hasNext()) { throw ex2; } } } } } } if(DEBUG) { System.err.println("JNILibLoaderBase: loadLibraryInternal("+libraryName+"): OK - mode "+mode); } } //public static void joalNativesLoad() throws Throwable // { // if(nativeType==-1)throw new Error("Not Ready!"); // String fn1="libjoal.so",fn2="libopenal.so"; // if(nativeType==6) // { // fn1="libjoal.jnilib"; // fn2="libopenal.dylib"; // } // if(nativeType==7||nativeType==8) // { // fn2=""; // } // if(nativeType>8) // { // fn1="joal.dll"; // fn2="soft_oal.dll"; // } // if(fn2!="")joalLoad(fn2); // joalLoad(fn1); // } //private static void joalLoad(String _name) // { //DB.print("joalLoad["+_name+"]"); // try{ // nativeCL.loadNative(_name,nativeArch,nativeDir); // File f=new File(nativeDir,_name); // System.load(f.getAbsolutePath()); // }catch(Throwable t){ //DB.handle(t); // } // } } |
I now have sound and video working in my project.
Using the above JNILibLoaderBase code with the addition of... public static boolean addNativeJarLibs(Class<?>[] classesFromJavaJars, String singleJarMarker, String[] stripBasenameSuffixes) { boolean ok=unpackNatives(); if(ok&&classesFromJavaJars[0]==jogamp.openal.ALDynamicLibraryBundleInfo.class) { try{ String s=getNativeJoalName(); if(s!="")System.load(s); }catch(Throwable t){ ok=false; } the unpackNatives routine ensures TempCache is initialiased and all the natives are unpacked and placed appropriately using PlatformPropsImpl.os_and_arch There are a few other bits and pieces but I am sure it shouldn't be too difficult to work out. I would of preferred to use the build in native loader but it simply didn't work. Regards P |
Administrator
|
Thanks but how can we reproduce your bug? You don't give enough information about the machine on which it doesn't work:
http://jogamp.org/wiki/index.php/Jogl_FAQ#Bugreports_.26_Testing
Julien Gouesse | Personal blog | Website
|
here you are...
System Information report written at: 04/12/14 17:40:11 System Name: ZENNY-X11 [System Summary] Item Value OS Name Microsoft Windows 7 Ultimate Version 6.1.7601 Service Pack 1 Build 7601 Other OS Description Not Available OS Manufacturer Microsoft Corporation System Name ZENNY-X11 System Manufacturer Gigabyte Technology Co., Ltd. System Model Z87-HD3 System Type x64-based PC Processor Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz, 3501 Mhz, 4 Core(s), 8 Logical Processor(s) BIOS Version/Date American Megatrends Inc. F4, 16/05/2013 SMBIOS Version 2.7 Windows Directory C:\Windows System Directory C:\Windows\system32 Boot Device \Device\HarddiskVolume1 Locale United Kingdom Hardware Abstraction Layer Version = "6.1.7601.17514" User Name Zenny-X11\Penny Time Zone GMT Daylight Time Installed Physical Memory (RAM) 16.0 GB Total Physical Memory 15.9 GB Available Physical Memory 12.7 GB Total Virtual Memory 31.8 GB Available Virtual Memory 27.6 GB Page File Space 15.9 GB Page File C:\pagefile.sys [Hardware Resources] [Conflicts/Sharing] Resource Device I/O Port 0x00000000-0x0000001F Direct memory access controller I/O Port 0x00000000-0x0000001F PCI bus I/O Port 0x000003C0-0x000003DF Intel(R) Xeon(R) processor E3-1200 v3/4th Gen Core processor PCI Express x16 Controller - 0C01 I/O Port 0x000003C0-0x000003DF AMD Radeon HD 7800 Series I/O Port 0x00000065-0x0000006F Motherboard resources I/O Port 0x00000065-0x0000006F Motherboard resources I/O Port 0x00000070-0x00000077 System CMOS/real time clock I/O Port 0x00000070-0x00000077 Motherboard resources I/O Port 0x000004D0-0x000004D1 Motherboard resources I/O Port 0x000004D0-0x000004D1 Programmable interrupt controller I/O Port 0x0000E000-0x0000EFFF Intel(R) Xeon(R) processor E3-1200 v3/4th Gen Core processor PCI Express x16 Controller - 0C01 I/O Port 0x0000E000-0x0000EFFF AMD Radeon HD 7800 Series Memory Address 0xFF000000-0xFFFFFFFF Motherboard resources Memory Address 0xFF000000-0xFFFFFFFF Intel(R) 82802 Firmware Hub Device IRQ 16 Intel(R) Management Engine Interface IRQ 16 Intel(R) 8 Series/C220 Series PCI Express Root Port #1 - 8C10 IRQ 16 Intel(R) Xeon(R) processor E3-1200 v3/4th Gen Core processor PCI Express x16 Controller - 0C01 IRQ 16 High Definition Audio Controller IRQ 16 Intel(R) 8 Series/C220 Series USB EHCI #2 - 8C2D IRQ 19 Intel(R) 82801 PCI Bridge - 244E IRQ 19 Intel(R) 82801 PCI Bridge - 244E Memory Address 0xC0000000-0xD00FFFFF Intel(R) Xeon(R) processor E3-1200 v3/4th Gen Core processor PCI Express x16 Controller - 0C01 Memory Address 0xC0000000-0xD00FFFFF AMD Radeon HD 7800 Series Memory Address 0xA0000-0xBFFFF PCI bus Memory Address 0xA0000-0xBFFFF Intel(R) Xeon(R) processor E3-1200 v3/4th Gen Core processor PCI Express x16 Controller - 0C01 Memory Address 0xA0000-0xBFFFF AMD Radeon HD 7800 Series I/O Port 0x000003B0-0x000003BB Intel(R) Xeon(R) processor E3-1200 v3/4th Gen Core processor PCI Express x16 Controller - 0C01 I/O Port 0x000003B0-0x000003BB AMD Radeon HD 7800 Series Memory Address 0xD0800000-0xD0803FFF Realtek PCIe GBE Family Controller Memory Address 0xD0800000-0xD0803FFF Intel(R) 8 Series/C220 Series PCI Express Root Port #3 - 8C14 I/O Port 0x00000080-0x00000080 Motherboard resources I/O Port 0x00000080-0x00000080 Motherboard resources I/O Port 0x0000FFFF-0x0000FFFF Motherboard resources I/O Port 0x0000FFFF-0x0000FFFF Motherboard resources I/O Port 0x0000FFFF-0x0000FFFF Motherboard resources I/O Port 0x0000D000-0x0000D0FF Realtek PCIe GBE Family Controller I/O Port 0x0000D000-0x0000D0FF Intel(R) 8 Series/C220 Series PCI Express Root Port #3 - 8C14 [DMA] Resource Device Status Channel 4 Direct memory access controller OK [Forced Hardware] Device PNP Device ID [I/O] Resource Device Status 0x00000040-0x00000043 System timer OK 0x00000050-0x00000053 System timer OK 0x0000F0B0-0x0000F0B7 Intel(R) 8 Series/C220 Chipset Family SATA AHCI Controller OK 0x0000F0A0-0x0000F0A3 Intel(R) 8 Series/C220 Chipset Family SATA AHCI Controller OK 0x0000F090-0x0000F097 Intel(R) 8 Series/C220 Chipset Family SATA AHCI Controller OK 0x0000F080-0x0000F083 Intel(R) 8 Series/C220 Chipset Family SATA AHCI Controller OK 0x0000F060-0x0000F07F Intel(R) 8 Series/C220 Chipset Family SATA AHCI Controller OK 0x00000000-0x0000001F Direct memory access controller OK 0x00000000-0x0000001F PCI bus OK 0x00000081-0x00000091 Direct memory access controller OK 0x00000093-0x0000009F Direct memory access controller OK 0x000000C0-0x000000DF Direct memory access controller OK 0x00000060-0x00000060 Standard PS/2 Keyboard OK 0x00000064-0x00000064 Standard PS/2 Keyboard OK 0x0000D000-0x0000D0FF Realtek PCIe GBE Family Controller OK 0x0000D000-0x0000D0FF Intel(R) 8 Series/C220 Series PCI Express Root Port #3 - 8C14 OK 0x00000378-0x0000037F Printer Port (LPT1) OK 0x000003F8-0x000003FF Communications Port (COM1) OK 0x0000FF80-0x0000FFBF Intel(R) HD Graphics 4600 OK 0x00000D00-0x0000FFFF PCI bus OK 0x00000070-0x00000077 System CMOS/real time clock OK 0x00000070-0x00000077 Motherboard resources OK 0x00000010-0x0000001F Motherboard resources OK 0x00000022-0x0000003F Motherboard resources OK 0x00000044-0x0000005F Motherboard resources OK 0x00000062-0x00000063 Motherboard resources OK 0x00000065-0x0000006F Motherboard resources OK 0x00000065-0x0000006F Motherboard resources OK 0x00000072-0x0000007F Motherboard resources OK 0x00000080-0x00000080 Motherboard resources OK 0x00000080-0x00000080 Motherboard resources OK 0x00000084-0x00000086 Motherboard resources OK 0x00000088-0x00000088 Motherboard resources OK 0x0000008C-0x0000008E Motherboard resources OK 0x00000090-0x0000009F Motherboard resources OK 0x000000A2-0x000000BF Motherboard resources OK 0x000000E0-0x000000EF Motherboard resources OK 0x000004D0-0x000004D1 Motherboard resources OK 0x000004D0-0x000004D1 Programmable interrupt controller OK 0x00000A00-0x00000A0F Motherboard resources OK 0x00000A30-0x00000A3F Motherboard resources OK 0x00000A20-0x00000A2F Motherboard resources OK 0x0000002E-0x0000002F Motherboard resources OK 0x0000004E-0x0000004F Motherboard resources OK 0x00000061-0x00000061 Motherboard resources OK 0x00000063-0x00000063 Motherboard resources OK 0x00000067-0x00000067 Motherboard resources OK 0x00000092-0x00000092 Motherboard resources OK 0x000000B2-0x000000B3 Motherboard resources OK 0x00000680-0x0000069F Motherboard resources OK 0x0000FFFF-0x0000FFFF Motherboard resources OK 0x0000FFFF-0x0000FFFF Motherboard resources OK 0x0000FFFF-0x0000FFFF Motherboard resources OK 0x00001C00-0x00001CFE Motherboard resources OK 0x00001D00-0x00001DFE Motherboard resources OK 0x00001E00-0x00001EFE Motherboard resources OK 0x00001F00-0x00001FFE Motherboard resources OK 0x00001800-0x000018FE Motherboard resources OK 0x0000164E-0x0000164F Motherboard resources OK 0x0000E000-0x0000EFFF Intel(R) Xeon(R) processor E3-1200 v3/4th Gen Core processor PCI Express x16 Controller - 0C01 OK 0x0000E000-0x0000EFFF AMD Radeon HD 7800 Series OK 0x000003B0-0x000003BB Intel(R) Xeon(R) processor E3-1200 v3/4th Gen Core processor PCI Express x16 Controller - 0C01 OK 0x000003B0-0x000003BB AMD Radeon HD 7800 Series OK 0x000003C0-0x000003DF Intel(R) Xeon(R) processor E3-1200 v3/4th Gen Core processor PCI Express x16 Controller - 0C01 OK 0x000003C0-0x000003DF AMD Radeon HD 7800 Series OK 0x0000F040-0x0000F05F Intel(R) 8 Series/C220 Series SMBus Controller - 8C22 OK 0x000000F0-0x000000FF Numeric data processor OK 0x00001854-0x00001857 Motherboard resources OK 0x00000020-0x00000021 Programmable interrupt controller OK 0x00000024-0x00000025 Programmable interrupt controller OK 0x00000028-0x00000029 Programmable interrupt controller OK 0x0000002C-0x0000002D Programmable interrupt controller OK 0x00000030-0x00000031 Programmable interrupt controller OK 0x00000034-0x00000035 Programmable interrupt controller OK 0x00000038-0x00000039 Programmable interrupt controller OK 0x0000003C-0x0000003D Programmable interrupt controller OK 0x000000A0-0x000000A1 Programmable interrupt controller OK 0x000000A4-0x000000A5 Programmable interrupt controller OK 0x000000A8-0x000000A9 Programmable interrupt controller OK 0x000000AC-0x000000AD Programmable interrupt controller OK 0x000000B0-0x000000B1 Programmable interrupt controller OK 0x000000B4-0x000000B5 Programmable interrupt controller OK 0x000000B8-0x000000B9 Programmable interrupt controller OK 0x000000BC-0x000000BD Programmable interrupt controller OK [IRQs] Resource Device Status IRQ 0 System timer OK IRQ 17 High Definition Audio Controller OK IRQ 4294967294 Intel(R) 8 Series/C220 Chipset Family SATA AHCI Controller OK IRQ 16 Intel(R) Management Engine Interface OK IRQ 16 Intel(R) 8 Series/C220 Series PCI Express Root Port #1 - 8C10 OK IRQ 16 Intel(R) Xeon(R) processor E3-1200 v3/4th Gen Core processor PCI Express x16 Controller - 0C01 OK IRQ 16 High Definition Audio Controller OK IRQ 16 Intel(R) 8 Series/C220 Series USB EHCI #2 - 8C2D OK IRQ 1 Standard PS/2 Keyboard OK IRQ 4294967290 Realtek PCIe GBE Family Controller OK IRQ 4 Communications Port (COM1) OK IRQ 4294967292 Intel(R) HD Graphics 4600 OK IRQ 18 Intel(R) 8 Series/C220 Series PCI Express Root Port #3 - 8C14 OK IRQ 8 System CMOS/real time clock OK IRQ 22 High Definition Audio Controller OK IRQ 10 Intel(R) 8 Series/C220 Series SMBus Controller - 8C22 OK IRQ 13 Numeric data processor OK IRQ 23 Intel(R) 8 Series/C220 Series USB EHCI #1 - 8C26 OK IRQ 19 Intel(R) 82801 PCI Bridge - 244E OK IRQ 19 Intel(R) 82801 PCI Bridge - 244E OK IRQ 4294967293 AMD Radeon HD 7800 Series OK IRQ 81 Microsoft ACPI-Compliant System OK IRQ 82 Microsoft ACPI-Compliant System OK IRQ 83 Microsoft ACPI-Compliant System OK IRQ 84 Microsoft ACPI-Compliant System OK IRQ 85 Microsoft ACPI-Compliant System OK IRQ 86 Microsoft ACPI-Compliant System OK IRQ 87 Microsoft ACPI-Compliant System OK IRQ 88 Microsoft ACPI-Compliant System OK IRQ 89 Microsoft ACPI-Compliant System OK IRQ 90 Microsoft ACPI-Compliant System OK IRQ 91 Microsoft ACPI-Compliant System OK IRQ 92 Microsoft ACPI-Compliant System OK IRQ 93 Microsoft ACPI-Compliant System OK IRQ 94 Microsoft ACPI-Compliant System OK IRQ 95 Microsoft ACPI-Compliant System OK IRQ 96 Microsoft ACPI-Compliant System OK IRQ 97 Microsoft ACPI-Compliant System OK IRQ 98 Microsoft ACPI-Compliant System OK IRQ 99 Microsoft ACPI-Compliant System OK IRQ 100 Microsoft ACPI-Compliant System OK IRQ 101 Microsoft ACPI-Compliant System OK IRQ 102 Microsoft ACPI-Compliant System OK IRQ 103 Microsoft ACPI-Compliant System OK IRQ 104 Microsoft ACPI-Compliant System OK IRQ 105 Microsoft ACPI-Compliant System OK IRQ 106 Microsoft ACPI-Compliant System OK IRQ 107 Microsoft ACPI-Compliant System OK IRQ 108 Microsoft ACPI-Compliant System OK IRQ 109 Microsoft ACPI-Compliant System OK IRQ 110 Microsoft ACPI-Compliant System OK IRQ 111 Microsoft ACPI-Compliant System OK IRQ 112 Microsoft ACPI-Compliant System OK IRQ 113 Microsoft ACPI-Compliant System OK IRQ 114 Microsoft ACPI-Compliant System OK IRQ 115 Microsoft ACPI-Compliant System OK IRQ 116 Microsoft ACPI-Compliant System OK IRQ 117 Microsoft ACPI-Compliant System OK IRQ 118 Microsoft ACPI-Compliant System OK IRQ 119 Microsoft ACPI-Compliant System OK IRQ 120 Microsoft ACPI-Compliant System OK IRQ 121 Microsoft ACPI-Compliant System OK IRQ 122 Microsoft ACPI-Compliant System OK IRQ 123 Microsoft ACPI-Compliant System OK IRQ 124 Microsoft ACPI-Compliant System OK IRQ 125 Microsoft ACPI-Compliant System OK IRQ 126 Microsoft ACPI-Compliant System OK IRQ 127 Microsoft ACPI-Compliant System OK IRQ 128 Microsoft ACPI-Compliant System OK IRQ 129 Microsoft ACPI-Compliant System OK IRQ 130 Microsoft ACPI-Compliant System OK IRQ 131 Microsoft ACPI-Compliant System OK IRQ 132 Microsoft ACPI-Compliant System OK IRQ 133 Microsoft ACPI-Compliant System OK IRQ 134 Microsoft ACPI-Compliant System OK IRQ 135 Microsoft ACPI-Compliant System OK IRQ 136 Microsoft ACPI-Compliant System OK IRQ 137 Microsoft ACPI-Compliant System OK IRQ 138 Microsoft ACPI-Compliant System OK IRQ 139 Microsoft ACPI-Compliant System OK IRQ 140 Microsoft ACPI-Compliant System OK IRQ 141 Microsoft ACPI-Compliant System OK IRQ 142 Microsoft ACPI-Compliant System OK IRQ 143 Microsoft ACPI-Compliant System OK IRQ 144 Microsoft ACPI-Compliant System OK IRQ 145 Microsoft ACPI-Compliant System OK IRQ 146 Microsoft ACPI-Compliant System OK IRQ 147 Microsoft ACPI-Compliant System OK IRQ 148 Microsoft ACPI-Compliant System OK IRQ 149 Microsoft ACPI-Compliant System OK IRQ 150 Microsoft ACPI-Compliant System OK IRQ 151 Microsoft ACPI-Compliant System OK IRQ 152 Microsoft ACPI-Compliant System OK IRQ 153 Microsoft ACPI-Compliant System OK IRQ 154 Microsoft ACPI-Compliant System OK IRQ 155 Microsoft ACPI-Compliant System OK IRQ 156 Microsoft ACPI-Compliant System OK IRQ 157 Microsoft ACPI-Compliant System OK IRQ 158 Microsoft ACPI-Compliant System OK IRQ 159 Microsoft ACPI-Compliant System OK IRQ 160 Microsoft ACPI-Compliant System OK IRQ 161 Microsoft ACPI-Compliant System OK IRQ 162 Microsoft ACPI-Compliant System OK IRQ 163 Microsoft ACPI-Compliant System OK IRQ 164 Microsoft ACPI-Compliant System OK IRQ 165 Microsoft ACPI-Compliant System OK IRQ 166 Microsoft ACPI-Compliant System OK IRQ 167 Microsoft ACPI-Compliant System OK IRQ 168 Microsoft ACPI-Compliant System OK IRQ 169 Microsoft ACPI-Compliant System OK IRQ 170 Microsoft ACPI-Compliant System OK IRQ 171 Microsoft ACPI-Compliant System OK IRQ 172 Microsoft ACPI-Compliant System OK IRQ 173 Microsoft ACPI-Compliant System OK IRQ 174 Microsoft ACPI-Compliant System OK IRQ 175 Microsoft ACPI-Compliant System OK IRQ 176 Microsoft ACPI-Compliant System OK IRQ 177 Microsoft ACPI-Compliant System OK IRQ 178 Microsoft ACPI-Compliant System OK IRQ 179 Microsoft ACPI-Compliant System OK IRQ 180 Microsoft ACPI-Compliant System OK IRQ 181 Microsoft ACPI-Compliant System OK IRQ 182 Microsoft ACPI-Compliant System OK IRQ 183 Microsoft ACPI-Compliant System OK IRQ 184 Microsoft ACPI-Compliant System OK IRQ 185 Microsoft ACPI-Compliant System OK IRQ 186 Microsoft ACPI-Compliant System OK IRQ 187 Microsoft ACPI-Compliant System OK IRQ 188 Microsoft ACPI-Compliant System OK IRQ 189 Microsoft ACPI-Compliant System OK IRQ 190 Microsoft ACPI-Compliant System OK IRQ 4294967291 Intel(R) USB 3.0 eXtensible Host Controller OK [Memory] Resource Device Status 0xD0060000-0xD0063FFF High Definition Audio Controller OK 0xD091A000-0xD091A7FF Intel(R) 8 Series/C220 Chipset Family SATA AHCI Controller OK 0xD091E000-0xD091E00F Intel(R) Management Engine Interface OK 0xFED00000-0xFED003FF High precision event timer OK 0xD0804000-0xD0804FFF Realtek PCIe GBE Family Controller OK 0xD0800000-0xD0803FFF Realtek PCIe GBE Family Controller OK 0xD0800000-0xD0803FFF Intel(R) 8 Series/C220 Series PCI Express Root Port #3 - 8C14 OK 0xD0400000-0xD07FFFFF Intel(R) HD Graphics 4600 OK 0xB0000000-0xBFFFFFFF Intel(R) HD Graphics 4600 OK 0xA0000-0xBFFFF PCI bus OK 0xA0000-0xBFFFF Intel(R) Xeon(R) processor E3-1200 v3/4th Gen Core processor PCI Express x16 Controller - 0C01 OK 0xA0000-0xBFFFF AMD Radeon HD 7800 Series OK 0xD0000-0xD3FFF PCI bus OK 0xD4000-0xD7FFF PCI bus OK 0xD8000-0xDBFFF PCI bus OK 0xDC000-0xDFFFF PCI bus OK 0xE0000-0xE3FFF PCI bus OK 0xE4000-0xE7FFF PCI bus OK 0xAFA00000-0xFEAFFFFF PCI bus OK 0xFED40000-0xFED44FFF System board OK 0xFED1C000-0xFED1FFFF Motherboard resources OK 0xFED10000-0xFED17FFF Motherboard resources OK 0xFED18000-0xFED18FFF Motherboard resources OK 0xFED19000-0xFED19FFF Motherboard resources OK 0xF8000000-0xFBFFFFFF Motherboard resources OK 0xFED20000-0xFED3FFFF Motherboard resources OK 0xFED90000-0xFED93FFF Motherboard resources OK 0xFED45000-0xFED8FFFF Motherboard resources OK 0xFF000000-0xFFFFFFFF Motherboard resources OK 0xFF000000-0xFFFFFFFF Intel(R) 82802 Firmware Hub Device OK 0xFEE00000-0xFEEFFFFF Motherboard resources OK 0xF7FEF000-0xF7FEFFFF Motherboard resources OK 0xF7FF0000-0xF7FF0FFF Motherboard resources OK 0xD0910000-0xD0913FFF High Definition Audio Controller OK 0xC0000000-0xD00FFFFF Intel(R) Xeon(R) processor E3-1200 v3/4th Gen Core processor PCI Express x16 Controller - 0C01 OK 0xC0000000-0xD00FFFFF AMD Radeon HD 7800 Series OK 0xD0919000-0xD09190FF Intel(R) 8 Series/C220 Series SMBus Controller - 8C22 OK 0xD0914000-0xD0917FFF High Definition Audio Controller OK 0xD091B000-0xD091B3FF Intel(R) 8 Series/C220 Series USB EHCI #1 - 8C26 OK 0xD091C000-0xD091C3FF Intel(R) 8 Series/C220 Series USB EHCI #2 - 8C2D OK 0xD0000000-0xD003FFFF AMD Radeon HD 7800 Series OK 0xD0900000-0xD090FFFF Intel(R) USB 3.0 eXtensible Host Controller OK [Components] [Multimedia] [Audio Codecs] CODEC Manufacturer Description Status File Version Size Creation Date c:\windows\system32\msadp32.acm Microsoft Corporation OK C:\Windows\system32\MSADP32.ACM 6.1.7600.16385 23.50 KB (24,064 bytes) 14/07/2009 01:18 c:\windows\system32\imaadp32.acm Microsoft Corporation OK C:\Windows\system32\IMAADP32.ACM 6.1.7600.16385 21.50 KB (22,016 bytes) 14/07/2009 01:18 c:\windows\system32\msg711.acm Microsoft Corporation OK C:\Windows\system32\MSG711.ACM 6.1.7600.16385 14.50 KB (14,848 bytes) 14/07/2009 01:18 c:\windows\system32\msgsm32.acm Microsoft Corporation OK C:\Windows\system32\MSGSM32.ACM 6.1.7600.16385 28.50 KB (29,184 bytes) 14/07/2009 01:18 c:\windows\system32\l3codeca.acm Fraunhofer Institut Integrierte Schaltungen IIS Fraunhofer IIS MPEG Layer-3 Codec OK C:\Windows\system32\L3CODECA.ACM 1.9.0.401 79.50 KB (81,408 bytes) 14/07/2009 01:22 [Video Codecs] CODEC Manufacturer Description Status File Version Size Creation Date c:\windows\system32\msyuv.dll Microsoft Corporation OK C:\Windows\system32\MSYUV.DLL 6.1.7601.17514 25.00 KB (25,600 bytes) 21/11/2010 03:24 c:\windows\system32\iyuv_32.dll Microsoft Corporation OK C:\Windows\system32\IYUV_32.DLL 6.1.7601.17514 53.00 KB (54,272 bytes) 21/11/2010 03:24 c:\windows\system32\tsbyuv.dll Microsoft Corporation OK C:\Windows\system32\TSBYUV.DLL 6.1.7601.17514 14.50 KB (14,848 bytes) 21/11/2010 03:24 c:\windows\system32\msvidc32.dll Microsoft Corporation OK C:\Windows\system32\MSVIDC32.DLL 6.1.7601.17514 38.00 KB (38,912 bytes) 21/11/2010 03:24 c:\windows\system32\msrle32.dll Microsoft Corporation OK C:\Windows\system32\MSRLE32.DLL 6.1.7601.17514 16.00 KB (16,384 bytes) 21/11/2010 03:24 [CD-ROM] Item Value Drive E: Description CD-ROM Drive Media Loaded No Media Type DVD Writer Name TSSTcorp CDDVDW SH-224DB SCSI CdRom Device Manufacturer (Standard CD-ROM drives) Status OK Transfer Rate -1.00 kbytes/sec SCSI Target ID 0 PNP Device ID SCSI\CDROM&VEN_TSSTCORP&PROD_CDDVDW_SH-224DB\4&239D8B02&0&010000 Driver c:\windows\system32\drivers\cdrom.sys (6.1.7601.17514, 144.00 KB (147,456 bytes), 21/11/2010 03:23) [Sound Device] Item Value Name AMD High Definition Audio Device Manufacturer Advanced Micro Devices Status OK PNP Device ID HDAUDIO\FUNC_01&VEN_1002&DEV_AA01&SUBSYS_00AA0100&REV_1003\5&C57F9DB&0&0001 Driver c:\windows\system32\drivers\atihdw76.sys (7.12.0.7716, 94.00 KB (96,256 bytes), 05/07/2013 09:40) Name Realtek High Definition Audio Manufacturer Realtek Status OK PNP Device ID HDAUDIO\FUNC_01&VEN_10EC&DEV_0892&SUBSYS_1458A002&REV_1003\4&5327F15&0&0201 Driver c:\windows\system32\drivers\rtkvhd64.sys (6.0.1.6849, 3.18 MB (3,333,576 bytes), 05/09/2013 16:37) Name USB Audio Device Manufacturer (Generic USB Audio) Status OK PNP Device ID USB\VID_045E&PID_0770&MI_02\6&1193EAEB&0&0002 Driver c:\windows\system32\drivers\usbaudio.sys (6.1.7601.18208, 107.25 KB (109,824 bytes), 09/10/2013 16:55) Name Intel(R) Display Audio Manufacturer Intel(R) Corporation Status OK PNP Device ID HDAUDIO\FUNC_01&VEN_8086&DEV_2807&SUBSYS_80860101&REV_1000\4&1793E418&0&0001 Driver c:\windows\system32\drivers\intcdaud.sys (6.16.0.3106, 432.00 KB (442,368 bytes), 05/09/2013 16:35) [Display] Item Value Name Intel(R) HD Graphics 4600 PNP Device ID PCI\VEN_8086&DEV_0412&SUBSYS_D0001458&REV_06\3&11583659&0&10 Adapter Type Intel(R) HD Graphics Family, Intel Corporation compatible Adapter Description Intel(R) HD Graphics 4600 Adapter RAM (2,080,374,784) bytes Installed Drivers igdumdim64.dll,igd10iumd64.dll,igd10iumd64.dll,igdumdim32,igd10iumd32,igd10iumd32 Driver Version 9.18.10.3071 INF File oem12.inf (iHSWD0 section) Color Planes Not Available Color Table Entries 4294967296 Resolution 1280 x 1024 x 60 hertz Bits/Pixel 32 Memory Address 0xD0400000-0xD07FFFFF Memory Address 0xB0000000-0xBFFFFFFF I/O Port 0x0000FF80-0x0000FFBF IRQ Channel IRQ 4294967292 Driver c:\windows\system32\drivers\igdkmd64.sys (9.18.10.3071, 4.32 MB (4,534,784 bytes), 05/09/2013 16:35) Name AMD Radeon HD 7800 Series PNP Device ID PCI\VEN_1002&DEV_6818&SUBSYS_27401462&REV_00\4&1286464&0&0008 Adapter Type AMD Radeon Graphics Processor (0x6818), Advanced Micro Devices, Inc. compatible Adapter Description AMD Radeon HD 7800 Series Adapter RAM (2,147,483,648) bytes Installed Drivers aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.dll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll Driver Version 13.152.0.0 INF File oem21.inf (ati2mtag_R575B section) Color Planes Not Available Color Table Entries Not Available Resolution Not Available Bits/Pixel Not Available Memory Address 0xC0000000-0xD00FFFFF Memory Address 0xD0000000-0xD003FFFF I/O Port 0x0000E000-0x0000EFFF IRQ Channel IRQ 4294967293 I/O Port 0x000003B0-0x000003BB I/O Port 0x000003C0-0x000003DF Memory Address 0xA0000-0xBFFFF Driver c:\windows\system32\drivers\atikmpag.sys (8.14.1.6340, 604.00 KB (618,496 bytes), 30/08/2013 23:32) [Infrared] Item Value [Input] [Keyboard] Item Value Description Standard PS/2 Keyboard Name Enhanced (101- or 102-key) Layout 00000809 PNP Device ID ACPI\PNP0303\4&34575EFB&0 Number of Function Keys 12 I/O Port 0x00000060-0x00000060 I/O Port 0x00000064-0x00000064 IRQ Channel IRQ 1 Driver c:\windows\system32\drivers\i8042prt.sys (6.1.7600.16385, 103.00 KB (105,472 bytes), 14/07/2009 00:19) [Pointing Device] Item Value Hardware Type USB Input Device Number of Buttons 0 Status OK PNP Device ID USB\VID_1EA7&PID_0011&MI_00\6&10AA4B91&0&0000 Power Management Supported No Double Click Threshold Not Available Handedness Not Available Driver c:\windows\system32\drivers\hidusb.sys (6.1.7601.17514, 29.50 KB (30,208 bytes), 21/11/2010 03:23) [Modem] Item Value [Network] [Adapter] Item Value Name [00000000] WAN Miniport (SSTP) Adapter Type Not Available Product Type WAN Miniport (SSTP) Installed Yes PNP Device ID ROOT\MS_SSTPMINIPORT\0000 Last Reset 12/04/2014 12:04 Index 0 Service Name RasSstp IP Address Not Available IP Subnet Not Available Default IP Gateway Not Available DHCP Enabled No DHCP Server Not Available DHCP Lease Expires Not Available DHCP Lease Obtained Not Available MAC Address Not Available Driver c:\windows\system32\drivers\rassstp.sys (6.1.7600.16385, 82.00 KB (83,968 bytes), 14/07/2009 01:10) Name [00000001] WAN Miniport (IKEv2) Adapter Type Not Available Product Type WAN Miniport (IKEv2) Installed Yes PNP Device ID ROOT\MS_AGILEVPNMINIPORT\0000 Last Reset 12/04/2014 12:04 Index 1 Service Name RasAgileVpn IP Address Not Available IP Subnet Not Available Default IP Gateway Not Available DHCP Enabled No DHCP Server Not Available DHCP Lease Expires Not Available DHCP Lease Obtained Not Available MAC Address Not Available Driver c:\windows\system32\drivers\agilevpn.sys (6.1.7600.16385, 59.00 KB (60,416 bytes), 14/07/2009 01:10) Name [00000002] WAN Miniport (L2TP) Adapter Type Not Available Product Type WAN Miniport (L2TP) Installed Yes PNP Device ID ROOT\MS_L2TPMINIPORT\0000 Last Reset 12/04/2014 12:04 Index 2 Service Name Rasl2tp IP Address Not Available IP Subnet Not Available Default IP Gateway Not Available DHCP Enabled No DHCP Server Not Available DHCP Lease Expires Not Available DHCP Lease Obtained Not Available MAC Address Not Available Driver c:\windows\system32\drivers\rasl2tp.sys (6.1.7601.17514, 126.50 KB (129,536 bytes), 21/11/2010 03:24) Name [00000003] WAN Miniport (PPTP) Adapter Type Not Available Product Type WAN Miniport (PPTP) Installed Yes PNP Device ID ROOT\MS_PPTPMINIPORT\0000 Last Reset 12/04/2014 12:04 Index 3 Service Name PptpMiniport IP Address Not Available IP Subnet Not Available Default IP Gateway Not Available DHCP Enabled No DHCP Server Not Available DHCP Lease Expires Not Available DHCP Lease Obtained Not Available MAC Address Not Available Driver c:\windows\system32\drivers\raspptp.sys (6.1.7601.17514, 108.50 KB (111,104 bytes), 21/11/2010 03:24) Name [00000004] WAN Miniport (PPPOE) Adapter Type Not Available Product Type WAN Miniport (PPPOE) Installed Yes PNP Device ID ROOT\MS_PPPOEMINIPORT\0000 Last Reset 12/04/2014 12:04 Index 4 Service Name RasPppoe IP Address Not Available IP Subnet Not Available Default IP Gateway Not Available DHCP Enabled No DHCP Server Not Available DHCP Lease Expires Not Available DHCP Lease Obtained Not Available MAC Address Not Available Driver c:\windows\system32\drivers\raspppoe.sys (6.1.7600.16385, 90.50 KB (92,672 bytes), 14/07/2009 01:10) Name [00000005] WAN Miniport (IPv6) Adapter Type Not Available Product Type WAN Miniport (IPv6) Installed Yes PNP Device ID ROOT\MS_NDISWANIPV6\0000 Last Reset 12/04/2014 12:04 Index 5 Service Name NdisWan IP Address Not Available IP Subnet Not Available Default IP Gateway Not Available DHCP Enabled No DHCP Server Not Available DHCP Lease Expires Not Available DHCP Lease Obtained Not Available MAC Address Not Available Driver c:\windows\system32\drivers\ndiswan.sys (6.1.7601.17514, 160.50 KB (164,352 bytes), 21/11/2010 03:24) Name [00000006] WAN Miniport (Network Monitor) Adapter Type Not Available Product Type WAN Miniport (Network Monitor) Installed Yes PNP Device ID ROOT\MS_NDISWANBH\0000 Last Reset 12/04/2014 12:04 Index 6 Service Name NdisWan IP Address Not Available IP Subnet Not Available Default IP Gateway Not Available DHCP Enabled No DHCP Server Not Available DHCP Lease Expires Not Available DHCP Lease Obtained Not Available MAC Address Not Available Driver c:\windows\system32\drivers\ndiswan.sys (6.1.7601.17514, 160.50 KB (164,352 bytes), 21/11/2010 03:24) Name [00000007] Realtek PCIe GBE Family Controller Adapter Type Ethernet 802.3 Product Type Realtek PCIe GBE Family Controller Installed Yes PNP Device ID PCI\VEN_10EC&DEV_8168&SUBSYS_E0001458&REV_06\4&E66084D&0&00E2 Last Reset 12/04/2014 12:04 Index 7 Service Name RTL8167 IP Address 192.168.1.67, fe80::6d1d:d7ae:477f:d51b IP Subnet 255.255.255.0, 64 Default IP Gateway 192.168.1.254 DHCP Enabled Yes DHCP Server 192.168.1.254 DHCP Lease Expires 13/04/2014 12:04 DHCP Lease Obtained 12/04/2014 12:04 MAC Address 94:DE:80:B4:B7:8B I/O Port 0x0000D000-0x0000D0FF Memory Address 0xD0804000-0xD0804FFF Memory Address 0xD0800000-0xD0803FFF IRQ Channel IRQ 4294967290 Driver c:\windows\system32\drivers\rt64win7.sys (7.65.1025.2012, 751.14 KB (769,168 bytes), 05/09/2013 16:38) Name [00000008] WAN Miniport (IP) Adapter Type Not Available Product Type WAN Miniport (IP) Installed Yes PNP Device ID ROOT\MS_NDISWANIP\0000 Last Reset 12/04/2014 12:04 Index 8 Service Name NdisWan IP Address Not Available IP Subnet Not Available Default IP Gateway Not Available DHCP Enabled No DHCP Server Not Available DHCP Lease Expires Not Available DHCP Lease Obtained Not Available MAC Address Not Available Driver c:\windows\system32\drivers\ndiswan.sys (6.1.7601.17514, 160.50 KB (164,352 bytes), 21/11/2010 03:24) Name [00000009] Microsoft ISATAP Adapter Adapter Type Tunnel Product Type Microsoft ISATAP Adapter Installed Yes PNP Device ID ROOT\*ISATAP\0000 Last Reset 12/04/2014 12:04 Index 9 Service Name tunnel IP Address Not Available IP Subnet Not Available Default IP Gateway Not Available DHCP Enabled No DHCP Server Not Available DHCP Lease Expires Not Available DHCP Lease Obtained Not Available MAC Address Not Available Driver c:\windows\system32\drivers\tunnel.sys (6.1.7601.17514, 122.50 KB (125,440 bytes), 21/11/2010 03:24) Name [00000010] RAS Async Adapter Adapter Type Wide Area Network (WAN) Product Type RAS Async Adapter Installed Yes PNP Device ID SW\{EEAB7790-C514-11D1-B42B-00805FC1270E}\ASYNCMAC Last Reset 12/04/2014 12:04 Index 10 Service Name AsyncMac IP Address Not Available IP Subnet Not Available Default IP Gateway Not Available DHCP Enabled No DHCP Server Not Available DHCP Lease Expires Not Available DHCP Lease Obtained Not Available MAC Address 20:41:53:59:4E:FF Driver c:\windows\system32\drivers\asyncmac.sys (6.1.7600.16385, 22.50 KB (23,040 bytes), 14/07/2009 01:10) Name [00000011] Microsoft Teredo Tunneling Adapter Adapter Type Tunnel Product Type Microsoft Teredo Tunneling Adapter Installed Yes PNP Device ID ROOT\*TEREDO\0000 Last Reset 12/04/2014 12:04 Index 11 Service Name tunnel IP Address Not Available IP Subnet Not Available Default IP Gateway Not Available DHCP Enabled No DHCP Server Not Available DHCP Lease Expires Not Available DHCP Lease Obtained Not Available MAC Address Not Available Driver c:\windows\system32\drivers\tunnel.sys (6.1.7601.17514, 122.50 KB (125,440 bytes), 21/11/2010 03:24) [Protocol] Item Value Name MSAFD Tcpip [TCP/IP] Connectionless Service No Guarantees Delivery Yes Guarantees Sequencing Yes Maximum Address Size 16 bytes Maximum Message Size 0 bytes Message Oriented No Minimum Address Size 16 bytes Pseudo Stream Oriented No Supports Broadcasting No Supports Connect Data No Supports Disconnect Data No Supports Encryption No Supports Expedited Data Yes Supports Graceful Closing Yes Supports Guaranteed Bandwidth No Supports Multicasting No Name MSAFD Tcpip [UDP/IP] Connectionless Service Yes Guarantees Delivery No Guarantees Sequencing No Maximum Address Size 16 bytes Maximum Message Size 63.99 KB (65,527 bytes) Message Oriented Yes Minimum Address Size 16 bytes Pseudo Stream Oriented No Supports Broadcasting Yes Supports Connect Data No Supports Disconnect Data No Supports Encryption No Supports Expedited Data No Supports Graceful Closing No Supports Guaranteed Bandwidth No Supports Multicasting Yes Name MSAFD Tcpip [TCP/IPv6] Connectionless Service No Guarantees Delivery Yes Guarantees Sequencing Yes Maximum Address Size 28 bytes Maximum Message Size 0 bytes Message Oriented No Minimum Address Size 28 bytes Pseudo Stream Oriented No Supports Broadcasting No Supports Connect Data No Supports Disconnect Data No Supports Encryption No Supports Expedited Data Yes Supports Graceful Closing Yes Supports Guaranteed Bandwidth No Supports Multicasting No Name MSAFD Tcpip [UDP/IPv6] Connectionless Service Yes Guarantees Delivery No Guarantees Sequencing No Maximum Address Size 28 bytes Maximum Message Size 63.99 KB (65,527 bytes) Message Oriented Yes Minimum Address Size 28 bytes Pseudo Stream Oriented No Supports Broadcasting Yes Supports Connect Data No Supports Disconnect Data No Supports Encryption No Supports Expedited Data No Supports Graceful Closing No Supports Guaranteed Bandwidth No Supports Multicasting Yes Name RSVP TCPv6 Service Provider Connectionless Service No Guarantees Delivery Yes Guarantees Sequencing Yes Maximum Address Size 28 bytes Maximum Message Size 0 bytes Message Oriented No Minimum Address Size 28 bytes Pseudo Stream Oriented No Supports Broadcasting No Supports Connect Data No Supports Disconnect Data No Supports Encryption Yes Supports Expedited Data Yes Supports Graceful Closing Yes Supports Guaranteed Bandwidth No Supports Multicasting No Name RSVP TCP Service Provider Connectionless Service No Guarantees Delivery Yes Guarantees Sequencing Yes Maximum Address Size 16 bytes Maximum Message Size 0 bytes Message Oriented No Minimum Address Size 16 bytes Pseudo Stream Oriented No Supports Broadcasting No Supports Connect Data No Supports Disconnect Data No Supports Encryption Yes Supports Expedited Data Yes Supports Graceful Closing Yes Supports Guaranteed Bandwidth No Supports Multicasting No Name RSVP UDPv6 Service Provider Connectionless Service Yes Guarantees Delivery No Guarantees Sequencing No Maximum Address Size 28 bytes Maximum Message Size 63.99 KB (65,527 bytes) Message Oriented Yes Minimum Address Size 28 bytes Pseudo Stream Oriented No Supports Broadcasting Yes Supports Connect Data No Supports Disconnect Data No Supports Encryption Yes Supports Expedited Data No Supports Graceful Closing No Supports Guaranteed Bandwidth No Supports Multicasting Yes Name RSVP UDP Service Provider Connectionless Service Yes Guarantees Delivery No Guarantees Sequencing No Maximum Address Size 16 bytes Maximum Message Size 63.99 KB (65,527 bytes) Message Oriented Yes Minimum Address Size 16 bytes Pseudo Stream Oriented No Supports Broadcasting Yes Supports Connect Data No Supports Disconnect Data No Supports Encryption Yes Supports Expedited Data No Supports Graceful Closing No Supports Guaranteed Bandwidth No Supports Multicasting Yes [WinSock] Item Value File c:\windows\syswow64\wsock32.dll Size 15.00 KB (15,360 bytes) Version 6.1.7600.16385 File c:\windows\system32\wsock32.dll Size 18.00 KB (18,432 bytes) Version 6.1.7600.16385 [Ports] [Serial] Item Value Name Communications Port (COM1) Status OK PNP Device ID ACPI\PNP0501\1 Maximum Input Buffer Size 0 Maximum Output Buffer Size No Settable Baud Rate Yes Settable Data Bits Yes Settable Flow Control Yes Settable Parity Yes Settable Parity Check Yes Settable Stop Bits Yes Settable RLSD Yes Supports RLSD Yes Supports 16 Bit Mode No Supports Special Characters No Baud Rate 9600 Bits/Byte 8 Stop Bits 1 Parity None Busy No Abort Read/Write on Error No Binary Mode Enabled Yes Continue XMit on XOff No CTS Outflow Control No Discard NULL Bytes No DSR Outflow Control 0 DSR Sensitivity 0 DTR Flow Control Type Enable EOF Character 0 Error Replace Character 0 Error Replacement Enabled No Event Character 0 Parity Check Enabled No RTS Flow Control Type Enable XOff Character 19 XOffXMit Threshold 512 XOn Character 17 XOnXMit Threshold 2048 XOnXOff InFlow Control 0 XOnXOff OutFlow Control 0 I/O Port 0x000003F8-0x000003FF IRQ Channel IRQ 4 Driver c:\windows\system32\drivers\serial.sys (6.1.7600.16385, 92.00 KB (94,208 bytes), 14/07/2009 01:00) [Parallel] Item Value Name LPT1 PNP Device ID ACPI\PNP0400\4&34575EFB&0 I/O Port 0x00000378-0x0000037F Driver c:\windows\system32\drivers\parport.sys (6.1.7600.16385, 95.00 KB (97,280 bytes), 14/07/2009 01:00) [Storage] [Drives] Item Value Drive C: Description Local Fixed Disk Compressed No File System NTFS Size 119.14 GB (127,928,365,056 bytes) Free Space 73.17 GB (78,568,837,120 bytes) Volume Name SSD Volume Serial Number 3CD45F0C Drive D: Description Local Fixed Disk Compressed No File System NTFS Size 931.39 GB (1,000,068,870,144 bytes) Free Space 918.54 GB (986,270,126,080 bytes) Volume Name HD Volume Serial Number 967CACFF Drive E: Description CD-ROM Disc Drive F: Description Removable Disk [Disks] Item Value Description Disk drive Manufacturer (Standard disk drives) Model ATA SanDisk SDSSDP12 SCSI Disk Device Bytes/Sector 512 Media Loaded Yes Media Type Fixed hard disk Partitions 2 SCSI Bus 3 SCSI Logical Unit 0 SCSI Port 0 SCSI Target ID 0 Sectors/Track 63 Size 119.24 GB (128,034,708,480 bytes) Total Cylinders 15,566 Total Sectors 250,067,790 Total Tracks 3,969,330 Tracks/Cylinder 255 Partition Disk #0, Partition #0 Partition Size 100.00 MB (104,857,600 bytes) Partition Starting Offset 1,048,576 bytes Partition Disk #0, Partition #1 Partition Size 119.14 GB (127,928,369,152 bytes) Partition Starting Offset 105,906,176 bytes Description Disk drive Manufacturer (Standard disk drives) Model ATA ST1000DM003-1CH1 SCSI Disk Device Bytes/Sector 512 Media Loaded Yes Media Type Fixed hard disk Partitions 1 SCSI Bus 5 SCSI Logical Unit 0 SCSI Port 0 SCSI Target ID 0 Sectors/Track 63 Size 931.51 GB (1,000,202,273,280 bytes) Total Cylinders 121,601 Total Sectors 1,953,520,065 Total Tracks 31,008,255 Tracks/Cylinder 255 Partition Disk #1, Partition #0 Partition Size 931.39 GB (1,000,068,874,240 bytes) Partition Starting Offset 135,266,304 bytes Description Disk drive Manufacturer (Standard disk drives) Model Multiple Card Reader USB Device Bytes/Sector Not Available Media Loaded Yes Media Type Not Available Partitions 0 SCSI Bus Not Available SCSI Logical Unit Not Available SCSI Port Not Available SCSI Target ID Not Available Sectors/Track Not Available Size Not Available Total Cylinders Not Available Total Sectors Not Available Total Tracks Not Available Tracks/Cylinder Not Available [SCSI] Item Value [IDE] Item Value Name Intel(R) 8 Series/C220 Chipset Family SATA AHCI Controller Manufacturer Intel Corporation Status OK PNP Device ID PCI\VEN_8086&DEV_8C02&SUBSYS_B0051458&REV_04\3&11583659&0&FA I/O Port 0x0000F0B0-0x0000F0B7 I/O Port 0x0000F0A0-0x0000F0A3 I/O Port 0x0000F090-0x0000F097 I/O Port 0x0000F080-0x0000F083 I/O Port 0x0000F060-0x0000F07F Memory Address 0xD091A000-0xD091A7FF IRQ Channel IRQ 4294967294 Driver c:\windows\system32\drivers\iastora.sys (12.0.0.1082, 637.48 KB (652,784 bytes), 31/01/2013 14:20) [Printing] Name Driver Port Name Server Name Samsung CLP-510 Series Samsung CLP-510 Series USB001 Not Available Microsoft XPS Document Writer Microsoft XPS Document Writer XPSPort: Not Available Fax Microsoft Shared Fax Driver SHRFAX: Not Available [Problem Devices] Device PNP Device ID Error Code [USB] Device PNP Device ID Intel(R) 8 Series/C220 Series USB EHCI #1 - 8C26 PCI\VEN_8086&DEV_8C26&SUBSYS_50061458&REV_04\3&11583659&0&E8 Intel(R) 8 Series/C220 Series USB EHCI #2 - 8C2D PCI\VEN_8086&DEV_8C2D&SUBSYS_50061458&REV_04\3&11583659&0&D0 Intel(R) USB 3.0 eXtensible Host Controller PCI\VEN_8086&DEV_8C31&SUBSYS_50071458&REV_04\3&11583659&0&A0 [Software Environment] [System Drivers] Name Description File Type Started Start Mode State Status Error Control Accept Pause Accept Stop 1394ohci 1394 OHCI Compliant Host Controller c:\windows\system32\drivers\1394ohci.sys Kernel Driver No Manual Stopped OK Normal No No acpi Microsoft ACPI Driver c:\windows\system32\drivers\acpi.sys Kernel Driver Yes Boot Running OK Critical No Yes acpipmi ACPI Power Meter Driver c:\windows\system32\drivers\acpipmi.sys Kernel Driver No Manual Stopped OK Normal No No adp94xx adp94xx c:\windows\system32\drivers\adp94xx.sys Kernel Driver No Manual Stopped OK Normal No No adpahci adpahci c:\windows\system32\drivers\adpahci.sys Kernel Driver No Manual Stopped OK Normal No No adpu320 adpu320 c:\windows\system32\drivers\adpu320.sys Kernel Driver No Manual Stopped OK Normal No No afd Ancillary Function Driver for Winsock c:\windows\system32\drivers\afd.sys Kernel Driver Yes System Running OK Normal No Yes agp440 Intel AGP Bus Filter c:\windows\system32\drivers\agp440.sys Kernel Driver No Manual Stopped OK Normal No No aliide aliide c:\windows\system32\drivers\aliide.sys Kernel Driver No Manual Stopped OK Critical No No amdide amdide c:\windows\system32\drivers\amdide.sys Kernel Driver No Manual Stopped OK Critical No No amdk8 AMD K8 Processor Driver c:\windows\system32\drivers\amdk8.sys Kernel Driver No Manual Stopped OK Normal No No amdkmdag amdkmdag c:\windows\system32\drivers\atikmdag.sys Kernel Driver Yes Manual Running OK Ignore No Yes amdkmdap amdkmdap c:\windows\system32\drivers\atikmpag.sys Kernel Driver Yes Manual Running OK Ignore No Yes amdppm AMD Processor Driver c:\windows\system32\drivers\amdppm.sys Kernel Driver No Manual Stopped OK Normal No No amdsata amdsata c:\windows\system32\drivers\amdsata.sys Kernel Driver No Manual Stopped OK Normal No No amdsbs amdsbs c:\windows\system32\drivers\amdsbs.sys Kernel Driver No Manual Stopped OK Normal No No amdxata amdxata c:\windows\system32\drivers\amdxata.sys Kernel Driver Yes Boot Running OK Normal No Yes appid AppID Driver c:\windows\system32\drivers\appid.sys Kernel Driver No Manual Stopped OK Normal No No applecharger AppleCharger c:\windows\system32\drivers\applecharger.sys Kernel Driver Yes System Running OK Normal No Yes arc arc c:\windows\system32\drivers\arc.sys Kernel Driver No Manual Stopped OK Normal No No arcsas arcsas c:\windows\system32\drivers\arcsas.sys Kernel Driver No Manual Stopped OK Normal No No aswfsblk aswFsBlk c:\windows\system32\drivers\aswfsblk.sys File System Driver Yes Auto Running OK Normal No Yes aswmonflt aswMonFlt \??\c:\windows\system32\drivers\aswmonflt.sys File System Driver Yes Auto Running OK Normal No Yes aswrdr aswRdr c:\windows\system32\drivers\aswrdr2.sys Kernel Driver Yes System Running OK Normal No Yes aswrvrt aswRvrt c:\windows\system32\drivers\aswrvrt.sys Kernel Driver Yes Boot Running OK Normal No Yes aswsnx aswSnx c:\windows\system32\drivers\aswsnx.sys File System Driver Yes System Running OK Normal No Yes aswsp aswSP c:\windows\system32\drivers\aswsp.sys Kernel Driver Yes System Running OK Normal No Yes aswtdi avast! Network Shield Support c:\windows\system32\drivers\aswtdi.sys Kernel Driver Yes System Running OK Normal No Yes aswvmm aswVmm c:\windows\system32\drivers\aswvmm.sys Kernel Driver Yes Boot Running OK Normal No Yes asyncmac RAS Asynchronous Media Driver c:\windows\system32\drivers\asyncmac.sys Kernel Driver Yes Manual Running OK Normal No Yes atapi IDE Channel c:\windows\system32\drivers\atapi.sys Kernel Driver Yes Boot Running OK Critical No Yes atihdaudioservice AMD Function Driver for HD Audio Service c:\windows\system32\drivers\atihdw76.sys Kernel Driver Yes Manual Running OK Normal No Yes b06bdrv Broadcom NetXtreme II VBD c:\windows\system32\drivers\bxvbda.sys Kernel Driver No Manual Stopped OK Normal No No b57nd60a Broadcom NetXtreme Gigabit Ethernet - NDIS 6.0 c:\windows\system32\drivers\b57nd60a.sys Kernel Driver No Manual Stopped OK Normal No No beep Beep c:\windows\system32\drivers\beep.sys Kernel Driver Yes System Running OK Normal No Yes blbdrive blbdrive c:\windows\system32\drivers\blbdrive.sys Kernel Driver Yes System Running OK Normal No Yes bowser Browser Support Driver c:\windows\system32\drivers\bowser.sys File System Driver Yes Manual Running OK Normal No Yes brfiltlo Brother USB Mass-Storage Lower Filter Driver c:\windows\system32\drivers\brfiltlo.sys Kernel Driver No Manual Stopped OK Normal No No brfiltup Brother USB Mass-Storage Upper Filter Driver c:\windows\system32\drivers\brfiltup.sys Kernel Driver No Manual Stopped OK Normal No No brserid Brother MFC Serial Port Interface Driver (WDM) c:\windows\system32\drivers\brserid.sys Kernel Driver No Manual Stopped OK Normal No No brserwdm Brother WDM Serial driver c:\windows\system32\drivers\brserwdm.sys Kernel Driver No Manual Stopped OK Normal No No brusbmdm Brother MFC USB Fax Only Modem c:\windows\system32\drivers\brusbmdm.sys Kernel Driver No Manual Stopped OK Normal No No brusbser Brother MFC USB Serial WDM Driver c:\windows\system32\drivers\brusbser.sys Kernel Driver No Manual Stopped OK Normal No No bthmodem Bluetooth Serial Communications Driver c:\windows\system32\drivers\bthmodem.sys Kernel Driver No Manual Stopped OK Normal No No cdfs CD/DVD File System Reader c:\windows\system32\drivers\cdfs.sys File System Driver No Disabled Stopped OK Normal No No cdrom CD-ROM Driver c:\windows\system32\drivers\cdrom.sys Kernel Driver Yes System Running OK Normal No Yes circlass Consumer IR Devices c:\windows\system32\drivers\circlass.sys Kernel Driver No Manual Stopped OK Normal No No clfs Common Log (CLFS) c:\windows\system32\clfs.sys Kernel Driver Yes Boot Running OK Critical No Yes cmbatt Microsoft ACPI Control Method Battery Driver c:\windows\system32\drivers\cmbatt.sys Kernel Driver No Manual Stopped OK Normal No No cmdide cmdide c:\windows\system32\drivers\cmdide.sys Kernel Driver No Manual Stopped OK Critical No No cng CNG c:\windows\system32\drivers\cng.sys Kernel Driver Yes Boot Running OK Critical No Yes compbatt Compbatt c:\windows\system32\drivers\compbatt.sys Kernel Driver No Manual Stopped OK Critical No No compositebus Composite Bus Enumerator Driver c:\windows\system32\drivers\compositebus.sys Kernel Driver Yes Manual Running OK Normal No Yes crcdisk Crcdisk Filter Driver c:\windows\system32\drivers\crcdisk.sys Kernel Driver No Disabled Stopped OK Normal No No csc Offline Files Driver c:\windows\system32\drivers\csc.sys Kernel Driver Yes System Running OK Normal No Yes dfsc DFS Namespace Client Driver c:\windows\system32\drivers\dfsc.sys File System Driver Yes System Running OK Normal No Yes discache System Attribute Cache c:\windows\system32\drivers\discache.sys Kernel Driver Yes System Running OK Normal No Yes disk Disk Driver c:\windows\system32\drivers\disk.sys Kernel Driver Yes Boot Running OK Normal No Yes dmvsc dmvsc c:\windows\system32\drivers\dmvsc.sys Kernel Driver No Manual Stopped OK Ignore No No drmkaud Microsoft Trusted Audio Drivers c:\windows\system32\drivers\drmkaud.sys Kernel Driver No Manual Stopped OK Normal No No dxgkrnl LDDM Graphics Subsystem c:\windows\system32\drivers\dxgkrnl.sys Kernel Driver Yes Manual Running OK Ignore No Yes ebdrv Broadcom NetXtreme II 10 GigE VBD c:\windows\system32\drivers\evbda.sys Kernel Driver No Manual Stopped OK Normal No No elxstor elxstor c:\windows\system32\drivers\elxstor.sys Kernel Driver No Manual Stopped OK Normal No No errdev Microsoft Hardware Error Device Driver c:\windows\system32\drivers\errdev.sys Kernel Driver No Manual Stopped OK Normal No No exfat exFAT File System Driver c:\windows\system32\drivers\exfat.sys File System Driver No Manual Stopped OK Normal No No fastfat FAT12/16/32 File System Driver c:\windows\system32\drivers\fastfat.sys File System Driver No Manual Stopped OK Normal No No fdc Floppy Disk Controller Driver c:\windows\system32\drivers\fdc.sys Kernel Driver No Manual Stopped OK Normal No No fileinfo File Information FS MiniFilter c:\windows\system32\drivers\fileinfo.sys File System Driver Yes Boot Running OK Normal No Yes filetrace Filetrace c:\windows\system32\drivers\filetrace.sys File System Driver No Manual Stopped OK Normal No No flpydisk Floppy Disk Driver c:\windows\system32\drivers\flpydisk.sys Kernel Driver No Manual Stopped OK Normal No No fltmgr FltMgr c:\windows\system32\drivers\fltmgr.sys File System Driver Yes Boot Running OK Critical No Yes fsdepends File System Dependency Minifilter c:\windows\system32\drivers\fsdepends.sys File System Driver No Manual Stopped OK Critical No No fvevol Bitlocker Drive Encryption Filter Driver c:\windows\system32\drivers\fvevol.sys Kernel Driver Yes Boot Running OK Critical No Yes gagp30kx Microsoft Generic AGPv3.0 Filter for K8 Processor Platforms c:\windows\system32\drivers\gagp30kx.sys Kernel Driver No Manual Stopped OK Normal No No hcw85cir Hauppauge Consumer Infrared Receiver c:\windows\system32\drivers\hcw85cir.sys Kernel Driver No Manual Stopped OK Normal No No hdaudaddservice Microsoft 1.1 UAA Function Driver for High Definition Audio Service c:\windows\system32\drivers\hdaudio.sys Kernel Driver No Manual Stopped OK Normal No No hdaudbus Microsoft UAA Bus Driver for High Definition Audio c:\windows\system32\drivers\hdaudbus.sys Kernel Driver Yes Manual Running OK Normal No Yes hidbatt HID UPS Battery Driver c:\windows\system32\drivers\hidbatt.sys Kernel Driver No Manual Stopped OK Normal No No hidbth Microsoft Bluetooth HID Miniport c:\windows\system32\drivers\hidbth.sys Kernel Driver No Manual Stopped OK Ignore No No hidir Microsoft Infrared HID Driver c:\windows\system32\drivers\hidir.sys Kernel Driver No Manual Stopped OK Ignore No No hidusb Microsoft HID Class Driver c:\windows\system32\drivers\hidusb.sys Kernel Driver Yes Manual Running OK Ignore No Yes hpsamd HpSAMD c:\windows\system32\drivers\hpsamd.sys Kernel Driver No Manual Stopped OK Normal No No http HTTP c:\windows\system32\drivers\http.sys Kernel Driver Yes Manual Running OK Normal No Yes hwpolicy Hardware Policy Driver c:\windows\system32\drivers\hwpolicy.sys Kernel Driver Yes Boot Running OK Normal No Yes i8042prt i8042 Keyboard and PS/2 Mouse Port Driver c:\windows\system32\drivers\i8042prt.sys Kernel Driver Yes Manual Running OK Normal No Yes iastora iaStorA c:\windows\system32\drivers\iastora.sys Kernel Driver Yes Boot Running OK Normal No Yes iastorf iaStorF c:\windows\system32\drivers\iastorf.sys Kernel Driver Yes Boot Running OK Normal No Yes iastorv Intel RAID Controller Windows 7 c:\windows\system32\drivers\iastorv.sys Kernel Driver No Manual Stopped OK Normal No No igfx IGFX c:\windows\system32\drivers\igdkmd64.sys Kernel Driver Yes Manual Running OK Ignore No Yes iirsp iirsp c:\windows\system32\drivers\iirsp.sys Kernel Driver No Manual Stopped OK Normal No No intcazaudaddservice Service for Realtek HD Audio (WDM) c:\windows\system32\drivers\rtkvhd64.sys Kernel Driver Yes Manual Running OK Normal No Yes intcdaud Intel(R) Display Audio c:\windows\system32\drivers\intcdaud.sys Kernel Driver Yes Manual Running OK Normal No Yes intelide intelide c:\windows\system32\drivers\intelide.sys Kernel Driver No Manual Stopped OK Critical No No intelppm Intel Processor Driver c:\windows\system32\drivers\intelppm.sys Kernel Driver Yes Manual Running OK Normal No Yes ipfilterdriver IP Traffic Filter Driver c:\windows\system32\drivers\ipfltdrv.sys Kernel Driver No Manual Stopped OK Normal No No ipmidrv IPMIDRV c:\windows\system32\drivers\ipmidrv.sys Kernel Driver No Manual Stopped OK Normal No No ipnat IP Network Address Translator c:\windows\system32\drivers\ipnat.sys Kernel Driver No Manual Stopped OK Normal No No irenum IR Bus Enumerator c:\windows\system32\drivers\irenum.sys Kernel Driver No Manual Stopped OK Ignore No No isapnp isapnp c:\windows\system32\drivers\isapnp.sys Kernel Driver No Manual Stopped OK Critical No No iscsiprt iScsiPort Driver c:\windows\system32\drivers\msiscsi.sys Kernel Driver No Manual Stopped OK Normal No No iusb3hcs Intel(R) USB 3.0 Host Controller Switch Driver c:\windows\system32\drivers\iusb3hcs.sys Kernel Driver Yes Boot Running OK Normal No Yes iusb3hub Intel(R) USB 3.0 Hub Driver c:\windows\system32\drivers\iusb3hub.sys Kernel Driver Yes Manual Running OK Normal No Yes iusb3xhc Intel(R) USB 3.0 eXtensible Host Controller Driver c:\windows\system32\drivers\iusb3xhc.sys Kernel Driver Yes Manual Running OK Normal No Yes kbdclass Keyboard Class Driver c:\windows\system32\drivers\kbdclass.sys Kernel Driver Yes Manual Running OK Normal No Yes kbdhid Keyboard HID Driver c:\windows\system32\drivers\kbdhid.sys Kernel Driver No Manual Stopped OK Ignore No No ksecdd KSecDD c:\windows\system32\drivers\ksecdd.sys Kernel Driver Yes Boot Running OK Critical No Yes ksecpkg KSecPkg c:\windows\system32\drivers\ksecpkg.sys Kernel Driver Yes Boot Running OK Critical No Yes ksthunk Kernel Streaming Thunks c:\windows\system32\drivers\ksthunk.sys Kernel Driver Yes Manual Running OK Normal No Yes lltdio Link-Layer Topology Discovery Mapper I/O Driver c:\windows\system32\drivers\lltdio.sys Kernel Driver Yes Auto Running OK Normal No Yes lsi_fc LSI_FC c:\windows\system32\drivers\lsi_fc.sys Kernel Driver No Manual Stopped OK Normal No No lsi_sas LSI_SAS c:\windows\system32\drivers\lsi_sas.sys Kernel Driver No Manual Stopped OK Normal No No lsi_sas2 LSI_SAS2 c:\windows\system32\drivers\lsi_sas2.sys Kernel Driver No Manual Stopped OK Normal No No lsi_scsi LSI_SCSI c:\windows\system32\drivers\lsi_scsi.sys Kernel Driver No Manual Stopped OK Normal No No luafv UAC File Virtualization c:\windows\system32\drivers\luafv.sys File System Driver Yes Auto Running OK Normal No Yes megasas megasas c:\windows\system32\drivers\megasas.sys Kernel Driver No Manual Stopped OK Normal No No megasr MegaSR c:\windows\system32\drivers\megasr.sys Kernel Driver No Manual Stopped OK Normal No No meix64 Intel(R) Management Engine Interface c:\windows\system32\drivers\hecix64.sys Kernel Driver Yes Manual Running OK Normal No Yes modem Modem c:\windows\system32\drivers\modem.sys Kernel Driver No Manual Stopped OK Ignore No No monitor Microsoft Monitor Class Function Driver Service c:\windows\system32\drivers\monitor.sys Kernel Driver Yes Manual Running OK Normal No Yes mouclass Mouse Class Driver c:\windows\system32\drivers\mouclass.sys Kernel Driver Yes Manual Running OK Normal No Yes mouhid Mouse HID Driver c:\windows\system32\drivers\mouhid.sys Kernel Driver Yes Manual Running OK Ignore No Yes mountmgr Mount Point Manager c:\windows\system32\drivers\mountmgr.sys Kernel Driver Yes Boot Running OK Critical No Yes mpio mpio c:\windows\system32\drivers\mpio.sys Kernel Driver No Manual Stopped OK Normal No No mpsdrv Windows Firewall Authorization Driver c:\windows\system32\drivers\mpsdrv.sys Kernel Driver Yes Manual Running OK Normal No Yes mrxdav WebDav Client Redirector Driver c:\windows\system32\drivers\mrxdav.sys File System Driver No Manual Stopped OK Normal No No mrxsmb SMB MiniRedirector Wrapper and Engine c:\windows\system32\drivers\mrxsmb.sys File System Driver Yes Manual Running OK Normal No Yes mrxsmb10 SMB 1.x MiniRedirector c:\windows\system32\drivers\mrxsmb10.sys File System Driver Yes Manual Running OK Normal No Yes mrxsmb20 SMB 2.0 MiniRedirector c:\windows\system32\drivers\mrxsmb20.sys File System Driver Yes Manual Running OK Normal No Yes msahci msahci c:\windows\system32\drivers\msahci.sys Kernel Driver Yes Boot Running OK Critical No Yes msdsm msdsm c:\windows\system32\drivers\msdsm.sys Kernel Driver No Manual Stopped OK Normal No No msfs Msfs c:\windows\system32\drivers\msfs.sys File System Driver Yes System Running OK Normal No Yes mshidkmdf Pass-through HID to KMDF Filter Driver c:\windows\system32\drivers\mshidkmdf.sys Kernel Driver No Manual Stopped OK Ignore No No msisadrv msisadrv c:\windows\system32\drivers\msisadrv.sys Kernel Driver Yes Boot Running OK Critical No Yes mskssrv Microsoft Streaming Service Proxy c:\windows\system32\drivers\mskssrv.sys Kernel Driver No Manual Stopped OK Normal No No mspclock Microsoft Streaming Clock Proxy c:\windows\system32\drivers\mspclock.sys Kernel Driver No Manual Stopped OK Normal No No mspqm Microsoft Streaming Quality Manager Proxy c:\windows\system32\drivers\mspqm.sys Kernel Driver No Manual Stopped OK Normal No No msrpc MsRPC c:\windows\system32\drivers\msrpc.sys Kernel Driver No Manual Stopped OK Normal No No mssmbios Microsoft System Management BIOS Driver c:\windows\system32\drivers\mssmbios.sys Kernel Driver Yes System Running OK Normal No Yes mstee Microsoft Streaming Tee/Sink-to-Sink Converter c:\windows\system32\drivers\mstee.sys Kernel Driver No Manual Stopped OK Normal No No mtconfig Microsoft Input Configuration Driver c:\windows\system32\drivers\mtconfig.sys Kernel Driver No Manual Stopped OK Normal No No mup Mup c:\windows\system32\drivers\mup.sys File System Driver Yes Boot Running OK Normal No Yes nativewifip NativeWiFi Filter c:\windows\system32\drivers\nwifi.sys Kernel Driver No Manual Stopped OK Normal No No ndis NDIS System Driver c:\windows\system32\drivers\ndis.sys Kernel Driver Yes Boot Running OK Critical No Yes ndiscap NDIS Capture LightWeight Filter c:\windows\system32\drivers\ndiscap.sys Kernel Driver No Manual Stopped OK Normal No No ndistapi Remote Access NDIS TAPI Driver c:\windows\system32\drivers\ndistapi.sys Kernel Driver Yes Manual Running OK Normal No Yes ndisuio NDIS Usermode I/O Protocol c:\windows\system32\drivers\ndisuio.sys Kernel Driver No Manual Stopped OK Normal No No ndiswan Remote Access NDIS WAN Driver c:\windows\system32\drivers\ndiswan.sys Kernel Driver Yes Manual Running OK Normal No Yes ndproxy NDIS Proxy c:\windows\system32\drivers\ndproxy.sys Kernel Driver Yes Manual Running OK Normal No Yes netbios NetBIOS Interface c:\windows\system32\drivers\netbios.sys File System Driver Yes System Running OK Normal No Yes netbt NetBT c:\windows\system32\drivers\netbt.sys Kernel Driver Yes System Running OK Normal No Yes nfrd960 nfrd960 c:\windows\system32\drivers\nfrd960.sys Kernel Driver No Manual Stopped OK Normal No No npfs Npfs c:\windows\system32\drivers\npfs.sys File System Driver Yes System Running OK Normal No Yes nsiproxy NSI proxy service driver. c:\windows\system32\drivers\nsiproxy.sys Kernel Driver Yes System Running OK Normal No Yes ntfs Ntfs c:\windows\system32\drivers\ntfs.sys File System Driver Yes Manual Running OK Normal No Yes null Null c:\windows\system32\drivers\null.sys Kernel Driver Yes System Running OK Normal No Yes nusb3hub Renesas Electronics USB 3.0 Hub Driver c:\windows\system32\drivers\nusb3hub.sys Kernel Driver No Manual Stopped OK Normal No No nusb3xhc Renesas Electronics USB 3.0 Host Controller Driver c:\windows\system32\drivers\nusb3xhc.sys Kernel Driver No Manual Stopped OK Normal No No nvraid nvraid c:\windows\system32\drivers\nvraid.sys Kernel Driver No Manual Stopped OK Normal No No nvstor nvstor c:\windows\system32\drivers\nvstor.sys Kernel Driver No Manual Stopped OK Critical No No nv_agp NVIDIA nForce AGP Bus Filter c:\windows\system32\drivers\nv_agp.sys Kernel Driver No Manual Stopped OK Normal No No ohci1394 1394 OHCI Compliant Host Controller (Legacy) c:\windows\system32\drivers\ohci1394.sys Kernel Driver No Manual Stopped OK Normal No No parport Parallel port driver c:\windows\system32\drivers\parport.sys Kernel Driver Yes Manual Running OK Ignore No Yes partmgr Partition Manager c:\windows\system32\drivers\partmgr.sys Kernel Driver Yes Boot Running OK Critical No Yes pci PCI Bus Driver c:\windows\system32\drivers\pci.sys Kernel Driver Yes Boot Running OK Critical No Yes pciide pciide c:\windows\system32\drivers\pciide.sys Kernel Driver No Manual Stopped OK Critical No No pcmcia pcmcia c:\windows\system32\drivers\pcmcia.sys Kernel Driver No Manual Stopped OK Normal No No pcw Performance Counters for Windows Driver c:\windows\system32\drivers\pcw.sys Kernel Driver Yes Boot Running OK Normal No Yes peauth PEAUTH c:\windows\system32\drivers\peauth.sys Kernel Driver Yes Auto Running OK Normal No Yes pptpminiport WAN Miniport (PPTP) c:\windows\system32\drivers\raspptp.sys Kernel Driver Yes Manual Running OK Normal No Yes processor Processor Driver c:\windows\system32\drivers\processr.sys Kernel Driver No Manual Stopped OK Normal No No psched QoS Packet Scheduler c:\windows\system32\drivers\pacer.sys Kernel Driver Yes System Running OK Normal No Yes ql2300 ql2300 c:\windows\system32\drivers\ql2300.sys Kernel Driver No Manual Stopped OK Normal No No ql40xx ql40xx c:\windows\system32\drivers\ql40xx.sys Kernel Driver No Manual Stopped OK Normal No No qwavedrv QWAVE driver c:\windows\system32\drivers\qwavedrv.sys Kernel Driver No Manual Stopped OK Normal No No rasacd Remote Access Auto Connection Driver c:\windows\system32\drivers\rasacd.sys Kernel Driver No Manual Stopped OK Normal No No rasagilevpn WAN Miniport (IKEv2) c:\windows\system32\drivers\agilevpn.sys Kernel Driver Yes Manual Running OK Normal No Yes rasl2tp WAN Miniport (L2TP) c:\windows\system32\drivers\rasl2tp.sys Kernel Driver Yes Manual Running OK Normal No Yes raspppoe Remote Access PPPOE Driver c:\windows\system32\drivers\raspppoe.sys Kernel Driver Yes Manual Running OK Normal No Yes rassstp WAN Miniport (SSTP) c:\windows\system32\drivers\rassstp.sys Kernel Driver Yes Manual Running OK Normal No Yes rdbss Redirected Buffering Sub Sysytem c:\windows\system32\drivers\rdbss.sys File System Driver Yes System Running OK Normal No Yes rdpbus Remote Desktop Device Redirector Bus Driver c:\windows\system32\drivers\rdpbus.sys Kernel Driver Yes Manual Running OK Normal No Yes rdpcdd RDPCDD c:\windows\system32\drivers\rdpcdd.sys Kernel Driver Yes System Running OK Ignore No Yes rdpdr Terminal Server Device Redirector Driver c:\windows\system32\drivers\rdpdr.sys Kernel Driver No Manual Stopped OK Normal No No rdpencdd RDP Encoder Mirror Driver c:\windows\system32\drivers\rdpencdd.sys Kernel Driver Yes System Running OK Ignore No Yes rdprefmp Reflector Display Driver used to gain access to graphics data c:\windows\system32\drivers\rdprefmp.sys Kernel Driver Yes System Running OK Ignore No Yes rdpvideominiport Remote Desktop Video Miniport Driver c:\windows\system32\drivers\rdpvideominiport.sys Kernel Driver No Manual Stopped OK Normal No No rdpwd RDP Winstation Driver c:\windows\system32\drivers\rdpwd.sys Kernel Driver No Manual Stopped OK Ignore No No rdyboost ReadyBoost c:\windows\system32\drivers\rdyboost.sys Kernel Driver Yes Boot Running OK Critical No Yes rspndr Link-Layer Topology Discovery Responder c:\windows\system32\drivers\rspndr.sys Kernel Driver Yes Auto Running OK Normal No Yes rthdmiazaudservice Service for HDMI c:\windows\system32\drivers\rthdmivx.sys Kernel Driver No Manual Stopped OK Normal No No rtl8167 Realtek 8167 NT Driver c:\windows\system32\drivers\rt64win7.sys Kernel Driver Yes Manual Running OK Normal No Yes s3cap s3cap c:\windows\system32\drivers\vms3cap.sys Kernel Driver No Manual Stopped OK Normal No No sbp2port sbp2port c:\windows\system32\drivers\sbp2port.sys Kernel Driver No Manual Stopped OK Normal No No scfilter Smart card PnP Class Filter Driver c:\windows\system32\drivers\scfilter.sys Kernel Driver No Manual Stopped OK Normal No No secdrv Security Driver c:\windows\system32\drivers\secdrv.sys Kernel Driver Yes Auto Running OK Normal No Yes serenum Serenum Filter Driver c:\windows\system32\drivers\serenum.sys Kernel Driver Yes Manual Running OK Normal No Yes serial Serial port driver c:\windows\system32\drivers\serial.sys Kernel Driver Yes System Running OK Ignore No Yes sermouse Serial Mouse Driver c:\windows\system32\drivers\sermouse.sys Kernel Driver No Manual Stopped OK Normal No No sffdisk SFF Storage Class Driver c:\windows\system32\drivers\sffdisk.sys Kernel Driver No Manual Stopped OK Normal No No sffp_mmc SFF Storage Protocol Driver for MMC c:\windows\system32\drivers\sffp_mmc.sys Kernel Driver No Manual Stopped OK Normal No No sffp_sd SFF Storage Protocol Driver for SDBus c:\windows\system32\drivers\sffp_sd.sys Kernel Driver No Manual Stopped OK Normal No No sfloppy High-Capacity Floppy Disk Drive c:\windows\system32\drivers\sfloppy.sys Kernel Driver No Manual Stopped OK Normal No No sisraid2 SiSRaid2 c:\windows\system32\drivers\sisraid2.sys Kernel Driver No Manual Stopped OK Normal No No sisraid4 SiSRaid4 c:\windows\system32\drivers\sisraid4.sys Kernel Driver No Manual Stopped OK Normal No No smb Message-oriented TCP/IP and TCP/IPv6 Protocol (SMB session) c:\windows\system32\drivers\smb.sys Kernel Driver No Manual Stopped OK Normal No No spldr Security Processor Loader Driver c:\windows\system32\drivers\spldr.sys Kernel Driver Yes Boot Running OK Critical No Yes srv Server SMB 1.xxx Driver c:\windows\system32\drivers\srv.sys File System Driver Yes Manual Running OK Normal No Yes srv2 Server SMB 2.xxx Driver c:\windows\system32\drivers\srv2.sys File System Driver Yes Manual Running OK Normal No Yes srvnet srvnet c:\windows\system32\drivers\srvnet.sys File System Driver Yes Manual Running OK Normal No Yes stexstor stexstor c:\windows\system32\drivers\stexstor.sys Kernel Driver No Manual Stopped OK Normal No No storflt Disk Virtual Machine Bus Acceleration Filter Driver c:\windows\system32\drivers\vmstorfl.sys Kernel Driver Yes Boot Running OK Normal No Yes storvsc storvsc c:\windows\system32\drivers\storvsc.sys Kernel Driver No Manual Stopped OK Normal No No swenum Software Bus Driver c:\windows\system32\drivers\swenum.sys Kernel Driver Yes Manual Running OK Normal No Yes synth3dvsc Synth3dVsc c:\windows\system32\drivers\synth3dvsc.sys Kernel Driver No Manual Stopped OK Normal No No tcpip TCP/IP Protocol Driver c:\windows\system32\drivers\tcpip.sys Kernel Driver Yes Boot Running OK Normal No Yes tcpip6 Microsoft IPv6 Protocol Driver c:\windows\system32\drivers\tcpip.sys Kernel Driver No Manual Stopped OK Normal No No tcpipreg TCP/IP Registry Compatibility c:\windows\system32\drivers\tcpipreg.sys Kernel Driver Yes Auto Running OK Normal No Yes tdpipe TDPIPE c:\windows\system32\drivers\tdpipe.sys Kernel Driver No Manual Stopped OK Normal No No tdtcp TDTCP c:\windows\system32\drivers\tdtcp.sys Kernel Driver No Manual Stopped OK Normal No No tdx NetIO Legacy TDI Support Driver c:\windows\system32\drivers\tdx.sys Kernel Driver Yes System Running OK Normal No Yes termdd Terminal Device Driver c:\windows\system32\drivers\termdd.sys Kernel Driver Yes System Running OK Normal No Yes terminpt Microsoft Remote Desktop Input Driver c:\windows\system32\drivers\terminpt.sys Kernel Driver No Manual Stopped OK Normal No No tssecsrv Remote Desktop Services Security Filter Driver c:\windows\system32\drivers\tssecsrv.sys Kernel Driver No Manual Stopped OK Ignore No No tsusbflt TsUsbFlt c:\windows\system32\drivers\tsusbflt.sys Kernel Driver No Manual Stopped OK Normal No No tsusbgd Remote Desktop Generic USB Device c:\windows\system32\drivers\tsusbgd.sys Kernel Driver No Manual Stopped OK Normal No No tsusbhub tsusbhub c:\windows\system32\drivers\tsusbhub.sys Kernel Driver No Manual Stopped OK Normal No No tunnel Microsoft Tunnel Miniport Adapter Driver c:\windows\system32\drivers\tunnel.sys Kernel Driver Yes Manual Running OK Normal No Yes uagp35 Microsoft AGPv3.5 Filter c:\windows\system32\drivers\uagp35.sys Kernel Driver No Manual Stopped OK Normal No No udfs udfs c:\windows\system32\drivers\udfs.sys File System Driver No Disabled Stopped OK Normal No No uliagpkx Uli AGP Bus Filter c:\windows\system32\drivers\uliagpkx.sys Kernel Driver No Manual Stopped OK Normal No No umbus UMBus Enumerator Driver c:\windows\system32\drivers\umbus.sys Kernel Driver Yes Manual Running OK Normal No Yes umpass Microsoft UMPass Driver c:\windows\system32\drivers\umpass.sys Kernel Driver No Manual Stopped OK Normal No No usbaudio USB Audio Driver (WDM) c:\windows\system32\drivers\usbaudio.sys Kernel Driver Yes Manual Running OK Normal No Yes usbccgp Microsoft USB Generic Parent Driver c:\windows\system32\drivers\usbccgp.sys Kernel Driver Yes Manual Running OK Normal No Yes usbcharger UsbCharger c:\windows\system32\drivers\usbcharger.sys Kernel Driver No System Stopped OK Normal No No usbcir eHome Infrared Receiver (USBCIR) c:\windows\system32\drivers\usbcir.sys Kernel Driver No Manual Stopped OK Normal No No usbehci Microsoft USB 2.0 Enhanced Host Controller Miniport Driver c:\windows\system32\drivers\usbehci.sys Kernel Driver Yes Manual Running OK Normal No Yes usbhub Microsoft USB Standard Hub Driver c:\windows\system32\drivers\usbhub.sys Kernel Driver Yes Manual Running OK Normal No Yes usbohci Microsoft USB Open Host Controller Miniport Driver c:\windows\system32\drivers\usbohci.sys Kernel Driver No Manual Stopped OK Normal No No usbprint Microsoft USB PRINTER Class c:\windows\system32\drivers\usbprint.sys Kernel Driver No Manual Stopped OK Normal No No usbstor USB Mass Storage Driver c:\windows\system32\drivers\usbstor.sys Kernel Driver Yes Manual Running OK Normal No Yes usbuhci Microsoft USB Universal Host Controller Miniport Driver c:\windows\system32\drivers\usbuhci.sys Kernel Driver No Manual Stopped OK Normal No No usbvideo USB Video Device (WDM) c:\windows\system32\drivers\usbvideo.sys Kernel Driver Yes Manual Running OK Normal No Yes vdrvroot Microsoft Virtual Drive Enumerator Driver c:\windows\system32\drivers\vdrvroot.sys Kernel Driver Yes Boot Running OK Critical No Yes vga vga c:\windows\system32\drivers\vgapnp.sys Kernel Driver No Manual Stopped OK Ignore No No vgasave VgaSave c:\windows\system32\drivers\vga.sys Kernel Driver Yes System Running OK Ignore No Yes vhdmp vhdmp c:\windows\system32\drivers\vhdmp.sys Kernel Driver No Manual Stopped OK Normal No No viaide viaide c:\windows\system32\drivers\viaide.sys Kernel Driver No Manual Stopped OK Critical No No vmbus vmbus c:\windows\system32\drivers\vmbus.sys Kernel Driver No Manual Stopped OK Normal No No vmbushid VMBusHID c:\windows\system32\drivers\vmbushid.sys Kernel Driver No Manual Stopped OK Ignore No No volmgr Volume Manager Driver c:\windows\system32\drivers\volmgr.sys Kernel Driver Yes Boot Running OK Critical No Yes volmgrx Dynamic Volume Manager c:\windows\system32\drivers\volmgrx.sys Kernel Driver Yes Boot Running OK Critical No Yes volsnap Storage volumes c:\windows\system32\drivers\volsnap.sys Kernel Driver Yes Boot Running OK Critical No Yes vsmraid vsmraid c:\windows\system32\drivers\vsmraid.sys Kernel Driver No Manual Stopped OK Normal No No vwifibus Virtual WiFi Bus Driver c:\windows\system32\drivers\vwifibus.sys Kernel Driver No Manual Stopped OK Ignore No No wacompen Wacom Serial Pen HID Driver c:\windows\system32\drivers\wacompen.sys Kernel Driver No Manual Stopped OK Normal No No wanarp Remote Access IP ARP Driver c:\windows\system32\drivers\wanarp.sys Kernel Driver No Manual Stopped OK Normal No No wanarpv6 Remote Access IPv6 ARP Driver c:\windows\system32\drivers\wanarp.sys Kernel Driver Yes System Running OK Normal No Yes wd Wd c:\windows\system32\drivers\wd.sys Kernel Driver No Manual Stopped OK Normal No No wdf01000 Kernel Mode Driver Frameworks service c:\windows\system32\drivers\wdf01000.sys Kernel Driver Yes Boot Running OK Normal No Yes wfplwf WFP Lightweight Filter c:\windows\system32\drivers\wfplwf.sys Kernel Driver Yes System Running OK Normal No Yes wimmount WIMMount c:\windows\system32\drivers\wimmount.sys File System Driver No Manual Stopped OK Normal No No wmiacpi Microsoft Windows Management Interface for ACPI c:\windows\system32\drivers\wmiacpi.sys Kernel Driver No Manual Stopped OK Normal No No ws2ifsl Winsock IFS Driver c:\windows\system32\drivers\ws2ifsl.sys Kernel Driver No Disabled Stopped OK Normal No No wudfpf User Mode Driver Frameworks Platform Driver c:\windows\system32\drivers\wudfpf.sys Kernel Driver Yes Manual Running OK Normal No Yes wudfrd WUDFRd c:\windows\system32\drivers\wudfrd.sys Kernel Driver Yes Manual Running OK Normal No Yes [Environment Variables] Variable Value User Name AMDAPPSDKROOT C:\Program Files (x86)\AMD APP\ <SYSTEM> ComSpec %SystemRoot%\system32\cmd.exe <SYSTEM> FP_NO_HOST_CHECK NO <SYSTEM> NUMBER_OF_PROCESSORS 8 <SYSTEM> OS Windows_NT <SYSTEM> Path C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\Program Files (x86)\AMD APP\bin\x86_64;C:\Program Files (x86)\AMD APP\bin\x86;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Intel\OpenCL SDK\3.0\bin\x86;C:\Program Files (x86)\Intel\OpenCL SDK\3.0\bin\x64;C:\PROJECT\php;C:\Program Files (x86)\MySQL\MySQL Utilities 1.3.4\ <SYSTEM> PATHEXT .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC <SYSTEM> PROCESSOR_ARCHITECTURE AMD64 <SYSTEM> PROCESSOR_IDENTIFIER Intel64 Family 6 Model 60 Stepping 3, GenuineIntel <SYSTEM> PROCESSOR_LEVEL 6 <SYSTEM> PROCESSOR_REVISION 3c03 <SYSTEM> PSModulePath %SystemRoot%\system32\WindowsPowerShell\v1.0\Modules\ <SYSTEM> TEMP %SystemRoot%\TEMP <SYSTEM> TMP %SystemRoot%\TEMP <SYSTEM> USERNAME SYSTEM <SYSTEM> windir %SystemRoot% <SYSTEM> windows_tracing_flags 3 <SYSTEM> windows_tracing_logfile C:\BVTBin\Tests\installpackage\csilogfile.log <SYSTEM> TEMP %USERPROFILE%\AppData\Local\Temp NT AUTHORITY\SYSTEM TMP %USERPROFILE%\AppData\Local\Temp NT AUTHORITY\SYSTEM TEMP %USERPROFILE%\AppData\Local\Temp Zenny-X11\Penny TMP %USERPROFILE%\AppData\Local\Temp Zenny-X11\Penny [Print Jobs] Document Size Owner Notify Status Time Submitted Start Time Until Time Elapsed Time Pages Printed Job ID Priority Parameters Driver Print Processor Host Print Queue Data Type Name [Network Connections] Local Name Remote Name Type Status User Name [Running Tasks] Name Path Process ID Priority Min Working Set Max Working Set Start Time Version Size File Date system idle process Not Available 0 0 Not Available Not Available Not Available Not Available Not Available Not Available system Not Available 4 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available smss.exe Not Available 452 11 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available csrss.exe Not Available 632 13 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available wininit.exe Not Available 808 13 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available csrss.exe Not Available 816 13 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available services.exe Not Available 868 9 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available lsass.exe Not Available 876 9 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available lsm.exe Not Available 884 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available svchost.exe Not Available 980 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available svchost.exe Not Available 352 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available atiesrxx.exe Not Available 492 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available winlogon.exe Not Available 712 13 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available svchost.exe Not Available 744 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available svchost.exe Not Available 500 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available svchost.exe Not Available 996 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available svchost.exe Not Available 1040 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available svchost.exe Not Available 1192 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available svchost.exe Not Available 1320 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available avastsvc.exe Not Available 1400 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available atieclxx.exe Not Available 1444 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available spoolsv.exe Not Available 1748 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available svchost.exe Not Available 1776 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available armsvc.exe Not Available 1864 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available httpd.exe Not Available 1888 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available svchost.exe Not Available 1916 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available heciserver.exe Not Available 1948 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available mysqld.exe Not Available 2024 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available smsvchost.exe Not Available 1132 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available httpd.exe Not Available 1408 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available svchost.exe Not Available 2328 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available svchost.exe Not Available 3260 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available svchost.exe Not Available 3492 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available wudfhost.exe Not Available 3520 8 Not Available Not Available 12/04/2014 12:04 Not Available Not Available Not Available taskhost.exe c:\windows\system32\taskhost.exe 3616 8 200 1380 12/04/2014 12:04 6.1.7601.18010 67.00 KB (68,608 bytes) 05/09/2013 16:55 dwm.exe c:\windows\system32\dwm.exe 3752 13 51200 2097152 12/04/2014 12:04 6.1.7600.16385 117.50 KB (120,320 bytes) 14/07/2009 00:37 explorer.exe c:\windows\explorer.exe 3788 8 200 1380 12/04/2014 12:04 6.1.7601.17567 2.74 MB (2,871,808 bytes) 05/09/2013 16:55 igfxpers.exe c:\windows\system32\igfxpers.exe 3440 8 200 1380 12/04/2014 12:05 8.15.10.3071 431.48 KB (441,840 bytes) 05/09/2013 16:35 ravcpl64.exe c:\program files\realtek\audio\hda\ravcpl64.exe 3780 8 200 1380 12/04/2014 12:05 1.0.0.845 12.80 MB (13,423,688 bytes) 05/09/2013 16:36 mysqlnotifier.exe c:\program files (x86)\mysql\mysql notifier 1.1.4\mysqlnotifier.exe 3336 8 200 1380 12/04/2014 12:05 1.1.4.0 744.50 KB (762,368 bytes) 05/07/2013 02:36 rundll32.exe c:\windows\syswow64\rundll32.exe 1476 8 200 1380 12/04/2014 12:05 6.1.7600.16385 43.50 KB (44,544 bytes) 14/07/2009 00:41 iusb3mon.exe c:\program files (x86)\intel\intel(r) usb 3.0 extensible host controller driver\application\iusb3mon.exe 4080 8 200 1380 12/04/2014 12:05 2.0.0.100 284.30 KB (291,128 bytes) 05/09/2013 16:39 avastui.exe c:\program files\avast software\avast\avastui.exe 2272 8 200 1380 12/04/2014 12:05 8.0.1497.376 4.63 MB (4,858,968 bytes) 05/09/2013 16:55 apachemonitor.exe c:\program files (x86)\apache software foundation\apache2.2\bin\apachemonitor.exe 2460 8 200 1380 12/04/2014 12:05 2.2.25.0 40.09 KB (41,051 bytes) 10/07/2013 01:52 wmiprvse.exe Not Available 4056 8 Not Available Not Available 12/04/2014 12:05 Not Available Not Available Not Available jusched.exe c:\program files (x86)\common files\java\java update\jusched.exe 1504 8 200 1380 12/04/2014 12:05 2.1.9.8 248.38 KB (254,336 bytes) 02/07/2013 10:16 mom.exe c:\program files (x86)\ati technologies\ati.ace\core-static\mom.exe 1184 8 200 1380 12/04/2014 12:05 4.5.0.0 292.50 KB (299,520 bytes) 07/05/2013 10:51 dropbox.exe c:\users\penny\appdata\roaming\dropbox\bin\dropbox.exe 1376 8 200 1380 12/04/2014 12:05 2.6.2.0 31.96 MB (33,508,336 bytes) 03/01/2014 00:32 ccc.exe c:\program files (x86)\ati technologies\ati.ace\core-static\ccc.exe 4380 8 200 1380 12/04/2014 12:05 4.5.0.0 292.50 KB (299,520 bytes) 07/05/2013 10:52 searchindexer.exe Not Available 4564 8 Not Available Not Available 12/04/2014 12:05 Not Available Not Available Not Available wmpnetwk.exe Not Available 4712 8 Not Available Not Available 12/04/2014 12:05 Not Available Not Available Not Available svchost.exe Not Available 3988 8 Not Available Not Available 12/04/2014 12:05 Not Available Not Available Not Available iastoricon.exe c:\program files\intel\intel(r) rapid storage technology\iastoricon.exe 5580 8 200 1380 12/04/2014 12:06 12.0.0.1083 279.48 KB (286,192 bytes) 31/01/2013 14:20 iastordatamgrsvc.exe Not Available 5280 8 Not Available Not Available 12/04/2014 12:06 Not Available Not Available Not Available jhi_service.exe Not Available 2820 8 Not Available Not Available 12/04/2014 12:06 Not Available Not Available Not Available lms.exe Not Available 3048 8 Not Available Not Available 12/04/2014 12:06 Not Available Not Available Not Available svchost.exe Not Available 3560 8 Not Available Not Available 12/04/2014 12:06 Not Available Not Available Not Available iexplore.exe c:\program files\internet explorer\iexplore.exe 104020 8 200 1380 12/04/2014 14:46 11.0.9600.16521 787.21 KB (806,104 bytes) 13/03/2014 05:38 flashutil64_13_0_0_182_activex.exe c:\windows\system32\macromed\flash\flashutil64_13_0_0_182_activex.exe 104428 8 200 1380 12/04/2014 14:46 13.0.0.182 521.17 KB (533,680 bytes) 11/04/2014 10:29 iexplore.exe c:\program files (x86)\internet explorer\iexplore.exe 91944 8 200 1380 12/04/2014 15:03 11.0.9600.16521 789.21 KB (808,152 bytes) 13/03/2014 05:38 freeconverter.exe c:\program files (x86)\free mp3 wma converter\freeconverter\freeconverter.exe 79568 8 200 1380 12/04/2014 15:42 2.2.0.0 3.01 MB (3,153,920 bytes) 12/04/2014 15:42 svchost.exe Not Available 83800 6 Not Available Not Available 12/04/2014 15:51 Not Available Not Available Not Available audiodg.exe Not Available 25564 8 Not Available Not Available 12/04/2014 16:39 Not Available Not Available Not Available wmiprvse.exe Not Available 111492 8 Not Available Not Available 12/04/2014 17:36 Not Available Not Available Not Available searchprotocolhost.exe Not Available 98360 4 Not Available Not Available 12/04/2014 17:37 Not Available Not Available Not Available searchfilterhost.exe Not Available 66640 4 Not Available Not Available 12/04/2014 17:37 Not Available Not Available Not Available msinfo32.exe c:\windows\system32\msinfo32.exe 112404 8 200 1380 12/04/2014 17:38 6.1.7601.17514 370.00 KB (378,880 bytes) 21/11/2010 03:23 [Loaded Modules] Name Version Size File Date Manufacturer Path taskhost 6.1.7601.18010 67.00 KB (68,608 bytes) 05/09/2013 16:55 Microsoft Corporation c:\windows\system32\taskhost.exe ntdll 6.1.7601.18247 1.65 MB (1,732,032 bytes) 09/10/2013 16:55 Microsoft Corporation c:\windows\system32\ntdll.dll snxhk64 8.0.1497.376 294.66 KB (301,736 bytes) 05/09/2013 16:55 AVAST Software c:\program files\avast software\avast\snxhk64.dll kernel32 6.1.7601.18409 1.11 MB (1,163,264 bytes) 09/04/2014 10:07 Microsoft Corporation c:\windows\system32\kernel32.dll kernelbase 6.1.7601.18229 414.50 KB (424,448 bytes) 11/09/2013 14:17 Microsoft Corporation c:\windows\system32\kernelbase.dll msvcrt 7.0.7601.17744 620.00 KB (634,880 bytes) 05/09/2013 16:55 Microsoft Corporation c:\windows\system32\msvcrt.dll ole32 6.1.7601.17514 1.99 MB (2,086,912 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\ole32.dll gdi32 6.1.7601.18275 395.00 KB (404,480 bytes) 13/11/2013 03:33 Microsoft Corporation c:\windows\system32\gdi32.dll user32 6.1.7601.17514 984.50 KB (1,008,128 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\user32.dll lpk 6.1.7601.18177 40.50 KB (41,472 bytes) 09/10/2013 16:55 Microsoft Corporation c:\windows\system32\lpk.dll usp10 1.626.7601.18009 782.00 KB (800,768 bytes) 05/09/2013 16:55 Microsoft Corporation c:\windows\system32\usp10.dll rpcrt4 6.1.7601.18205 1.16 MB (1,217,024 bytes) 05/09/2013 16:55 Microsoft Corporation c:\windows\system32\rpcrt4.dll oleaut32 6.1.7601.17676 841.50 KB (861,696 bytes) 05/09/2013 16:55 Microsoft Corporation c:\windows\system32\oleaut32.dll imm32 6.1.7600.16385 163.50 KB (167,424 bytes) 14/07/2009 00:38 Microsoft Corporation c:\windows\system32\imm32.dll msctf 6.1.7600.16385 1.02 MB (1,067,008 bytes) 14/07/2009 00:40 Microsoft Corporation c:\windows\system32\msctf.dll cryptbase 6.1.7600.16385 43.00 KB (44,032 bytes) 14/07/2009 00:20 Microsoft Corporation c:\windows\system32\cryptbase.dll sechost 6.1.7600.16385 111.00 KB (113,664 bytes) 14/07/2009 00:20 Microsoft Corporation c:\windows\system32\sechost.dll advapi32 6.1.7601.18247 857.50 KB (878,080 bytes) 09/10/2013 16:55 Microsoft Corporation c:\windows\system32\advapi32.dll uxtheme 6.1.7600.16385 324.50 KB (332,288 bytes) 14/07/2009 00:55 Microsoft Corporation c:\windows\system32\uxtheme.dll dwmapi 6.1.7600.16385 80.50 KB (82,432 bytes) 14/07/2009 00:37 Microsoft Corporation c:\windows\system32\dwmapi.dll clbcatq 2001.12.8530.16385 593.50 KB (607,744 bytes) 14/07/2009 01:00 Microsoft Corporation c:\windows\system32\clbcatq.dll playsndsrv 6.1.7600.16385 83.00 KB (84,992 bytes) 14/07/2009 01:18 Microsoft Corporation c:\windows\system32\playsndsrv.dll rpcrtremote 6.1.7601.17514 64.00 KB (65,536 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\rpcrtremote.dll winmm 6.1.7600.16385 212.50 KB (217,600 bytes) 14/07/2009 01:18 Microsoft Corporation c:\windows\system32\winmm.dll hotstartuseragent 6.1.7601.17514 26.50 KB (27,136 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\hotstartuseragent.dll msctfmonitor 6.1.7600.16385 27.50 KB (28,160 bytes) 14/07/2009 00:39 Microsoft Corporation c:\windows\system32\msctfmonitor.dll msutb 6.1.7600.16385 230.00 KB (235,520 bytes) 14/07/2009 00:39 Microsoft Corporation c:\windows\system32\msutb.dll winsta 6.1.7601.17514 229.50 KB (235,008 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\winsta.dll wtsapi32 6.1.7600.16385 53.00 KB (54,272 bytes) 14/07/2009 01:17 Microsoft Corporation c:\windows\system32\wtsapi32.dll wininet 11.0.9600.16521 2.23 MB (2,334,208 bytes) 13/03/2014 05:38 Microsoft Corporation c:\windows\system32\wininet.dll api-ms-win-downlevel-user32-l1-1-0 6.2.9200.16492 4.00 KB (4,096 bytes) 05/09/2013 20:42 Microsoft Corporation c:\windows\system32\api-ms-win-downlevel-user32-l1-1-0.dll api-ms-win-downlevel-shlwapi-l1-1-0 6.2.9200.16492 9.50 KB (9,728 bytes) 05/09/2013 20:42 Microsoft Corporation c:\windows\system32\api-ms-win-downlevel-shlwapi-l1-1-0.dll shlwapi 6.1.7601.17514 438.00 KB (448,512 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\shlwapi.dll api-ms-win-downlevel-version-l1-1-0 6.2.9200.16492 3.00 KB (3,072 bytes) 05/09/2013 20:42 Microsoft Corporation c:\windows\system32\api-ms-win-downlevel-version-l1-1-0.dll version 6.1.7600.16385 28.50 KB (29,184 bytes) 14/07/2009 00:57 Microsoft Corporation c:\windows\system32\version.dll api-ms-win-downlevel-normaliz-l1-1-0 6.2.9200.16492 2.50 KB (2,560 bytes) 05/09/2013 20:42 Microsoft Corporation c:\windows\system32\api-ms-win-downlevel-normaliz-l1-1-0.dll normaliz 6.1.7600.16385 2.50 KB (2,560 bytes) 14/07/2009 00:26 Microsoft Corporation c:\windows\system32\normaliz.dll iertutil 11.0.9600.16521 2.64 MB (2,765,824 bytes) 13/03/2014 05:38 Microsoft Corporation c:\windows\system32\iertutil.dll api-ms-win-downlevel-advapi32-l1-1-0 6.2.9200.16492 10.50 KB (10,752 bytes) 05/09/2013 20:42 Microsoft Corporation c:\windows\system32\api-ms-win-downlevel-advapi32-l1-1-0.dll dimsjob 6.1.7600.16385 39.50 KB (40,448 bytes) 14/07/2009 00:53 Microsoft Corporation c:\windows\system32\dimsjob.dll api-ms-win-downlevel-ole32-l1-1-0 6.2.9200.16492 5.50 KB (5,632 bytes) 05/09/2013 20:42 Microsoft Corporation c:\windows\system32\api-ms-win-downlevel-ole32-l1-1-0.dll taskschd 6.1.7601.17514 1.14 MB (1,197,056 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\taskschd.dll slc 6.1.7600.16385 30.00 KB (30,720 bytes) 14/07/2009 00:51 Microsoft Corporation c:\windows\system32\slc.dll sspicli 6.1.7601.18270 132.50 KB (135,680 bytes) 13/11/2013 03:33 Microsoft Corporation c:\windows\system32\sspicli.dll api-ms-win-downlevel-advapi32-l2-1-0 6.2.9200.16492 3.50 KB (3,584 bytes) 05/09/2013 20:42 Microsoft Corporation c:\windows\system32\api-ms-win-downlevel-advapi32-l2-1-0.dll netprofm 6.1.7600.16385 449.00 KB (459,776 bytes) 14/07/2009 01:12 Microsoft Corporation c:\windows\system32\netprofm.dll nsi 6.1.7600.16385 13.50 KB (13,824 bytes) 14/07/2009 00:21 Microsoft Corporation c:\windows\system32\nsi.dll nlaapi 6.1.7601.17964 69.00 KB (70,656 bytes) 05/09/2013 16:56 Microsoft Corporation c:\windows\system32\nlaapi.dll cryptsp 6.1.7600.16385 78.00 KB (79,872 bytes) 14/07/2009 00:53 Microsoft Corporation c:\windows\system32\cryptsp.dll rsaenh 6.1.7600.16385 274.66 KB (281,256 bytes) 14/07/2009 00:53 Microsoft Corporation c:\windows\system32\rsaenh.dll npmproxy 6.1.7600.16385 31.00 KB (31,744 bytes) 14/07/2009 01:12 Microsoft Corporation c:\windows\system32\npmproxy.dll esent 6.1.7601.17577 2.45 MB (2,565,632 bytes) 06/09/2013 12:56 Microsoft Corporation c:\windows\system32\esent.dll psapi 6.1.7600.16385 9.00 KB (9,216 bytes) 14/07/2009 00:26 Microsoft Corporation c:\windows\system32\psapi.dll dsrole 6.1.7600.16385 32.00 KB (32,768 bytes) 14/07/2009 00:50 Microsoft Corporation c:\windows\system32\dsrole.dll shell32 6.1.7601.18222 13.52 MB (14,172,672 bytes) 11/09/2013 14:17 Microsoft Corporation c:\windows\system32\shell32.dll profapi 6.1.7600.16385 43.00 KB (44,032 bytes) 14/07/2009 00:20 Microsoft Corporation c:\windows\system32\profapi.dll sqmapi 6.2.9200.16384 286.21 KB (293,080 bytes) 13/03/2014 05:38 Microsoft Corporation c:\program files\internet explorer\sqmapi.dll userenv 6.1.7601.17514 106.50 KB (109,056 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\userenv.dll mmdevapi 6.1.7600.16385 277.50 KB (284,160 bytes) 14/07/2009 01:18 Microsoft Corporation c:\windows\system32\mmdevapi.dll propsys 7.0.7601.17514 1.16 MB (1,212,416 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\propsys.dll wdmaud 6.1.7601.17514 212.00 KB (217,088 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\wdmaud.drv ksuser 6.1.7600.16385 5.00 KB (5,120 bytes) 14/07/2009 01:18 Microsoft Corporation c:\windows\system32\ksuser.dll avrt 6.1.7600.16385 18.00 KB (18,432 bytes) 14/07/2009 01:22 Microsoft Corporation c:\windows\system32\avrt.dll setupapi 6.1.7601.17514 1.81 MB (1,900,544 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\setupapi.dll cfgmgr32 6.1.7601.17514 203.00 KB (207,872 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\cfgmgr32.dll devobj 6.1.7600.16385 91.00 KB (93,184 bytes) 14/07/2009 00:26 Microsoft Corporation c:\windows\system32\devobj.dll audioses 6.1.7601.17514 289.50 KB (296,448 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\audioses.dll msacm32 6.1.7600.16385 25.00 KB (25,600 bytes) 14/07/2009 01:18 Microsoft Corporation c:\windows\system32\msacm32.drv msacm32 6.1.7600.16385 81.50 KB (83,456 bytes) 14/07/2009 01:18 Microsoft Corporation c:\windows\system32\msacm32.dll midimap 6.1.7600.16385 20.00 KB (20,480 bytes) 14/07/2009 01:18 Microsoft Corporation c:\windows\system32\midimap.dll dwm 6.1.7600.16385 117.50 KB (120,320 bytes) 14/07/2009 00:37 Microsoft Corporation c:\windows\system32\dwm.exe dwmredir 6.1.7601.17514 125.50 KB (128,512 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\dwmredir.dll dwmcore 6.1.7601.17514 1.56 MB (1,632,256 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\dwmcore.dll windowscodecs 6.2.9200.16810 1.36 MB (1,424,384 bytes) 13/03/2014 05:37 Microsoft Corporation c:\windows\system32\windowscodecs.dll d3d10_1 6.2.9200.16492 190.00 KB (194,560 bytes) 05/09/2013 20:42 Microsoft Corporation c:\windows\system32\d3d10_1.dll d3d10_1core 6.2.9200.16492 325.50 KB (333,312 bytes) 05/09/2013 20:42 Microsoft Corporation c:\windows\system32\d3d10_1core.dll dxgi 6.2.9200.16492 354.50 KB (363,008 bytes) 05/09/2013 20:42 Microsoft Corporation c:\windows\system32\dxgi.dll d3d11 6.2.9200.16570 1.80 MB (1,887,232 bytes) 05/09/2013 16:54 Microsoft Corporation c:\windows\system32\d3d11.dll wintrust 6.1.7601.18205 219.00 KB (224,256 bytes) 05/09/2013 16:56 Microsoft Corporation c:\windows\system32\wintrust.dll crypt32 6.1.7601.18277 1.41 MB (1,474,048 bytes) 13/11/2013 03:33 Microsoft Corporation c:\windows\system32\crypt32.dll msasn1 6.1.7601.17514 45.50 KB (46,592 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\msasn1.dll aticfx64 8.17.10.1230 1.18 MB (1,233,080 bytes) 28/09/2012 02:41 Advanced Micro Devices, Inc. c:\windows\system32\aticfx64.dll atiuxp64 8.14.1.6340 139.45 KB (142,792 bytes) 28/09/2012 02:11 Advanced Micro Devices, Inc. c:\windows\system32\atiuxp64.dll atidxx64 8.17.10.519 9.03 MB (9,464,840 bytes) 28/09/2012 02:22 Advanced Micro Devices, Inc. c:\windows\system32\atidxx64.dll udwm 6.1.7600.16385 321.00 KB (328,704 bytes) 14/07/2009 00:37 Microsoft Corporation c:\windows\system32\udwm.dll explorer 6.1.7601.17567 2.74 MB (2,871,808 bytes) 05/09/2013 16:55 Microsoft Corporation c:\windows\explorer.exe explorerframe 6.1.7601.17514 1.78 MB (1,866,240 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\explorerframe.dll duser 6.1.7600.16385 254.50 KB (260,608 bytes) 14/07/2009 00:39 Microsoft Corporation c:\windows\system32\duser.dll dui70 6.1.7600.16385 954.00 KB (976,896 bytes) 14/07/2009 00:41 Microsoft Corporation c:\windows\system32\dui70.dll powrprof 6.1.7600.16385 163.50 KB (167,424 bytes) 14/07/2009 00:27 Microsoft Corporation c:\windows\system32\powrprof.dll gdiplus 6.1.7601.18120 2.07 MB (2,165,760 bytes) 05/09/2013 16:55 Microsoft Corporation c:\windows\winsxs\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.18120_none_2b25b14c71ebf230\gdiplus.dll secur32 6.1.7601.18270 27.50 KB (28,160 bytes) 13/11/2013 03:33 Microsoft Corporation c:\windows\system32\secur32.dll comctl32 6.10.7601.17514 1.94 MB (2,030,080 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\winsxs\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_fa396087175ac9ac\comctl32.dll apphelp 6.1.7601.17514 334.00 KB (342,016 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\apphelp.dll ashsha64 8.0.1497.376 130.70 KB (133,840 bytes) 05/09/2013 16:55 AVAST Software c:\program files\avast software\avast\ashsha64.dll msi 5.0.7601.17807 3.07 MB (3,216,384 bytes) 05/09/2013 16:55 Microsoft Corporation c:\windows\system32\msi.dll DropboxExt64.22 1.0.0.22 160.17 KB (164,016 bytes) 11/09/2013 00:54 Dropbox, Inc. c:\users\penny\appdata\roaming\dropbox\bin\dropboxext64.22.dll dbghelp 6.1.7601.17514 1.04 MB (1,087,488 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\dbghelp.dll msvcp90 9.0.30729.6161 833.33 KB (853,328 bytes) 06/09/2013 14:20 Microsoft Corporation c:\windows\winsxs\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_08e61857a83bc251\msvcp90.dll msvcr90 9.0.30729.6161 626.33 KB (641,360 bytes) 06/09/2013 14:20 Microsoft Corporation c:\windows\winsxs\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_08e61857a83bc251\msvcr90.dll ehstorshell 6.1.7600.16385 198.50 KB (203,264 bytes) 14/07/2009 01:00 Microsoft Corporation c:\windows\system32\ehstorshell.dll cscui 6.1.7601.17514 487.00 KB (498,688 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\cscui.dll cscdll 6.1.7601.17514 29.50 KB (30,208 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\cscdll.dll cscapi 6.1.7601.17514 45.00 KB (46,080 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\cscapi.dll ntshrui 6.1.7601.17755 498.00 KB (509,952 bytes) 05/09/2013 16:56 Microsoft Corporation c:\windows\system32\ntshrui.dll srvcli 6.1.7601.17514 125.00 KB (128,000 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\srvcli.dll iconcodecservice 6.1.7600.16385 14.00 KB (14,336 bytes) 14/07/2009 00:37 Microsoft Corporation c:\windows\system32\iconcodecservice.dll sndvolsso 6.1.7601.17514 220.00 KB (225,280 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\sndvolsso.dll hid 6.1.7600.16385 29.50 KB (30,208 bytes) 14/07/2009 01:06 Microsoft Corporation c:\windows\system32\hid.dll timedate 6.1.7601.17753 503.50 KB (515,584 bytes) 05/09/2013 16:55 Microsoft Corporation c:\windows\system32\timedate.cpl atl 3.5.2284.0 88.50 KB (90,624 bytes) 14/07/2009 01:34 Microsoft Corporation c:\windows\system32\atl.dll actxprxy 6.1.7601.17514 936.00 KB (958,464 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\actxprxy.dll ntmarta 6.1.7600.16385 158.50 KB (162,304 bytes) 14/07/2009 00:50 Microsoft Corporation c:\windows\system32\ntmarta.dll wldap32 6.1.7601.17514 305.50 KB (312,832 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\wldap32.dll samlib 6.1.7600.16385 104.50 KB (107,008 bytes) 14/07/2009 00:53 Microsoft Corporation c:\windows\system32\samlib.dll samcli 6.1.7601.17514 66.00 KB (67,584 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\samcli.dll netutils 6.1.7601.17514 28.50 KB (29,184 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\netutils.dll gameux 6.1.7601.18020 2.62 MB (2,746,368 bytes) 05/09/2013 16:57 Microsoft Corporation c:\windows\system32\gameux.dll xmllite 1.3.1001.0 195.00 KB (199,680 bytes) 05/09/2013 16:55 Microsoft Corporation c:\windows\system32\xmllite.dll wer 6.1.7601.18381 473.50 KB (484,864 bytes) 13/03/2014 05:38 Microsoft Corporation c:\windows\system32\wer.dll msftedit 5.41.21.2510 781.00 KB (799,744 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\msftedit.dll msls31 3.10.349.0 242.00 KB (247,808 bytes) 26/11/2013 02:39 Microsoft Corporation c:\windows\system32\msls31.dll tiptsf 6.1.7601.17514 491.50 KB (503,296 bytes) 21/11/2010 03:24 Microsoft Corporation c:\program files\common files\microsoft shared\ink\tiptsf.dll authui 6.1.7601.18276 1.84 MB (1,930,752 bytes) 13/11/2013 03:33 Microsoft Corporation c:\windows\system32\authui.dll cryptui 6.1.7601.17514 1.02 MB (1,065,984 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\cryptui.dll msiltcfg 5.0.7600.16385 19.50 KB (19,968 bytes) 14/07/2009 00:48 Microsoft Corporation c:\windows\system32\msiltcfg.dll linkinfo 6.1.7600.16385 29.00 KB (29,696 bytes) 14/07/2009 00:55 Microsoft Corporation c:\windows\system32\linkinfo.dll shdocvw 6.1.7601.18222 192.50 KB (197,120 bytes) 11/09/2013 14:17 Microsoft Corporation c:\windows\system32\shdocvw.dll urlmon 11.0.9600.16521 1.33 MB (1,393,664 bytes) 13/03/2014 05:38 Microsoft Corporation c:\windows\system32\urlmon.dll ieframe 11.0.9600.16521 12.45 MB (13,051,904 bytes) 13/03/2014 05:38 Microsoft Corporation c:\windows\system32\ieframe.dll api-ms-win-downlevel-shell32-l1-1-0 6.2.9200.16492 3.00 KB (3,072 bytes) 05/09/2013 20:42 Microsoft Corporation c:\windows\system32\api-ms-win-downlevel-shell32-l1-1-0.dll api-ms-win-downlevel-shlwapi-l2-1-0 6.2.9200.16492 5.50 KB (5,632 bytes) 05/09/2013 20:42 Microsoft Corporation c:\windows\system32\api-ms-win-downlevel-shlwapi-l2-1-0.dll stobject 6.1.7601.17514 251.00 KB (257,024 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\stobject.dll batmeter 6.1.7601.17514 732.00 KB (749,568 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\batmeter.dll es 2001.12.8530.16385 393.50 KB (402,944 bytes) 14/07/2009 01:00 Microsoft Corporation c:\windows\system32\es.dll prnfldr 6.1.7601.17514 406.50 KB (416,256 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\prnfldr.dll winspool 6.1.7601.17514 432.00 KB (442,368 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\winspool.drv dxp 6.1.7601.17514 449.00 KB (459,776 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\dxp.dll syncreg 2007.94.7600.16385 72.00 KB (73,728 bytes) 14/07/2009 01:22 Microsoft Corporation c:\windows\system32\syncreg.dll ehsso 6.1.7600.16385 25.50 KB (26,112 bytes) 14/07/2009 01:24 Microsoft Corporation c:\windows\ehome\ehsso.dll netshell 6.1.7601.17514 2.53 MB (2,652,160 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\netshell.dll iphlpapi 6.1.7601.17514 142.50 KB (145,920 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\iphlpapi.dll winnsi 6.1.7600.16385 25.50 KB (26,112 bytes) 14/07/2009 00:21 Microsoft Corporation c:\windows\system32\winnsi.dll alttab 6.1.7600.16385 52.00 KB (53,248 bytes) 14/07/2009 00:55 Microsoft Corporation c:\windows\system32\alttab.dll wpdshserviceobj 6.1.7601.17514 112.50 KB (115,200 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\wpdshserviceobj.dll portabledevicetypes 6.1.7600.16385 214.50 KB (219,648 bytes) 14/07/2009 01:21 Microsoft Corporation c:\windows\system32\portabledevicetypes.dll portabledeviceapi 6.1.7601.17514 740.50 KB (758,272 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\portabledeviceapi.dll pnidui 6.1.7601.17514 1.72 MB (1,808,384 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\pnidui.dll qutil 6.1.7601.17514 105.00 KB (107,520 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\qutil.dll wevtapi 6.1.7600.16385 418.00 KB (428,032 bytes) 14/07/2009 00:46 Microsoft Corporation c:\windows\system32\wevtapi.dll mssprxy 7.0.7600.16385 98.00 KB (100,352 bytes) 14/07/2009 01:29 Microsoft Corporation c:\windows\system32\mssprxy.dll cscobj 6.1.7601.17514 235.00 KB (240,640 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\cscobj.dll dhcpcsvc6 6.1.7601.17970 54.00 KB (55,296 bytes) 05/09/2013 16:56 Microsoft Corporation c:\windows\system32\dhcpcsvc6.dll ws2_32 6.1.7601.17514 291.00 KB (297,984 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\ws2_32.dll dhcpcsvc 6.1.7600.16385 85.00 KB (87,040 bytes) 14/07/2009 00:21 Microsoft Corporation c:\windows\system32\dhcpcsvc.dll credssp 6.1.7601.17514 21.50 KB (22,016 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\credssp.dll srchadmin 7.0.7601.17514 333.00 KB (340,992 bytes) 21/11/2010 03:25 Microsoft Corporation c:\windows\system32\srchadmin.dll wlanapi 6.1.7600.16385 111.50 KB (114,176 bytes) 14/07/2009 01:07 Microsoft Corporation c:\windows\system32\wlanapi.dll wlanutil 6.1.7600.16385 10.50 KB (10,752 bytes) 14/07/2009 01:07 Microsoft Corporation c:\windows\system32\wlanutil.dll wwanapi 6.1.7600.16385 360.00 KB (368,640 bytes) 14/07/2009 01:12 Microsoft Corporation c:\windows\system32\wwanapi.dll wwapi 8.1.2.0 35.50 KB (36,352 bytes) 14/07/2009 01:12 Microsoft Corporation c:\windows\system32\wwapi.dll qagent 6.1.7601.17514 260.00 KB (266,240 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\qagent.dll synccenter 6.1.7601.17514 2.16 MB (2,262,528 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\synccenter.dll actioncenter 6.1.7601.17514 762.50 KB (780,800 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\actioncenter.dll bthprops 6.1.7601.17514 704.50 KB (721,408 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\bthprops.cpl sxs 6.1.7601.17514 569.00 KB (582,656 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\sxs.dll imapi2 6.1.7601.17514 491.50 KB (503,296 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\imapi2.dll hgcpl 6.1.7601.17514 324.50 KB (332,288 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\hgcpl.dll provsvc 6.1.7601.17514 183.50 KB (187,904 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\provsvc.dll fxsst 6.1.7600.16385 843.50 KB (863,744 bytes) 14/07/2009 01:35 Microsoft Corporation c:\windows\system32\fxsst.dll fxsapi 6.1.7601.17514 608.50 KB (623,104 bytes) 21/11/2010 03:25 Microsoft Corporation c:\windows\system32\fxsapi.dll fxsresm 6.1.7600.16385 903.50 KB (925,184 bytes) 14/07/2009 01:36 Microsoft Corporation c:\windows\system32\fxsresm.dll wkscli 6.1.7601.17514 70.00 KB (71,680 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\wkscli.dll uianimation 6.2.9200.16492 216.00 KB (221,184 bytes) 05/09/2013 20:42 Microsoft Corporation c:\windows\system32\uianimation.dll ieproxy 11.0.9600.16521 705.50 KB (722,432 bytes) 13/03/2014 05:38 Microsoft Corporation c:\program files\internet explorer\ieproxy.dll wscinterop 6.1.7600.16385 143.00 KB (146,432 bytes) 14/07/2009 00:48 Microsoft Corporation c:\windows\system32\wscinterop.dll wscapi 6.1.7601.17514 62.00 KB (63,488 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\wscapi.dll wscui 6.1.7600.16385 1.11 MB (1,162,240 bytes) 14/07/2009 00:48 Microsoft Corporation c:\windows\system32\wscui.cpl werconcpl 6.1.7601.17514 1.22 MB (1,281,024 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\werconcpl.dll framedynos 6.1.7601.17514 289.00 KB (295,936 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\framedynos.dll wercplsupport 6.1.7600.16385 82.50 KB (84,480 bytes) 14/07/2009 00:40 Microsoft Corporation c:\windows\system32\wercplsupport.dll msxml6 6.30.7601.17988 1.91 MB (2,002,432 bytes) 05/09/2013 16:56 Microsoft Corporation c:\windows\system32\msxml6.dll hcproviders 6.1.7600.16385 30.50 KB (31,232 bytes) 14/07/2009 00:56 Microsoft Corporation c:\windows\system32\hcproviders.dll mpr 6.1.7600.16385 79.00 KB (80,896 bytes) 14/07/2009 01:10 Microsoft Corporation c:\windows\system32\mpr.dll photobase 6.1.7600.16385 49.50 KB (50,688 bytes) 14/07/2009 01:25 Microsoft Corporation c:\program files\windows photo viewer\photobase.dll devrtl 6.1.7600.16385 57.00 KB (58,368 bytes) 14/07/2009 00:26 Microsoft Corporation c:\windows\system32\devrtl.dll mlang 6.1.7600.16385 221.50 KB (226,816 bytes) 14/07/2009 00:55 Microsoft Corporation c:\windows\system32\mlang.dll networkexplorer 6.1.7601.17514 1.60 MB (1,672,704 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\networkexplorer.dll firewallapi 6.1.7600.16385 730.50 KB (748,032 bytes) 14/07/2009 01:08 Microsoft Corporation c:\windows\system32\firewallapi.dll structuredquery 7.0.7601.17514 472.50 KB (483,840 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\structuredquery.dll searchfolder 6.1.7601.17514 847.50 KB (867,840 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\searchfolder.dll dfscli 6.1.7600.16385 61.50 KB (62,976 bytes) 14/07/2009 00:53 Microsoft Corporation c:\windows\system32\dfscli.dll browcli 6.1.7601.17887 58.00 KB (59,392 bytes) 05/09/2013 16:55 Microsoft Corporation c:\windows\system32\browcli.dll mswsock 6.1.7601.18254 319.50 KB (327,168 bytes) 09/10/2013 16:55 Microsoft Corporation c:\windows\system32\mswsock.dll dnsapi 6.1.7601.17570 349.50 KB (357,888 bytes) 05/09/2013 16:55 Microsoft Corporation c:\windows\system32\dnsapi.dll rasadhlp 6.1.7600.16385 16.00 KB (16,384 bytes) 14/07/2009 01:10 Microsoft Corporation c:\windows\system32\rasadhlp.dll naturallanguage6 6.1.7601.17514 1.26 MB (1,326,080 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\naturallanguage6.dll nlsdata0009 6.1.7600.16385 5.98 MB (6,270,976 bytes) 14/07/2009 01:31 Microsoft Corporation c:\windows\system32\nlsdata0009.dll nlslexicons0009 6.1.7600.16385 2.51 MB (2,628,608 bytes) 14/07/2009 01:33 Microsoft Corporation c:\windows\system32\nlslexicons0009.dll mf 12.0.7601.17514 3.93 MB (4,120,064 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\mf.dll mfplat 12.0.7600.16385 420.50 KB (430,592 bytes) 14/07/2009 01:19 Microsoft Corporation c:\windows\system32\mfplat.dll mscoree 4.0.40305.0 434.33 KB (444,752 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\mscoree.dll mscoreei 4.0.30319.18408 599.08 KB (613,456 bytes) 11/09/2013 20:39 Microsoft Corporation c:\windows\microsoft.net\framework64\v4.0.30319\mscoreei.dll shfusion 2.0.50727.5420 110.83 KB (113,488 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\microsoft.net\framework64\v2.0.50727\shfusion.dll msvcr80 8.0.50727.4940 783.83 KB (802,640 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\winsxs\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4940_none_88df89932faf0bf6\msvcr80.dll culture 2.0.50727.4927 27.83 KB (28,496 bytes) 13/07/2009 21:37 Microsoft Corporation c:\windows\microsoft.net\framework64\v2.0.50727\culture.dll fms 1.1.6000.16384 113.50 KB (116,224 bytes) 21/11/2010 03:24 Windows (R) Codename Longhorn DDK provider c:\windows\system32\fms.dll igfxpph 8.15.10.3071 349.50 KB (357,888 bytes) 05/09/2013 16:35 Intel Corporation c:\windows\system32\igfxpph.dll hccutils 8.15.10.3071 105.50 KB (108,032 bytes) 05/09/2013 16:35 Intel Corporation c:\windows\system32\hccutils.dll igfxrenu 8.15.10.3071 281.50 KB (288,256 bytes) 05/09/2013 16:35 Intel Corporation c:\windows\system32\igfxrenu.lrc igfxsrvc 8.15.10.3071 64.00 KB (65,536 bytes) 05/09/2013 16:35 Intel Corporation c:\windows\system32\igfxsrvc.dll igfxdev 8.15.10.3071 424.00 KB (434,176 bytes) 05/09/2013 16:35 Intel Corporation c:\windows\system32\igfxdev.dll opengl32 6.1.7600.16385 1,015.50 KB (1,039,872 bytes) 14/07/2009 00:42 Microsoft Corporation c:\windows\system32\opengl32.dll glu32 6.1.7600.16385 161.50 KB (165,376 bytes) 14/07/2009 00:42 Microsoft Corporation c:\windows\system32\glu32.dll ddraw 6.1.7600.16385 556.00 KB (569,344 bytes) 14/07/2009 00:41 Microsoft Corporation c:\windows\system32\ddraw.dll dciman32 6.1.7601.18177 14.00 KB (14,336 bytes) 09/10/2013 16:55 Microsoft Corporation c:\windows\system32\dciman32.dll sbdrop 6.1.7600.16385 85.50 KB (87,552 bytes) 14/07/2009 00:56 Microsoft Corporation c:\program files\windows sidebar\sbdrop.dll atiacm64 6.14.10.2001 876.00 KB (897,024 bytes) 30/08/2013 19:37 Advanced Micro Devices, Inc. c:\program files (x86)\ati technologies\ati.ace\core-static\atiacm64.dll atiamenu 6.14.10.2001 4.50 KB (4,608 bytes) 30/08/2013 19:37 Advanced Micro Devices, Inc. c:\program files (x86)\ati technologies\ati.ace\core-static\atiamenu.dll zipfldr 6.1.7601.17514 357.50 KB (366,080 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\zipfldr.dll rarext 5.0.0.0 207.95 KB (212,944 bytes) 07/09/2013 11:50 Alexander Roshal c:\program files\winrar\rarext.dll oleacc 7.0.0.0 324.00 KB (331,776 bytes) 05/09/2013 16:55 Microsoft Corporation c:\windows\system32\oleacc.dll van 6.1.7601.17514 675.00 KB (691,200 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\van.dll rasmm 6.1.7600.16385 846.50 KB (866,816 bytes) 14/07/2009 01:11 Microsoft Corporation c:\windows\system32\rasmm.dll rasapi32 6.1.7600.16385 375.50 KB (384,512 bytes) 14/07/2009 01:10 Microsoft Corporation c:\windows\system32\rasapi32.dll rasman 6.1.7600.16385 98.00 KB (100,352 bytes) 14/07/2009 01:10 Microsoft Corporation c:\windows\system32\rasman.dll wwanmm 8.1.2.0 677.00 KB (693,248 bytes) 14/07/2009 01:12 Microsoft Corporation c:\windows\system32\wwanmm.dll wlanmm 6.1.7600.16385 813.00 KB (832,512 bytes) 14/07/2009 01:11 Microsoft Corporation c:\windows\system32\wlanmm.dll wlanhlp 6.1.7600.16385 116.50 KB (119,296 bytes) 14/07/2009 01:07 Microsoft Corporation c:\windows\system32\wlanhlp.dll onex 6.1.7601.17514 230.00 KB (235,520 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\onex.dll eappprxy 6.1.7600.16385 63.00 KB (64,512 bytes) 14/07/2009 01:12 Microsoft Corporation c:\windows\system32\eappprxy.dll eappcfg 6.1.7600.16385 257.50 KB (263,680 bytes) 14/07/2009 01:12 Microsoft Corporation c:\windows\system32\eappcfg.dll twext 6.1.7601.17514 168.50 KB (172,544 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\twext.dll syncui 6.1.7601.17514 195.50 KB (200,192 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\syncui.dll synceng 6.1.7601.17959 93.50 KB (95,744 bytes) 05/09/2013 16:55 Microsoft Corporation c:\windows\system32\synceng.dll aclui 6.1.7600.16385 150.50 KB (154,112 bytes) 14/07/2009 00:57 Microsoft Corporation c:\windows\system32\aclui.dll ntdsapi 6.1.7600.16385 148.50 KB (152,064 bytes) 14/07/2009 00:54 Microsoft Corporation c:\windows\system32\ntdsapi.dll acppage 6.1.7601.17514 52.00 KB (53,248 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\acppage.dll sfc 6.1.7600.16385 3.00 KB (3,072 bytes) 14/07/2009 00:25 Microsoft Corporation c:\windows\system32\sfc.dll sfc_os 6.1.7600.16385 44.00 KB (45,056 bytes) 14/07/2009 00:26 Microsoft Corporation c:\windows\system32\sfc_os.dll rstrtmgr 6.1.7600.16385 184.00 KB (188,416 bytes) 14/07/2009 00:35 Microsoft Corporation c:\windows\system32\rstrtmgr.dll ncrypt 6.1.7601.18270 300.00 KB (307,200 bytes) 13/11/2013 03:33 Microsoft Corporation c:\windows\system32\ncrypt.dll bcrypt 6.1.7600.16385 121.00 KB (123,904 bytes) 14/07/2009 00:49 Microsoft Corporation c:\windows\system32\bcrypt.dll bcryptprimitives 6.1.7601.17514 291.12 KB (298,104 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\bcryptprimitives.dll wship6 6.1.7600.16385 13.50 KB (13,824 bytes) 14/07/2009 00:21 Microsoft Corporation c:\windows\system32\wship6.dll appwiz 6.1.7601.17514 709.50 KB (726,528 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\appwiz.cpl osbaseln 6.1.7600.16385 24.50 KB (25,088 bytes) 14/07/2009 00:35 Microsoft Corporation c:\windows\system32\osbaseln.dll wshtcpip 6.1.7600.16385 13.00 KB (13,312 bytes) 14/07/2009 00:21 Microsoft Corporation c:\windows\system32\wshtcpip.dll fwpuclnt 6.1.7601.18283 316.50 KB (324,096 bytes) 13/11/2013 03:33 Microsoft Corporation c:\windows\system32\fwpuclnt.dll thumbcache 6.1.7601.17514 110.00 KB (112,640 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\thumbcache.dll tquery 7.0.7601.17610 2.21 MB (2,315,776 bytes) 05/09/2013 16:56 Microsoft Corporation c:\windows\system32\tquery.dll networkitemfactory 6.1.7600.16385 52.00 KB (53,248 bytes) 14/07/2009 01:08 Microsoft Corporation c:\windows\system32\networkitemfactory.dll dtsh 6.1.7600.16385 35.50 KB (36,352 bytes) 14/07/2009 01:08 Microsoft Corporation c:\windows\system32\dtsh.dll ehstorapi 6.1.7601.17514 141.50 KB (144,896 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\ehstorapi.dll fundisc 6.1.7600.16385 190.00 KB (194,560 bytes) 14/07/2009 00:35 Microsoft Corporation c:\windows\system32\fundisc.dll fdproxy 6.1.7601.17514 72.50 KB (74,240 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\fdproxy.dll fdwcn 6.1.7600.16385 99.00 KB (101,376 bytes) 14/07/2009 01:08 Microsoft Corporation c:\windows\system32\fdwcn.dll wcnapi 6.1.7600.16385 118.00 KB (120,832 bytes) 14/07/2009 01:08 Microsoft Corporation c:\windows\system32\wcnapi.dll fdwnet 6.1.7600.16385 27.50 KB (28,160 bytes) 14/07/2009 00:35 Microsoft Corporation c:\windows\system32\fdwnet.dll drprov 6.1.7600.16385 24.00 KB (24,576 bytes) 14/07/2009 01:17 Microsoft Corporation c:\windows\system32\drprov.dll ntlanman 6.1.7601.17514 126.50 KB (129,536 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\ntlanman.dll davclnt 6.1.7601.18201 100.00 KB (102,400 bytes) 09/10/2013 16:55 Microsoft Corporation c:\windows\system32\davclnt.dll davhlpr 6.1.7600.16385 25.00 KB (25,600 bytes) 14/07/2009 00:23 Microsoft Corporation c:\windows\system32\davhlpr.dll devicecenter 6.1.7601.17514 497.00 KB (508,928 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\devicecenter.dll igfxpers 8.15.10.3071 431.48 KB (441,840 bytes) 05/09/2013 16:35 Intel Corporation c:\windows\system32\igfxpers.exe IccLibDll_x64 Not Available 92.00 KB (94,208 bytes) 05/09/2013 16:35 Not Available c:\windows\system32\icclibdll_x64.dll ravcpl64 1.0.0.845 12.80 MB (13,423,688 bytes) 05/09/2013 16:36 Realtek Semiconductor c:\program files\realtek\audio\hda\ravcpl64.exe dsound 6.1.7600.16385 528.00 KB (540,672 bytes) 14/07/2009 01:18 Microsoft Corporation c:\windows\system32\dsound.dll msimg32 6.1.7600.16385 8.00 KB (8,192 bytes) 14/07/2009 00:38 Microsoft Corporation c:\windows\system32\msimg32.dll comdlg32 6.1.7601.17514 580.50 KB (594,432 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\comdlg32.dll oledlg 6.1.7600.16385 125.00 KB (128,000 bytes) 14/07/2009 00:59 Microsoft Corporation c:\windows\system32\oledlg.dll MySQLNotifier 1.1.4.0 744.50 KB (762,368 bytes) 05/07/2013 02:36 Not Available c:\program files (x86)\mysql\mysql notifier 1.1.4\mysqlnotifier.exe wow64 6.1.7601.18409 238.00 KB (243,712 bytes) 09/04/2014 10:07 Microsoft Corporation c:\windows\system32\wow64.dll wow64win 6.1.7601.18409 354.00 KB (362,496 bytes) 09/04/2014 10:07 Microsoft Corporation c:\windows\system32\wow64win.dll wow64cpu 6.1.7601.18409 13.00 KB (13,312 bytes) 09/04/2014 10:07 Microsoft Corporation c:\windows\system32\wow64cpu.dll rundll32 6.1.7600.16385 43.50 KB (44,544 bytes) 14/07/2009 00:41 Microsoft Corporation c:\windows\syswow64\rundll32.exe iusb3mon 2.0.0.100 284.30 KB (291,128 bytes) 05/09/2013 16:39 Intel Corporation c:\program files (x86)\intel\intel(r) usb 3.0 extensible host controller driver\application\iusb3mon.exe avastui 8.0.1497.376 4.63 MB (4,858,968 bytes) 05/09/2013 16:55 AVAST Software c:\program files\avast software\avast\avastui.exe ApacheMonitor 2.2.25.0 40.09 KB (41,051 bytes) 10/07/2013 01:52 Apache Software Foundation c:\program files (x86)\apache software foundation\apache2.2\bin\apachemonitor.exe jusched 2.1.9.8 248.38 KB (254,336 bytes) 02/07/2013 10:16 Oracle Corporation c:\program files (x86)\common files\java\java update\jusched.exe mom 4.5.0.0 292.50 KB (299,520 bytes) 07/05/2013 10:51 Not Available c:\program files (x86)\ati technologies\ati.ace\core-static\mom.exe clr 4.0.30319.18444 9.39 MB (9,845,392 bytes) 30/10/2013 17:14 Microsoft Corporation c:\windows\microsoft.net\framework64\v4.0.30319\clr.dll msvcr110_clr0400 11.0.50938.18408 835.61 KB (855,664 bytes) 11/09/2013 20:39 Microsoft Corporation c:\windows\system32\msvcr110_clr0400.dll mscorlib.ni 4.0.30319.18444 21.97 MB (23,037,952 bytes) 26/02/2014 03:01 Microsoft Corporation c:\windows\assembly\nativeimages_v4.0.30319_64\mscorlib\abf62e6545d2802fc60286678a67e6bf\mscorlib.ni.dll MOM.ni 4.5.0.0 19.50 KB (19,968 bytes) 26/02/2014 13:40 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\mom\7a8ecdcc8b7ac9bdac0aad189dad83bf\mom.ni.exe System.ni 4.0.30319.18408 12.72 MB (13,338,624 bytes) 26/02/2014 03:01 Microsoft Corporation c:\windows\assembly\nativeimages_v4.0.30319_64\system\4d4a15d5d7968df7dedd4cf853848d90\system.ni.dll System.Drawing.ni 4.0.30319.18408 2.17 MB (2,278,400 bytes) 26/02/2014 13:37 Microsoft Corporation c:\windows\assembly\nativeimages_v4.0.30319_64\system.drawing\7926c26400ff262c7fc48b729377085b\system.drawing.ni.dll System.Windows.Forms.ni 4.0.30319.18408 16.18 MB (16,966,144 bytes) 26/02/2014 13:38 Microsoft Corporation c:\windows\assembly\nativeimages_v4.0.30319_64\system.windows.forms\4764e3995ebd7b6b438eef937cde1332\system.windows.forms.ni.dll nlssorting 4.0.30319.18408 82.09 KB (84,056 bytes) 11/09/2013 20:39 Microsoft Corporation c:\windows\microsoft.net\framework64\v4.0.30319\nlssorting.dll MOM.Implementation.ni 4.5.0.0 405.00 KB (414,720 bytes) 26/02/2014 13:40 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\mom.implementation\04df822b8bcf54cf3b952bfb4fa82995\mom.implementation.ni.dll LOG.Foundation.ni 4.5.4990.33576 134.50 KB (137,728 bytes) 26/02/2014 13:37 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\log.foundation\8fcbdec2111eb12a066d8cce66356768\log.foundation.ni.dll LOG.Foundation.Private.ni 4.5.4990.33584 157.50 KB (161,280 bytes) 26/02/2014 13:37 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\log.foundat5023f8e7#\4be4adee806969ac44d270d9b493f59d\log.foundation.private.ni.dll LOG.Foundation.Implementation.ni 4.5.4990.33603 320.50 KB (328,192 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\log.foundat03490438#\5116317639af5be4e687065a2d51543f\log.foundation.implementation.ni.dll MOM.Foundation.ni 4.5.4990.33585 14.00 KB (14,336 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\mom.foundation\7f843137848c7ee8365ed49412682a85\mom.foundation.ni.dll comctl32 5.82.7601.18201 619.00 KB (633,856 bytes) 09/10/2013 16:55 Microsoft Corporation c:\windows\winsxs\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.18201_none_a4d3b9377117c3df\comctl32.dll LOG.Foundation.Implementation.Private.ni 4.5.4990.33585 89.50 KB (91,648 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\log.foundatcaafa75b#\0e55b5ae613170544393be906a3a0a84\log.foundation.implementation.private.ni.dll System.Runtime.Remoting.ni 4.0.30319.18408 995.00 KB (1,018,880 bytes) 26/02/2014 13:39 Microsoft Corporation c:\windows\assembly\nativeimages_v4.0.30319_64\system.runt73a1fc9d#\1a3c1c427ce02470a643a4a36222235a\system.runtime.remoting.ni.dll System.Configuration.ni 4.0.30319.18408 1.21 MB (1,270,784 bytes) 26/02/2014 13:37 Microsoft Corporation c:\windows\assembly\nativeimages_v4.0.30319_64\system.configuration\13bb14bb88e6c577c79001039d678bbd\system.configuration.ni.dll System.Xml.ni 4.0.30319.18408 9.74 MB (10,212,352 bytes) 26/02/2014 13:37 Microsoft Corporation c:\windows\assembly\nativeimages_v4.0.30319_64\system.xml\fa4b9cda7a89969191429507a934c352\system.xml.ni.dll System.Core.ni 4.0.30319.18408 9.65 MB (10,116,096 bytes) 26/02/2014 13:38 Microsoft Corporation c:\windows\assembly\nativeimages_v4.0.30319_64\system.core\1d513cb1b284a419e8b3df381ce7f270\system.core.ni.dll System.Web.ni 4.0.30319.18446 17.09 MB (17,916,416 bytes) 26/02/2014 13:39 Microsoft Corporation c:\windows\assembly\nativeimages_v4.0.30319_64\system.web\e742916dda2f08fcc53500b2eb1e5d8f\system.web.ni.dll CCC.Implementation.ni 4.5.0.0 224.50 KB (229,888 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\ccc.implementation\0b6195ab59b63dd460a637390d918d91\ccc.implementation.ni.dll clrjit 4.0.30319.18444 1.19 MB (1,243,296 bytes) 30/10/2013 17:14 Microsoft Corporation c:\windows\microsoft.net\framework64\v4.0.30319\clrjit.dll NEWAEM.Foundation.ni 4.5.4990.33576 60.50 KB (61,952 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\newaem.foundation\2604ab0b703cd3c43e84ea250974026b\newaem.foundation.ni.dll napinsp 6.1.7600.16385 66.50 KB (68,096 bytes) 14/07/2009 01:10 Microsoft Corporation c:\windows\system32\napinsp.dll pnrpnsp 6.1.7600.16385 84.00 KB (86,016 bytes) 14/07/2009 01:11 Microsoft Corporation c:\windows\system32\pnrpnsp.dll winrnr 6.1.7600.16385 28.00 KB (28,672 bytes) 14/07/2009 00:53 Microsoft Corporation c:\windows\system32\winrnr.dll dropbox 2.6.2.0 31.96 MB (33,508,336 bytes) 03/01/2014 00:32 Dropbox, Inc. c:\users\penny\appdata\roaming\dropbox\bin\dropbox.exe ccc 4.5.0.0 292.50 KB (299,520 bytes) 07/05/2013 10:52 Not Available c:\program files (x86)\ati technologies\ati.ace\core-static\ccc.exe CCC.ni 4.5.0.0 21.50 KB (22,016 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\ccc\39e70c307dbc53eb3496503eb2921705\ccc.ni.exe CLI.Foundation.ni 4.5.4990.33583 313.50 KB (321,024 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.foundation\953ed556242e16edee5cd97193720e20\cli.foundation.ni.dll CLI.Foundation.XManifest.ni 4.5.4990.33614 67.50 KB (69,120 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.foundat60cdf5df#\bfe1b6b3553d5e03213c92d000c8e6bb\cli.foundation.xmanifest.ni.dll CLI.Component.Runtime.ni 4.5.4990.33589 245.50 KB (251,392 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.compone6692ca50#\cfff50047db71dc202590fcbce26d798\cli.component.runtime.ni.dll CLI.Component.Runtime.Shared.Private.ni 4.5.4990.33586 167.00 KB (171,008 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.compone59f353b4#\466aaafbf5cd3a022f811650064b5de1\cli.component.runtime.shared.private.ni.dll CLI.Foundation.Private.ni 4.5.4990.33586 97.00 KB (99,328 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.foundat3d5d3945#\7270147028662424bab90eefd7b2d3d4\cli.foundation.private.ni.dll CLI.Component.Runtime.Shared.ni 4.5.4990.33586 14.00 KB (14,336 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.compone1b4a8c97#\4661bd74e2c69b96e96c9b9b2d7d53e9\cli.component.runtime.shared.ni.dll ATICCCom.ni 4.5.4990.33587 131.00 KB (134,144 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\aticccom\c0376440321e609e8004a41d667ab911\aticccom.ni.dll ADL.Foundation.ni 4.5.0.0 828.00 KB (847,872 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\adl.foundation\7252d9e52cf82c9ef6efa6884b27db22\adl.foundation.ni.dll AEM.Server.ni 4.5.4990.33587 282.00 KB (288,768 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\aem.server\d60d099f8eaf392cc952695dfee61188\aem.server.ni.dll atiadlxx 6.14.10.1128 766.00 KB (784,384 bytes) 28/09/2012 02:13 Advanced Micro Devices, Inc. c:\windows\system32\atiadlxx.dll AEM.Server.Shared.ni 4.5.4990.33587 15.00 KB (15,360 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\aem.server.shared\8ca66cc4f347f38cdd7f6c9b0f39c67f\aem.server.shared.ni.dll AEM.Plugin.Source.Kit.Server.ni 4.5.4990.33619 296.50 KB (303,616 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\aem.plugin.5d945b6b#\4ed8a707c5a3de85c749c1524882d85a\aem.plugin.source.kit.server.ni.dll CLI.Foundation.CoreAudioAPI.ni 4.5.4990.33590 97.00 KB (99,328 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.foundat619559bd#\b8e05382d7877819d140e78f64b96b2d\cli.foundation.coreaudioapi.ni.dll AEM.Plugin.Hotkeys.Shared.ni 4.5.4990.33577 19.00 KB (19,456 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\aem.plugin.2b6a6775#\435203b2c3cc6110a742a9fe8f112caf\aem.plugin.hotkeys.shared.ni.dll AEM.Plugin.WinMessages.Shared.ni 4.5.4990.33588 17.00 KB (17,408 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\aem.plugin.674d2b8a#\2169b82cccb5c48c56c941832ea4e951\aem.plugin.winmessages.shared.ni.dll DEM.Graphics.I0601.ni 4.5.0.0 118.50 KB (121,344 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\dem.graphics.i0601\373b9869c2775e95e5766bb6e489e73f\dem.graphics.i0601.ni.dll DEM.Graphics.ni 4.5.4990.33589 18.00 KB (18,432 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\dem.graphics\9b71213235bf1d1948a8899771b2aad3\dem.graphics.ni.dll DEM.Foundation.ni 4.5.0.0 26.50 KB (27,136 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\dem.foundation\42297b470eba48328789aa0f6079e631\dem.foundation.ni.dll atidemgy 4.5.4990.32370 432.00 KB (442,368 bytes) 05/09/2013 16:24 Not Available c:\windows\system32\atidemgy.dll DEM.Graphics.I1010.ni 4.5.0.0 41.00 KB (41,984 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\dem.graphics.i1010\63016b30161ff983a768eae722bd145a\dem.graphics.i1010.ni.dll AEM.Plugin.REG.Shared.ni 4.5.4990.33590 14.00 KB (14,336 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\aem.plugin.88aba5d2#\c3e9974ec01a1073e47fae584ff59469\aem.plugin.reg.shared.ni.dll CLI.Caste.Graphics.Runtime.ni 4.5.4990.33591 3.01 MB (3,153,920 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.g962aa464#\526a3140edb1f0efeaade60d9b876d9c\cli.caste.graphics.runtime.ni.dll CLI.Caste.Graphics.Shared.ni 4.5.4990.33584 2.54 MB (2,667,008 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.g60a7b4d1#\557b51015675458bcbf51cf2c8e4183f\cli.caste.graphics.shared.ni.dll AEM.Plugin.GD.Shared.ni 4.5.4990.33589 13.50 KB (13,824 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\aem.plugin.gd.shared\1275888ae9e0e0f154881f42cc7f3eb9\aem.plugin.gd.shared.ni.dll AEM.Plugin.Audio.Shared.ni 4.5.4990.33590 13.50 KB (13,824 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\aem.plugin.4adf1574#\74bc2b9cb63f014b10e0ac8e3fe335cc\aem.plugin.audio.shared.ni.dll AEM.Actions.CCAA.Shared.ni 4.5.4990.33586 23.00 KB (23,552 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\aem.actions5dc83b46#\cd615895c9199e784871c861d641b97f\aem.actions.ccaa.shared.ni.dll ResourceManagement.Foundation.Private.ni 4.5.4990.33590 26.50 KB (27,136 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\resourcemanf163905a#\de694989e36d0a810a3838b244d6d252\resourcemanagement.foundation.private.ni.dll DEM.Graphics.I0709.ni 4.5.0.0 87.00 KB (89,088 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\dem.graphics.i0709\88abaa49f43de96d7d054188143c6d0b\dem.graphics.i0709.ni.dll DEM.Graphics.I0804.ni 4.5.0.0 19.50 KB (19,968 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\dem.graphics.i0804\42ba051e18dd24bc0082915ad3de1f48\dem.graphics.i0804.ni.dll WindowsBase.ni 4.0.30319.18408 5.25 MB (5,500,416 bytes) 26/02/2014 13:37 Microsoft Corporation c:\windows\assembly\nativeimages_v4.0.30319_64\windowsbase\8be42454b4d7db7686ea494691d18b16\windowsbase.ni.dll CLI.Aspect.DisplaysColour2.Graphics.Runtime 4.5.4990.33605 25.50 KB (26,112 bytes) 30/08/2013 19:40 Not Available c:\program files (x86)\ati technologies\ati.ace\core-static\cli.aspect.displayscolour2.graphics.runtime.dll CLI.Caste.Graphics.Runtime.Shared.Private.ni 4.5.4990.33604 41.00 KB (41,984 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.g60338cc0#\8ebd5f54d308c5f052ee7336e50307c7\cli.caste.graphics.runtime.shared.private.ni.dll CLI.Aspect.DisplaysColour2.Graphics.Shared.ni 4.5.4990.33602 114.00 KB (116,736 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.ae5e117c#\2c1ec84a0ae26e82dfc5a37e47030f28\cli.aspect.displayscolour2.graphics.shared.ni.dll CLI.Aspect.DeviceCRT.Graphics.Runtime 4.5.4990.33607 44.00 KB (45,056 bytes) 30/08/2013 19:40 Not Available c:\program files (x86)\ati technologies\ati.ace\core-static\cli.aspect.devicecrt.graphics.runtime.dll CLI.Aspect.DeviceProperty.Graphics.Shared.ni 4.5.4990.33598 496.00 KB (507,904 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.acb9d930#\d096dc13954829bcac0153984e593113\cli.aspect.deviceproperty.graphics.shared.ni.dll CLI.Aspect.DeviceCRT.Graphics.Shared.ni 4.5.4990.33600 241.00 KB (246,784 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.4542c692#\c6f3666c470456dfaa73d793f52198ef\cli.aspect.devicecrt.graphics.shared.ni.dll DEM.Graphics.I0912.ni 4.5.0.0 16.50 KB (16,896 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\dem.graphics.i0912\560f0d7901a92dd12098235f54e1c09d\dem.graphics.i0912.ni.dll DEM.Graphics.I0706.ni 4.5.0.0 16.00 KB (16,384 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\dem.graphics.i0706\68b26b000844aed427f1dcc43b2b840a\dem.graphics.i0706.ni.dll DEM.Graphics.I0712.ni 4.5.0.0 14.00 KB (14,336 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\dem.graphics.i0712\bdc1d9265318b62e07cbdfdcb04201cf\dem.graphics.i0712.ni.dll CLI.Aspect.DeviceProperty.Graphics.Runtime.ni 4.5.4990.33606 325.00 KB (332,800 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.9b707b25#\e2289b7cfba984edcdbe0ce7b9a23e1e\cli.aspect.deviceproperty.graphics.runtime.ni.dll CLI.Combined.Graphics.Aspects2.Runtime.ni 4.5.4990.33609 1.02 MB (1,064,960 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.combine7332395e#\755344c284856296095e0b3585fd3f1c\cli.combined.graphics.aspects2.runtime.ni.dll CLI.Aspect.DeviceLCD.Graphics.Shared.ni 4.5.4990.33600 152.50 KB (156,160 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.a0ae52bc#\1dd6855926681be9f7e3884d6903c32b\cli.aspect.devicelcd.graphics.shared.ni.dll CLI.Aspect.DeviceDFP.Graphics.Runtime 4.5.4990.33606 68.00 KB (69,632 bytes) 30/08/2013 19:40 Not Available c:\program files (x86)\ati technologies\ati.ace\core-static\cli.aspect.devicedfp.graphics.runtime.dll CLI.Aspect.DeviceDFP.Graphics.Shared.ni 4.5.4990.33598 309.00 KB (316,416 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.7ec2db45#\14db12823ab0669cc979b2ccdad402db\cli.aspect.devicedfp.graphics.shared.ni.dll CLI.Aspect.CustomFormats.Graphics.Shared.ni 4.5.4990.33598 144.00 KB (147,456 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.3399d0ec#\1b12eacc6637682783540c8ffd7fcb51\cli.aspect.customformats.graphics.shared.ni.dll DEM.Graphics.I0812.ni 4.5.0.0 13.00 KB (13,312 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\dem.graphics.i0812\9586122d399b48d2b67cae1e816c2ed9\dem.graphics.i0812.ni.dll DEM.Graphics.I0805.ni 4.5.0.0 12.00 KB (12,288 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\dem.graphics.i0805\d5efa2f5b1a8b4cebc7f4134b0c8c7f0\dem.graphics.i0805.ni.dll CLI.Aspect.OverDrive5.Graphics.Shared.ni 4.5.4990.33621 344.00 KB (352,256 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.c7aaa0f8#\32d5679c05f381199d9ac8c2d0664077\cli.aspect.overdrive5.graphics.shared.ni.dll DEM.Graphics.I0703.ni 4.5.0.0 19.00 KB (19,456 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\dem.graphics.i0703\c9e023c0980127665c113e05d52f9cd3\dem.graphics.i0703.ni.dll CLI.Aspect.Radeon3D.Graphics.Runtime 4.5.4990.33610 108.00 KB (110,592 bytes) 30/08/2013 19:40 Not Available c:\program files (x86)\ati technologies\ati.ace\core-static\cli.aspect.radeon3d.graphics.runtime.dll CLI.Aspect.Radeon3D.Graphics.Shared.ni 4.5.4990.33609 820.00 KB (839,680 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.8d333b6b#\335d401118d9083ef92ec1d6214c95f5\cli.aspect.radeon3d.graphics.shared.ni.dll DEM.Graphics.I1011 4.5.0.0 4.50 KB (4,608 bytes) 07/05/2013 16:08 Not Available c:\program files (x86)\ati technologies\ati.ace\core-static\dem.graphics.i1011.dll CLI.Aspect.MMVideo.Graphics.Runtime 4.5.4990.33607 92.00 KB (94,208 bytes) 30/08/2013 19:40 Not Available c:\program files (x86)\ati technologies\ati.ace\core-static\cli.aspect.mmvideo.graphics.runtime.dll CLI.Aspect.MMVideo.Graphics.Shared.ni 4.5.4990.33606 259.00 KB (265,216 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.eda8935e#\9871c6243a0ae786aeeed71232a467ef\cli.aspect.mmvideo.graphics.shared.ni.dll DEM.Graphics.I0906.ni 4.5.0.0 15.50 KB (15,872 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\dem.graphics.i0906\b33fe03f5df4ae1904cc49beb8f99013\dem.graphics.i0906.ni.dll CLI.Aspect.TransCode.Graphics.Runtime.ni 4.5.4990.33631 53.00 KB (54,272 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.ef3eaa4d#\d1cadf162fda7176531b7aae73962b41\cli.aspect.transcode.graphics.runtime.ni.dll CLI.Aspect.TransCode.Graphics.Shared.ni 4.5.4990.33616 125.50 KB (128,512 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.3a6f1658#\4e60c7c4f3ca117f1ae59eda0bfcc68c\cli.aspect.transcode.graphics.shared.ni.dll CLI.Aspect.AMDHome.Graphics.Runtime 4.5.4990.33689 14.00 KB (14,336 bytes) 30/08/2013 19:42 Not Available c:\program files (x86)\ati technologies\ati.ace\core-static\cli.aspect.amdhome.graphics.runtime.dll CLI.Aspect.AMDHome.Graphics.Shared.ni 4.5.4990.33687 42.50 KB (43,520 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.37d3d968#\7d63d60b13c7601bcad21c3e65dbb5ca\cli.aspect.amdhome.graphics.shared.ni.dll CLI.Aspect.HotkeysHandling.Graphics.Runtime 4.5.4990.33602 20.00 KB (20,480 bytes) 30/08/2013 19:40 Not Available c:\program files (x86)\ati technologies\ati.ace\core-static\cli.aspect.hotkeyshandling.graphics.runtime.dll CLI.Aspect.HotkeysHandling.Graphics.Shared.ni 4.5.4990.33589 19.00 KB (19,456 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.c854b457#\c44bc3f64dec2b0cbccbe22284cd8eab\cli.aspect.hotkeyshandling.graphics.shared.ni.dll CLI.Caste.Fuel.Runtime.ni 4.5.4990.33632 346.00 KB (354,304 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.f36b07a2b#\a9c1e5c46878aa20feb032fb67eb3883\cli.caste.fuel.runtime.ni.dll CLI.Caste.Fuel.Shared.ni 4.5.4990.33631 50.50 KB (51,712 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.f24de14fe#\a57d5f43dc8a861ebceecddc2d6daa0c\cli.caste.fuel.shared.ni.dll Fuel.Foundation.ni 4.5.0.0 41.00 KB (41,984 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\fuel.foundation\c9cc0dfad51fbc05b3b4f4ab80063eb6\fuel.foundation.ni.dll CLI.Caste.Platform.Runtime.ni 4.5.4990.33692 51.50 KB (52,736 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.pdb36d56e#\e5ad7592ab94bf2ef3db20eaa048774a\cli.caste.platform.runtime.ni.dll CLI.Caste.Platform.Shared.ni 4.5.4990.33690 46.50 KB (47,616 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.pac40511b#\4da1da097b955f47e5fbbd6df6c3bfbc\cli.caste.platform.shared.ni.dll CLI.Aspect.AMDOverDrive.Platform.Runtime 4.5.4990.33692 15.50 KB (15,872 bytes) 30/08/2013 19:43 Not Available c:\program files (x86)\ati technologies\ati.ace\core-static\cli.aspect.amdoverdrive.platform.runtime.dll CLI.Aspect.AMDOverDrive.Platform.Shared.ni 4.5.4990.33622 48.50 KB (49,664 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.382a3def#\69cfa18a86f3ab34324968f876d465a8\cli.aspect.amdoverdrive.platform.shared.ni.dll CLI.Aspect.CPUOverDrive.Fuel.Shared 4.5.4990.33689 19.00 KB (19,456 bytes) 30/08/2013 19:42 Not Available c:\program files (x86)\ati technologies\ati.ace\core-static\cli.aspect.cpuoverdrive.fuel.shared.dll CLI.Caste.HydraVision.Runtime.ni 4.5.4990.33623 53.50 KB (54,784 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.h18c99613#\b37a1de18d06cc715268bc8fe2b4fa9c\cli.caste.hydravision.runtime.ni.dll CLI.Caste.HydraVision.Shared.ni 4.5.4990.33622 46.50 KB (47,616 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.h92ba4e46#\9c6093b2542de6c5bff2f24ff495dde1\cli.caste.hydravision.shared.ni.dll CLI.Caste.A4.Runtime.ni 4.5.4990.33700 74.00 KB (75,776 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.a4.runtime\5f9333cc469ef22e8188faaec3b86436\cli.caste.a4.runtime.ni.dll CLI.Caste.A4.Shared.ni 4.5.4990.33699 50.00 KB (51,200 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.a4.shared\36075d65ceb349be8ed4a6aad75ca6de\cli.caste.a4.shared.ni.dll A4.Foundation.ni 4.5.0.0 35.00 KB (35,840 bytes) 26/02/2014 13:37 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\a4.foundation\c1f60e74078abec73e89afb8b7e7f37f\a4.foundation.ni.dll System.ServiceProcess.ni 4.0.30319.18408 273.50 KB (280,064 bytes) 26/02/2014 13:39 Microsoft Corporation c:\windows\assembly\nativeimages_v4.0.30319_64\system.serv759bfb78#\99f3ab10177d29e82e0d8122a7005ba9\system.serviceprocess.ni.dll APM.Server.ni 4.5.4990.33588 283.50 KB (290,304 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\apm.server\3613c280f0392f9b8619e4139a5c9c13\apm.server.ni.dll APM.Foundation.ni 4.5.4990.33583 60.00 KB (61,440 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\apm.foundation\c65e49ebfbfe8644646fe72d5770c9ba\apm.foundation.ni.dll CLI.Component.Runtime.Extension.EEU.ni 4.5.4990.33588 20.50 KB (20,992 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.componeb4d0485c#\0d7d5a6a7371ae074bb96292d8a29ee9\cli.component.runtime.extension.eeu.ni.dll CLI.Component.Dashboard.ni 4.5.4990.33597 930.50 KB (952,832 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.compone6bf88b08#\5ffa88a21f0d3401424ded7cb69df054\cli.component.dashboard.ni.dll CLI.Component.Client.Shared.Private.ni 4.5.4990.33592 147.00 KB (150,528 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.compone168638d1#\84850dfa06349e09c7d29671028014fd\cli.component.client.shared.private.ni.dll CLI.Component.Client.Shared.ni 4.5.4990.33583 22.00 KB (22,528 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.componef1fd67b2#\ad566b80533cc7b857d91ff30201524e\cli.component.client.shared.ni.dll AEM.Plugin.EEU.Shared.ni 4.5.4990.33588 14.50 KB (14,848 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\aem.plugin.0a1309f7#\34d8fb8e86a3642cc0122bce7350e49a\aem.plugin.eeu.shared.ni.dll CLI.Component.Dashboard.Shared.ni 4.5.4990.33584 90.50 KB (92,672 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.componef4cf054f#\aeaa17232e3b9b3bb6db7ac8e2a05b65\cli.component.dashboard.shared.ni.dll CLI.Component.Dashboard.Shared.Private.ni 4.5.4990.33595 1.54 MB (1,619,456 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.componec89c3bec#\c28a41bc08a67b8cf8d8634f14ffa99d\cli.component.dashboard.shared.private.ni.dll PresentationCore.ni 4.0.30319.18408 14.18 MB (14,871,040 bytes) 26/02/2014 13:37 Microsoft Corporation c:\windows\assembly\nativeimages_v4.0.30319_64\presentationcore\bb1efedf0f2aa2ebbf9f0bf640c9721d\presentationcore.ni.dll PresentationFramework.ni 4.0.30319.18408 23.43 MB (24,571,392 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\presentatio5ae0f00f#\91b87b18c4453c04c9cebdeea2952826\presentationframework.ni.dll System.Xaml.ni 4.0.30319.18408 2.44 MB (2,563,584 bytes) 26/02/2014 13:37 Microsoft Corporation c:\windows\assembly\nativeimages_v4.0.30319_64\system.xaml\e3882692d8f0e323f93b4d95c204b7b7\system.xaml.ni.dll dwrite 6.2.9200.16571 1.57 MB (1,643,520 bytes) 05/09/2013 21:52 Microsoft Corporation c:\windows\system32\dwrite.dll wpfgfx_v0400 4.0.30319.18408 2.02 MB (2,122,848 bytes) 11/09/2013 20:39 Microsoft Corporation c:\windows\microsoft.net\framework64\v4.0.30319\wpf\wpfgfx_v0400.dll PresentationNative_v0400 4.0.30319.18408 1.03 MB (1,080,464 bytes) 11/09/2013 20:39 Microsoft Corporation c:\windows\microsoft.net\framework64\v4.0.30319\wpf\presentationnative_v0400.dll CLI.Component.Systemtray.ni 4.5.4990.33612 933.50 KB (955,904 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.compone26c9c557#\89261d3a3abf041a2a8695e43f16248c\cli.component.systemtray.ni.dll ResourceManagement.Foundation.Implementation.ni 4.5.4990.33630 247.00 KB (252,928 bytes) 26/02/2014 13:40 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\resourceman446ca0e5#\7f691311b2b36e86b23816407a443e09\resourcemanagement.foundation.implementation.ni.dll BrandingNet4 4.0.4518.29155 96.00 KB (98,304 bytes) 05/06/2013 15:51 Not Available c:\program files (x86)\ati technologies\ati.ace\branding\brandingnet4.dll CLI.Aspect.WirelessDisplay.Graphics.Shared.ni 4.5.4990.33612 288.50 KB (295,424 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.73911eb5#\3cafd4d9a45b75e35e8e68ce08fd02d1\cli.aspect.wirelessdisplay.graphics.shared.ni.dll Localization.Foundation.Private.ni 4.5.4990.33577 994.50 KB (1,018,368 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\localizatio01dbc1c0#\8254438007e7509dac006d3e72e44c43\localization.foundation.private.ni.dll Localization.Foundation.Implementation.default_Localization 3.5.0.0 340.50 KB (348,672 bytes) 30/08/2013 19:39 Not Available c:\program files (x86)\ati technologies\ati.ace\core-static\localization.foundation.implementation.default_localization.dll CLI.Caste.Graphics.Dashboard.ni 4.5.4990.33602 476.50 KB (487,936 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.gee7d2dbc#\00acd76f1eac058f994c5fcf7108cbfd\cli.caste.graphics.dashboard.ni.dll CLI.Caste.Graphics.Dashboard.Shared.ni 4.5.4990.33599 1.53 MB (1,600,000 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.gd9d9b43b#\9cc253ecf49aa6202eb88ffaf631d13d\cli.caste.graphics.dashboard.shared.ni.dll CLI.Aspect.AMDHome.Graphics.Dashboard.ni 4.5.4990.33688 90.00 KB (92,160 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.ec8786e5#\4adcd01871e514d4aa6deecf1fc69404\cli.aspect.amdhome.graphics.dashboard.ni.dll CLI.Aspect.InfoCentre.Graphics.Dashboard.ni 4.5.4990.33604 282.50 KB (289,280 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.e8635fc7#\5ea3bc7785f4fd9a6f77fef01188c5e7\cli.aspect.infocentre.graphics.dashboard.ni.dll CLI.Combined.Graphics.Aspects1.Dashboard.ni 4.5.4990.33653 2.59 MB (2,713,600 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.combine0616f305#\985c9c3f6ee19b5b7d6ec1c17bff8e96\cli.combined.graphics.aspects1.dashboard.ni.dll CLI.Aspect.DisplaysManager.Graphics.Dashboard 4.5.4990.33661 614.00 KB (628,736 bytes) 30/08/2013 19:42 Not Available c:\program files (x86)\ati technologies\ati.ace\core-static\cli.aspect.displaysmanager.graphics.dashboard.dll CLI.Aspect.CrossDisplay.Graphics.Dashboard.ni 4.5.4990.33641 455.00 KB (465,920 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.8e996306#\f17582fb26d665d0bdca4b5f3be5977f\cli.aspect.crossdisplay.graphics.dashboard.ni.dll CLI.Aspect.DisplaysOptions.Graphics.Dashboard.ni 4.5.4990.33609 74.00 KB (75,776 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.b0a7c1fb#\583bfede0138256ad6d40b4faf7770e1\cli.aspect.displaysoptions.graphics.dashboard.ni.dll CLI.Aspect.DeviceDFP.Graphics.Dashboard.ni 4.5.4990.33648 753.50 KB (771,584 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.e6d9f3a8#\161b886b7d590b1211c1b658f6ed2faf\cli.aspect.devicedfp.graphics.dashboard.ni.dll CLI.Aspect.Radeon3D.Graphics.Dashboard.ni 4.5.4990.33637 3.24 MB (3,396,096 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.e9fd7406#\9ab4387910b30caf4061c6454baa3298\cli.aspect.radeon3d.graphics.dashboard.ni.dll CLI.Aspect.MMVideo.Graphics.Dashboard.ni 4.5.4990.33645 630.50 KB (645,632 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.846fa813#\4d6fa52d8e39d013ec9b75a18840379f\cli.aspect.mmvideo.graphics.dashboard.ni.dll CLI.Aspect.TransCode.Graphics.Dashboard.ni 4.5.4990.33655 73.50 KB (75,264 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.4bbb0755#\b5275c9a2c8eac946b8bb0cefeea348e\cli.aspect.transcode.graphics.dashboard.ni.dll CLI.Aspect.OverDrive5.Graphics.Dashboard.ni 4.5.4990.33671 265.00 KB (271,360 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.87ad5c75#\a9a4eb336cb91cc90328d29090d0d065\cli.aspect.overdrive5.graphics.dashboard.ni.dll CLI.Aspect.Audio.Graphics.Dashboard 4.5.4990.33694 44.50 KB (45,568 bytes) 30/08/2013 19:43 Not Available c:\program files (x86)\ati technologies\ati.ace\core-static\cli.aspect.audio.graphics.dashboard.dll CLI.Caste.Fuel.Dashboard.ni 4.5.4990.33632 32.00 KB (32,768 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.ff3085433#\6d75e52063c3ab257dadd4a9a8cc0ae1\cli.caste.fuel.dashboard.ni.dll CLI.Caste.Platform.Dashboard.ni 4.5.4990.33692 28.00 KB (28,672 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.pfeefa2b6#\7593b462f3d601009f848b788f8ead9e\cli.caste.platform.dashboard.ni.dll CLI.Aspect.AMDOverDrive.Platform.Dashboard 4.5.4990.33692 40.00 KB (40,960 bytes) 30/08/2013 19:43 Not Available c:\program files (x86)\ati technologies\ati.ace\core-static\cli.aspect.amdoverdrive.platform.dashboard.dll CLI.Caste.HydraVision.Dashboard.ni 4.5.4990.33623 30.50 KB (31,232 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.hbb906c0b#\cba51d12dd27cc43caf683faf6c4ec55\cli.caste.hydravision.dashboard.ni.dll CLI.Caste.A4.Dashboard.ni 4.5.4990.33699 31.50 KB (32,256 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.caste.af820fedc#\ffdbdea0d084bc9c55af919f85c2bb3a\cli.caste.a4.dashboard.ni.dll CLI.Foundation.Client.ni 4.5.4990.33594 922.00 KB (944,128 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.foundatd3771151#\f3008eb270e34d044cd8ab0d7dfdf133\cli.foundation.client.ni.dll d3d9 6.1.7601.17514 1.97 MB (2,067,456 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\d3d9.dll d3d8thk 6.1.7600.16385 12.00 KB (12,288 bytes) 14/07/2009 00:41 Microsoft Corporation c:\windows\system32\d3d8thk.dll atiu9p64 8.14.1.6340 111.80 KB (114,488 bytes) 28/09/2012 02:11 Advanced Micro Devices, Inc. c:\windows\system32\atiu9p64.dll atiumd64 9.14.10.984 6.92 MB (7,256,496 bytes) 28/09/2012 02:25 Advanced Micro Devices, Inc. c:\windows\system32\atiumd64.dll atiumd6a 8.14.10.415 6.45 MB (6,767,240 bytes) 28/09/2012 02:31 Advanced Micro Devices, Inc. c:\windows\system32\atiumd6a.dll PresentationFramework.Aero.ni 4.0.30319.18408 553.00 KB (566,272 bytes) 26/02/2014 13:40 Microsoft Corporation c:\windows\assembly\nativeimages_v4.0.30319_64\presentatio1c9175f8#\9a5f2133b9d4738948dfcf7ebcb82e3e\presentationframework.aero.ni.dll CLI.Component.Dashboard.ProfileManager2.ni 4.5.4990.33669 179.50 KB (183,808 bytes) 26/02/2014 13:39 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.compone29e547cc#\7cc30ef2ed38ac94b6edd64a11adbbbd\cli.component.dashboard.profilemanager2.ni.dll Microsoft.WindowsAPICodePack.ni 4.5.0.0 358.50 KB (367,104 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\microsoft.w8090224c#\bccd9e7337b3a153e28b4339671b4865\microsoft.windowsapicodepack.ni.dll Microsoft.WindowsAPICodePack.Shell.ni 4.5.0.0 2.91 MB (3,053,568 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\microsoft.wfbf9373c#\cbae189fa5058d3a512994cc62aba2d3\microsoft.windowsapicodepack.shell.ni.dll PresentationFramework-SystemXml.ni 4.0.30319.18408 22.00 KB (22,528 bytes) 26/02/2014 13:40 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\presentatio49d6fefe#\a041ca8cc604314c67e218842a591568\presentationframework-systemxml.ni.dll WindowsFormsIntegration.ni 4.0.30319.18408 329.00 KB (336,896 bytes) 26/02/2014 13:38 Microsoft Corporation c:\windows\assembly\nativeimages_v4.0.30319_64\windowsform0b574481#\f60034b135067f2ba42eb767440fc7ce\windowsformsintegration.ni.dll mshtml 11.0.9600.16659 22.06 MB (23,134,208 bytes) 09/04/2014 10:07 Microsoft Corporation c:\windows\system32\mshtml.dll UIAutomationProvider.ni 4.0.30319.18408 143.50 KB (146,944 bytes) 26/02/2014 13:37 Microsoft Corporation c:\windows\assembly\nativeimages_v4.0.30319_64\uiautomationprovider\cc812ab0734dc1ad856c116c09899820\uiautomationprovider.ni.dll CLI.Aspect.DeviceProperty.Graphics.Dashboard.Shared.ni 4.5.4990.33643 1.61 MB (1,683,456 bytes) 26/02/2014 13:38 Not Available c:\windows\assembly\nativeimages_v4.0.30319_64\cli.aspect.aa59351a#\f9dd34e6ef58ae8cfccb3c32383f1900\cli.aspect.deviceproperty.graphics.dashboard.shared.ni.dll IAStorIcon 12.0.0.1083 279.48 KB (286,192 bytes) 31/01/2013 14:20 Not Available c:\program files\intel\intel(r) rapid storage technology\iastoricon.exe iexplore 11.0.9600.16521 787.21 KB (806,104 bytes) 13/03/2014 05:38 Microsoft Corporation c:\program files\internet explorer\iexplore.exe ieshims 11.0.9600.16521 345.00 KB (353,280 bytes) 13/03/2014 05:38 Microsoft Corporation c:\program files\internet explorer\ieshims.dll ieui 11.0.9600.16521 561.50 KB (574,976 bytes) 13/03/2014 05:38 Microsoft Corporation c:\windows\system32\ieui.dll schannel 6.1.7601.18270 333.00 KB (340,992 bytes) 13/11/2013 03:33 Microsoft Corporation c:\windows\system32\schannel.dll gpapi 6.1.7600.16385 94.50 KB (96,768 bytes) 14/07/2009 00:54 Microsoft Corporation c:\windows\system32\gpapi.dll cryptnet 6.1.7601.18205 136.50 KB (139,776 bytes) 05/09/2013 16:56 Microsoft Corporation c:\windows\system32\cryptnet.dll sensapi 6.1.7600.16385 15.50 KB (15,872 bytes) 14/07/2009 00:34 Microsoft Corporation c:\windows\system32\sensapi.dll ieapfltr 11.0.9600.16521 798.50 KB (817,664 bytes) 13/03/2014 05:38 Microsoft Corporation c:\windows\system32\ieapfltr.dll imagehlp 6.1.7601.18288 79.50 KB (81,408 bytes) 10/12/2013 21:25 Microsoft Corporation c:\windows\system32\imagehlp.dll winhttp 6.1.7601.17514 434.00 KB (444,416 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\winhttp.dll webio 6.1.7601.17725 386.50 KB (395,776 bytes) 05/09/2013 16:56 Microsoft Corporation c:\windows\system32\webio.dll FlashUtil64_13_0_0_182_ActiveX 13.0.0.182 521.17 KB (533,680 bytes) 11/04/2014 10:29 Adobe Systems Incorporated c:\windows\system32\macromed\flash\flashutil64_13_0_0_182_activex.exe mscms 6.1.7601.17514 611.00 KB (625,664 bytes) 21/11/2010 03:24 Microsoft Corporation c:\windows\system32\mscms.dll oleaccrc 7.0.0.0 4.00 KB (4,096 bytes) 14/07/2009 00:39 Microsoft Corporation c:\windows\system32\oleaccrc.dll FlashUtil64_13_0_0_182_ActiveX 13.0.0.182 548.17 KB (561,328 bytes) 11/04/2014 10:29 Adobe Systems, Inc. c:\windows\system32\macromed\flash\flashutil64_13_0_0_182_activex.dll dinput8 6.1.7600.16385 191.00 KB (195,584 bytes) 14/07/2009 01:20 Microsoft Corporation c:\windows\system32\dinput8.dll iexplore 11.0.9600.16521 789.21 KB (808,152 bytes) 13/03/2014 05:38 Microsoft Corporation c:\program files (x86)\internet explorer\iexplore.exe FreeConverter 2.2.0.0 3.01 MB (3,153,920 bytes) 12/04/2014 15:42 Koyote Lab Inc. c:\program files (x86)\free mp3 wma converter\freeconverter\freeconverter.exe msinfo32 6.1.7601.17514 370.00 KB (378,880 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\msinfo32.exe mfc42u 6.6.8064.0 1.30 MB (1,359,872 bytes) 05/09/2013 16:55 Microsoft Corporation c:\windows\system32\mfc42u.dll odbc32 6.1.7601.17514 704.00 KB (720,896 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\odbc32.dll odbcint 6.1.7600.16385 224.00 KB (229,376 bytes) 14/07/2009 01:28 Microsoft Corporation c:\windows\system32\odbcint.dll wbemprox 6.1.7600.16385 42.50 KB (43,520 bytes) 14/07/2009 00:46 Microsoft Corporation c:\windows\system32\wbem\wbemprox.dll wbemcomn 6.1.7601.17514 517.00 KB (529,408 bytes) 21/11/2010 03:23 Microsoft Corporation c:\windows\system32\wbemcomn.dll wbemsvc 6.1.7600.16385 63.00 KB (64,512 bytes) 14/07/2009 00:46 Microsoft Corporation c:\windows\system32\wbem\wbemsvc.dll fastprox 6.1.7600.16385 888.00 KB (909,312 bytes) 14/07/2009 00:47 Microsoft Corporation c:\windows\system32\wbem\fastprox.dll [Services] Display Name Name State Start Mode Service Type Path Error Control Start Name Tag ID Adobe Acrobat Update Service AdobeARMservice Running Auto Own Process "c:\program files (x86)\common files\adobe\arm\1.0\armsvc.exe" Ignore LocalSystem 0 Adobe Flash Player Update Service AdobeFlashPlayerUpdateSvc Stopped Manual Own Process c:\windows\syswow64\macromed\flash\flashplayerupdateservice.exe Normal LocalSystem 0 Application Experience AeLookupSvc Running Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal localSystem 0 Application Layer Gateway Service ALG Stopped Manual Own Process c:\windows\system32\alg.exe Normal NT AUTHORITY\LocalService 0 AMD External Events Utility AMD External Events Utility Running Auto Own Process c:\windows\system32\atiesrxx.exe Normal LocalSystem 0 Apache2.2 Apache2.2 Running Auto Own Process "c:\program files (x86)\apache software foundation\apache2.2\bin\httpd.exe" -k runservice Normal LocalSystem 0 Application Host Helper Service AppHostSvc Running Auto Share Process c:\windows\system32\svchost.exe -k apphost Normal LocalSystem 0 Application Identity AppIDSvc Stopped Manual Share Process c:\windows\system32\svchost.exe -k localserviceandnoimpersonation Normal NT Authority\LocalService 0 Application Information Appinfo Running Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 AppleChargerSrv AppleChargerSrv Stopped Manual Own Process system32\applechargersrv.exe Normal localSystem 0 Application Management AppMgmt Stopped Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 ASP.NET State Service aspnet_state Stopped Disabled Own Process c:\windows\microsoft.net\framework64\v4.0.30319\aspnet_state.exe Normal NT AUTHORITY\NetworkService 0 Windows Audio Endpoint Builder AudioEndpointBuilder Running Auto Share Process c:\windows\system32\svchost.exe -k localsystemnetworkrestricted Normal LocalSystem 0 Windows Audio AudioSrv Running Auto Share Process c:\windows\system32\svchost.exe -k localservicenetworkrestricted Normal NT AUTHORITY\LocalService 0 avast! Antivirus avast! Antivirus Running Auto Share Process "c:\program files\avast software\avast\avastsvc.exe" Normal LocalSystem 0 ActiveX Installer (AxInstSV) AxInstSV Stopped Manual Share Process c:\windows\system32\svchost.exe -k axinstsvgroup Normal LocalSystem 0 BitLocker Drive Encryption Service BDESVC Stopped Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal localSystem 0 Base Filtering Engine BFE Running Auto Share Process c:\windows\system32\svchost.exe -k localservicenonetwork Normal NT AUTHORITY\LocalService 0 Background Intelligent Transfer Service BITS Running Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 Computer Browser Browser Running Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 Bluetooth Support Service bthserv Stopped Manual Share Process c:\windows\system32\svchost.exe -k bthsvcs Normal NT AUTHORITY\LocalService 0 Certificate Propagation CertPropSvc Stopped Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 Microsoft .NET Framework NGEN v2.0.50727_X86 clr_optimization_v2.0.50727_32 Stopped Disabled Own Process c:\windows\microsoft.net\framework\v2.0.50727\mscorsvw.exe Ignore LocalSystem 0 Microsoft .NET Framework NGEN v2.0.50727_X64 clr_optimization_v2.0.50727_64 Stopped Disabled Own Process c:\windows\microsoft.net\framework64\v2.0.50727\mscorsvw.exe Ignore LocalSystem 0 Microsoft .NET Framework NGEN v4.0.30319_X86 clr_optimization_v4.0.30319_32 Stopped Auto Own Process c:\windows\microsoft.net\framework\v4.0.30319\mscorsvw.exe Ignore LocalSystem 0 Microsoft .NET Framework NGEN v4.0.30319_X64 clr_optimization_v4.0.30319_64 Stopped Auto Own Process c:\windows\microsoft.net\framework64\v4.0.30319\mscorsvw.exe Ignore LocalSystem 0 COM+ System Application COMSysApp Stopped Manual Own Process c:\windows\system32\dllhost.exe /processid:{02d4b3f1-fd88-11d1-960d-00805fc79235} Normal LocalSystem 0 Intel(R) Content Protection HECI Service cphs Stopped Manual Own Process c:\windows\syswow64\intelcphecisvc.exe Normal LocalSystem 0 Cryptographic Services CryptSvc Running Auto Share Process c:\windows\system32\svchost.exe -k networkservice Normal NT Authority\NetworkService 0 Offline Files CscService Running Auto Share Process c:\windows\system32\svchost.exe -k localsystemnetworkrestricted Normal LocalSystem 0 DCOM Server Process Launcher DcomLaunch Running Auto Share Process c:\windows\system32\svchost.exe -k dcomlaunch Normal LocalSystem 0 Disk Defragmenter defragsvc Stopped Manual Own Process c:\windows\system32\svchost.exe -k defragsvc Normal localSystem 0 DHCP Client Dhcp Running Auto Share Process c:\windows\system32\svchost.exe -k localservicenetworkrestricted Normal NT Authority\LocalService 0 DNS Client Dnscache Running Auto Share Process c:\windows\system32\svchost.exe -k networkservice Normal NT AUTHORITY\NetworkService 0 Wired AutoConfig dot3svc Stopped Manual Share Process c:\windows\system32\svchost.exe -k localsystemnetworkrestricted Normal localSystem 0 Diagnostic Policy Service DPS Running Auto Share Process c:\windows\system32\svchost.exe -k localservicenonetwork Normal NT AUTHORITY\LocalService 0 Extensible Authentication Protocol EapHost Stopped Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal localSystem 0 Encrypting File System (EFS) EFS Running Auto Share Process c:\windows\system32\lsass.exe Normal LocalSystem 0 Windows Media Center Receiver Service ehRecvr Stopped Manual Own Process c:\windows\ehome\ehrecvr.exe Ignore NT AUTHORITY\networkService 0 Windows Media Center Scheduler Service ehSched Stopped Manual Own Process c:\windows\ehome\ehsched.exe Ignore NT AUTHORITY\networkService 0 Windows Event Log eventlog Running Auto Share Process c:\windows\system32\svchost.exe -k localservicenetworkrestricted Normal NT AUTHORITY\LocalService 0 COM+ Event System EventSystem Running Auto Share Process c:\windows\system32\svchost.exe -k localservice Normal NT AUTHORITY\LocalService 0 Fax Fax Stopped Manual Own Process c:\windows\system32\fxssvc.exe Normal NT AUTHORITY\NetworkService 0 Function Discovery Provider Host fdPHost Running Manual Share Process c:\windows\system32\svchost.exe -k localservice Normal NT AUTHORITY\LocalService 0 Function Discovery Resource Publication FDResPub Running Manual Share Process c:\windows\system32\svchost.exe -k localserviceandnoimpersonation Normal NT AUTHORITY\LocalService 0 Windows Font Cache Service FontCache Running Auto Share Process c:\windows\system32\svchost.exe -k localservice Normal NT AUTHORITY\LocalService 0 Windows Presentation Foundation Font Cache 3.0.0.0 FontCache3.0.0.0 Stopped Manual Own Process c:\windows\microsoft.net\framework64\v3.0\wpf\presentationfontcache.exe Normal NT Authority\LocalService 0 Group Policy Client gpsvc Running Auto Own Process c:\windows\system32\svchost.exe -k gpsvcgroup Normal LocalSystem 0 Human Interface Device Access hidserv Running Manual Share Process c:\windows\system32\svchost.exe -k localsystemnetworkrestricted Normal LocalSystem 0 Health Key and Certificate Management hkmsvc Stopped Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal localSystem 0 HomeGroup Provider HomeGroupProvider Running Manual Share Process c:\windows\system32\svchost.exe -k localservicenetworkrestricted Normal NT AUTHORITY\LocalService 0 Intel(R) Rapid Storage Technology IAStorDataMgrSvc Running Auto Own Process "c:\program files\intel\intel(r) rapid storage technology\iastordatamgrsvc.exe" Ignore LocalSystem 0 Windows CardSpace idsvc Stopped Manual Share Process "c:\windows\microsoft.net\framework64\v3.0\windows communication foundation\infocard.exe" Normal LocalSystem 0 Internet Explorer ETW Collector Service IEEtwCollectorService Stopped Manual Own Process c:\windows\system32\ieetwcollector.exe /v Normal LocalSystem 0 IKE and AuthIP IPsec Keying Modules IKEEXT Stopped Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 Intel(R) Capability Licensing Service Interface Intel(R) Capability Licensing Service Interface Running Auto Own Process "c:\program files\intel\icls client\heciserver.exe" Normal LocalSystem 0 Intel(R) Capability Licensing Service TCP IP Interface Intel(R) Capability Licensing Service TCP IP Interface Stopped Manual Own Process "c:\program files\intel\icls client\socketheciserver.exe" Normal LocalSystem 0 PnP-X IP Bus Enumerator IPBusEnum Stopped Manual Share Process c:\windows\system32\svchost.exe -k localsystemnetworkrestricted Normal LocalSystem 0 IP Helper iphlpsvc Running Auto Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 Intel(R) Dynamic Application Loader Host Interface Service jhi_service Running Auto Own Process "c:\program files (x86)\intel\intel(r) management engine components\dal\jhi_service.exe" Normal LocalSystem 0 CNG Key Isolation KeyIso Running Manual Share Process c:\windows\system32\lsass.exe Normal LocalSystem 0 KtmRm for Distributed Transaction Coordinator KtmRm Stopped Manual Share Process c:\windows\system32\svchost.exe -k networkserviceandnoimpersonation Normal NT AUTHORITY\NetworkService 0 Server LanmanServer Running Auto Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 Workstation LanmanWorkstation Running Auto Share Process c:\windows\system32\svchost.exe -k networkservice Normal NT AUTHORITY\NetworkService 0 Link-Layer Topology Discovery Mapper lltdsvc Stopped Manual Share Process c:\windows\system32\svchost.exe -k localservice Normal NT AUTHORITY\LocalService 0 TCP/IP NetBIOS Helper lmhosts Running Auto Share Process c:\windows\system32\svchost.exe -k localservicenetworkrestricted Normal NT AUTHORITY\LocalService 0 Intel(R) Management and Security Application Local Management Service LMS Running Auto Own Process "c:\program files (x86)\intel\intel(r) management engine components\lms\lms.exe" Normal LocalSystem 0 Media Center Extender Service Mcx2Svc Stopped Disabled Share Process c:\windows\system32\svchost.exe -k localserviceandnoimpersonation Normal NT Authority\LocalService 0 Multimedia Class Scheduler MMCSS Running Auto Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 Mozilla Maintenance Service MozillaMaintenance Stopped Manual Own Process "c:\program files (x86)\mozilla maintenance service\maintenanceservice.exe" Normal LocalSystem 0 Windows Firewall MpsSvc Running Auto Share Process c:\windows\system32\svchost.exe -k localservicenonetwork Normal NT Authority\LocalService 0 Distributed Transaction Coordinator MSDTC Stopped Manual Own Process c:\windows\system32\msdtc.exe Normal NT AUTHORITY\NetworkService 0 Microsoft iSCSI Initiator Service MSiSCSI Stopped Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 Windows Installer msiserver Stopped Manual Own Process c:\windows\system32\msiexec.exe /v Normal LocalSystem 0 MySQL MySQL Running Auto Own Process "c:/program files/mysql/mysql server 5.6/bin\mysqld" --defaults-file="c:\programdata\mysql\mysql server 5.6\my.ini" mysql Normal NT AUTHORITY\NetworkService 0 Network Access Protection Agent napagent Stopped Manual Share Process c:\windows\system32\svchost.exe -k networkservice Normal NT AUTHORITY\NetworkService 0 Netlogon Netlogon Stopped Manual Share Process c:\windows\system32\lsass.exe Normal LocalSystem 0 Network Connections Netman Running Manual Share Process c:\windows\system32\svchost.exe -k localsystemnetworkrestricted Normal LocalSystem 0 Net.Msmq Listener Adapter NetMsmqActivator Stopped Disabled Share Process "c:\windows\microsoft.net\framework64\v4.0.30319\smsvchost.exe" -netmsmqactivator Normal NT AUTHORITY\NetworkService 0 Net.Pipe Listener Adapter NetPipeActivator Running Auto Share Process c:\windows\microsoft.net\framework64\v4.0.30319\smsvchost.exe Normal NT AUTHORITY\LocalService 0 Network List Service netprofm Running Manual Share Process c:\windows\system32\svchost.exe -k localservice Normal NT AUTHORITY\LocalService 0 Net.Tcp Listener Adapter NetTcpActivator Running Auto Share Process c:\windows\microsoft.net\framework64\v4.0.30319\smsvchost.exe Normal NT AUTHORITY\LocalService 0 Net.Tcp Port Sharing Service NetTcpPortSharing Running Manual Share Process c:\windows\microsoft.net\framework64\v4.0.30319\smsvchost.exe Normal NT AUTHORITY\LocalService 0 Network Location Awareness NlaSvc Running Auto Share Process c:\windows\system32\svchost.exe -k networkservice Normal NT AUTHORITY\NetworkService 0 Network Store Interface Service nsi Running Auto Share Process c:\windows\system32\svchost.exe -k localservice Normal NT Authority\LocalService 0 Peer Networking Identity Manager p2pimsvc Running Manual Share Process c:\windows\system32\svchost.exe -k localservicepeernet Normal NT AUTHORITY\LocalService 0 Peer Networking Grouping p2psvc Running Manual Share Process c:\windows\system32\svchost.exe -k localservicepeernet Normal NT AUTHORITY\LocalService 0 Program Compatibility Assistant Service PcaSvc Running Auto Share Process c:\windows\system32\svchost.exe -k localsystemnetworkrestricted Normal LocalSystem 0 BranchCache PeerDistSvc Stopped Manual Share Process c:\windows\system32\svchost.exe -k peerdist Normal NT AUTHORITY\NetworkService 0 Performance Counter DLL Host PerfHost Stopped Manual Own Process c:\windows\syswow64\perfhost.exe Normal NT AUTHORITY\LocalService 0 Performance Logs & Alerts pla Stopped Manual Share Process c:\windows\system32\svchost.exe -k localservicenonetwork Normal NT AUTHORITY\LocalService 0 Plug and Play PlugPlay Running Auto Share Process c:\windows\system32\svchost.exe -k dcomlaunch Normal LocalSystem 0 PNRP Machine Name Publication Service PNRPAutoReg Stopped Manual Share Process c:\windows\system32\svchost.exe -k localservicepeernet Normal NT AUTHORITY\LocalService 0 Peer Name Resolution Protocol PNRPsvc Running Manual Share Process c:\windows\system32\svchost.exe -k localservicepeernet Normal NT AUTHORITY\LocalService 0 IPsec Policy Agent PolicyAgent Running Manual Share Process c:\windows\system32\svchost.exe -k networkservicenetworkrestricted Normal NT Authority\NetworkService 0 Power Power Running Auto Share Process c:\windows\system32\svchost.exe -k dcomlaunch Normal LocalSystem 0 User Profile Service ProfSvc Running Auto Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 Protected Storage ProtectedStorage Stopped Manual Share Process c:\windows\system32\lsass.exe Normal LocalSystem 0 Quality Windows Audio Video Experience QWAVE Stopped Manual Share Process c:\windows\system32\svchost.exe -k localserviceandnoimpersonation Normal NT AUTHORITY\LocalService 0 Remote Access Auto Connection Manager RasAuto Stopped Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal localSystem 0 Remote Access Connection Manager RasMan Stopped Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal localSystem 0 Routing and Remote Access RemoteAccess Stopped Disabled Share Process c:\windows\system32\svchost.exe -k netsvcs Normal localSystem 0 Remote Registry RemoteRegistry Stopped Manual Share Process c:\windows\system32\svchost.exe -k regsvc Normal NT AUTHORITY\LocalService 0 RPC Endpoint Mapper RpcEptMapper Running Auto Share Process c:\windows\system32\svchost.exe -k rpcss Normal NT AUTHORITY\NetworkService 0 Remote Procedure Call (RPC) Locator RpcLocator Stopped Manual Own Process c:\windows\system32\locator.exe Normal NT AUTHORITY\NetworkService 0 Remote Procedure Call (RPC) RpcSs Running Auto Share Process c:\windows\system32\svchost.exe -k rpcss Normal NT AUTHORITY\NetworkService 0 Security Accounts Manager SamSs Running Auto Share Process c:\windows\system32\lsass.exe Normal LocalSystem 0 Smart Card SCardSvr Stopped Manual Share Process c:\windows\system32\svchost.exe -k localserviceandnoimpersonation Normal NT AUTHORITY\LocalService 0 Task Scheduler Schedule Running Auto Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 Smart Card Removal Policy SCPolicySvc Stopped Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 Windows Backup SDRSVC Running Manual Own Process c:\windows\system32\svchost.exe -k sdrsvc Normal localSystem 0 Secondary Logon seclogon Stopped Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 System Event Notification Service SENS Running Auto Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 Adaptive Brightness SensrSvc Stopped Manual Share Process c:\windows\system32\svchost.exe -k localserviceandnoimpersonation Normal NT AUTHORITY\LocalService 0 Remote Desktop Configuration SessionEnv Stopped Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal localSystem 0 Internet Connection Sharing (ICS) SharedAccess Stopped Disabled Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 Shell Hardware Detection ShellHWDetection Running Auto Share Process c:\windows\system32\svchost.exe -k netsvcs Ignore LocalSystem 0 SNMP Trap SNMPTRAP Stopped Manual Own Process c:\windows\system32\snmptrap.exe Normal NT AUTHORITY\LocalService 0 Print Spooler Spooler Running Auto Own Process c:\windows\system32\spoolsv.exe Normal LocalSystem 0 Software Protection sppsvc Stopped Auto Own Process c:\windows\system32\sppsvc.exe Normal NT AUTHORITY\NetworkService 0 SPP Notification Service sppuinotify Stopped Manual Share Process c:\windows\system32\svchost.exe -k localservice Normal NT AUTHORITY\LocalService 0 SSDP Discovery SSDPSRV Running Manual Share Process c:\windows\system32\svchost.exe -k localserviceandnoimpersonation Normal NT AUTHORITY\LocalService 0 Secure Socket Tunneling Protocol Service SstpSvc Stopped Manual Share Process c:\windows\system32\svchost.exe -k localservice Normal NT Authority\LocalService 0 Windows Image Acquisition (WIA) stisvc Stopped Manual Own Process c:\windows\system32\svchost.exe -k imgsvc Normal NT Authority\LocalService 0 Microsoft Software Shadow Copy Provider swprv Stopped Manual Own Process c:\windows\system32\svchost.exe -k swprv Normal LocalSystem 0 Superfetch SysMain Stopped Manual Share Process c:\windows\system32\svchost.exe -k localsystemnetworkrestricted Ignore LocalSystem 0 Tablet PC Input Service TabletInputService Stopped Manual Share Process c:\windows\system32\svchost.exe -k localsystemnetworkrestricted Normal LocalSystem 0 Telephony TapiSrv Stopped Manual Share Process c:\windows\system32\svchost.exe -k networkservice Normal NT AUTHORITY\NetworkService 0 TPM Base Services TBS Stopped Manual Share Process c:\windows\system32\svchost.exe -k localserviceandnoimpersonation Normal NT AUTHORITY\LocalService 0 Remote Desktop Services TermService Stopped Manual Share Process c:\windows\system32\svchost.exe -k networkservice Normal NT Authority\NetworkService 0 Themes Themes Running Auto Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 Thread Ordering Server THREADORDER Stopped Manual Share Process c:\windows\system32\svchost.exe -k localservice Normal NT AUTHORITY\LocalService 0 Distributed Link Tracking Client TrkWks Running Auto Share Process c:\windows\system32\svchost.exe -k localsystemnetworkrestricted Normal LocalSystem 0 Windows Modules Installer TrustedInstaller Stopped Manual Own Process c:\windows\servicing\trustedinstaller.exe Normal localSystem 0 Interactive Services Detection UI0Detect Stopped Manual Own Process c:\windows\system32\ui0detect.exe Normal LocalSystem 0 Remote Desktop Services UserMode Port Redirector UmRdpService Stopped Manual Share Process c:\windows\system32\svchost.exe -k localsystemnetworkrestricted Normal localSystem 0 UPnP Device Host upnphost Running Manual Share Process c:\windows\system32\svchost.exe -k localserviceandnoimpersonation Normal NT AUTHORITY\LocalService 0 Desktop Window Manager Session Manager UxSms Running Auto Share Process c:\windows\system32\svchost.exe -k localsystemnetworkrestricted Normal localSystem 0 Credential Manager VaultSvc Stopped Manual Share Process c:\windows\system32\lsass.exe Normal LocalSystem 0 Virtual Disk vds Stopped Manual Own Process c:\windows\system32\vds.exe Normal LocalSystem 0 Volume Shadow Copy VSS Stopped Manual Own Process c:\windows\system32\vssvc.exe Normal LocalSystem 0 Windows Time W32Time Stopped Manual Share Process c:\windows\system32\svchost.exe -k localservice Normal NT AUTHORITY\LocalService 0 World Wide Web Publishing Service W3SVC Running Auto Share Process c:\windows\system32\svchost.exe -k iissvcs Normal LocalSystem 0 Windows Process Activation Service WAS Running Manual Share Process c:\windows\system32\svchost.exe -k iissvcs Normal LocalSystem 0 Windows Activation Technologies Service WatAdminSvc Stopped Manual Own Process c:\windows\system32\wat\watadminsvc.exe Normal LocalSystem 0 Block Level Backup Engine Service wbengine Stopped Manual Own Process "c:\windows\system32\wbengine.exe" Normal localSystem 0 Windows Biometric Service WbioSrvc Stopped Manual Share Process c:\windows\system32\svchost.exe -k wbiosvcgroup Normal LocalSystem 0 Windows Connect Now - Config Registrar wcncsvc Running Manual Share Process c:\windows\system32\svchost.exe -k localserviceandnoimpersonation Normal NT AUTHORITY\LocalService 0 Windows Color System WcsPlugInService Stopped Manual Share Process c:\windows\system32\svchost.exe -k wcssvc Normal NT AUTHORITY\LocalService 0 Diagnostic Service Host WdiServiceHost Running Manual Share Process c:\windows\system32\svchost.exe -k localservice Normal NT AUTHORITY\LocalService 0 Diagnostic System Host WdiSystemHost Stopped Manual Share Process c:\windows\system32\svchost.exe -k localsystemnetworkrestricted Normal LocalSystem 0 WebClient WebClient Stopped Manual Share Process c:\windows\system32\svchost.exe -k localservice Normal NT AUTHORITY\LocalService 0 Windows Event Collector Wecsvc Stopped Manual Share Process c:\windows\system32\svchost.exe -k networkservice Normal NT AUTHORITY\NetworkService 0 Problem Reports and Solutions Control Panel Support wercplsupport Stopped Manual Share Process c:\windows\system32\svchost.exe -k netsvcs Normal localSystem 0 Windows Error Reporting Service WerSvc Stopped Manual Share Process c:\windows\system32\svchost.exe -k wersvcgroup Ignore localSystem 0 Windows Defender WinDefend Running Auto Share Process c:\windows\system32\svchost.exe -k secsvcs Normal LocalSystem 0 WinHTTP Web Proxy Auto-Discovery Service WinHttpAutoProxySvc Stopped Manual Share Process c:\windows\system32\svchost.exe -k localservice Normal NT AUTHORITY\LocalService 0 Windows Management Instrumentation Winmgmt Running Auto Share Process c:\windows\system32\svchost.exe -k netsvcs Ignore localSystem 0 Windows Remote Management (WS-Management) WinRM Stopped Manual Share Process c:\windows\system32\svchost.exe -k networkservice Normal NT AUTHORITY\NetworkService 0 WLAN AutoConfig Wlansvc Stopped Manual Share Process c:\windows\system32\svchost.exe -k localsystemnetworkrestricted Normal LocalSystem 0 WMI Performance Adapter wmiApSrv Stopped Manual Own Process c:\windows\system32\wbem\wmiapsrv.exe Normal localSystem 0 Windows Media Player Network Sharing Service WMPNetworkSvc Running Auto Own Process "c:\program files\windows media player\wmpnetwk.exe" Normal NT AUTHORITY\NetworkService 0 Parental Controls WPCSvc Stopped Manual Share Process c:\windows\system32\svchost.exe -k localservicenetworkrestricted Normal NT Authority\LocalService 0 Portable Device Enumerator Service WPDBusEnum Running Manual Share Process c:\windows\system32\svchost.exe -k localsystemnetworkrestricted Normal LocalSystem 0 Security Center wscsvc Running Auto Share Process c:\windows\system32\svchost.exe -k localservicenetworkrestricted Normal NT AUTHORITY\LocalService 0 Windows Search WSearch Running Auto Own Process c:\windows\system32\searchindexer.exe /embedding Normal LocalSystem 0 Windows Update wuauserv Running Auto Share Process c:\windows\system32\svchost.exe -k netsvcs Normal LocalSystem 0 Windows Driver Foundation - User-mode Driver Framework wudfsvc Running Manual Share Process c:\windows\system32\svchost.exe -k localsystemnetworkrestricted Normal LocalSystem 0 WWAN AutoConfig WwanSvc Stopped Manual Share Process c:\windows\system32\svchost.exe -k localservicenonetwork Normal NT Authority\LocalService 0 |
Free forum by Nabble | Edit this page |