Last active
April 23, 2024 13:27
-
-
Save lihas/ef6b9fa16fe26bd472940f6fd2fa4623 to your computer and use it in GitHub Desktop.
DxDiagProvider enum children and properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DxDiagProviderCom.cpp : This file contains the 'main' function. Program execution begins and ends there. | |
// | |
#include <initguid.h> | |
#include <iostream> | |
#include <objbase.h> | |
#include <dxdiag.h> | |
#include <string> | |
using namespace std; | |
HRESULT ParseContainer(IDxDiagContainer* pIter, int level = 0) | |
{ | |
wstring prefix; | |
for (int i = 0; i < level; i++) | |
{ | |
prefix += L'\t'; | |
} | |
DWORD numProps = 0; | |
pIter->GetNumberOfProps(&numProps); | |
wcout << prefix << "numProp: " << numProps << endl; | |
for (int i = 0; i < numProps; i++) | |
{ | |
wchar_t propName[MAX_PATH]; | |
pIter->EnumPropNames(i, propName, MAX_PATH); | |
wcout << prefix << "prop: " << propName; | |
VARIANT var; | |
VariantInit(&var); | |
pIter->GetPropW(propName, &var); | |
switch (var.vt) | |
{ | |
case VT_BSTR: | |
{ | |
wcout << " propValue: \t\t\t\t\t" << var.bstrVal; | |
} | |
break; | |
case VT_BOOL: | |
{ | |
wcout << " propValue: \t\t\t\t\t" << var.boolVal; | |
} | |
break; | |
case VT_I4: | |
{ | |
wcout << " propValue: \t\t\t\t\t" << var.iVal; | |
} | |
break; | |
case VT_UI4: | |
{ | |
wcout << " propValue: \t\t\t\t\t" << var.ulVal; | |
} | |
break; | |
default: | |
wcout << " vt: \t\t\t\t\t" << var.vt; | |
break; | |
} | |
wcout << endl; | |
} | |
DWORD numChildCont = 0; | |
pIter->GetNumberOfChildContainers(&numChildCont); | |
wcout << prefix << "numChildren: " << numChildCont << endl; | |
for (int i = 0; i < numChildCont; i++) | |
{ | |
wchar_t childName[MAX_PATH]; | |
pIter->EnumChildContainerNames(i, childName, MAX_PATH); | |
wcout << prefix << "child: " << childName << endl; | |
IDxDiagContainer* pChild; | |
auto hr = pIter->GetChildContainer(childName, &pChild); | |
if (SUCCEEDED(hr)) | |
{ | |
if (pChild) | |
{ | |
ParseContainer(pChild, level+1); | |
} | |
} | |
} | |
return S_OK; | |
} | |
int main() | |
{ | |
auto hr = CoInitialize(NULL); | |
if (SUCCEEDED(hr)) | |
{ | |
IDxDiagProvider* pDxDiagProvider = nullptr; | |
hr = CoCreateInstance(CLSID_DxDiagProvider, nullptr, CLSCTX_INPROC_SERVER, IID_IDxDiagProvider, (LPVOID*)&pDxDiagProvider); | |
if (SUCCEEDED(hr)) | |
{ | |
DXDIAG_INIT_PARAMS dxDiagInitParams = {}; | |
dxDiagInitParams.dwSize = sizeof(dxDiagInitParams); | |
dxDiagInitParams.dwDxDiagHeaderVersion = DXDIAG_DX9_SDK_VERSION; | |
dxDiagInitParams.bAllowWHQLChecks = false; | |
dxDiagInitParams.pReserved = nullptr; | |
hr = pDxDiagProvider->Initialize(&dxDiagInitParams); | |
if (SUCCEEDED(hr)) | |
{ | |
IDxDiagContainer* pDiagRoot; | |
IDxDiagContainer* pDiagIter; | |
hr = pDxDiagProvider->GetRootContainer(&pDiagRoot); | |
if (SUCCEEDED(hr)) | |
{ | |
ParseContainer(pDiagRoot); | |
} | |
} | |
} | |
} | |
std::cout << "End\n"; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
numProp: 0 | |
numChildren: 10 | |
child: DxDiag_SystemInfo | |
numProp: 124 | |
prop: dwOSMajorVersion propValue: 6 | |
prop: dwOSMinorVersion propValue: 2 | |
prop: dwOSBuildNumber propValue: 9200 | |
prop: dwOSPlatformID propValue: 2 | |
prop: dwDirectXVersionMajor propValue: 12 | |
prop: dwDirectXVersionMinor propValue: 0 | |
prop: szDirectXVersionLetter propValue: | |
prop: bDebug propValue: 0 | |
prop: bNECPC98 propValue: 0 | |
prop: ullPhysicalMemory propValue: 17179869184 | |
prop: ullPhysicalMemoryOS propValue: 16990789632 | |
prop: ullUsedPageFile propValue: 34539823104 | |
prop: ullAvailPageFile propValue: 15736963072 | |
prop: bNetMeetingRunning propValue: 0 | |
prop: bIsD3D8DebugRuntimeAvailable propValue: 0 | |
prop: bIsD3DDebugRuntime propValue: 0 | |
prop: bIsDInput8DebugRuntimeAvailable propValue: 0 | |
prop: bIsDInput8DebugRuntime propValue: 0 | |
prop: bIsDMusicDebugRuntimeAvailable propValue: 0 | |
prop: bIsDMusicDebugRuntime propValue: 0 | |
prop: bIsDDrawDebugRuntime propValue: 0 | |
prop: bIsDPlayDebugRuntime propValue: 0 | |
prop: bIsDSoundDebugRuntime propValue: 0 | |
prop: nD3DDebugLevel propValue: 0 | |
prop: nDDrawDebugLevel propValue: 0 | |
prop: nDIDebugLevel propValue: 0 | |
prop: nDMusicDebugLevel propValue: 0 | |
prop: nDPlayDebugLevel propValue: 0 | |
prop: nDSoundDebugLevel propValue: 0 | |
prop: nDShowDebugLevel propValue: 0 | |
prop: szWindowsDir propValue: C:\windows | |
prop: szBuildLab propValue: 17763.rs5_release.180914-1434 | |
prop: szDxDiagVersion propValue: 6.02.17763.0001 | |
prop: szSetupParamEnglish propValue: Not found | |
prop: szProcessorEnglish propValue: Intel(R) Core(TM) i7-6820HQ CPU @ 2.70GHz (8 CPUs), ~2.7GHz | |
prop: szSystemManufacturerEnglish propValue: Dell Inc. | |
prop: szSystemModelEnglish propValue: Precision 5510 | |
prop: szBIOSEnglish propValue: 1.12.0 | |
prop: szPhysicalMemoryEnglish propValue: 16384MB RAM | |
prop: szPhysicalMemoryEnglishOS propValue: 16204MB RAM | |
prop: szCSDVersion propValue: | |
prop: szUserDPI propValue: Using System DPI | |
prop: szSystemDPI propValue: 240 DPI (250 percent) | |
prop: szDWMScalingDPI propValue: UnKnown | |
prop: szDirectXVersionEnglish propValue: | |
prop: szDirectXVersionLongEnglish propValue: DirectX 12 | |
prop: szMachineNameLocalized propValue: SAHILS-LT1 | |
prop: szOSLocalized propValue: Windows 10 Enterprise | |
prop: szOSExLocalized propValue: Windows 10 Enterprise 64-bit (6.2, Build 9200) | |
prop: szOSExLongLocalized propValue: Windows 10 Enterprise 64-bit (6.2, Build 9200) (17763.rs5_release.180914-1434) | |
prop: szLanguagesLocalized propValue: English (Regional Setting: English) | |
prop: szPageFileLocalized propValue: 32939MB used, 15007MB available | |
prop: szTimeLocalized propValue: Wednesday, July 8, 2020, 10:31:42 PM | |
prop: szMachineNameEnglish propValue: SAHILS-LT1 | |
prop: szOSEnglish propValue: Windows 10 Enterprise | |
prop: szOSExEnglish propValue: Windows 10 Enterprise 64-bit (6.2, Build 9200) | |
prop: szOSExLongEnglish propValue: Windows 10 Enterprise 64-bit (6.2, Build 9200) (17763.rs5_release.180914-1434) | |
prop: szLanguagesEnglish propValue: English (Regional Setting: English) | |
prop: szPageFileEnglish propValue: 32939MB used, 15007MB available | |
prop: szTimeEnglish propValue: 7/8/2020, 22:31:42 | |
prop: ExtendedCPUFunctionBitmasks_0x80000009_bits0_31 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000009_bits32_63 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000009_bits64_95 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000009_bits96_127 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000a_bits0_31 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000a_bits32_63 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000a_bits64_95 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000a_bits96_127 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000b_bits0_31 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000b_bits32_63 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000b_bits64_95 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000b_bits96_127 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000c_bits0_31 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000c_bits32_63 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000c_bits64_95 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000c_bits96_127 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000d_bits0_31 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000d_bits32_63 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000d_bits64_95 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000d_bits96_127 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000e_bits0_31 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000e_bits32_63 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000e_bits64_95 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000e_bits96_127 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000f_bits0_31 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000f_bits32_63 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000f_bits64_95 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x8000000f_bits96_127 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000010_bits0_31 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000010_bits32_63 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000010_bits64_95 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000010_bits96_127 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000011_bits0_31 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000011_bits32_63 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000011_bits64_95 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000011_bits96_127 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000012_bits0_31 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000012_bits32_63 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000012_bits64_95 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000012_bits96_127 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000013_bits0_31 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000013_bits32_63 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000013_bits64_95 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000013_bits96_127 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000014_bits0_31 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000014_bits32_63 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000014_bits64_95 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000014_bits96_127 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000015_bits0_31 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000015_bits32_63 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000015_bits64_95 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000015_bits96_127 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000016_bits0_31 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000016_bits32_63 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000016_bits64_95 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000016_bits96_127 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000017_bits0_31 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000017_bits32_63 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000017_bits64_95 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000017_bits96_127 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000018_bits0_31 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000018_bits32_63 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000018_bits64_95 propValue: 0 | |
prop: ExtendedCPUFunctionBitmasks_0x80000018_bits96_127 propValue: 0 | |
numChildren: 0 | |
child: DxDiag_DisplayDevices | |
numProp: 0 | |
numChildren: 2 | |
child: 0 | |
numProp: 79 | |
prop: szDeviceName propValue: \\.\DISPLAY1 | |
prop: szDescription propValue: Intel(R) HD Graphics 530 | |
prop: szKeyDeviceID propValue: Enum\PCI\VEN_8086&DEV_191B&SUBSYS_06E51028&REV_06 | |
prop: szKeyDeviceKey propValue: \Registry\Machine\System\CurrentControlSet\Control\Video\{385C5B81-46E9-11EA-8244-A62E61129422}\0000 | |
prop: szManufacturer propValue: Intel Corporation | |
prop: szChipType propValue: Intel(R) HD Graphics Family | |
prop: szDACType propValue: Internal | |
prop: szRevision propValue: Unknown | |
prop: szDisplayMemoryLocalized propValue: 8229 MB | |
prop: szDisplayMemoryEnglish propValue: 8229 MB | |
prop: szDisplayModeLocalized propValue: 3840 x 2160 (32 bit) (60Hz) | |
prop: szDisplayModeEnglish propValue: 3840 x 2160 (32 bit) (60Hz) | |
prop: szOverlayEnglish propValue: Supported | |
prop: szDXVAHDEnglish propValue: Supported | |
prop: dwWidth propValue: 3840 | |
prop: dwHeight propValue: 2160 | |
prop: dwBpp propValue: 32 | |
prop: dwRefreshRate propValue: 60 | |
prop: szMonitorName propValue: Generic PnP Monitor | |
prop: szMonitorMaxRes propValue: Unknown | |
prop: szDriverName propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdumdim64.dll,C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igd10iumd64.dll,C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igd10iumd64.dll,C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igd12umd64.dll | |
prop: szDriverAssemblyVersion propValue: 26.20.100.7263 | |
prop: szDriverVersion propValue: 26.20.0100.7263 | |
prop: szDriverAttributes propValue: Final Retail | |
prop: szDriverLanguageEnglish propValue: English | |
prop: szDriverLanguageLocalized propValue: English | |
prop: szDriverDateEnglish propValue: 9/25/2019 5:30:00 AM | |
prop: szDriverDateLocalized propValue: 9/25/2019 05:30:00 | |
prop: lDriverSize propValue: -3816 | |
prop: szMiniVdd propValue: unknown | |
prop: szMiniVddDateLocalized propValue: unknown | |
prop: szMiniVddDateEnglish propValue: Unknown | |
prop: lMiniVddSize propValue: 0 | |
prop: szVdd propValue: unknown | |
prop: szDriverModelEnglish propValue: WDDM 2.1 | |
prop: szDriverModelLocalized propValue: WDDM 2.1 | |
prop: szDriverNodeStrongName propValue: oem76.inf:5f63e5340a14bf6c:iSKLD_w10_DS:26.20.100.7263:pci\ven_8086&dev_191b&subsys_06e51028 | |
prop: szRankOfInstalledDriver propValue: 00D10001 | |
prop: bCanRenderWindow propValue: 1 | |
prop: bDriverBeta propValue: 0 | |
prop: bDriverDebug propValue: 0 | |
prop: bDriverSigned propValue: 0 | |
prop: bDriverSignedValid propValue: 0 | |
prop: szDeviceIdentifier propValue: {D7B78E66-5A5B-11CF-C76F-8126BDC2D735} | |
prop: szDriverSignDate propValue: Unknown | |
prop: dwDDIVersion propValue: 12 | |
prop: szDDIVersionEnglish propValue: 12 | |
prop: szDDIVersionLocalized propValue: 12 | |
prop: iAdapter propValue: 0 | |
prop: szVendorId propValue: 0x8086 | |
prop: szDeviceId propValue: 0x191B | |
prop: szSubSysId propValue: 0x06E51028 | |
prop: szRevisionId propValue: 0x0006 | |
prop: dwWHQLLevel propValue: 0 | |
prop: bNoHardware propValue: 0 | |
prop: bDDAccelerationEnabled propValue: 1 | |
prop: b3DAccelerationExists propValue: 1 | |
prop: b3DAccelerationEnabled propValue: 1 | |
prop: bAGPEnabled propValue: 1 | |
prop: bAGPExists propValue: 1 | |
prop: bAGPExistenceValid propValue: 1 | |
prop: szDXVAModes propValue: | |
prop: szDDStatusLocalized propValue: Enabled | |
prop: szDDStatusEnglish propValue: Enabled | |
prop: szD3DStatusLocalized propValue: Enabled | |
prop: szD3DStatusEnglish propValue: Enabled | |
prop: szAGPStatusLocalized propValue: Enabled | |
prop: szAGPStatusEnglish propValue: Enabled | |
prop: szNotesLocalized propValue: No problems found. | |
prop: szNotesEnglish propValue: No problems found. | |
prop: szRegHelpText propValue: Unknown | |
prop: szTestResultDDLocalized propValue: Not run | |
prop: szTestResultDDEnglish propValue: Not run | |
prop: szTestResultD3D7Localized propValue: Not run | |
prop: szTestResultD3D7English propValue: Not run | |
prop: szTestResultD3D8Localized propValue: Not run | |
prop: szTestResultD3D8English propValue: Not run | |
prop: szTestResultD3D9Localized propValue: Not run | |
prop: szTestResultD3D9English propValue: Not run | |
numChildren: 1 | |
child: DXVADeinterlaceCaps | |
numProp: 0 | |
numChildren: 320 | |
child: 0 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 2 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 3 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 4 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 5 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 6 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 7 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 8 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 9 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 10 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 11 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 12 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 13 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 14 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 15 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 16 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 17 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 18 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 19 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 20 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 21 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 22 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 23 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 24 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 25 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 26 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 27 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 28 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 29 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 30 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 31 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S342 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 32 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 33 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 34 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 35 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 36 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 37 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 38 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 39 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 40 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 41 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 42 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 43 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 44 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 45 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 46 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 47 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 48 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 49 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 50 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 51 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 52 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 53 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 54 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 55 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 56 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 57 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 58 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 59 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 60 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 61 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 62 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 63 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: S340 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 64 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 65 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 66 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 67 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 68 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 69 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 70 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 71 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 72 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 73 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 74 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 75 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 76 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 77 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 78 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 79 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 80 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 81 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 82 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 83 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 84 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 85 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 86 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 87 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 88 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 89 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 90 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 91 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 92 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 93 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 94 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 95 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC4 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 96 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 97 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 98 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 99 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 100 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 101 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 102 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 103 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 104 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 105 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 106 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 107 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 108 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 109 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 110 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 111 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 112 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 113 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 114 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 115 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 116 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 117 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 118 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 119 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 120 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 121 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 122 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 123 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 124 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 125 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 126 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 127 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC3 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 128 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 129 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 130 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 131 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 132 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 133 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 134 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 135 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 136 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 137 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 138 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 139 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 140 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 141 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 142 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 143 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 144 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 145 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 146 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 147 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 148 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 149 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 150 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 151 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 152 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 153 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 154 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 155 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 156 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 157 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 158 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 159 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 160 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 161 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 162 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 163 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 164 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 165 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 166 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 167 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 168 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 169 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 170 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 171 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 172 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 173 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 174 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 175 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 176 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 177 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 178 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 179 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 180 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 181 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 182 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 183 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 184 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 185 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 186 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 187 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 188 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 189 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 190 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 191 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: IMC1 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 192 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 193 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 194 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 195 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 196 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 197 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 198 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 199 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 200 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 201 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 202 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 203 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 204 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 205 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 206 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 207 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 208 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 209 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 210 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 211 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 212 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 213 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 214 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 215 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 216 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 217 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 218 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 219 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 220 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 221 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 222 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 223 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: NV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 224 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 225 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 226 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 227 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 228 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 229 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 230 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 231 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 232 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 233 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 234 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 235 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 236 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 237 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 238 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 239 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 240 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 241 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 242 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 243 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 244 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 245 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 246 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 247 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 248 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 249 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 250 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 251 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 252 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 253 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 254 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 255 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YV12 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 256 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 257 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 258 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 259 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 260 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 261 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 262 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 263 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 264 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 265 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 266 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 267 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 268 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 269 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 270 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 271 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 272 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 273 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 274 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 275 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 276 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 277 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 278 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 279 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 280 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 281 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 282 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 283 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 284 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 285 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 286 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 287 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: UYVY | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 288 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 289 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 290 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 291 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 292 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 293 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 294 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 295 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 296 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 297 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 298 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 299 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 300 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 301 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 302 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 303 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 304 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 305 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 306 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 307 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 308 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 309 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 310 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 311 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 312 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 313 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 314 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 315 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 316 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 317 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 318 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 319 | |
numProp: 7 | |
prop: szD3DInputFormat propValue: YUY2 | |
prop: szD3DOutputFormat propValue: UNKNOWN | |
prop: szGuid propValue: {00000000-0000-0000-0000-000000000000} | |
prop: szCaps propValue: | |
prop: dwNumPreviousOutputFrames propValue: 0 | |
prop: dwNumForwardRefSamples propValue: 0 | |
prop: dwNumBackwardRefSamples propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 79 | |
prop: szDeviceName propValue: Unknown | |
prop: szDescription propValue: NVIDIA Quadro M1000M | |
prop: szKeyDeviceID propValue: Enum\PCI\VEN_10DE&DEV_13B1&SUBSYS_06E51028&REV_A2 | |
prop: szKeyDeviceKey propValue: Unknown | |
prop: szManufacturer propValue: NVIDIA | |
prop: szChipType propValue: Quadro M1000M | |
prop: szDACType propValue: Integrated RAMDAC | |
prop: szRevision propValue: Unknown | |
prop: szDisplayMemoryLocalized propValue: 10111 MB | |
prop: szDisplayMemoryEnglish propValue: 10111 MB | |
prop: szDisplayModeLocalized propValue: unknown | |
prop: szDisplayModeEnglish propValue: Unknown | |
prop: szOverlayEnglish propValue: Unknown | |
prop: szDXVAHDEnglish propValue: Unknown | |
prop: dwWidth propValue: 0 | |
prop: dwHeight propValue: 0 | |
prop: dwBpp propValue: 0 | |
prop: dwRefreshRate propValue: 0 | |
prop: szMonitorName propValue: Unknown | |
prop: szMonitorMaxRes propValue: Unknown | |
prop: szDriverName propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvldumdx.dll,C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvldumdx.dll,C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvldumdx.dll,C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvldumdx.dll | |
prop: szDriverAssemblyVersion propValue: 26.21.14.4323 | |
prop: szDriverVersion propValue: 26.21.0014.4323 | |
prop: szDriverAttributes propValue: Final Retail | |
prop: szDriverLanguageEnglish propValue: English | |
prop: szDriverLanguageLocalized propValue: English | |
prop: szDriverDateEnglish propValue: 5/19/2020 5:30:00 AM | |
prop: szDriverDateLocalized propValue: 5/19/2020 05:30:00 | |
prop: lDriverSize propValue: 30368 | |
prop: szMiniVdd propValue: unknown | |
prop: szMiniVddDateLocalized propValue: unknown | |
prop: szMiniVddDateEnglish propValue: Unknown | |
prop: lMiniVddSize propValue: 0 | |
prop: szVdd propValue: unknown | |
prop: szDriverModelEnglish propValue: WDDM 2.5 | |
prop: szDriverModelLocalized propValue: WDDM 2.5 | |
prop: szDriverNodeStrongName propValue: oem17.inf:0f066de3a1e0e8cd:Section026:26.21.14.4323:pci\ven_10de&dev_13b1&subsys_06e51028 | |
prop: szRankOfInstalledDriver propValue: 00CF0001 | |
prop: bCanRenderWindow propValue: 0 | |
prop: bDriverBeta propValue: 0 | |
prop: bDriverDebug propValue: 0 | |
prop: bDriverSigned propValue: 0 | |
prop: bDriverSignedValid propValue: 0 | |
prop: szDeviceIdentifier propValue: Unknown | |
prop: szDriverSignDate propValue: Unknown | |
prop: dwDDIVersion propValue: 12 | |
prop: szDDIVersionEnglish propValue: 12 | |
prop: szDDIVersionLocalized propValue: 12 | |
prop: iAdapter propValue: 0 | |
prop: szVendorId propValue: 0x10DE | |
prop: szDeviceId propValue: 0x13B1 | |
prop: szSubSysId propValue: 0x06E51028 | |
prop: szRevisionId propValue: 0x00A2 | |
prop: dwWHQLLevel propValue: 0 | |
prop: bNoHardware propValue: 0 | |
prop: bDDAccelerationEnabled propValue: 1 | |
prop: b3DAccelerationExists propValue: 1 | |
prop: b3DAccelerationEnabled propValue: 1 | |
prop: bAGPEnabled propValue: 1 | |
prop: bAGPExists propValue: 0 | |
prop: bAGPExistenceValid propValue: 0 | |
prop: szDXVAModes propValue: Unknown | |
prop: szDDStatusLocalized propValue: Enabled | |
prop: szDDStatusEnglish propValue: Enabled | |
prop: szD3DStatusLocalized propValue: Enabled | |
prop: szD3DStatusEnglish propValue: Enabled | |
prop: szAGPStatusLocalized propValue: Enabled | |
prop: szAGPStatusEnglish propValue: Enabled | |
prop: szNotesLocalized propValue: No problems found. | |
prop: szNotesEnglish propValue: No problems found. | |
prop: szRegHelpText propValue: Unknown | |
prop: szTestResultDDLocalized propValue: Not run | |
prop: szTestResultDDEnglish propValue: Not run | |
prop: szTestResultD3D7Localized propValue: Not run | |
prop: szTestResultD3D7English propValue: Not run | |
prop: szTestResultD3D8Localized propValue: Not run | |
prop: szTestResultD3D8English propValue: Not run | |
prop: szTestResultD3D9Localized propValue: Not run | |
prop: szTestResultD3D9English propValue: Not run | |
numChildren: 1 | |
child: DXVADeinterlaceCaps | |
numProp: 0 | |
numChildren: 0 | |
child: DxDiag_DirectSound | |
numProp: 0 | |
numChildren: 2 | |
child: DxDiag_SoundDevices | |
numProp: 0 | |
numChildren: 1 | |
child: 0 | |
numProp: 59 | |
prop: dwDevnode propValue: 0 | |
prop: szGuidDeviceID propValue: {5B8A92D0-B11E-4D5A-8E19-78D48150DDBA} | |
prop: szHardwareID propValue: HDAUDIO\FUNC_01&VEN_10EC&DEV_0298&SUBSYS_102806E5&REV_1001 | |
prop: szRegKey propValue: HDAUDIO\FUNC_01&VEN_10EC&DEV_0298&SUBSYS_102806E5&REV_1001\4&2D278CF2&0&0001 | |
prop: szManufacturerID propValue: 1 | |
prop: szProductID propValue: 100 | |
prop: szDescription propValue: Speakers / Headphones (Realtek Audio) | |
prop: szDriverName propValue: RTKVHD64.sys | |
prop: szDriverPath propValue: C:\windows\System32\Drivers\RTKVHD64.sys | |
prop: szDriverVersion propValue: 6.00.0001.8233 | |
prop: szDriverLanguageEnglish propValue: English | |
prop: szDriverLanguageLocalized propValue: English | |
prop: szDriverAttributes propValue: Final Retail | |
prop: szDriverDateEnglish propValue: 8/15/2017 12:00:00 AM | |
prop: szDriverDateLocalized propValue: 8/15/2017 00:00:00 | |
prop: szOtherDrivers propValue: | |
prop: szProvider propValue: Realtek Semiconductor Corp. | |
prop: szType propValue: WDM | |
prop: lNumBytes propValue: 1512 | |
prop: bDriverBeta propValue: 0 | |
prop: bDriverDebug propValue: 0 | |
prop: bDriverSigned propValue: 0 | |
prop: bDriverSignedValid propValue: 0 | |
prop: lAccelerationLevel propValue: 1 | |
prop: bAudioDisabled propValue: 0 | |
prop: bDefaultSoundPlayback propValue: 1 | |
prop: bDefaultVoicePlayback propValue: 1 | |
prop: bVoiceManager propValue: 0 | |
prop: bEAX20Listener propValue: 0 | |
prop: bEAX20Source propValue: 0 | |
prop: bI3DL2Listener propValue: 0 | |
prop: bI3DL2Source propValue: 0 | |
prop: bZoomFX propValue: 0 | |
prop: dwFlags propValue: 0 | |
prop: dwMinSecondarySampleRate propValue: 0 | |
prop: dwMaxSecondarySampleRate propValue: 0 | |
prop: dwPrimaryBuffers propValue: 0 | |
prop: dwMaxHwMixingAllBuffers propValue: 0 | |
prop: dwMaxHwMixingStaticBuffers propValue: 0 | |
prop: dwMaxHwMixingStreamingBuffers propValue: 0 | |
prop: dwFreeHwMixingAllBuffers propValue: 0 | |
prop: dwFreeHwMixingStaticBuffers propValue: 0 | |
prop: dwFreeHwMixingStreamingBuffers propValue: 0 | |
prop: dwMaxHw3DAllBuffers propValue: 0 | |
prop: dwMaxHw3DStaticBuffers propValue: 0 | |
prop: dwMaxHw3DStreamingBuffers propValue: 0 | |
prop: dwFreeHw3DAllBuffers propValue: 0 | |
prop: dwFreeHw3DStaticBuffers propValue: 0 | |
prop: dwFreeHw3DStreamingBuffers propValue: 0 | |
prop: dwTotalHwMemBytes propValue: 0 | |
prop: dwFreeHwMemBytes propValue: 0 | |
prop: dwMaxContigFreeHwMemBytes propValue: 0 | |
prop: dwUnlockTransferRateHwBuffers propValue: 0 | |
prop: dwPlayCpuOverheadSwBuffers propValue: 0 | |
prop: szNotesLocalized propValue: No problems found. | |
prop: szNotesEnglish propValue: No problems found. | |
prop: szRegHelpText propValue: | |
prop: szTestResultLocalized propValue: Not run | |
prop: szTestResultEnglish propValue: Not run | |
numChildren: 0 | |
child: DxDiag_SoundCaptureDevices | |
numProp: 0 | |
numChildren: 2 | |
child: 0 | |
numProp: 17 | |
prop: szDescription propValue: Microphone (Realtek Audio) | |
prop: szGuidDeviceID propValue: {22965873-DF3C-4296-9B46-1C777A176CAD} | |
prop: szDriverName propValue: RTKVHD64.sys | |
prop: szDriverPath propValue: C:\windows\System32\Drivers\RTKVHD64.sys | |
prop: szDriverVersion propValue: 6.00.0001.8233 | |
prop: szDriverLanguageEnglish propValue: English | |
prop: szDriverLanguageLocalized propValue: English | |
prop: szDriverAttributes propValue: Final Retail | |
prop: szDriverDateEnglish propValue: 8/18/2017 11:42:24 | |
prop: szDriverDateLocalized propValue: 8/18/2017 11:42:24 AM | |
prop: lNumBytes propValue: 1512 | |
prop: bDriverBeta propValue: 0 | |
prop: bDriverDebug propValue: 0 | |
prop: bDefaultSoundRecording propValue: 1 | |
prop: bDefaultVoiceRecording propValue: 1 | |
prop: dwFlags propValue: 0 | |
prop: dwFormats propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 17 | |
prop: szDescription propValue: Stereo Mix (Realtek Audio) | |
prop: szGuidDeviceID propValue: {F53EA84F-65BB-4639-9B55-90F34FF07BC6} | |
prop: szDriverName propValue: RTKVHD64.sys | |
prop: szDriverPath propValue: C:\windows\System32\Drivers\RTKVHD64.sys | |
prop: szDriverVersion propValue: 6.00.0001.8233 | |
prop: szDriverLanguageEnglish propValue: English | |
prop: szDriverLanguageLocalized propValue: English | |
prop: szDriverAttributes propValue: Final Retail | |
prop: szDriverDateEnglish propValue: 8/18/2017 11:42:24 | |
prop: szDriverDateLocalized propValue: 8/18/2017 11:42:24 AM | |
prop: lNumBytes propValue: 1512 | |
prop: bDriverBeta propValue: 0 | |
prop: bDriverDebug propValue: 0 | |
prop: bDefaultSoundRecording propValue: 0 | |
prop: bDefaultVoiceRecording propValue: 0 | |
prop: dwFlags propValue: 0 | |
prop: dwFormats propValue: 0 | |
numChildren: 0 | |
child: DxDiag_DirectMusic | |
numProp: 9 | |
prop: bDMusicInstalled propValue: 1 | |
prop: szGMFilePath propValue: C:\windows\system32\drivers\GM.DLS | |
prop: szGMFileVersion propValue: 1.00.0016.0002 | |
prop: bAccelerationEnabled propValue: 1 | |
prop: szNotesLocalized propValue: No problems found. | |
prop: szNotesEnglish propValue: No problems found. | |
prop: szRegHelpText propValue: | |
prop: szTestResultLocalized propValue: Not run | |
prop: szTestResultEnglish propValue: Not run | |
numChildren: 1 | |
child: DxDiag_DirectMusicPorts | |
numProp: 0 | |
numChildren: 3 | |
child: 0 | |
numProp: 10 | |
prop: szGuid propValue: {58C2B4D0-46E7-11D1-89AC-00A0C9054129} | |
prop: bSoftware propValue: 1 | |
prop: bKernelMode propValue: 0 | |
prop: bUsesDLS propValue: 1 | |
prop: bExternal propValue: 0 | |
prop: dwMaxAudioChannels propValue: 2 | |
prop: dwMaxChannelGroups propValue: 1000 | |
prop: bDefaultPort propValue: 1 | |
prop: bOutputPort propValue: 1 | |
prop: szDescription propValue: Microsoft Synthesizer | |
numChildren: 0 | |
child: 1 | |
numProp: 10 | |
prop: szGuid propValue: {8A1EECD2-D5CC-41C3-BE95-972E35240551} | |
prop: bSoftware propValue: 0 | |
prop: bKernelMode propValue: 0 | |
prop: bUsesDLS propValue: 0 | |
prop: bExternal propValue: 0 | |
prop: dwMaxAudioChannels propValue: 0 | |
prop: dwMaxChannelGroups propValue: 1 | |
prop: bDefaultPort propValue: 0 | |
prop: bOutputPort propValue: 1 | |
prop: szDescription propValue: Microsoft MIDI Mapper [Emulated] | |
numChildren: 0 | |
child: 2 | |
numProp: 10 | |
prop: szGuid propValue: {975E51AB-E34C-42FA-82C6-050B4BCE980F} | |
prop: bSoftware propValue: 0 | |
prop: bKernelMode propValue: 0 | |
prop: bUsesDLS propValue: 0 | |
prop: bExternal propValue: 0 | |
prop: dwMaxAudioChannels propValue: 0 | |
prop: dwMaxChannelGroups propValue: 1 | |
prop: bDefaultPort propValue: 0 | |
prop: bOutputPort propValue: 1 | |
prop: szDescription propValue: Microsoft GS Wavetable Synth [Emulated] | |
numChildren: 0 | |
child: DxDiag_DirectInput | |
numProp: 4 | |
prop: bPollFlags propValue: 0 | |
prop: szInputNotesLocalized propValue: No problems found. | |
prop: szInputNotesEnglish propValue: No problems found. | |
prop: szRegHelpText propValue: | |
numChildren: 4 | |
child: DxDiag_DirectInputDevices | |
numProp: 0 | |
numChildren: 26 | |
child: 0 | |
numProp: 10 | |
prop: szInstanceName propValue: Mouse | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 0 | |
prop: dwProductID propValue: 0 | |
prop: dwDevType propValue: 274 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 10 | |
prop: szInstanceName propValue: Keyboard | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 0 | |
prop: dwProductID propValue: 0 | |
prop: dwDevType propValue: 1043 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 2 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 3 | |
numProp: 10 | |
prop: szInstanceName propValue: Touchscreen | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 1267 | |
prop: dwProductID propValue: 8661 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 4 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 5 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 6 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 7 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 8 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 9 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 10 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 11 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 12 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 13 | |
numProp: 10 | |
prop: szInstanceName propValue: HIDI2C Device | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 1739 | |
prop: dwProductID propValue: 31251 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 14 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 15 | |
numProp: 10 | |
prop: szInstanceName propValue: Touchscreen | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 1267 | |
prop: dwProductID propValue: 8661 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 16 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 17 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 18 | |
numProp: 10 | |
prop: szInstanceName propValue: Converted Portable Device Control device | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 1118 | |
prop: dwProductID propValue: 0 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 19 | |
numProp: 10 | |
prop: szInstanceName propValue: HIDI2C Device | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 1739 | |
prop: dwProductID propValue: 31251 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 20 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 21 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 22 | |
numProp: 10 | |
prop: szInstanceName propValue: Touchscreen | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 1267 | |
prop: dwProductID propValue: 8661 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 23 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 24 | |
numProp: 10 | |
prop: szInstanceName propValue: Converted Portable Device Control device | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 1118 | |
prop: dwProductID propValue: 0 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: 25 | |
numProp: 10 | |
prop: szInstanceName propValue: Intel(R) HID Event Filter | |
prop: bAttached propValue: 1 | |
prop: dwJoystickID propValue: 0 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 2590 | |
prop: dwDevType propValue: 65553 | |
prop: szFFDriverName propValue: | |
prop: szFFDriverDateEnglish propValue: | |
prop: szFFDriverVersion propValue: | |
prop: lFFDriverSize propValue: 0 | |
numChildren: 0 | |
child: DxDiag_DirectInputGameports | |
numProp: 0 | |
numChildren: 0 | |
child: DxDiag_DirectInputUSBRoot | |
numProp: 0 | |
numChildren: 0 | |
child: DxDiag_DirectInputPS2Devices | |
numProp: 0 | |
numChildren: 5 | |
child: 0 | |
numProp: 11 | |
prop: dwVendorID propValue: 1118 | |
prop: dwProductID propValue: 0 | |
prop: szDescription propValue: HID Keyboard Device | |
prop: szLocation propValue: | |
prop: szMatchingDeviceId propValue: HID_DEVICE_SYSTEM_KEYBOARD | |
prop: szUpperFilters propValue: | |
prop: szService propValue: kbdhid | |
prop: szLowerFilters propValue: | |
prop: szOEMData propValue: | |
prop: szFlags1 propValue: | |
prop: szFlags2 propValue: | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 2 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\kbdhid.sys | |
prop: szName propValue: kbdhid.sys | |
prop: szVersion propValue: 6.02.17763.0348 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 4/1/2019 04:35:42 | |
prop: szDatestampLocalized propValue: 4/1/2019 4:35:42 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -20992 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\kbdclass.sys | |
prop: szName propValue: kbdclass.sys | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:19 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:19 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 2360 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 11 | |
prop: dwVendorID propValue: 32903 | |
prop: dwProductID propValue: 0 | |
prop: szDescription propValue: HID Keyboard Device | |
prop: szLocation propValue: | |
prop: szMatchingDeviceId propValue: HID_DEVICE_SYSTEM_KEYBOARD | |
prop: szUpperFilters propValue: | |
prop: szService propValue: kbdhid | |
prop: szLowerFilters propValue: | |
prop: szOEMData propValue: | |
prop: szFlags1 propValue: | |
prop: szFlags2 propValue: | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 2 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\kbdhid.sys | |
prop: szName propValue: kbdhid.sys | |
prop: szVersion propValue: 6.02.17763.0348 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 4/1/2019 04:35:42 | |
prop: szDatestampLocalized propValue: 4/1/2019 4:35:42 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -20992 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\kbdclass.sys | |
prop: szName propValue: kbdclass.sys | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:19 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:19 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 2360 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 2 | |
numProp: 11 | |
prop: dwVendorID propValue: 0 | |
prop: dwProductID propValue: 0 | |
prop: szDescription propValue: Standard PS/2 Keyboard | |
prop: szLocation propValue: | |
prop: szMatchingDeviceId propValue: *PNP0303 | |
prop: szUpperFilters propValue: | |
prop: szService propValue: i8042prt | |
prop: szLowerFilters propValue: | |
prop: szOEMData propValue: | |
prop: szFlags1 propValue: | |
prop: szFlags2 propValue: | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 2 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\i8042prt.sys | |
prop: szName propValue: i8042prt.sys | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:19 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:19 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -20480 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\kbdclass.sys | |
prop: szName propValue: kbdclass.sys | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:19 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:19 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 2360 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 3 | |
numProp: 11 | |
prop: dwVendorID propValue: 1739 | |
prop: dwProductID propValue: 0 | |
prop: szDescription propValue: HID-compliant mouse | |
prop: szLocation propValue: | |
prop: szMatchingDeviceId propValue: HID_DEVICE_SYSTEM_MOUSE | |
prop: szUpperFilters propValue: | |
prop: szService propValue: mouhid | |
prop: szLowerFilters propValue: | |
prop: szOEMData propValue: | |
prop: szFlags1 propValue: | |
prop: szFlags2 propValue: | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 2 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\mouhid.sys | |
prop: szName propValue: mouhid.sys | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:19 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:19 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -30720 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\mouclass.sys | |
prop: szName propValue: mouclass.sys | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:19 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:19 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -4296 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 4 | |
numProp: 11 | |
prop: dwVendorID propValue: 0 | |
prop: dwProductID propValue: 0 | |
prop: szDescription propValue: PS/2 Compatible Mouse | |
prop: szLocation propValue: | |
prop: szMatchingDeviceId propValue: *PNP0F13 | |
prop: szUpperFilters propValue: | |
prop: szService propValue: i8042prt | |
prop: szLowerFilters propValue: | |
prop: szOEMData propValue: | |
prop: szFlags1 propValue: | |
prop: szFlags2 propValue: | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 2 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\mouclass.sys | |
prop: szName propValue: mouclass.sys | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:19 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:19 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -4296 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\i8042prt.sys | |
prop: szName propValue: i8042prt.sys | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:19 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:19 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -20480 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: DxDiag_DirectPlay | |
numProp: 11 | |
prop: szNetworkNotesLocalized propValue: | |
prop: szNetworkNotesEnglish propValue: | |
prop: szRegHelpText propValue: | |
prop: szTestResultLocalized propValue: Not run | |
prop: szTestResultEnglish propValue: Not run | |
prop: szVoiceWizardFullDuplexTestLocalized propValue: | |
prop: szVoiceWizardHalfDuplexTestLocalized propValue: | |
prop: szVoiceWizardMicTestLocalized propValue: | |
prop: szVoiceWizardFullDuplexTestEnglish propValue: | |
prop: szVoiceWizardHalfDuplexTestEnglish propValue: | |
prop: szVoiceWizardMicTestEnglish propValue: | |
numChildren: 4 | |
child: DxDiag_DirectPlayApps | |
numProp: 0 | |
numChildren: 0 | |
child: DxDiag_DirectPlaySPs | |
numProp: 0 | |
numChildren: 4 | |
child: 0 | |
numProp: 12 | |
prop: szNameLocalized propValue: @%SystemRoot%\system32\dpnet.dll,-29 | |
prop: szNameEnglish propValue: DirectPlay8 Modem Service Provider | |
prop: szGuid propValue: {6D4A3650-628D-11D2-AE0F-006097B01411} | |
prop: szFile propValue: %SystemRoot%\system32\dpnet.dll | |
prop: szPath propValue: %SystemRoot%\system32\dpnet.dll | |
prop: szVersionLocalized propValue: <File Missing> | |
prop: szVersionEnglish propValue: <File Missing> | |
prop: bRegistryOK propValue: 0 | |
prop: bProblem propValue: 0 | |
prop: bFileMissing propValue: 1 | |
prop: bInstalled propValue: 0 | |
prop: dwDXVer propValue: 8 | |
numChildren: 0 | |
child: 1 | |
numProp: 12 | |
prop: szNameLocalized propValue: @%SystemRoot%\system32\dpnet.dll,-30 | |
prop: szNameEnglish propValue: DirectPlay8 Serial Service Provider | |
prop: szGuid propValue: {743B5D60-628D-11D2-AE0F-006097B01411} | |
prop: szFile propValue: %SystemRoot%\system32\dpnet.dll | |
prop: szPath propValue: %SystemRoot%\system32\dpnet.dll | |
prop: szVersionLocalized propValue: <File Missing> | |
prop: szVersionEnglish propValue: <File Missing> | |
prop: bRegistryOK propValue: 0 | |
prop: bProblem propValue: 0 | |
prop: bFileMissing propValue: 1 | |
prop: bInstalled propValue: 0 | |
prop: dwDXVer propValue: 8 | |
numChildren: 0 | |
child: 2 | |
numProp: 12 | |
prop: szNameLocalized propValue: @%SystemRoot%\system32\dpnet.dll,-2 | |
prop: szNameEnglish propValue: DirectPlay8 TCP/IP Service Provider | |
prop: szGuid propValue: {EBFE7BA0-628D-11D2-AE0F-006097B01411} | |
prop: szFile propValue: %SystemRoot%\system32\dpnet.dll | |
prop: szPath propValue: %SystemRoot%\system32\dpnet.dll | |
prop: szVersionLocalized propValue: <File Missing> | |
prop: szVersionEnglish propValue: <File Missing> | |
prop: bRegistryOK propValue: 0 | |
prop: bProblem propValue: 0 | |
prop: bFileMissing propValue: 1 | |
prop: bInstalled propValue: 1 | |
prop: dwDXVer propValue: 8 | |
numChildren: 0 | |
child: 3 | |
numProp: 12 | |
prop: szNameLocalized propValue: DirectPlay8 IPX Service Provider | |
prop: szNameEnglish propValue: DirectPlay8 IPX Service Provider | |
prop: szGuid propValue: | |
prop: szFile propValue: | |
prop: szPath propValue: | |
prop: szVersionLocalized propValue: | |
prop: szVersionEnglish propValue: | |
prop: bRegistryOK propValue: 0 | |
prop: bProblem propValue: 0 | |
prop: bFileMissing propValue: 0 | |
prop: bInstalled propValue: 0 | |
prop: dwDXVer propValue: 8 | |
numChildren: 0 | |
child: DxDiag_DirectPlayAdapters | |
numProp: 0 | |
numChildren: 4 | |
child: 0 | |
numProp: 5 | |
prop: szAdapterName propValue: VirtualBox Host-Only Network - IPv6 - fe80::499d:791a:d0b3:f0c6 | |
prop: szSPNameEnglish propValue: DirectPlay8 TCP/IP Service Provider | |
prop: szSPNameLocalized propValue: @%SystemRoot%\system32\dpnet.dll,-2 | |
prop: szGuid propValue: {4CE8A50A-7B00-4397-F3F2-68E3B50FB25F} | |
prop: dwFlags propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 5 | |
prop: szAdapterName propValue: Wi-Fi - IPv6 - fe80::fd20:edf5:8464:51b9 | |
prop: szSPNameEnglish propValue: DirectPlay8 TCP/IP Service Provider | |
prop: szSPNameLocalized propValue: @%SystemRoot%\system32\dpnet.dll,-2 | |
prop: szGuid propValue: {4CE5A50A-7B00-4397-474F-FC0CE1D81320} | |
prop: dwFlags propValue: 0 | |
numChildren: 0 | |
child: 2 | |
numProp: 5 | |
prop: szAdapterName propValue: VirtualBox Host-Only Network - IPv4 - | |
prop: szSPNameEnglish propValue: DirectPlay8 TCP/IP Service Provider | |
prop: szSPNameLocalized propValue: @%SystemRoot%\system32\dpnet.dll,-2 | |
prop: szGuid propValue: {4CE725F6-D3C0-42AF-BA6F-11F965BC4299} | |
prop: dwFlags propValue: 0 | |
numChildren: 0 | |
child: 3 | |
numProp: 5 | |
prop: szAdapterName propValue: Wi-Fi - IPv4 - | |
prop: szSPNameEnglish propValue: DirectPlay8 TCP/IP Service Provider | |
prop: szSPNameLocalized propValue: @%SystemRoot%\system32\dpnet.dll,-2 | |
prop: szGuid propValue: {4CE725F6-D3C0-2D9F-BA6F-11F965BC4299} | |
prop: dwFlags propValue: 0 | |
numChildren: 0 | |
child: DxDiag_DirectPlayVoiceCodecs | |
numProp: 0 | |
numChildren: 0 | |
child: DxDiag_SystemDevices | |
numProp: 0 | |
numChildren: 20 | |
child: 0 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) Serial IO I2C Host Controller - A160 | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_A160&SUBSYS_06E51028&REV_31\3&11583659&0&A8 | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 1 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\iaLPSS2i_I2C.sys | |
prop: szName propValue: iaLPSS2i_I2C.sys | |
prop: szVersion propValue: 30.100.1816.0003 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:15 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:15 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -25088 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) Chipset SATA/PCIe RST Premium Controller | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_2822&SUBSYS_06E51028&REV_31\3&11583659&0&B8 | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 5 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\iaStorAC.sys | |
prop: szName propValue: iaStorAC.sys | |
prop: szVersion propValue: 16.08.0003.1003 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 7/29/2019 14:50:38 | |
prop: szDatestampLocalized propValue: 7/29/2019 2:50:38 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -17920 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\iaStorAfs.sys | |
prop: szName propValue: iaStorAfs.sys | |
prop: szVersion propValue: 16.08.0003.1003 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 7/29/2019 14:50:38 | |
prop: szDatestampLocalized propValue: 7/29/2019 2:50:38 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 9216 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 2 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\iaStorAfsService.exe | |
prop: szName propValue: iaStorAfsService.exe | |
prop: szVersion propValue: 16.08.0003.1003 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 7/29/2019 14:50:38 | |
prop: szDatestampLocalized propValue: 7/29/2019 2:50:38 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 26624 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 3 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\iaStorAfsNative.exe | |
prop: szName propValue: iaStorAfsNative.exe | |
prop: szVersion propValue: 16.08.0003.1003 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 7/29/2019 14:50:38 | |
prop: szDatestampLocalized propValue: 7/29/2019 2:50:38 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 25088 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 4 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\Optane.dll | |
prop: szName propValue: Optane.dll | |
prop: szVersion propValue: 16.08.0003.1003 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 7/29/2019 14:50:38 | |
prop: szDatestampLocalized propValue: 7/29/2019 2:50:38 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -16384 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 2 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) 100 Series/C230 Series Chipset Family PMC - A121 | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_A121&SUBSYS_06E51028&REV_31\3&11583659&0&FA | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 0 | |
child: 3 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) 100 Series/C230 Series Chipset Family PCI Express Root Port #15 - A11E | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_A11E&SUBSYS_06E51028&REV_F1\3&11583659&0&EE | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 1 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\pci.sys | |
prop: szName propValue: pci.sys | |
prop: szVersion propValue: 6.02.17763.1007 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/27/2020 20:19:58 | |
prop: szDatestampLocalized propValue: 2/27/2020 8:19:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 29496 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 4 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) Dynamic Platform and Thermal Framework Processor Participant | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_1903&SUBSYS_06E51028&REV_07\3&11583659&0&20 | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 2 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\dptf_cpu.sys | |
prop: szName propValue: dptf_cpu.sys | |
prop: szVersion propValue: 8.02.10900.0330 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2016 14:20:46 | |
prop: szDatestampLocalized propValue: 5/19/2016 2:20:46 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -448 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\WdfCoInstaller01011.dll | |
prop: szName propValue: WdfCoInstaller01011.dll | |
prop: szVersion propValue: 1.11.9200.16384 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2016 14:21:48 | |
prop: szDatestampLocalized propValue: 5/19/2016 2:21:48 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -30328 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 5 | |
numProp: 2 | |
prop: szDescription propValue: NVIDIA Quadro M1000M | |
prop: szDeviceID propValue: PCI\VEN_10DE&DEV_13B1&SUBSYS_06E51028&REV_A2\4&2396BAA3&0&0008 | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 181 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\Display.NvContainer\NVDisplay.Container.exe | |
prop: szName propValue: NVDisplay.Container.exe | |
prop: szVersion propValue: 1.25.2802.9499 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:29 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:29 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 21304 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\Display.NvContainer\NvContainerRecovery.bat | |
prop: szName propValue: NvContainerRecovery.bat | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:56 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:56 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 1951 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 2 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\Display.NvContainer\plugins\LocalSystem\NvXDCore.dll | |
prop: szName propValue: NvXDCore.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:26 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:26 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -13848 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 3 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\Display.NvContainer\plugins\LocalSystem\NvcDispCorePlugin.dll | |
prop: szName propValue: NvcDispCorePlugin.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:10 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:10 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 10728 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 4 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\Display.NvContainer\plugins\LocalSystem\NvcDispWatchdog.dll | |
prop: szName propValue: NvcDispWatchdog.dll | |
prop: szVersion propValue: 1.25.2802.9499 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:46 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:46 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 30192 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 5 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\Display.NvContainer\plugins\LocalSystem\_DisplayDriverRAS.dll | |
prop: szName propValue: _DisplayDriverRAS.dll | |
prop: szVersion propValue: 1.10.0000.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:57 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:57 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 6128 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 6 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\Display.NvContainer\plugins\Session\NvFBCPlugin.dll | |
prop: szName propValue: NvFBCPlugin.dll | |
prop: szVersion propValue: 6.14.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:09 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:09 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 7144 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 7 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\Display.NvContainer\plugins\Session\_nvppo.dll | |
prop: szName propValue: _nvppo.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:12 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:12 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -1224 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 8 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\Display.NvContainer\plugins\Session\nvprofileupdaterplugin.dll | |
prop: szName propValue: nvprofileupdaterplugin.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:32 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:32 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -5648 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 9 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\Display.NvContainer\plugins\Session\nvxdsyncplugin.dll | |
prop: szName propValue: nvxdsyncplugin.dll | |
prop: szVersion propValue: 8.17.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:50 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:50 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -18120 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 10 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\NVIDIA Corporation\Drs\dbInstaller.exe | |
prop: szName propValue: dbInstaller.exe | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:49 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:49 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -3096 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 11 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\NVIDIA Corporation\Drs\nvdrsdb.bin | |
prop: szName propValue: nvdrsdb.bin | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:21 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:21 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 12276 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 12 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\nvcpl.dll | |
prop: szName propValue: nvcpl.dll | |
prop: szVersion propValue: 8.17.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:05 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:05 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 11248 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 13 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nv3dappshext.dll | |
prop: szName propValue: nv3dappshext.dll | |
prop: szVersion propValue: 6.14.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:15 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:15 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -6344 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 14 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nv3dappshextr.dll | |
prop: szName propValue: nv3dappshextr.dll | |
prop: szVersion propValue: 6.14.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:14 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 17904 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 15 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvcoproc.bin | |
prop: szName propValue: nvcoproc.bin | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:10 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:10 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 22183 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 16 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvcpl.dll | |
prop: szName propValue: nvcpl.dll | |
prop: szVersion propValue: 8.17.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:05 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:05 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 11248 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 17 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvdevtools.dll | |
prop: szName propValue: nvdevtools.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:11 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:11 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -1736 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 18 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvdevtoolsr.dll | |
prop: szName propValue: nvdevtoolsr.dll | |
prop: szVersion propValue: 6.14.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:22 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:22 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 27960 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 19 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvdisps.dll | |
prop: szName propValue: nvdisps.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:59 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:59 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -27336 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 20 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvdispsr.dll | |
prop: szName propValue: nvdispsr.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:02 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:02 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -5832 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 21 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvgames.dll | |
prop: szName propValue: nvgames.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/21/2020 00:52:16 | |
prop: szDatestampLocalized propValue: 5/21/2020 12:52:16 AM | |
prop: szAttributes propValue: Final Debug | |
prop: lNumBytes propValue: 24064 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 1 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 22 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvgamesr.dll | |
prop: szName propValue: nvgamesr.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:43 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:43 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -14360 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 23 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvlicensings.dll | |
prop: szName propValue: nvlicensings.dll | |
prop: szVersion propValue: 6.14.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:14 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 488 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 24 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvlicensingsr.dll | |
prop: szName propValue: nvlicensingsr.dll | |
prop: szVersion propValue: 6.14.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:33 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:33 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 20792 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 25 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvshext.dll | |
prop: szName propValue: nvshext.dll | |
prop: szVersion propValue: 1.02.0000.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:14 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -8728 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 26 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvsmartmax.dll | |
prop: szName propValue: nvsmartmax.dll | |
prop: szVersion propValue: 6.14.0010.10003 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:19 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:19 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -2072 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 27 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvsmartmax64.dll | |
prop: szName propValue: nvsmartmax64.dll | |
prop: szVersion propValue: 6.14.0010.10003 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:42 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:42 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -28872 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 28 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvsmartmaxapp.exe | |
prop: szName propValue: nvsmartmaxapp.exe | |
prop: szVersion propValue: 6.14.0010.10003 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:52 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:52 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 2360 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 29 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvsmartmaxapp64.exe | |
prop: szName propValue: nvsmartmaxapp64.exe | |
prop: szVersion propValue: 6.14.0010.10003 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:32 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:32 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 13296 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 30 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvsvc64.dll | |
prop: szName propValue: nvsvc64.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:11 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:11 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 12264 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 31 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvsvcr.dll | |
prop: szName propValue: nvsvcr.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:17 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:17 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -9240 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 32 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvsvs.dll | |
prop: szName propValue: nvsvs.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:54 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:54 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -2760 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 33 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvsvsr.dll | |
prop: szName propValue: nvsvsr.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:43 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:43 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -28176 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 34 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvui.dll | |
prop: szName propValue: nvui.dll | |
prop: szVersion propValue: 8.17.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/27/2020 13:38:17 | |
prop: szDatestampLocalized propValue: 5/27/2020 1:38:17 PM | |
prop: szAttributes propValue: Final Debug | |
prop: lNumBytes propValue: -3072 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 1 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 35 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvuir.dll | |
prop: szName propValue: nvuir.dll | |
prop: szVersion propValue: 8.17.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/27/2020 13:38:21 | |
prop: szDatestampLocalized propValue: 5/27/2020 1:38:21 PM | |
prop: szAttributes propValue: Final Debug | |
prop: lNumBytes propValue: 9216 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 1 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 36 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvvitvs.dll | |
prop: szName propValue: nvvitvs.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:37 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:37 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -18120 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 37 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvvitvsr.dll | |
prop: szName propValue: nvvitvsr.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:14 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -24592 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 38 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvwss.dll | |
prop: szName propValue: nvwss.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:56 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:56 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -3608 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 39 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvwssr.dll | |
prop: szName propValue: nvwssr.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:04 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:04 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 30184 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 40 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvxdapix.dll | |
prop: szName propValue: nvxdapix.dll | |
prop: szVersion propValue: 8.17.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/27/2020 13:46:34 | |
prop: szDatestampLocalized propValue: 5/27/2020 1:46:34 PM | |
prop: szAttributes propValue: Final Debug | |
prop: lNumBytes propValue: 6656 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 1 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 41 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvxdbat.dll | |
prop: szName propValue: nvxdbat.dll | |
prop: szVersion propValue: 8.17.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:26 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:26 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -11792 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 42 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvxdplcy.dll | |
prop: szName propValue: nvxdplcy.dll | |
prop: szVersion propValue: 8.17.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:26 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:26 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -25112 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 43 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\NVIDIA Corporation\license.txt | |
prop: szName propValue: license.txt | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:42 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:42 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 27216 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 44 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Adjustments.yaml | |
prop: szName propValue: Adjustments.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:02 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:02 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 8964 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 45 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Adjustments.yfx | |
prop: szName propValue: Adjustments.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:17 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:17 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 1271 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 46 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\BlacknWhite.yaml | |
prop: szName propValue: BlacknWhite.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:52 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:52 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 5774 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 47 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\BlacknWhite.yfx | |
prop: szName propValue: BlacknWhite.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:09 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:09 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 1080 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 48 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Color.yaml | |
prop: szName propValue: Color.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:27 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:27 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 5298 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 49 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Color.yfx | |
prop: szName propValue: Color.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:25 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:25 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 1951 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 50 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Colorblind.yaml | |
prop: szName propValue: Colorblind.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:41 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:41 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 3853 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 51 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Colorblind.yfx | |
prop: szName propValue: Colorblind.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:31 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:31 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 1531 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 52 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\DOF.yaml | |
prop: szName propValue: DOF.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:26 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:26 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 16008 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 53 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\DOF.yfx | |
prop: szName propValue: DOF.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:29 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:29 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 12413 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 54 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Details.yaml | |
prop: szName propValue: Details.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:51 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:51 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 5222 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 55 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Details.yfx | |
prop: szName propValue: Details.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:06 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:06 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 4077 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 56 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\FreqTransfer32.exe | |
prop: szName propValue: FreqTransfer32.exe | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:43 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:43 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 24888 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 57 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\FreqTransfer64.exe | |
prop: szName propValue: FreqTransfer64.exe | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:42 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:42 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -22728 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 58 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\GreenScreen.yaml | |
prop: szName propValue: GreenScreen.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:26 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:26 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 5882 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 59 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\GreenScreen.yfx | |
prop: szName propValue: GreenScreen.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:59 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:59 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 2034 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 60 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\GreenScreenBG01.jpg | |
prop: szName propValue: GreenScreenBG01.jpg | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:30 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:30 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 19384 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 61 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\GreenScreenBG02.jpg | |
prop: szName propValue: GreenScreenBG02.jpg | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:07 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:07 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -24552 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 62 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\HighresBlender32.exe | |
prop: szName propValue: HighresBlender32.exe | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:33 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:33 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 15344 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 63 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\HighresBlender64.exe | |
prop: szName propValue: HighresBlender64.exe | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:30 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:30 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -21008 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 64 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\LDR_RGB1_18.png | |
prop: szName propValue: LDR_RGB1_18.png | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:15 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:15 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 3671 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 65 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Letterbox.yaml | |
prop: szName propValue: Letterbox.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:46 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:46 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 3295 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 66 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Letterbox.yfx | |
prop: szName propValue: Letterbox.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:30 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:30 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 1319 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 67 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\NightMode.yaml | |
prop: szName propValue: NightMode.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:01 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:01 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 1738 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 68 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\NightMode.yfx | |
prop: szName propValue: NightMode.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:57 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:57 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 552 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 69 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\NvCamera32.dll | |
prop: szName propValue: NvCamera32.dll | |
prop: szVersion propValue: 7.00.0558.0575 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:51 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:51 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -20680 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 70 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\NvCamera64.dll | |
prop: szName propValue: NvCamera64.dll | |
prop: szVersion propValue: 7.00.0558.0575 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:54 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:54 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -3600 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 71 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\NvCameraEnable.exe | |
prop: szName propValue: NvCameraEnable.exe | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:02 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:02 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 30184 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 72 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\NvCameraWhitelisting32.dll | |
prop: szName propValue: NvCameraWhitelisting32.dll | |
prop: szVersion propValue: 7.00.0558.0575 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:27 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:27 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -29200 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 73 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\NvCameraWhitelisting64.dll | |
prop: szName propValue: NvCameraWhitelisting64.dll | |
prop: szVersion propValue: 7.00.0558.0575 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:33 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:33 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -28184 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 74 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\NvImageConvert32.exe | |
prop: szName propValue: NvImageConvert32.exe | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:38 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:38 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 2024 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 75 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\NvImageConvert64.exe | |
prop: szName propValue: NvImageConvert64.exe | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:55 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:55 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 3896 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 76 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\OldFilm.yaml | |
prop: szName propValue: OldFilm.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:09 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:09 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 7473 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 77 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\OldFilm.yfx | |
prop: szName propValue: OldFilm.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:29 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:29 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 2746 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 78 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Posterize.fx | |
prop: szName propValue: Posterize.fx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:18 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:18 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 12310 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 79 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\ReShadeFXC32.exe | |
prop: szName propValue: ReShadeFXC32.exe | |
prop: szVersion propValue: 2.00.0000.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:11 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:11 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -27160 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 80 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\RemoveHud.yaml | |
prop: szName propValue: RemoveHud.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:16 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:16 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 459 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 81 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\RemoveHud.yfx | |
prop: szName propValue: RemoveHud.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:36 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:36 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 776 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 82 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Sharpen.yaml | |
prop: szName propValue: Sharpen.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:02 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:02 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 3030 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 83 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Sharpen.yfx | |
prop: szName propValue: Sharpen.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:13 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:13 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 4993 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 84 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\SpecialFX.yaml | |
prop: szName propValue: SpecialFX.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:08 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:08 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 14100 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 85 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\SpecialFX.yfx | |
prop: szName propValue: SpecialFX.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:10 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:10 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 13357 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 86 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\SphericalEquirect32.exe | |
prop: szName propValue: SphericalEquirect32.exe | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:28 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:28 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 18232 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 87 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\SphericalEquirect64.exe | |
prop: szName propValue: SphericalEquirect64.exe | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:13 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:13 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -26640 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 88 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Splitscreen.yaml | |
prop: szName propValue: Splitscreen.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:58 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:58 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 9609 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 89 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Splitscreen.yfx | |
prop: szName propValue: Splitscreen.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:24 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:24 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 7203 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 90 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Sticker01.png | |
prop: szName propValue: Sticker01.png | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:26 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:26 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -15841 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 91 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Sticker02.png | |
prop: szName propValue: Sticker02.png | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:12 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:12 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 15250 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 92 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Sticker03.png | |
prop: szName propValue: Sticker03.png | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:50 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:50 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -13210 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 93 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Sticker04.png | |
prop: szName propValue: Sticker04.png | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:16 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:16 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 21345 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 94 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Sticker05.png | |
prop: szName propValue: Sticker05.png | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:48 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:48 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -6232 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 95 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Sticker06.png | |
prop: szName propValue: Sticker06.png | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:54 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:54 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 13547 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 96 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Sticker07.png | |
prop: szName propValue: Sticker07.png | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:27 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:27 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 6342 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 97 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Sticker08.png | |
prop: szName propValue: Sticker08.png | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:27 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:27 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 30957 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 98 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Stickers.yaml | |
prop: szName propValue: Stickers.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:15 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:15 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 10323 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 99 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Stickers.yfx | |
prop: szName propValue: Stickers.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:58 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:58 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 3989 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 100 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\TiltShift.yaml | |
prop: szName propValue: TiltShift.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:02 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:02 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 4656 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 101 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\TiltShift.yfx | |
prop: szName propValue: TiltShift.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:05 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:05 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 4849 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 102 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Vignette.yaml | |
prop: szName propValue: Vignette.yaml | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:10 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:10 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 4677 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 103 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\Vignette.yfx | |
prop: szName propValue: Vignette.yfx | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:16 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:16 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 1823 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 104 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\YAMLFXC32.exe | |
prop: szName propValue: YAMLFXC32.exe | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:05 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:05 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -10256 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 105 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\d3dcompiler_47_32.dll | |
prop: szName propValue: d3dcompiler_47_32.dll | |
prop: szVersion propValue: 6.03.9600.16384 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:15 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:15 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -13336 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 106 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\d3dcompiler_47_64.dll | |
prop: szName propValue: d3dcompiler_47_64.dll | |
prop: szVersion propValue: 6.03.9600.16384 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:30 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:30 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -28360 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 107 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\filternames.cfg | |
prop: szName propValue: filternames.cfg | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:43 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:43 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 14012 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 108 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\fxtools.cfg | |
prop: szName propValue: fxtools.cfg | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:53 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:53 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 65 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 109 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\scratches.jpg | |
prop: szName propValue: scratches.jpg | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:25 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:25 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 18674 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 110 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\tools_licenses.txt | |
prop: szName propValue: tools_licenses.txt | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:13 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:13 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 11045 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 111 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvCamera\ui.tga | |
prop: szName propValue: ui.tga | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:23 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:23 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -10836 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 112 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\MCU.exe | |
prop: szName propValue: MCU.exe | |
prop: szVersion propValue: 1.01.5204.20580 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:33 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:33 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -10952 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 113 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\nvdebugdump.exe | |
prop: szName propValue: nvdebugdump.exe | |
prop: szVersion propValue: 6.14.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:20:11 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:20:11 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -23064 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 114 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\nvidia-smi.1.pdf | |
prop: szName propValue: nvidia-smi.1.pdf | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:51 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:51 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 16287 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 115 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\nvidia-smi.exe | |
prop: szName propValue: nvidia-smi.exe | |
prop: szVersion propValue: 8.17.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:52 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:52 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -31768 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 116 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\nvml.dll | |
prop: szName propValue: nvml.dll | |
prop: szVersion propValue: 8.17.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:26 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:26 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 488 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 117 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvopencl32.dll | |
prop: szName propValue: nvopencl32.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:30 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:30 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 5432 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 118 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvopencl64.dll | |
prop: szName propValue: nvopencl64.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:01 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:01 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -17432 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 119 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvlddmkm.sys | |
prop: szName propValue: nvlddmkm.sys | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:06 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:06 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -17424 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 120 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nv-vk64.json | |
prop: szName propValue: nv-vk64.json | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:11:05 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:11:05 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 671 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 121 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvDecMFTMjpeg.dll | |
prop: szName propValue: nvDecMFTMjpeg.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:04 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:04 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 4592 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 122 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvDecMFTMjpegx.dll | |
prop: szName propValue: nvDecMFTMjpegx.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:16 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:16 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 15856 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 123 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvEncMFTH264.dll | |
prop: szName propValue: nvEncMFTH264.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:52 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:52 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 13288 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 124 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvEncMFTH264x.dll | |
prop: szName propValue: nvEncMFTH264x.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:13 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:13 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -5136 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 125 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvcbl64.dll | |
prop: szName propValue: nvcbl64.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:42 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:42 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -14024 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 126 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvd3dumx.dll | |
prop: szName propValue: nvd3dumx.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:16 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:16 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 27224 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 127 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvd3dumx_cfg.dll | |
prop: szName propValue: nvd3dumx_cfg.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:14 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 29232 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 128 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvdlistx.dll | |
prop: szName propValue: nvdlistx.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:13 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:13 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -11800 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 129 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvldumdx.dll | |
prop: szName propValue: nvldumdx.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:06 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:06 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 30368 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 130 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvoglv64.dll | |
prop: szName propValue: nvoglv64.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:10 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:10 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 12600 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 131 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvoptix.dll | |
prop: szName propValue: nvoptix.dll | |
prop: szVersion propValue: 7.01.0000.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:04 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:04 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 21304 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 132 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvrtum64.dll | |
prop: szName propValue: nvrtum64.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:24 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:24 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 23016 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 133 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvvkwddc64.dll | |
prop: szName propValue: nvvkwddc64.dll | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:33 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:33 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 23864 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 134 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvwgf2umx.dll | |
prop: szName propValue: nvwgf2umx.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:39 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:39 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -7400 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 135 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvwgf2umx_cfg.dll | |
prop: szName propValue: nvwgf2umx_cfg.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:17 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:17 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 29120 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 136 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\NvFBC64.dll | |
prop: szName propValue: NvFBC64.dll | |
prop: szVersion propValue: 6.14.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:17 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:17 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 27960 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 137 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\NvIFR64.dll | |
prop: szName propValue: NvIFR64.dll | |
prop: szVersion propValue: 6.14.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:28 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:28 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 26096 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 138 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\NvIFROpenGL.dll | |
prop: szName propValue: NvIFROpenGL.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:28 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:28 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 14824 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 139 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\OpenCL.dll | |
prop: szName propValue: OpenCL.dll | |
prop: szVersion propValue: 2.02.0002.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:33 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:33 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -25800 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 140 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\nvEncodeAPI64.dll | |
prop: szName propValue: nvEncodeAPI64.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:16 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:16 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 12272 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 141 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\nvapi64.dll | |
prop: szName propValue: nvapi64.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:26 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:26 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -800 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 142 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\nvcompiler.dll | |
prop: szName propValue: nvcompiler.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:30 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:30 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -7696 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 143 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\nvcuda.dll | |
prop: szName propValue: nvcuda.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:02 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:02 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 23024 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 144 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\nvcuvid.dll | |
prop: szName propValue: nvcuvid.dll | |
prop: szVersion propValue: 7.17.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:30 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:30 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -4120 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 145 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\nvfatbinaryLoader.dll | |
prop: szName propValue: nvfatbinaryLoader.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:04 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:04 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -21520 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 146 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\nvinfo.pb | |
prop: szName propValue: nvinfo.pb | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:13:11 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:13:11 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 9299 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 147 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\nvofapi64.dll | |
prop: szName propValue: nvofapi64.dll | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:33 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:33 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 7144 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 148 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\nvptxJitCompiler.dll | |
prop: szName propValue: nvptxJitCompiler.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:28 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:28 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 30008 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 149 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\vulkan-1-999-0-0-0.dll | |
prop: szName propValue: vulkan-1-999-0-0-0.dll | |
prop: szVersion propValue: 1.01.0126.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:18 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:18 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 21816 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 150 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\vulkan-1.dll | |
prop: szName propValue: vulkan-1.dll | |
prop: szVersion propValue: 1.01.0126.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:18 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:18 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 21816 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 151 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\vulkaninfo-1-999-0-0-0.exe | |
prop: szName propValue: vulkaninfo-1-999-0-0-0.exe | |
prop: szVersion propValue: 1.01.0126.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:26 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:26 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 16696 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 152 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\vulkaninfo.exe | |
prop: szName propValue: vulkaninfo.exe | |
prop: szVersion propValue: 1.01.0126.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:26 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:26 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 16696 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 153 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nv-vk32.json | |
prop: szName propValue: nv-vk32.json | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:50 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:50 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 671 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 154 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nv_Icc_AdvancedColor_Identity.icm | |
prop: szName propValue: nv_Icc_AdvancedColor_Identity.icm | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:38 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:38 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 3288 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 155 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvd3dum.dll | |
prop: szName propValue: nvd3dum.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:01 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:01 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 10336 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 156 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvd3dum_cfg.dll | |
prop: szName propValue: nvd3dum_cfg.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:32 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:32 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -28736 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 157 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvdispco64.exe | |
prop: szName propValue: nvdispco64.exe | |
prop: szVersion propValue: 1.00.0015.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:10:53 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:10:53 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 21480 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 158 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvdlist.dll | |
prop: szName propValue: nvdlist.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:43 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:43 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 26608 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 159 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvldumd.dll | |
prop: szName propValue: nvldumd.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:10 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:10 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 4368 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 160 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvoglv32.dll | |
prop: szName propValue: nvoglv32.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:26 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:26 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 17720 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 161 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvvkwddc32.dll | |
prop: szName propValue: nvvkwddc32.dll | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:33 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:33 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 22504 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 162 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvwgf2um.dll | |
prop: szName propValue: nvwgf2um.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:13 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:13 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -29736 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 163 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\nvwgf2um_cfg.dll | |
prop: szName propValue: nvwgf2um_cfg.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:52 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:52 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -1328 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 164 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\NvFBC.dll | |
prop: szName propValue: NvFBC.dll | |
prop: szVersion propValue: 6.14.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:35 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:35 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -18968 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 165 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\NvIFR.dll | |
prop: szName propValue: NvIFR.dll | |
prop: szVersion propValue: 6.14.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:26 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:26 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 15856 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 166 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\NvIFROpenGL.dll | |
prop: szName propValue: NvIFROpenGL.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:16 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:16 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 17392 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 167 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\OpenCL.dll | |
prop: szName propValue: OpenCL.dll | |
prop: szVersion propValue: 2.02.0002.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:14 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 8176 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 168 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\nvEncodeAPI.dll | |
prop: szName propValue: nvEncodeAPI.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:16 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:16 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -9752 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 169 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\nvapi.dll | |
prop: szName propValue: nvapi.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:38 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:38 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -7096 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 170 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\nvcompiler.dll | |
prop: szName propValue: nvcompiler.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:28 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:28 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -26640 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 171 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\nvcuda.dll | |
prop: szName propValue: nvcuda.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:21 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:21 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 20968 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 172 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\nvcuvid.dll | |
prop: szName propValue: nvcuvid.dll | |
prop: szVersion propValue: 7.17.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:43 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:43 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -11288 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 173 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\nvfatbinaryLoader.dll | |
prop: szName propValue: nvfatbinaryLoader.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:38 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:38 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 496 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 174 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\nvofapi.dll | |
prop: szName propValue: nvofapi.dll | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:26 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:26 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 4920 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 175 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\nvptxJitCompiler.dll | |
prop: szName propValue: nvptxJitCompiler.dll | |
prop: szVersion propValue: 26.21.0014.4323 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:52 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:52 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -6344 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 176 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\vulkan-1-999-0-0-0.dll | |
prop: szName propValue: vulkan-1-999-0-0-0.dll | |
prop: szVersion propValue: 1.01.0126.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:21 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:21 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 11576 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 177 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\vulkan-1.dll | |
prop: szName propValue: vulkan-1.dll | |
prop: szVersion propValue: 1.01.0126.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:21 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:21 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 11576 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 178 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\vulkaninfo-1-999-0-0-0.exe | |
prop: szName propValue: vulkaninfo-1-999-0-0-0.exe | |
prop: szVersion propValue: 1.01.0126.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:43 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:43 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 10040 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 179 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\vulkaninfo.exe | |
prop: szName propValue: vulkaninfo.exe | |
prop: szVersion propValue: 1.01.0126.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:43 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:43 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 10040 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 180 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_cc3d6cde13604c2d\NvTelemetry64.dll | |
prop: szName propValue: NvTelemetry64.dll | |
prop: szVersion propValue: 14.03.0015.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/20/2020 01:12:16 | |
prop: szDatestampLocalized propValue: 5/20/2020 1:12:16 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 18416 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 6 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) Serial IO I2C Host Controller - A161 | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_A161&SUBSYS_06E51028&REV_31\3&11583659&0&A9 | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 1 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\iaLPSS2i_I2C.sys | |
prop: szName propValue: iaLPSS2i_I2C.sys | |
prop: szVersion propValue: 30.100.1816.0003 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:15 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:15 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -25088 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 7 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) 100 Series/C230 Series Chipset Family LPC Controller - A150 | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_A150&SUBSYS_06E51028&REV_31\3&11583659&0&F8 | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 1 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\msisadrv.sys | |
prop: szName propValue: msisadrv.sys | |
prop: szVersion propValue: 6.02.17763.0771 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/4/2019 12:01:40 | |
prop: szDatestampLocalized propValue: 10/4/2019 12:01:40 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 18744 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 8 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) 100 Series/C230 Series Chipset Family PCI Express Root Port #1 - A110 | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_A110&SUBSYS_06E51028&REV_F1\3&11583659&0&E0 | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 1 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\pci.sys | |
prop: szName propValue: pci.sys | |
prop: szVersion propValue: 6.02.17763.1007 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/27/2020 20:19:58 | |
prop: szDatestampLocalized propValue: 2/27/2020 8:19:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 29496 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 9 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) 100 Series/C230 Series Chipset Family PCI Express Root Port #13 - A11C | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_A11C&SUBSYS_06E51028&REV_F1\3&11583659&0&E8 | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 1 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\pci.sys | |
prop: szName propValue: pci.sys | |
prop: szVersion propValue: 6.02.17763.1007 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/27/2020 20:19:58 | |
prop: szDatestampLocalized propValue: 2/27/2020 8:19:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 29496 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 10 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) Management Engine Interface | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_A13A&SUBSYS_06E51028&REV_31\3&11583659&0&B0 | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 1 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\TeeDriverW8x64.sys | |
prop: szName propValue: TeeDriverW8x64.sys | |
prop: szVersion propValue: 1904.12.0000.1208 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 4/4/2019 05:26:44 | |
prop: szDatestampLocalized propValue: 4/4/2019 5:26:44 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 1528 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 11 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) Xeon(R) E3 - 1200/1500 v5/6th Gen Intel(R) Core(TM) PCIe Controller (x16) - 1901 | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_1901&SUBSYS_06E51028&REV_07\3&11583659&0&08 | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 1 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\pci.sys | |
prop: szName propValue: pci.sys | |
prop: szVersion propValue: 6.02.17763.1007 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/27/2020 20:19:58 | |
prop: szDatestampLocalized propValue: 2/27/2020 8:19:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 29496 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 12 | |
numProp: 2 | |
prop: szDescription propValue: High Definition Audio Controller | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_A170&SUBSYS_06E51028&REV_31\3&11583659&0&FB | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 3 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\hdaudbus.sys | |
prop: szName propValue: hdaudbus.sys | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:15 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:15 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -26112 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\drmk.sys | |
prop: szName propValue: drmk.sys | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:15 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:15 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -32768 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 2 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\portcls.sys | |
prop: szName propValue: portcls.sys | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:15 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:15 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -11776 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 13 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) 100 Series/C230 Series Chipset Family Thermal subsystem - A131 | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_A131&SUBSYS_06E51028&REV_31\3&11583659&0&A2 | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 0 | |
child: 14 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) HD Graphics 530 | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_191B&SUBSYS_06E51028&REV_06\3&11583659&0&10 | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 190 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdkmd64.sys | |
prop: szName propValue: igdkmd64.sys | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:48 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:48 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -12952 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\iglhxs64.vp | |
prop: szName propValue: iglhxs64.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:42 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 4914 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 2 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igd10iumd64.dll | |
prop: szName propValue: igd10iumd64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:04 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:04 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 8688 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 3 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igd11dxva64.dll | |
prop: szName propValue: igd11dxva64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:08 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:08 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 14512 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 4 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igd12dxva64.dll | |
prop: szName propValue: igd12dxva64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:12 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:12 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -22000 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 5 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igd12umd64.dll | |
prop: szName propValue: igd12umd64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:16 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:16 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -14096 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 6 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdgmm64.dll | |
prop: szName propValue: igdgmm64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:24 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:24 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -23680 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 7 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxcmrt64.dll | |
prop: szName propValue: igfxcmrt64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:32 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:32 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 6064 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 8 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfx11cmrt64.dll | |
prop: szName propValue: igfx11cmrt64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:32 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:32 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 7064 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 9 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdumdim64.dll | |
prop: szName propValue: igdumdim64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:30 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:30 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -3816 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 10 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igd9dxva64.dll | |
prop: szName propValue: igd9dxva64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:20 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:20 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -9008 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 11 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdail64.dll | |
prop: szName propValue: igdail64.dll | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:46 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:46 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -9408 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 12 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\iga64.dll | |
prop: szName propValue: iga64.dll | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:56 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:56 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 11496 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 13 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igc64.dll | |
prop: szName propValue: igc64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:00 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:00 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 11920 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 14 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\UniversalAdapter64.dll | |
prop: szName propValue: UniversalAdapter64.dll | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:52 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:52 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 14528 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 15 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\opencl-clang64.dll | |
prop: szName propValue: opencl-clang64.dll | |
prop: szVersion propValue: 2.00.0008.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:50 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 18288 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 16 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdfcl64.dll | |
prop: szName propValue: igdfcl64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:24 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:24 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 24352 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 17 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdmd64.dll | |
prop: szName propValue: igdmd64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:28 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:28 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 21464 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 18 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdml64.dll | |
prop: szName propValue: igdml64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:28 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:28 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 16024 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 19 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdde64.dll | |
prop: szName propValue: igdde64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:22 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:22 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -2048 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 20 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdinfo64.dll | |
prop: szName propValue: igdinfo64.dll | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:26 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:26 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 14208 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 21 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdext64.dll | |
prop: szName propValue: igdext64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:22 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:22 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 14112 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 22 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igd10idpp64.dll | |
prop: szName propValue: igd10idpp64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:00 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:00 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 24352 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 23 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igd10iumd32.dll | |
prop: szName propValue: igd10iumd32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:02 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:02 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -23856 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 24 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igd11dxva32.dll | |
prop: szName propValue: igd11dxva32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:06 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:06 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 14960 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 25 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igd12dxva32.dll | |
prop: szName propValue: igd12dxva32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:10 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:10 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 10256 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 26 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igd12umd32.dll | |
prop: szName propValue: igd12umd32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:14 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -17168 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 27 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdgmm32.dll | |
prop: szName propValue: igdgmm32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:24 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:24 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 17728 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 28 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdumdim32.dll | |
prop: szName propValue: igdumdim32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:30 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:30 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -26312 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 29 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igd9dxva32.dll | |
prop: szName propValue: igd9dxva32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:18 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:18 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 12304 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 30 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdail32.dll | |
prop: szName propValue: igdail32.dll | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:46 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:46 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -30912 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 31 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxcmrt32.dll | |
prop: szName propValue: igfxcmrt32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:32 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:32 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -23920 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 32 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfx11cmrt32.dll | |
prop: szName propValue: igfx11cmrt32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:32 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:32 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -23304 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 33 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\iga32.dll | |
prop: szName propValue: iga32.dll | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:56 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:56 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -19800 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 34 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igc32.dll | |
prop: szName propValue: igc32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:58 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -29008 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 35 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\UniversalAdapter32.dll | |
prop: szName propValue: UniversalAdapter32.dll | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -24320 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 36 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\opencl-clang32.dll | |
prop: szName propValue: opencl-clang32.dll | |
prop: szVersion propValue: 2.00.0008.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:48 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:48 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -2320 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 37 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdfcl32.dll | |
prop: szName propValue: igdfcl32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:48 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:48 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 20800 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 38 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdmd32.dll | |
prop: szName propValue: igdmd32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:26 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:26 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 5472 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 39 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdml32.dll | |
prop: szName propValue: igdml32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:28 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:28 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 13824 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 40 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdde32.dll | |
prop: szName propValue: igdde32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:20 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:20 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -20032 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 41 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdinfo32.dll | |
prop: szName propValue: igdinfo32.dll | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:26 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:26 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -3264 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 42 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdext32.dll | |
prop: szName propValue: igdext32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:22 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:22 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -4384 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 43 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igd10idpp32.dll | |
prop: szName propValue: igd10idpp32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:00 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:00 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 6464 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 44 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\iglhxo64.vp | |
prop: szName propValue: iglhxo64.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:42 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -23023 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 45 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\iglhxc64.vp | |
prop: szName propValue: iglhxc64.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:42 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -21342 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 46 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\iglhxg64.vp | |
prop: szName propValue: iglhxg64.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:42 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -21776 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 47 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\iglhxo64_dev.vp | |
prop: szName propValue: iglhxo64_dev.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:42 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -22393 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 48 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\iglhxc64_dev.vp | |
prop: szName propValue: iglhxc64_dev.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:42 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -22322 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 49 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\iglhxg64_dev.vp | |
prop: szName propValue: iglhxg64_dev.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:42 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -21804 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 50 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\iglhxa64.vp | |
prop: szName propValue: iglhxa64.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:42 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 1125 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 51 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\iglhxa64.cpa | |
prop: szName propValue: iglhxa64.cpa | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:42 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 0 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 52 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\IntelCpHDCPSvc.exe | |
prop: szName propValue: IntelCpHDCPSvc.exe | |
prop: szVersion propValue: 25.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:04 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:04 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -15512 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 53 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\cp_resources.bin | |
prop: szName propValue: cp_resources.bin | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:36 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:36 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -10724 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 54 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\difx64.exe | |
prop: szName propValue: difx64.exe | |
prop: szVersion propValue: 1.04.0005.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:40 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:40 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 12648 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 55 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxDH.dll | |
prop: szName propValue: igfxDH.dll | |
prop: szVersion propValue: 6.15.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:54 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:54 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -3272 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 56 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxDI.dll | |
prop: szName propValue: igfxDI.dll | |
prop: szVersion propValue: 6.15.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:56 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:56 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -13000 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 57 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxLHM.dll | |
prop: szName propValue: igfxLHM.dll | |
prop: szVersion propValue: 6.15.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:00 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:00 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -29384 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 58 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxEM.exe | |
prop: szName propValue: igfxEM.exe | |
prop: szVersion propValue: 6.15.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:58 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -28312 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 59 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxCUIServicePS.dll | |
prop: szName propValue: igfxCUIServicePS.dll | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:54 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:54 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 18744 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 60 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxCUIService.exe | |
prop: szName propValue: igfxCUIService.exe | |
prop: szVersion propValue: 6.15.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:52 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:52 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 7528 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 61 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxDHLib.dll | |
prop: szName propValue: igfxDHLib.dll | |
prop: szVersion propValue: 1.00.0000.0000 | |
prop: szLanguageEnglish propValue: Invariant Language | |
prop: szLanguageLocalized propValue: Invariant Language | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:54 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:54 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -7368 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 62 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxLHMLib.dll | |
prop: szName propValue: igfxLHMLib.dll | |
prop: szVersion propValue: 1.00.0000.0000 | |
prop: szLanguageEnglish propValue: Invariant Language | |
prop: szLanguageLocalized propValue: Invariant Language | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:00 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:00 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 22328 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 63 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\GfxUIEx.exe | |
prop: szName propValue: GfxUIEx.exe | |
prop: szVersion propValue: 6.15.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:42 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -19608 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 64 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\Gfxv4_0.exe | |
prop: szName propValue: Gfxv4_0.exe | |
prop: szVersion propValue: 8.15.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:44 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:44 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 8040 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 65 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\GfxResources.dll | |
prop: szName propValue: GfxResources.dll | |
prop: szVersion propValue: 8.15.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:42 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 28992 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 66 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\MetroIntelGenericUIFramework.dll | |
prop: szName propValue: MetroIntelGenericUIFramework.dll | |
prop: szVersion propValue: 1.00.0000.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:12 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:12 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -9200 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 67 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxCPL.cpl | |
prop: szName propValue: igfxCPL.cpl | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:52 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:52 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 22336 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 68 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxDTCM.dll | |
prop: szName propValue: igfxDTCM.dll | |
prop: szVersion propValue: 6.15.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:56 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:56 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -7880 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 69 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxext.exe | |
prop: szName propValue: igfxext.exe | |
prop: szVersion propValue: 6.15.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:58 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 27496 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 70 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxexps.dll | |
prop: szName propValue: igfxexps.dll | |
prop: szVersion propValue: 6.15.0010.3682 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:34 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:34 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -6856 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 71 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\GfxDownloadWrapper.exe | |
prop: szName propValue: GfxDownloadWrapper.exe | |
prop: szVersion propValue: 8.15.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:40 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:40 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 31592 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 72 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxSDK.exe | |
prop: szName propValue: igfxSDK.exe | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:02 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:02 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 7016 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 73 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxSDKLib.dll | |
prop: szName propValue: igfxSDKLib.dll | |
prop: szVersion propValue: 1.00.0000.0000 | |
prop: szLanguageEnglish propValue: Invariant Language | |
prop: szLanguageLocalized propValue: Invariant Language | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:02 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:02 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -31432 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 74 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ColorImageEnhancement.wmv | |
prop: szName propValue: ColorImageEnhancement.wmv | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:36 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:36 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -18043 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 75 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ImageStabilization.wmv | |
prop: szName propValue: ImageStabilization.wmv | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:42 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 10455 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 76 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\FilmModeDetection.wmv | |
prop: szName propValue: FilmModeDetection.wmv | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:36 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:36 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -13830 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 77 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\igfxCPL.cpl | |
prop: szName propValue: igfxCPL.cpl | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:52 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:52 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 22336 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 78 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igfxexps32.dll | |
prop: szName propValue: igfxexps32.dll | |
prop: szVersion propValue: 6.15.0010.3682 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:58 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -13000 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 79 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igvk64.dll | |
prop: szName propValue: igvk64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:36 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:36 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -21472 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 80 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igvk64.json | |
prop: szName propValue: igvk64.json | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:42 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 137 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 81 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\VulkanRT-EULA.txt | |
prop: szName propValue: VulkanRT-EULA.txt | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 3633 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 82 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igvk32.dll | |
prop: szName propValue: igvk32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:34 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:34 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -22952 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 83 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igvk32.json | |
prop: szName propValue: igvk32.json | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:42 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 137 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 84 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\vulkan-1-64.dll | |
prop: szName propValue: vulkan-1-64.dll | |
prop: szVersion propValue: 1.01.0114.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:18 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:18 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -31432 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 85 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\vulkaninfo-64.exe | |
prop: szName propValue: vulkaninfo-64.exe | |
prop: szVersion propValue: 1.01.0114.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:18 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:18 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 1592 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 86 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\vulkan-1-32.dll | |
prop: szName propValue: vulkan-1-32.dll | |
prop: szVersion propValue: 1.01.0114.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:16 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:16 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 22848 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 87 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\vulkaninfo-32.exe | |
prop: szName propValue: vulkaninfo-32.exe | |
prop: szVersion propValue: 1.01.0114.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:18 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:18 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -9664 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 88 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\vulkan-1.dll | |
prop: szName propValue: vulkan-1.dll | |
prop: szVersion propValue: 1.01.0126.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:18 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:18 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 21816 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 89 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\vulkaninfo.exe | |
prop: szName propValue: vulkaninfo.exe | |
prop: szVersion propValue: 1.01.0126.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:26 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:26 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 16696 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 90 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\vulkan-1-999-0-0-0.dll | |
prop: szName propValue: vulkan-1-999-0-0-0.dll | |
prop: szVersion propValue: 1.01.0126.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:18 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:18 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 21816 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 91 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\vulkaninfo-1-999-0-0-0.exe | |
prop: szName propValue: vulkaninfo-1-999-0-0-0.exe | |
prop: szVersion propValue: 1.01.0126.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:26 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:26 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 16696 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 92 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\vulkan-1.dll | |
prop: szName propValue: vulkan-1.dll | |
prop: szVersion propValue: 1.01.0126.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:21 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:21 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 11576 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 93 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\vulkaninfo.exe | |
prop: szName propValue: vulkaninfo.exe | |
prop: szVersion propValue: 1.01.0126.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:43 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:43 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 10040 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 94 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\vulkan-1-999-0-0-0.dll | |
prop: szName propValue: vulkan-1-999-0-0-0.dll | |
prop: szVersion propValue: 1.01.0126.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:21 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:21 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 11576 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 95 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\vulkaninfo-1-999-0-0-0.exe | |
prop: szName propValue: vulkaninfo-1-999-0-0-0.exe | |
prop: szVersion propValue: 1.01.0126.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:43 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:43 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 10040 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 96 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\OSSCOPYRIGHT | |
prop: szName propValue: OSSCOPYRIGHT | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 1372 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 97 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ig9icd64.dll | |
prop: szName propValue: ig9icd64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:46 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:46 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 24384 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 98 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ig9icd32.dll | |
prop: szName propValue: ig9icd32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:44 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:44 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -14528 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 99 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\llvm_release_license.txt | |
prop: szName propValue: llvm_release_license.txt | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 1937 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 100 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\readme.txt | |
prop: szName propValue: readme.txt | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 9710 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 101 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\version.ini | |
prop: szName propValue: version.ini | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 30 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 102 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\task_executor32.dll | |
prop: szName propValue: task_executor32.dll | |
prop: szVersion propValue: 7.06.0000.0814 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:58 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -18072 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 103 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\OclCpuBackend32.dll | |
prop: szName propValue: OclCpuBackend32.dll | |
prop: szVersion propValue: 7.06.0000.0814 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:58 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -13464 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 104 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\intelocl32.dll | |
prop: szName propValue: intelocl32.dll | |
prop: szVersion propValue: 7.06.0000.0814 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:56 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:56 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 26984 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 105 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\cpu_device32.dll | |
prop: szName propValue: cpu_device32.dll | |
prop: szVersion propValue: 7.06.0000.0814 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:56 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:56 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -8344 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 106 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\clbltfnn8.rtl | |
prop: szName propValue: clbltfnn8.rtl | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 256 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 107 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\clbltfnn8_img_cbk.o | |
prop: szName propValue: clbltfnn8_img_cbk.o | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -11824 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 108 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\clbltfnn8_img_cbk.rtl | |
prop: szName propValue: clbltfnn8_img_cbk.rtl | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 19360 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 109 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\clbltfng9.rtl | |
prop: szName propValue: clbltfng9.rtl | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 19420 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 110 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\clbltfng9_img_cbk.o | |
prop: szName propValue: clbltfng9_img_cbk.o | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -23540 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 111 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\clbltfng9_img_cbk.rtl | |
prop: szName propValue: clbltfng9_img_cbk.rtl | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 19856 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 112 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\clbltfns9.rtl | |
prop: szName propValue: clbltfns9.rtl | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 11752 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 113 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\clbltfns9_img_cbk.o | |
prop: szName propValue: clbltfns9_img_cbk.o | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -1240 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 114 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\clbltfns9_img_cbk.rtl | |
prop: szName propValue: clbltfns9_img_cbk.rtl | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -17624 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 115 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\clang_compiler32.dll | |
prop: szName propValue: clang_compiler32.dll | |
prop: szVersion propValue: 7.06.0000.0814 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:56 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:56 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -17560 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 116 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\__ocl_svml_n8.dll | |
prop: szName propValue: __ocl_svml_n8.dll | |
prop: szVersion propValue: 3.06.0002.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:08:00 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:08:00 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 31080 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 117 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\__ocl_svml_g9.dll | |
prop: szName propValue: __ocl_svml_g9.dll | |
prop: szVersion propValue: 3.06.0002.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:08:00 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:08:00 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 31592 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 118 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\__ocl_svml_s9.dll | |
prop: szName propValue: __ocl_svml_s9.dll | |
prop: szVersion propValue: 3.06.0002.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:08:02 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:08:02 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -29848 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 119 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\tbb\ocltbbmalloc32.dll | |
prop: szName propValue: ocltbbmalloc32.dll | |
prop: szVersion propValue: 2018.00.2018.0820 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:08:04 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:08:04 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 1280 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 120 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x86\tbb\ocltbb32.dll | |
prop: szName propValue: ocltbb32.dll | |
prop: szVersion propValue: 2018.00.2018.0820 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:08:02 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:08:02 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -21736 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 121 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\clbltfnshared.rtl | |
prop: szName propValue: clbltfnshared.rtl | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -26680 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 122 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\task_executor64.dll | |
prop: szName propValue: task_executor64.dll | |
prop: szVersion propValue: 7.06.0000.0814 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:50 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 656 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 123 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\OclCpuBackend64.dll | |
prop: szName propValue: OclCpuBackend64.dll | |
prop: szVersion propValue: 7.06.0000.0814 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:48 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:48 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -11632 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 124 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\intelocl64.dll | |
prop: szName propValue: intelocl64.dll | |
prop: szVersion propValue: 7.06.0000.0814 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:48 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:48 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 18064 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 125 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\cpu_device64.dll | |
prop: szName propValue: cpu_device64.dll | |
prop: szVersion propValue: 7.06.0000.0814 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:46 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:46 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 25744 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 126 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\clbltfnh8.rtl | |
prop: szName propValue: clbltfnh8.rtl | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -5980 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 127 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\clbltfnh8_img_cbk.o | |
prop: szName propValue: clbltfnh8_img_cbk.o | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -21440 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 128 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\clbltfnh8_img_cbk.rtl | |
prop: szName propValue: clbltfnh8_img_cbk.rtl | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 28388 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 129 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\clbltfne9.rtl | |
prop: szName propValue: clbltfne9.rtl | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 13408 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 130 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\clbltfne9_img_cbk.o | |
prop: szName propValue: clbltfne9_img_cbk.o | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 26816 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 131 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\clbltfne9_img_cbk.rtl | |
prop: szName propValue: clbltfne9_img_cbk.rtl | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 28904 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 132 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\clbltfnl9.rtl | |
prop: szName propValue: clbltfnl9.rtl | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 17808 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 133 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\clbltfnl9_img_cbk.o | |
prop: szName propValue: clbltfnl9_img_cbk.o | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -26640 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 134 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\clbltfnl9_img_cbk.rtl | |
prop: szName propValue: clbltfnl9_img_cbk.rtl | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -8524 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 135 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\clang_compiler64.dll | |
prop: szName propValue: clang_compiler64.dll | |
prop: szVersion propValue: 7.06.0000.0814 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:46 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:46 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 14480 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 136 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\__ocl_svml_h8.dll | |
prop: szName propValue: __ocl_svml_h8.dll | |
prop: szVersion propValue: 3.06.0002.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:50 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -6000 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 137 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\__ocl_svml_e9.dll | |
prop: szName propValue: __ocl_svml_e9.dll | |
prop: szVersion propValue: 3.06.0002.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:50 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -5488 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 138 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\__ocl_svml_l9.dll | |
prop: szName propValue: __ocl_svml_l9.dll | |
prop: szVersion propValue: 3.06.0002.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:52 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:52 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 2704 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 139 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\tbb\ocltbbmalloc64.dll | |
prop: szName propValue: ocltbbmalloc64.dll | |
prop: szVersion propValue: 2018.00.2018.0820 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:54 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:54 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 27392 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 140 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\ocl\bin\x64\tbb\ocltbb64.dll | |
prop: szName propValue: ocltbb64.dll | |
prop: szVersion propValue: 2018.00.2018.0820 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:54 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:54 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 25856 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 141 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\IntelOpenCL32.dll | |
prop: szName propValue: IntelOpenCL32.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:06 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:06 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -19144 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 142 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\Intel_OpenCL_ICD32.dll | |
prop: szName propValue: Intel_OpenCL_ICD32.dll | |
prop: szVersion propValue: 2.02.0001.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:08 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:08 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -23024 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 143 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdrcl32.dll | |
prop: szName propValue: igdrcl32.dll | |
prop: szVersion propValue: 23.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:50 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -7360 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 144 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\IntelOpenCL64.dll | |
prop: szName propValue: IntelOpenCL64.dll | |
prop: szVersion propValue: 26.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:08 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:08 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -19440 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 145 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\Intel_OpenCL_ICD64.dll | |
prop: szName propValue: Intel_OpenCL_ICD64.dll | |
prop: szVersion propValue: 2.02.0001.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:10 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:10 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -9712 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 146 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igdrcl64.dll | |
prop: szName propValue: igdrcl64.dll | |
prop: szVersion propValue: 23.20.0100.7263 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:06:52 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:06:52 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -6336 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 147 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\OpenCL.dll | |
prop: szName propValue: OpenCL.dll | |
prop: szVersion propValue: 2.02.0002.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:17:14 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:17:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 8176 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 148 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\OpenCL.dll | |
prop: szName propValue: OpenCL.dll | |
prop: szVersion propValue: 2.02.0002.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/19/2020 23:16:33 | |
prop: szDatestampLocalized propValue: 5/19/2020 11:16:33 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -25800 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 149 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\libEGL.dll | |
prop: szName propValue: libEGL.dll | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:10 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:10 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 5648 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 150 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\libGLESv1_CM.dll | |
prop: szName propValue: libGLESv1_CM.dll | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:10 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:10 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 10768 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 151 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\libGLESv2.dll | |
prop: szName propValue: libGLESv2.dll | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:12 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:12 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -27608 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 152 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\libmfxhw32.dll | |
prop: szName propValue: libmfxhw32.dll | |
prop: szVersion propValue: 9.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:38 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:38 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 4744 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 153 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\mfxplugin32_hw.dll | |
prop: szName propValue: mfxplugin32_hw.dll | |
prop: szVersion propValue: 1.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:12 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:12 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -25072 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 154 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\mfx_mft_h264ve_32.dll | |
prop: szName propValue: mfx_mft_h264ve_32.dll | |
prop: szVersion propValue: 9.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:42 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -28008 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 155 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\mfx_mft_mjpgvd_32.dll | |
prop: szName propValue: mfx_mft_mjpgvd_32.dll | |
prop: szVersion propValue: 9.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:14 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 12304 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 156 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\mfx_mft_h265ve_32.dll | |
prop: szName propValue: mfx_mft_h265ve_32.dll | |
prop: szVersion propValue: 9.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:42 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -14216 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 157 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\mfx_mft_vp9ve_32.dll | |
prop: szName propValue: mfx_mft_vp9ve_32.dll | |
prop: szVersion propValue: 9.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:44 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:44 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -19640 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 158 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\mfx_mft_encrypt_32.dll | |
prop: szName propValue: mfx_mft_encrypt_32.dll | |
prop: szVersion propValue: 9.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:40 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:40 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 10520 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 159 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\c_32.cpa | |
prop: szName propValue: c_32.cpa | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 4/6/2018 02:35:46 | |
prop: szDatestampLocalized propValue: 4/6/2018 2:35:46 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -15097 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 160 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\cpa_32.vp | |
prop: szName propValue: cpa_32.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:36 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:36 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 1125 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 161 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\dev_32.vp | |
prop: szName propValue: dev_32.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:36 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:36 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -8393 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 162 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\he_32.vp | |
prop: szName propValue: he_32.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:36 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:36 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 5185 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 163 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\mj_32.vp | |
prop: szName propValue: mj_32.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:42 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 269 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 164 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\h265e_32.vp | |
prop: szName propValue: h265e_32.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:36 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:36 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 6825 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 165 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\vp9e_32.vp | |
prop: szName propValue: vp9e_32.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 6420 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 166 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\libmfxhw64.dll | |
prop: szName propValue: libmfxhw64.dll | |
prop: szVersion propValue: 9.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:40 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:40 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -10232 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 167 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\mfxplugin64_hw.dll | |
prop: szName propValue: mfxplugin64_hw.dll | |
prop: szVersion propValue: 1.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:14 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 21520 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 168 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\mfx_mft_h264ve_64.dll | |
prop: szName propValue: mfx_mft_h264ve_64.dll | |
prop: szVersion propValue: 9.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:42 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -10912 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 169 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\mfx_mft_mjpgvd_64.dll | |
prop: szName propValue: mfx_mft_mjpgvd_64.dll | |
prop: szVersion propValue: 9.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:16 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:16 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -7152 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 170 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\mfx_mft_h265ve_64.dll | |
prop: szName propValue: mfx_mft_h265ve_64.dll | |
prop: szVersion propValue: 9.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:44 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:44 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 9320 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 171 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\mfx_mft_vp9ve_64.dll | |
prop: szName propValue: mfx_mft_vp9ve_64.dll | |
prop: szVersion propValue: 9.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:46 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:46 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 2472 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 172 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\mfx_mft_encrypt_64.dll | |
prop: szName propValue: mfx_mft_encrypt_64.dll | |
prop: szVersion propValue: 9.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:40 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:40 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -19200 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 173 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\c_64.cpa | |
prop: szName propValue: c_64.cpa | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 4/6/2018 02:35:46 | |
prop: szDatestampLocalized propValue: 4/6/2018 2:35:46 AM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 0 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 174 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\cpa_64.vp | |
prop: szName propValue: cpa_64.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:36 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:36 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 1125 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 175 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\dev_64.vp | |
prop: szName propValue: dev_64.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:36 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:36 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -9177 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 176 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\he_64.vp | |
prop: szName propValue: he_64.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:36 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:36 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 13585 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 177 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\mj_64.vp | |
prop: szName propValue: mj_64.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:42 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:42 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 13317 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 178 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\h265e_64.vp | |
prop: szName propValue: h265e_64.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:36 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:36 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 14145 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 179 | |
numProp: 16 | |
prop: szPath propValue: C:\Program Files\Intel\Media SDK\vp9e_64.vp | |
prop: szName propValue: vp9e_64.vp | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 19:47:50 | |
prop: szDatestampLocalized propValue: 10/28/2019 7:47:50 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: 13992 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 180 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\intel_gfx_api-x64.dll | |
prop: szName propValue: intel_gfx_api-x64.dll | |
prop: szVersion propValue: 8.18.0008.0030 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:36 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:36 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 15864 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 181 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\SysWow64\intel_gfx_api-x86.dll | |
prop: szName propValue: intel_gfx_api-x86.dll | |
prop: szVersion propValue: 8.18.0008.0030 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:36 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:36 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -12456 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 182 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\libmfxhw64.dll | |
prop: szName propValue: libmfxhw64.dll | |
prop: szVersion propValue: 9.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:40 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:40 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -10232 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 183 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\mfxplugin64_hw.dll | |
prop: szName propValue: mfxplugin64_hw.dll | |
prop: szVersion propValue: 1.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:14 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 21520 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 184 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\intel_gfx_api-x64.dll | |
prop: szName propValue: intel_gfx_api-x64.dll | |
prop: szVersion propValue: 8.18.0008.0030 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:36 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:36 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 15864 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 185 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\libmfxhw32.dll | |
prop: szName propValue: libmfxhw32.dll | |
prop: szVersion propValue: 9.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:38 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:38 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 4744 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 186 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\mfxplugin32_hw.dll | |
prop: szName propValue: mfxplugin32_hw.dll | |
prop: szVersion propValue: 1.19.0008.0021 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:12 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:12 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -25072 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 187 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\intel_gfx_api-x86.dll | |
prop: szName propValue: intel_gfx_api-x86.dll | |
prop: szVersion propValue: 8.18.0008.0030 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:36 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:36 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -12456 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 188 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\IntelCpHeciSvc.exe | |
prop: szName propValue: IntelCpHeciSvc.exe | |
prop: szVersion propValue: 9.01.0001.1117 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:04 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:04 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -15512 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 189 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_bb6ffc4c24a226fb\igxpco64.dll | |
prop: szName propValue: igxpco64.dll | |
prop: szVersion propValue: 1.03.0026.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 10/28/2019 20:07:02 | |
prop: szDatestampLocalized propValue: 10/28/2019 8:07:02 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -27336 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 15 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) 100 Series/C230 Series Chipset Family SMBus - A123 | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_A123&SUBSYS_06E51028&REV_31\3&11583659&0&FC | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 0 | |
child: 16 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) Xeon(R) E3 - 1200/1500 v5/6th Gen Intel(R) Core(TM) Host Bridge/DRAM Registers - 1910 | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_1910&SUBSYS_06E51028&REV_07\3&11583659&0&00 | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 0 | |
child: 17 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) USB 3.0 eXtensible Host Controller - 1.0 (Microsoft) | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_A12F&SUBSYS_06E51028&REV_31\3&11583659&0&A0 | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 2 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\USBXHCI.SYS | |
prop: szName propValue: USBXHCI.SYS | |
prop: szVersion propValue: 6.02.17763.1075 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/4/2020 00:28:10 | |
prop: szDatestampLocalized propValue: 5/4/2020 12:28:10 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 9232 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\UMDF\UsbXhciCompanion.dll | |
prop: szName propValue: UsbXhciCompanion.dll | |
prop: szVersion propValue: 6.02.17763.1075 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 5/4/2020 00:28:10 | |
prop: szDatestampLocalized propValue: 5/4/2020 12:28:10 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -136 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 18 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) 100 Series/C230 Series Chipset Family PCI Express Root Port #2 - A111 | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_A111&SUBSYS_06E51028&REV_F1\3&11583659&0&E1 | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 1 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\pci.sys | |
prop: szName propValue: pci.sys | |
prop: szVersion propValue: 6.02.17763.1007 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/27/2020 20:19:58 | |
prop: szDatestampLocalized propValue: 2/27/2020 8:19:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 29496 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 19 | |
numProp: 2 | |
prop: szDescription propValue: Intel(R) Dual Band Wireless-AC 8260 | |
prop: szDeviceID propValue: PCI\VEN_8086&DEV_24F3&SUBSYS_00508086&REV_3A\4&10956B3D&0&00E0 | |
numChildren: 1 | |
child: Drivers | |
numProp: 0 | |
numChildren: 3 | |
child: 0 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\Netwtw06.sys | |
prop: szName propValue: Netwtw06.sys | |
prop: szVersion propValue: 20.70.0016.0004 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 1/12/2020 23:33:20 | |
prop: szDatestampLocalized propValue: 1/12/2020 11:33:20 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -14568 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\DRIVERS\Netwfw06.dat | |
prop: szName propValue: Netwfw06.dat | |
prop: szVersion propValue: | |
prop: szLanguageEnglish propValue: | |
prop: szLanguageLocalized propValue: | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 1/12/2020 23:21:20 | |
prop: szDatestampLocalized propValue: 1/12/2020 11:21:20 PM | |
prop: szAttributes propValue: | |
prop: lNumBytes propValue: -18024 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 2 | |
numProp: 16 | |
prop: szPath propValue: C:\windows\system32\IntelIHVRouter06.dll | |
prop: szName propValue: IntelIHVRouter06.dll | |
prop: szVersion propValue: 3.00.0000.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 1/12/2020 23:33:16 | |
prop: szDatestampLocalized propValue: 1/12/2020 11:33:16 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -27672 | |
prop: bExists propValue: 0 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: DxDiag_DirectXFiles | |
numProp: 2 | |
prop: szDXFileNotesLocalized propValue: No problems found. | |
prop: szDXFileNotesEnglish propValue: No problems found. | |
numChildren: 77 | |
child: 0 | |
numProp: 15 | |
prop: szName propValue: ddraw.dll | |
prop: szVersion propValue: 6.02.17763.1192 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 981894475 | |
prop: dwFileTimeHigh propValue: 30813841 | |
prop: szDatestampEnglish propValue: 5/20/2020 15:57:14 | |
prop: szDatestampLocalized propValue: 5/20/2020 3:57:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -4096 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 1 | |
numProp: 15 | |
prop: szName propValue: ddrawex.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3207759913 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:50 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:50 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -17408 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 2 | |
numProp: 15 | |
prop: szName propValue: d3d8thk.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3217448247 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:51 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:51 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 13824 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 3 | |
numProp: 15 | |
prop: szName propValue: d3d9.dll | |
prop: szVersion propValue: 6.02.17763.1075 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 4125161573 | |
prop: dwFileTimeHigh propValue: 30810492 | |
prop: szDatestampEnglish propValue: 5/4/2020 00:29:23 | |
prop: szDatestampLocalized propValue: 5/4/2020 12:29:23 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -25136 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 4 | |
numProp: 15 | |
prop: szName propValue: d3dref9.dll | |
prop: szVersion propValue: 10.00.18362.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 1259416576 | |
prop: dwFileTimeHigh propValue: 30727569 | |
prop: szDatestampEnglish propValue: 3/18/2019 19:18:40 | |
prop: szDatestampLocalized propValue: 3/18/2019 7:18:40 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 512 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 5 | |
numProp: 15 | |
prop: szName propValue: dpnsvr.exe | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3695267610 | |
prop: dwFileTimeHigh propValue: 30823711 | |
prop: szDatestampEnglish propValue: 7/8/2020 17:33:58 | |
prop: szDatestampLocalized propValue: 7/8/2020 5:33:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 27136 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 6 | |
numProp: 15 | |
prop: szName propValue: dpnet.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3695177840 | |
prop: dwFileTimeHigh propValue: 30823711 | |
prop: szDatestampEnglish propValue: 7/8/2020 17:33:58 | |
prop: szDatestampLocalized propValue: 7/8/2020 5:33:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 13824 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 7 | |
numProp: 15 | |
prop: szName propValue: dpnlobby.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3695247655 | |
prop: dwFileTimeHigh propValue: 30823711 | |
prop: szDatestampEnglish propValue: 7/8/2020 17:33:58 | |
prop: szDatestampLocalized propValue: 7/8/2020 5:33:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 6144 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 8 | |
numProp: 15 | |
prop: szName propValue: dpnaddr.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3695038214 | |
prop: dwFileTimeHigh propValue: 30823711 | |
prop: szDatestampEnglish propValue: 7/8/2020 17:33:58 | |
prop: szDatestampLocalized propValue: 7/8/2020 5:33:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 6144 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 9 | |
numProp: 15 | |
prop: szName propValue: dpnhpast.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3695197806 | |
prop: dwFileTimeHigh propValue: 30823711 | |
prop: szDatestampEnglish propValue: 7/8/2020 17:33:58 | |
prop: szDatestampLocalized propValue: 7/8/2020 5:33:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 10240 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 10 | |
numProp: 15 | |
prop: szName propValue: dpnhupnp.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3695207761 | |
prop: dwFileTimeHigh propValue: 30823711 | |
prop: szDatestampEnglish propValue: 7/8/2020 17:33:58 | |
prop: szDatestampLocalized propValue: 7/8/2020 5:33:58 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 10240 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 11 | |
numProp: 15 | |
prop: szName propValue: dinput.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3454656399 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:14 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -28160 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 12 | |
numProp: 15 | |
prop: szName propValue: dinput8.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3454656399 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:14 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 23552 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 13 | |
numProp: 15 | |
prop: szName propValue: joy.cpl | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3455593986 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:14 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -32768 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 14 | |
numProp: 15 | |
prop: szName propValue: gcdef.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3454656399 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:14 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 1024 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 15 | |
numProp: 15 | |
prop: szName propValue: pid.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3454656399 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:14 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -19456 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 16 | |
numProp: 15 | |
prop: szName propValue: dsound.dll | |
prop: szVersion propValue: 6.02.17763.0348 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 1355317955 | |
prop: dwFileTimeHigh propValue: 30730262 | |
prop: szDatestampEnglish propValue: 4/1/2019 04:36:04 | |
prop: szDatestampLocalized propValue: 4/1/2019 4:36:04 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 4096 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 17 | |
numProp: 15 | |
prop: szName propValue: dswave.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3472314207 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:16 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:16 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 28160 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 18 | |
numProp: 15 | |
prop: szName propValue: dsdmo.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 2928972274 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:22 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:22 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -512 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 19 | |
numProp: 15 | |
prop: szName propValue: dmusic.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3472314207 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:16 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:16 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 2048 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 20 | |
numProp: 15 | |
prop: szName propValue: dmloader.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3472314207 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:16 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:16 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -15872 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 21 | |
numProp: 15 | |
prop: szName propValue: dmsynth.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3472314207 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:16 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:16 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -7680 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 22 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.Direct3D.dll | |
prop: szVersion propValue: 9.05.0132.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:33 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:33 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 14848 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 23 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.Direct3DX.dll | |
prop: szVersion propValue: 5.04.0000.3900 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:28 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:28 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -10752 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 24 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.Direct3DX.dll | |
prop: szVersion propValue: 9.04.0091.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:28 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:28 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 28672 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 25 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.Direct3DX.dll | |
prop: szVersion propValue: 9.05.0132.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:28 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:28 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -26112 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 26 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.Direct3DX.dll | |
prop: szVersion propValue: 9.06.0168.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:29 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:29 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -22528 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 27 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.Direct3DX.dll | |
prop: szVersion propValue: 9.07.0239.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:29 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:29 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -13824 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 28 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.Direct3DX.dll | |
prop: szVersion propValue: 9.08.0299.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:29 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:29 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -12800 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 29 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.Direct3DX.dll | |
prop: szVersion propValue: 9.09.0376.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:29 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:29 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -12288 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 30 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.Direct3DX.dll | |
prop: szVersion propValue: 9.10.0455.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:29 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:29 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -12288 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 31 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.Direct3DX.dll | |
prop: szVersion propValue: 9.11.0519.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:29 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:29 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -11264 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 32 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.Direct3DX.dll | |
prop: szVersion propValue: 9.12.0589.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:33 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:33 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -11264 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 33 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.DirectDraw.dll | |
prop: szVersion propValue: 5.04.0000.2904 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:33 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:33 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 14848 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 34 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.DirectInput.dll | |
prop: szVersion propValue: 5.04.0000.2904 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:33 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:33 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 28160 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 35 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.DirectPlay.dll | |
prop: szVersion propValue: 5.04.0000.2904 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:33 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:33 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -28672 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 36 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.DirectSound.dll | |
prop: szVersion propValue: 5.04.0000.2904 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:33 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:33 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -18432 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 37 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.AudioVideoPlayback.dll | |
prop: szVersion propValue: 5.04.0000.2904 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:33 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:33 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -12288 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 38 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.Diagnostics.dll | |
prop: szVersion propValue: 5.04.0000.2904 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:33 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:33 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 12800 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 39 | |
numProp: 15 | |
prop: szName propValue: Microsoft.DirectX.dll | |
prop: szVersion propValue: 5.04.0000.2904 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 0 | |
prop: dwFileTimeHigh propValue: 0 | |
prop: szDatestampEnglish propValue: 2/5/2020 03:12:33 | |
prop: szDatestampLocalized propValue: 2/5/2020 3:12:33 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 26624 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 40 | |
numProp: 15 | |
prop: szName propValue: dxdiagn.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3470282781 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:16 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:16 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -18432 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 41 | |
numProp: 15 | |
prop: szName propValue: mfc42.dll | |
prop: szVersion propValue: 6.06.8063.0000 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 311526514 | |
prop: dwFileTimeHigh propValue: 30717221 | |
prop: szDatestampEnglish propValue: 1/26/2019 08:43:13 | |
prop: szDatestampLocalized propValue: 1/26/2019 8:43:13 AM | |
prop: szAttributes propValue: Beta Retail | |
prop: lNumBytes propValue: -26112 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 1 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 42 | |
numProp: 15 | |
prop: szName propValue: wsock32.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 2998210419 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:29 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:29 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 18944 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 43 | |
numProp: 15 | |
prop: szName propValue: amstream.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3521224728 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:21 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:21 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 32256 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 44 | |
numProp: 15 | |
prop: szName propValue: devenum.dll | |
prop: szVersion propValue: 6.02.17763.1282 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3732253448 | |
prop: dwFileTimeHigh propValue: 30821312 | |
prop: szDatestampEnglish propValue: 6/26/2020 19:21:19 | |
prop: szDatestampLocalized propValue: 6/26/2020 7:21:19 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 26880 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 45 | |
numProp: 15 | |
prop: szName propValue: dxmasf.dll | |
prop: szVersion propValue: 12.00.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 2026624092 | |
prop: dwFileTimeHigh propValue: 30690515 | |
prop: szDatestampEnglish propValue: 9/15/2018 14:37:04 | |
prop: szDatestampLocalized propValue: 9/15/2018 2:37:04 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 7168 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 46 | |
numProp: 15 | |
prop: szName propValue: mciqtz32.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3521224728 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:21 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:21 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -22528 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 47 | |
numProp: 15 | |
prop: szName propValue: mpg2splt.ax | |
prop: szVersion propValue: 6.02.17763.1282 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3749966403 | |
prop: dwFileTimeHigh propValue: 30821312 | |
prop: szDatestampEnglish propValue: 6/26/2020 19:21:20 | |
prop: szDatestampLocalized propValue: 6/26/2020 7:21:20 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -2048 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 48 | |
numProp: 15 | |
prop: szName propValue: msdmo.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 2915846153 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:20 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:20 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -31448 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 49 | |
numProp: 15 | |
prop: szName propValue: encapi.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3521224728 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:21 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:21 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 26624 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 50 | |
numProp: 15 | |
prop: szName propValue: qasf.dll | |
prop: szVersion propValue: 12.00.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3454500136 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:14 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:14 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 23040 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 51 | |
numProp: 15 | |
prop: szName propValue: qcap.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3532944463 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:22 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:22 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -1536 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 52 | |
numProp: 15 | |
prop: szName propValue: qdv.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3532944463 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:22 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:22 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -11776 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 53 | |
numProp: 15 | |
prop: szName propValue: qdvd.dll | |
prop: szVersion propValue: 6.02.17763.1282 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3732193907 | |
prop: dwFileTimeHigh propValue: 30821312 | |
prop: szDatestampEnglish propValue: 6/26/2020 19:21:19 | |
prop: szDatestampLocalized propValue: 6/26/2020 7:21:19 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -1024 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 54 | |
numProp: 15 | |
prop: szName propValue: qedit.dll | |
prop: szVersion propValue: 6.02.17763.1282 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3749856700 | |
prop: dwFileTimeHigh propValue: 30821312 | |
prop: szDatestampEnglish propValue: 6/26/2020 19:21:20 | |
prop: szDatestampLocalized propValue: 6/26/2020 7:21:20 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -13312 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 55 | |
numProp: 15 | |
prop: szName propValue: qedwipes.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3534194568 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:22 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:22 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 12800 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 56 | |
numProp: 15 | |
prop: szName propValue: quartz.dll | |
prop: szVersion propValue: 6.02.17763.1282 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3732522719 | |
prop: dwFileTimeHigh propValue: 30821312 | |
prop: szDatestampEnglish propValue: 6/26/2020 19:21:19 | |
prop: szDatestampLocalized propValue: 6/26/2020 7:21:19 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 2560 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 57 | |
numProp: 15 | |
prop: szName propValue: ks.sys | |
prop: szVersion propValue: 6.02.17763.0652 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 2407709441 | |
prop: dwFileTimeHigh propValue: 30760227 | |
prop: szDatestampEnglish propValue: 8/28/2019 03:35:39 | |
prop: szDatestampLocalized propValue: 8/28/2019 3:35:39 AM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -11264 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 58 | |
numProp: 15 | |
prop: szName propValue: ksproxy.ax | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3534038309 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:22 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:22 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 18432 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 59 | |
numProp: 15 | |
prop: szName propValue: ksuser.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 2928659744 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:22 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:22 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 23264 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 60 | |
numProp: 15 | |
prop: szName propValue: stream.sys | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3149786078 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:44 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:44 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 16384 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 61 | |
numProp: 15 | |
prop: szName propValue: mspclock.sys | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3231355738 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:52 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:52 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 11264 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 62 | |
numProp: 15 | |
prop: szName propValue: mspqm.sys | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3231355738 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:52 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:52 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 11264 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 63 | |
numProp: 15 | |
prop: szName propValue: mskssrv.sys | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3241981634 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:53 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:53 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -30720 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 64 | |
numProp: 15 | |
prop: szName propValue: mstee.sys | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3231355738 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:58:52 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:58:52 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 12800 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 65 | |
numProp: 15 | |
prop: szName propValue: bdaplgin.ax | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3553727535 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:24 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:24 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 31744 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 66 | |
numProp: 15 | |
prop: szName propValue: msdvbnp.ax | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3546539409 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:23 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:23 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 12288 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 67 | |
numProp: 15 | |
prop: szName propValue: psisdecd.dll | |
prop: szVersion propValue: 6.02.17763.1282 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3749477735 | |
prop: dwFileTimeHigh propValue: 30821312 | |
prop: szDatestampEnglish propValue: 6/26/2020 19:21:20 | |
prop: szDatestampLocalized propValue: 6/26/2020 7:21:20 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 3584 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 68 | |
numProp: 15 | |
prop: szName propValue: psisrndr.ax | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3546695673 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:23 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:23 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -32256 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 69 | |
numProp: 15 | |
prop: szName propValue: mpeg2data.ax | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3546539409 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:23 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:23 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -29184 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 70 | |
numProp: 15 | |
prop: szName propValue: msvidctl.dll | |
prop: szVersion propValue: 6.05.17763.1282 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3749158253 | |
prop: dwFileTimeHigh propValue: 30821312 | |
prop: szDatestampEnglish propValue: 6/26/2020 19:21:20 | |
prop: szDatestampLocalized propValue: 6/26/2020 7:21:20 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -4608 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 71 | |
numProp: 15 | |
prop: szName propValue: vbisurf.ax | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3553727535 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:24 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:24 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -19456 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 72 | |
numProp: 15 | |
prop: szName propValue: msyuv.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3519974618 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:21 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:21 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 27648 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 73 | |
numProp: 15 | |
prop: szName propValue: kstvtune.ax | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3553727535 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:24 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:24 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: -28672 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 74 | |
numProp: 15 | |
prop: szName propValue: ksxbar.ax | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3553727535 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:24 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:24 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 1024 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 75 | |
numProp: 15 | |
prop: szName propValue: kswdmcap.ax | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3533256989 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:22 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:22 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 6144 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: 76 | |
numProp: 15 | |
prop: szName propValue: vfwwdm32.dll | |
prop: szVersion propValue: 6.02.17763.0001 | |
prop: szLanguageEnglish propValue: English | |
prop: szLanguageLocalized propValue: English | |
prop: dwFileTimeLow propValue: 3533100726 | |
prop: dwFileTimeHigh propValue: 30690501 | |
prop: szDatestampEnglish propValue: 9/15/2018 12:59:22 | |
prop: szDatestampLocalized propValue: 9/15/2018 12:59:22 PM | |
prop: szAttributes propValue: Final Retail | |
prop: lNumBytes propValue: 2560 | |
prop: bExists propValue: 1 | |
prop: bBeta propValue: 0 | |
prop: bDebug propValue: 0 | |
prop: bObsolete propValue: 0 | |
prop: bProblem propValue: 0 | |
numChildren: 0 | |
child: DxDiag_DirectShowFilters | |
numProp: 0 | |
numChildren: 113 | |
child: 0 | |
numProp: 10 | |
prop: szName propValue: WMAudio Decoder DMO | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {2EEB4ADF-4578-4D10-BCA7-BB955F56320A} | |
prop: szFileName propValue: C:\Windows\System32\WMADMOD.DLL | |
prop: szFileVersion propValue: 6.02.17763.0592 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 8390656 | |
numChildren: 0 | |
child: 1 | |
numProp: 10 | |
prop: szName propValue: WMAPro over S/PDIF DMO | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {5210F8E4-B0BB-47C3-A8D9-7B2282CC79ED} | |
prop: szFileName propValue: C:\Windows\System32\WMADMOD.DLL | |
prop: szFileVersion propValue: 6.02.17763.0592 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6293504 | |
numChildren: 0 | |
child: 2 | |
numProp: 10 | |
prop: szName propValue: WMSpeech Decoder DMO | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {874131CB-4ECC-443B-8948-746B89595D20} | |
prop: szFileName propValue: C:\Windows\System32\WMSPDMOD.DLL | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6293504 | |
numChildren: 0 | |
child: 3 | |
numProp: 10 | |
prop: szName propValue: MP3 Decoder DMO | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {BBEEA841-0A63-4F52-A7AB-A9B3A84ED38A} | |
prop: szFileName propValue: C:\Windows\System32\mp3dmod.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6293504 | |
numChildren: 0 | |
child: 4 | |
numProp: 10 | |
prop: szName propValue: Mpeg4s Decoder DMO | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {2A11BAE2-FE6E-4249-864B-9E9ED6E8DBC2} | |
prop: szFileName propValue: C:\Windows\System32\mp4sdecd.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 8388609 | |
numChildren: 0 | |
child: 5 | |
numProp: 10 | |
prop: szName propValue: WMV Screen decoder DMO | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {7BAFB3B1-D8F4-4279-9253-27DA423108DE} | |
prop: szFileName propValue: C:\Windows\System32\wmvsdecd.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6293504 | |
numChildren: 0 | |
child: 6 | |
numProp: 10 | |
prop: szName propValue: WMVideo Decoder DMO | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {82D353DF-90BD-4382-8BC2-3F6192B76E34} | |
prop: szFileName propValue: C:\Windows\System32\wmvdecod.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 8388609 | |
numChildren: 0 | |
child: 7 | |
numProp: 10 | |
prop: szName propValue: Mpeg43 Decoder DMO | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {CBA9E78B-49A3-49EA-93D4-6BCBA8C4DE07} | |
prop: szFileName propValue: C:\Windows\System32\mp43decd.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 8388609 | |
numChildren: 0 | |
child: 8 | |
numProp: 10 | |
prop: szName propValue: Mpeg4 Decoder DMO | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {F371728A-6052-4D47-827C-D039335DFE0A} | |
prop: szFileName propValue: C:\Windows\System32\mpg4decd.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 8388609 | |
numChildren: 0 | |
child: 9 | |
numProp: 10 | |
prop: szName propValue: DV Muxer | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {129D7E40-C10D-11D0-AFB9-00AA00B67A42} | |
prop: szFileName propValue: C:\Windows\System32\qdv.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 4194304 | |
numChildren: 0 | |
child: 10 | |
numProp: 10 | |
prop: szName propValue: Color Space Converter | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {1643E180-90F5-11CE-97D5-00AA0055595A} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 4194305 | |
numChildren: 0 | |
child: 11 | |
numProp: 10 | |
prop: szName propValue: WM ASF Reader | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {187463A0-5BB7-11D3-ACBE-0080C75E246E} | |
prop: szFileName propValue: C:\Windows\System32\qasf.dll | |
prop: szFileVersion propValue: 12.00.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 4194304 | |
numChildren: 0 | |
child: 12 | |
numProp: 10 | |
prop: szName propValue: AVI Splitter | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {1B544C20-FD0B-11CE-8C63-00AA0044B51E} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6291456 | |
numChildren: 0 | |
child: 13 | |
numProp: 10 | |
prop: szName propValue: VGA 16 Color Ditherer | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {1DA08500-9EDC-11CF-BC10-00AA00AC74F6} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 4194304 | |
numChildren: 0 | |
child: 14 | |
numProp: 10 | |
prop: szName propValue: SBE2MediaTypeProfile | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {1F26A602-2B5C-4B63-B8E8-9EA5C1A7DC2E} | |
prop: szFileName propValue: C:\Windows\System32\sbe.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 15 | |
numProp: 10 | |
prop: szName propValue: Microsoft DTV-DVD Video Decoder | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {212690FB-83E5-4526-8FD7-74478B7939CD} | |
prop: szFileName propValue: C:\Windows\System32\msmpeg2vdec.dll | |
prop: szFileVersion propValue: 6.02.17763.1217 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 2 | |
prop: dwOutputs propValue: 4 | |
prop: dwMerit propValue: 6291455 | |
numChildren: 0 | |
child: 16 | |
numProp: 10 | |
prop: szName propValue: AC3 Parser Filter | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {280A3020-86CF-11D1-ABE6-00A0C905F375} | |
prop: szFileName propValue: C:\Windows\System32\mpg2splt.ax | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6291456 | |
numChildren: 0 | |
child: 17 | |
numProp: 10 | |
prop: szName propValue: StreamBufferSink | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {2DB47AE5-CF39-43C2-B4D6-0CD8D90946F4} | |
prop: szFileName propValue: C:\Windows\System32\sbe.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 18 | |
numProp: 10 | |
prop: szName propValue: MJPEG Decompressor | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {301056D0-6DFF-11D2-9EEB-006008039E37} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6291456 | |
numChildren: 0 | |
child: 19 | |
numProp: 10 | |
prop: szName propValue: MPEG-I Stream Splitter | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {336475D0-942A-11CE-A870-00AA002FEAB5} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 2 | |
prop: dwMerit propValue: 6291456 | |
numChildren: 0 | |
child: 20 | |
numProp: 10 | |
prop: szName propValue: SAMI (CC) Parser | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {33FACFE0-A9BE-11D0-A520-00A0D10129C0} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 4194304 | |
numChildren: 0 | |
child: 21 | |
numProp: 10 | |
prop: szName propValue: VBI Codec | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {370A1D5D-DDEB-418C-81CD-189E0D4FA443} | |
prop: szFileName propValue: C:\Windows\System32\VBICodec.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 4 | |
prop: dwMerit propValue: 6291456 | |
numChildren: 0 | |
child: 22 | |
numProp: 10 | |
prop: szName propValue: MPEG-2 Splitter | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {3AE86B20-7BE8-11D1-ABE6-00A0C905F375} | |
prop: szFileName propValue: C:\Windows\System32\mpg2splt.ax | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 6291455 | |
numChildren: 0 | |
child: 23 | |
numProp: 10 | |
prop: szName propValue: Closed Captions Analysis Filter | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {3D07A539-35CA-447C-9B05-8D85CE924F9E} | |
prop: szFileName propValue: C:\Windows\System32\cca.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 2 | |
prop: dwOutputs propValue: 5 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 24 | |
numProp: 10 | |
prop: szName propValue: SBE2FileScan | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {3E458037-0CA6-41AA-A594-2AA6C02D709B} | |
prop: szFileName propValue: C:\Windows\System32\sbe.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 25 | |
numProp: 10 | |
prop: szName propValue: Microsoft MPEG-2 Video Encoder | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {42150CD9-CA9A-4EA5-9939-30EE037F6E74} | |
prop: szFileName propValue: C:\Windows\System32\msmpeg2enc.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 26 | |
numProp: 10 | |
prop: szName propValue: Internal Script Command Renderer | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {48025243-2D39-11CE-875D-00608CB78066} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 8388609 | |
numChildren: 0 | |
child: 27 | |
numProp: 10 | |
prop: szName propValue: MPEG Audio Decoder | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {4A2286E0-7BEF-11CE-9BD9-0000E202599C} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 57147393 | |
numChildren: 0 | |
child: 28 | |
numProp: 10 | |
prop: szName propValue: DV Splitter | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {4EB31670-9FC6-11CF-AF6E-00AA00B67A42} | |
prop: szFileName propValue: C:\Windows\System32\qdv.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 2 | |
prop: dwMerit propValue: 6291456 | |
numChildren: 0 | |
child: 29 | |
numProp: 10 | |
prop: szName propValue: Video Mixing Renderer 9 | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {51B4ABF3-748F-4E3B-A276-C828330E926A} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 30 | |
numProp: 10 | |
prop: szName propValue: Microsoft MPEG-2 Encoder | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {5F5AFF4A-2F7F-4279-88C2-CD88EB39D144} | |
prop: szFileName propValue: C:\Windows\System32\msmpeg2enc.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 2 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 31 | |
numProp: 10 | |
prop: szName propValue: ACM Wrapper | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {6A08CF80-0E18-11CF-A24D-0020AFD79767} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6291456 | |
numChildren: 0 | |
child: 32 | |
numProp: 10 | |
prop: szName propValue: Video Renderer | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {6BC1CFFA-8FC1-4261-AC22-CFB4CC38DB50} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 8388609 | |
numChildren: 0 | |
child: 33 | |
numProp: 10 | |
prop: szName propValue: MPEG-2 Video Stream Analyzer | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {6CFAD761-735D-4AA5-8AFC-AF91A7D61EBA} | |
prop: szFileName propValue: C:\Windows\System32\sbe.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 34 | |
numProp: 10 | |
prop: szName propValue: Line 21 Decoder | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {6E8D4A20-310C-11D0-B79A-00AA003767A7} | |
prop: szFileName propValue: | |
prop: szFileVersion propValue: | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6291456 | |
numChildren: 0 | |
child: 35 | |
numProp: 10 | |
prop: szName propValue: Video Port Manager | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {6F26A6CD-967B-47FD-874A-7AED2C9D25A2} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 2 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6291456 | |
numChildren: 0 | |
child: 36 | |
numProp: 10 | |
prop: szName propValue: Video Renderer | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {70E102B0-5556-11CE-97C0-00AA0055595A} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 4194304 | |
numChildren: 0 | |
child: 37 | |
numProp: 10 | |
prop: szName propValue: VPS Decoder | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {7B3BC2A0-AA50-4AE7-BD44-B03649EC87C2} | |
prop: szFileName propValue: C:\Windows\System32\WSTPager.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 38 | |
numProp: 10 | |
prop: szName propValue: WM ASF Writer | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {7C23220E-55BB-11D3-8B16-00C04FB6BD3D} | |
prop: szFileName propValue: C:\Windows\System32\qasf.dll | |
prop: szFileVersion propValue: 12.00.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 4194304 | |
numChildren: 0 | |
child: 39 | |
numProp: 10 | |
prop: szName propValue: VBI Surface Allocator | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {814B9800-1C88-11D1-BAD9-00609744111A} | |
prop: szFileName propValue: %SystemRoot%\System32\vbisurf.ax | |
prop: szFileVersion propValue: | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6291456 | |
numChildren: 0 | |
child: 40 | |
numProp: 10 | |
prop: szName propValue: File writer | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {8596E5F0-0DA5-11D0-BD21-00A0C911CE86} | |
prop: szFileName propValue: C:\Windows\System32\qcap.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 41 | |
numProp: 10 | |
prop: szName propValue: DVD Navigator | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {9B8C4620-2C1A-11D0-8493-00A02438AD48} | |
prop: szFileName propValue: C:\Windows\System32\qdvd.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 3 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 42 | |
numProp: 10 | |
prop: szName propValue: Overlay Mixer2 | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {A0025E90-E45B-11D1-ABE9-00A0C905F375} | |
prop: szFileName propValue: | |
prop: szFileVersion propValue: | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 43 | |
numProp: 10 | |
prop: szName propValue: AVI Draw | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {A888DF60-1E90-11CF-AC98-00AA004C0FA9} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 9 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6291556 | |
numChildren: 0 | |
child: 44 | |
numProp: 10 | |
prop: szName propValue: Microsoft MPEG-2 Audio Encoder | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {ACD453BC-C58A-44D1-BBF5-BFB325BE2D78} | |
prop: szFileName propValue: C:\Windows\System32\msmpeg2enc.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 45 | |
numProp: 10 | |
prop: szName propValue: WST Pager | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {AD6C8934-F31B-4F43-B5E4-0541C1452F6F} | |
prop: szFileName propValue: C:\Windows\System32\WSTPager.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 46 | |
numProp: 10 | |
prop: szName propValue: MPEG-2 Demultiplexer | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {AFB6C280-2C41-11D3-8A60-0000F81E0E4A} | |
prop: szFileName propValue: C:\Windows\System32\mpg2splt.ax | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6291456 | |
numChildren: 0 | |
child: 47 | |
numProp: 10 | |
prop: szName propValue: DV Video Decoder | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {B1B77C00-C3E4-11CF-AF79-00AA00B67A42} | |
prop: szFileName propValue: C:\Windows\System32\qdv.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 8388608 | |
numChildren: 0 | |
child: 48 | |
numProp: 10 | |
prop: szName propValue: SampleGrabber | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {C1F400A0-3F08-11D3-9F0B-006008039E37} | |
prop: szFileName propValue: C:\Windows\System32\qedit.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 49 | |
numProp: 10 | |
prop: szName propValue: Null Renderer | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {C1F400A4-3F08-11D3-9F0B-006008039E37} | |
prop: szFileName propValue: C:\Windows\System32\qedit.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 50 | |
numProp: 10 | |
prop: szName propValue: MPEG-2 Sections and Tables | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {C666E115-BB62-4027-A113-82D643FE2D99} | |
prop: szFileName propValue: C:\Windows\System32\Mpeg2Data.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 6291455 | |
numChildren: 0 | |
child: 51 | |
numProp: 10 | |
prop: szName propValue: Microsoft AC3 Encoder | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {C6B400E2-20A7-4E58-A2FE-24619682CE6C} | |
prop: szFileName propValue: C:\Windows\System32\msac3enc.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 52 | |
numProp: 10 | |
prop: szName propValue: StreamBufferSource | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {C9F5FE02-F851-4EB5-99EE-AD602AF1E619} | |
prop: szFileName propValue: C:\Windows\System32\sbe.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 53 | |
numProp: 10 | |
prop: szName propValue: Smart Tee | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {CC58E280-8AA1-11D1-B3F1-00AA003761C5} | |
prop: szFileName propValue: C:\Windows\System32\qcap.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 2 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 54 | |
numProp: 10 | |
prop: szName propValue: Overlay Mixer | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {CD8743A1-3736-11D0-9E69-00C04FD7C15B} | |
prop: szFileName propValue: | |
prop: szFileVersion propValue: | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 55 | |
numProp: 10 | |
prop: szName propValue: AVI Decompressor | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {CF49D4E0-1115-11CE-B03A-0020AF0BA770} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6291456 | |
numChildren: 0 | |
child: 56 | |
numProp: 10 | |
prop: szName propValue: AVI/WAV File Source | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {D3588AB0-0781-11CE-B03A-0020AF0BA770} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 2 | |
prop: dwMerit propValue: 4194304 | |
numChildren: 0 | |
child: 57 | |
numProp: 10 | |
prop: szName propValue: Wave Parser | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {D51BD5A1-7548-11CF-A520-0080C77EF58A} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 4194304 | |
numChildren: 0 | |
child: 58 | |
numProp: 10 | |
prop: szName propValue: MIDI Parser | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {D51BD5A2-7548-11CF-A520-0080C77EF58A} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 4194304 | |
numChildren: 0 | |
child: 59 | |
numProp: 10 | |
prop: szName propValue: Multi-file Parser | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {D51BD5A3-7548-11CF-A520-0080C77EF58A} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 4194304 | |
numChildren: 0 | |
child: 60 | |
numProp: 10 | |
prop: szName propValue: File stream renderer | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {D51BD5A5-7548-11CF-A520-0080C77EF58A} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 4194304 | |
numChildren: 0 | |
child: 61 | |
numProp: 10 | |
prop: szName propValue: Microsoft DTV-DVD Audio Decoder | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {E1F1A0B8-BEEE-490D-BA7C-066C40B5E2B9} | |
prop: szFileName propValue: C:\Windows\System32\msmpeg2adec.dll | |
prop: szFileVersion propValue: 6.02.17763.1217 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6291455 | |
numChildren: 0 | |
child: 62 | |
numProp: 10 | |
prop: szName propValue: StreamBufferSink2 | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {E2448508-95DA-4205-9A27-7EC81E723B1A} | |
prop: szFileName propValue: C:\Windows\System32\sbe.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 63 | |
numProp: 10 | |
prop: szName propValue: AVI Mux | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {E2510970-F137-11CE-8B67-00AA00A3F1A6} | |
prop: szFileName propValue: C:\Windows\System32\qcap.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 64 | |
numProp: 10 | |
prop: szName propValue: Line 21 Decoder 2 | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {E4206432-01A1-4BEE-B3E1-3702C8EDC574} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6291458 | |
numChildren: 0 | |
child: 65 | |
numProp: 10 | |
prop: szName propValue: File Source (Async.) | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {E436EBB5-524F-11CE-9F53-0020AF0BA770} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 4194304 | |
numChildren: 0 | |
child: 66 | |
numProp: 10 | |
prop: szName propValue: File Source (URL) | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {E436EBB6-524F-11CE-9F53-0020AF0BA770} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 4194304 | |
numChildren: 0 | |
child: 67 | |
numProp: 10 | |
prop: szName propValue: Infinite Pin Tee Filter | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {F8388A40-D5BB-11D0-BE5A-0080C706568E} | |
prop: szFileName propValue: C:\Windows\System32\qcap.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 68 | |
numProp: 10 | |
prop: szName propValue: Enhanced Video Renderer | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {FA10746C-9B63-4B6C-BC49-FC300EA5F256} | |
prop: szFileName propValue: C:\Windows\System32\evr.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 69 | |
numProp: 10 | |
prop: szName propValue: BDA MPEG2 Transport Information Filter | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {FC772AB0-0C7F-11D3-8FF2-00A0C9224CF4} | |
prop: szFileName propValue: C:\Windows\System32\psisrndr.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 2 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 70 | |
numProp: 10 | |
prop: szName propValue: MPEG Video Decoder | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {FEB50740-7BEF-11CE-9BD9-0000E202599C} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: DirectShow Filters | |
prop: ClsidCat propValue: {083863F1-70DE-11D0-BD40-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 1073741825 | |
numChildren: 0 | |
child: 71 | |
numProp: 10 | |
prop: szName propValue: Tee/Sink-to-Sink Converter | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {17CCA71B-ECD7-11D0-B908-00A0C9223196} | |
prop: szFileName propValue: C:\Windows\System32\ksproxy.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: WDM Streaming Tee/Splitter Devices | |
prop: ClsidCat propValue: {0A4252A0-7E70-11D0-A5D6-28DB04C10000} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 72 | |
numProp: 10 | |
prop: szName propValue: WMVideo8 Encoder DMO | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {7E320092-596A-41B2-BBEB-175D10504EB6} | |
prop: szFileName propValue: C:\Windows\System32\wmvxencd.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: Video Compressors | |
prop: ClsidCat propValue: {33D9A760-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6293504 | |
numChildren: 0 | |
child: 73 | |
numProp: 10 | |
prop: szName propValue: WMVideo9 Encoder DMO | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {D23B90D0-144F-46BD-841D-59E4EB19DC59} | |
prop: szFileName propValue: C:\Windows\System32\wmvencod.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: Video Compressors | |
prop: ClsidCat propValue: {33D9A760-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6293504 | |
numChildren: 0 | |
child: 74 | |
numProp: 10 | |
prop: szName propValue: MSScreen 9 encoder DMO | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {F7FFE0A0-A4F5-44B5-949E-15ED2BC66F9D} | |
prop: szFileName propValue: C:\Windows\System32\wmvsencd.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: Video Compressors | |
prop: ClsidCat propValue: {33D9A760-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6293504 | |
numChildren: 0 | |
child: 75 | |
numProp: 10 | |
prop: szName propValue: DV Video Encoder | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {13AA3650-BB6F-11D0-AFB9-00AA00B67A42} | |
prop: szFileName propValue: C:\Windows\System32\qdv.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: Video Compressors | |
prop: ClsidCat propValue: {33D9A760-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 76 | |
numProp: 10 | |
prop: szName propValue: MJPEG Compressor | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {B80AB0A0-7416-11D2-9EEB-006008039E37} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: Video Compressors | |
prop: ClsidCat propValue: {33D9A760-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 77 | |
numProp: 10 | |
prop: szName propValue: WM Speech Encoder DMO | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {1F1F4E1A-2252-4063-84BB-EEE75F8856D5} | |
prop: szFileName propValue: C:\Windows\System32\WMSPDMOE.DLL | |
prop: szFileVersion propValue: 6.02.17763.0592 | |
prop: szCatName propValue: Audio Compressors | |
prop: ClsidCat propValue: {33D9A761-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6293504 | |
numChildren: 0 | |
child: 78 | |
numProp: 10 | |
prop: szName propValue: WMAudio Encoder DMO | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {70F598E9-F4AB-495A-99E2-A7C4D3D89ABF} | |
prop: szFileName propValue: C:\Windows\System32\WMADMOE.DLL | |
prop: szFileVersion propValue: 6.02.17763.0592 | |
prop: szCatName propValue: Audio Compressors | |
prop: ClsidCat propValue: {33D9A761-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6293504 | |
numChildren: 0 | |
child: 79 | |
numProp: 10 | |
prop: szName propValue: IMA ADPCM | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {6A08CF80-0E18-11CF-A24D-0020AFD79767} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: Audio Compressors | |
prop: ClsidCat propValue: {33D9A761-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 80 | |
numProp: 10 | |
prop: szName propValue: PCM | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {6A08CF80-0E18-11CF-A24D-0020AFD79767} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: Audio Compressors | |
prop: ClsidCat propValue: {33D9A761-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 81 | |
numProp: 10 | |
prop: szName propValue: Microsoft ADPCM | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {6A08CF80-0E18-11CF-A24D-0020AFD79767} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: Audio Compressors | |
prop: ClsidCat propValue: {33D9A761-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 82 | |
numProp: 10 | |
prop: szName propValue: GSM 6.10 | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {6A08CF80-0E18-11CF-A24D-0020AFD79767} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: Audio Compressors | |
prop: ClsidCat propValue: {33D9A761-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 83 | |
numProp: 10 | |
prop: szName propValue: CCITT A-Law | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {6A08CF80-0E18-11CF-A24D-0020AFD79767} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: Audio Compressors | |
prop: ClsidCat propValue: {33D9A761-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 84 | |
numProp: 10 | |
prop: szName propValue: CCITT u-Law | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {6A08CF80-0E18-11CF-A24D-0020AFD79767} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: Audio Compressors | |
prop: ClsidCat propValue: {33D9A761-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 85 | |
numProp: 10 | |
prop: szName propValue: MPEG Layer-3 | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {6A08CF80-0E18-11CF-A24D-0020AFD79767} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: Audio Compressors | |
prop: ClsidCat propValue: {33D9A761-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 86 | |
numProp: 10 | |
prop: szName propValue: Microphone (Realtek Audio) | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {E30629D2-27E5-11CE-875D-00608CB78066} | |
prop: szFileName propValue: C:\Windows\System32\qcap.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: Audio Capture Sources | |
prop: ClsidCat propValue: {33D9A762-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 87 | |
numProp: 10 | |
prop: szName propValue: virtual-audio-capturer | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {8E146464-DB61-4309-AFA1-3578E927E935} | |
prop: szFileName propValue: C:\Program Files\Recorder Devices for ShareX\virtual-audio-capturer-x64.dll | |
prop: szFileVersion propValue: | |
prop: szCatName propValue: Audio Capture Sources | |
prop: ClsidCat propValue: {33D9A762-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 88 | |
numProp: 10 | |
prop: szName propValue: Stereo Mix (Realtek Audio) | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {E30629D2-27E5-11CE-875D-00608CB78066} | |
prop: szFileName propValue: C:\Windows\System32\qcap.dll | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: Audio Capture Sources | |
prop: ClsidCat propValue: {33D9A762-90C8-11D0-BD43-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 89 | |
numProp: 10 | |
prop: szName propValue: PBDA DTFilter | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {09144FD6-BB29-11DB-96F1-005056C00008} | |
prop: szFileName propValue: C:\Windows\System32\CPFilters.dll | |
prop: szFileVersion propValue: 6.02.17763.1039 | |
prop: szCatName propValue: PBDA CP Filters | |
prop: ClsidCat propValue: {4A56AF32-C21F-11DB-96FA-005056C00008} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 6291456 | |
numChildren: 0 | |
child: 90 | |
numProp: 10 | |
prop: szName propValue: PBDA ETFilter | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {76B4FCAC-BB29-11DB-96F1-005056C00008} | |
prop: szFileName propValue: C:\Windows\System32\CPFilters.dll | |
prop: szFileVersion propValue: 6.02.17763.1039 | |
prop: szCatName propValue: PBDA CP Filters | |
prop: ClsidCat propValue: {4A56AF32-C21F-11DB-96FA-005056C00008} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 91 | |
numProp: 10 | |
prop: szName propValue: PBDA PTFilter | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {89C2E132-C29B-11DB-96FA-005056C00008} | |
prop: szFileName propValue: C:\Windows\System32\CPFilters.dll | |
prop: szFileVersion propValue: 6.02.17763.1039 | |
prop: szCatName propValue: PBDA CP Filters | |
prop: ClsidCat propValue: {4A56AF32-C21F-11DB-96FA-005056C00008} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 92 | |
numProp: 10 | |
prop: szName propValue: Default MidiOut Device | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {07B65360-C445-11CE-AFDE-00AA006C14F4} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: Midi Renderers | |
prop: ClsidCat propValue: {4EFE2452-168A-11D1-BC76-00C04FB9453B} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 8388608 | |
numChildren: 0 | |
child: 93 | |
numProp: 10 | |
prop: szName propValue: Microsoft GS Wavetable Synth | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {07B65360-C445-11CE-AFDE-00AA006C14F4} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: Midi Renderers | |
prop: ClsidCat propValue: {4EFE2452-168A-11D1-BC76-00C04FB9453B} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 94 | |
numProp: 10 | |
prop: szName propValue: Realtek HD Audio Stereo input | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {17CCA71B-ECD7-11D0-B908-00A0C9223196} | |
prop: szFileName propValue: C:\Windows\System32\ksproxy.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: WDM Streaming Capture Devices | |
prop: ClsidCat propValue: {65E8773D-8F56-11D0-A3B9-00A0C9223196} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 95 | |
numProp: 10 | |
prop: szName propValue: Realtek HD Audio Mic input | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {17CCA71B-ECD7-11D0-B908-00A0C9223196} | |
prop: szFileName propValue: C:\Windows\System32\ksproxy.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: WDM Streaming Capture Devices | |
prop: ClsidCat propValue: {65E8773D-8F56-11D0-A3B9-00A0C9223196} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 96 | |
numProp: 10 | |
prop: szName propValue: Integrated Webcam | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {17CCA71B-ECD7-11D0-B908-00A0C9223196} | |
prop: szFileName propValue: C:\Windows\System32\ksproxy.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: WDM Streaming Capture Devices | |
prop: ClsidCat propValue: {65E8773D-8F56-11D0-A3B9-00A0C9223196} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 97 | |
numProp: 10 | |
prop: szName propValue: Realtek HD Audio output | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {17CCA71B-ECD7-11D0-B908-00A0C9223196} | |
prop: szFileName propValue: C:\Windows\System32\ksproxy.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: WDM Streaming Rendering Devices | |
prop: ClsidCat propValue: {65E8773E-8F56-11D0-A3B9-00A0C9223196} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 98 | |
numProp: 10 | |
prop: szName propValue: Microsoft ATSC Network Provider | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {0DAD2FDD-5FD7-11D3-8F50-00C04F7971E2} | |
prop: szFileName propValue: C:\Windows\System32\MSDvbNP.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: BDA Network Providers | |
prop: ClsidCat propValue: {71985F4B-1CA1-11D3-9CC8-00C04F7971E0} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 99 | |
numProp: 10 | |
prop: szName propValue: Microsoft DVBC Network Provider | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {DC0C0FE7-0485-4266-B93F-68FBF80ED834} | |
prop: szFileName propValue: C:\Windows\System32\MSDvbNP.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: BDA Network Providers | |
prop: ClsidCat propValue: {71985F4B-1CA1-11D3-9CC8-00C04F7971E0} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 100 | |
numProp: 10 | |
prop: szName propValue: Microsoft DVBS Network Provider | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {FA4B375A-45B4-4D45-8440-263957B11623} | |
prop: szFileName propValue: C:\Windows\System32\MSDvbNP.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: BDA Network Providers | |
prop: ClsidCat propValue: {71985F4B-1CA1-11D3-9CC8-00C04F7971E0} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 101 | |
numProp: 10 | |
prop: szName propValue: Microsoft DVBT Network Provider | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {216C62DF-6D7F-4E9A-8571-05F14EDB766A} | |
prop: szFileName propValue: C:\Windows\System32\MSDvbNP.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: BDA Network Providers | |
prop: ClsidCat propValue: {71985F4B-1CA1-11D3-9CC8-00C04F7971E0} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 102 | |
numProp: 10 | |
prop: szName propValue: Microsoft Network Provider | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {B2F3A67C-29DA-4C78-8831-091ED509A475} | |
prop: szFileName propValue: C:\Windows\System32\MSNP.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: BDA Network Providers | |
prop: ClsidCat propValue: {71985F4B-1CA1-11D3-9CC8-00C04F7971E0} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 103 | |
numProp: 10 | |
prop: szName propValue: Integrated Webcam | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {17CCA71B-ECD7-11D0-B908-00A0C9223196} | |
prop: szFileName propValue: C:\Windows\System32\ksproxy.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: Video Capture Sources | |
prop: ClsidCat propValue: {860BB310-5D01-11D0-BD3B-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 104 | |
numProp: 10 | |
prop: szName propValue: screen-capture-recorder | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {4EA69364-2C8A-4AE6-A561-56E4B5044439} | |
prop: szFileName propValue: C:\Program Files\Recorder Devices for ShareX\screen-capture-recorder-x64.dll | |
prop: szFileVersion propValue: | |
prop: szCatName propValue: Video Capture Sources | |
prop: ClsidCat propValue: {860BB310-5D01-11D0-BD3B-00A0C911CE86} | |
prop: dwInputs propValue: 0 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 105 | |
numProp: 10 | |
prop: szName propValue: VBI Codec | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {370A1D5D-DDEB-418C-81CD-189E0D4FA443} | |
prop: szFileName propValue: C:\Windows\System32\VBICodec.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: Multi-Instance Capable VBI Codecs | |
prop: ClsidCat propValue: {9C24A977-0951-451A-8006-0E49BD28CD5F} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 4 | |
prop: dwMerit propValue: 6291456 | |
numChildren: 0 | |
child: 106 | |
numProp: 10 | |
prop: szName propValue: BDA MPEG2 Transport Information Filter | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {FC772AB0-0C7F-11D3-8FF2-00A0C9224CF4} | |
prop: szFileName propValue: C:\Windows\System32\psisrndr.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: BDA Transport Information Renderers | |
prop: ClsidCat propValue: {A2E3074F-6C3D-11D3-B653-00C04F79498E} | |
prop: dwInputs propValue: 2 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 6291456 | |
numChildren: 0 | |
child: 107 | |
numProp: 10 | |
prop: szName propValue: MPEG-2 Sections and Tables | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {C666E115-BB62-4027-A113-82D643FE2D99} | |
prop: szFileName propValue: C:\Windows\System32\Mpeg2Data.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: BDA Transport Information Renderers | |
prop: ClsidCat propValue: {A2E3074F-6C3D-11D3-B653-00C04F79498E} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 6291456 | |
numChildren: 0 | |
child: 108 | |
numProp: 10 | |
prop: szName propValue: Tee/Sink-to-Sink Converter | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {17CCA71B-ECD7-11D0-B908-00A0C9223196} | |
prop: szFileName propValue: C:\Windows\System32\ksproxy.ax | |
prop: szFileVersion propValue: 6.02.17763.0001 | |
prop: szCatName propValue: WDM Streaming Communication Transforms | |
prop: ClsidCat propValue: {CF1DDA2C-9743-11D0-A3EE-00A0C9223196} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 1 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 109 | |
numProp: 10 | |
prop: szName propValue: Speakers / Headphones (Realtek Audio) | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {E30629D1-27E5-11CE-875D-00608CB78066} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: Audio Renderers | |
prop: ClsidCat propValue: {E0F158E1-CB04-11D0-BD4E-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 110 | |
numProp: 10 | |
prop: szName propValue: Default DirectSound Device | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {79376820-07D0-11CF-A24D-0020AFD79767} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: Audio Renderers | |
prop: ClsidCat propValue: {E0F158E1-CB04-11D0-BD4E-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 8388608 | |
numChildren: 0 | |
child: 111 | |
numProp: 10 | |
prop: szName propValue: Default WaveOut Device | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {E30629D1-27E5-11CE-875D-00608CB78066} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: Audio Renderers | |
prop: ClsidCat propValue: {E0F158E1-CB04-11D0-BD4E-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: 112 | |
numProp: 10 | |
prop: szName propValue: DirectSound: Speakers / Headphones (Realtek Audio) | |
prop: szVersion propValue: v2 | |
prop: ClsidFilter propValue: {79376820-07D0-11CF-A24D-0020AFD79767} | |
prop: szFileName propValue: C:\Windows\System32\quartz.dll | |
prop: szFileVersion propValue: 6.02.17763.1282 | |
prop: szCatName propValue: Audio Renderers | |
prop: ClsidCat propValue: {E0F158E1-CB04-11D0-BD4E-00A0C911CE86} | |
prop: dwInputs propValue: 1 | |
prop: dwOutputs propValue: 0 | |
prop: dwMerit propValue: 2097152 | |
numChildren: 0 | |
child: DxDiag_LogicalDisks | |
numProp: 0 | |
numChildren: 1 | |
child: 0 | |
numProp: 7 | |
prop: szDriveLetter propValue: C: | |
prop: szFreeSpace propValue: 171560300544 | |
prop: szMaxSpace propValue: 989548507136 | |
prop: szFileSystem propValue: NTFS | |
prop: szModel propValue: Samsung SSD 970 EVO Plus 1TB | |
prop: szPNPDeviceID propValue: SCSI\DISK&VEN_NVME&PROD_SAMSUNG_SSD_970\4&2B413648&0&010000 | |
prop: dwHardDriveIndex propValue: 0 | |
numChildren: 0 | |
End |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment