making path generic to their location and not specific location of file

This commit is contained in:
d1vious
2022-09-15 14:42:30 -04:00
parent 79c5fd19e5
commit 5385bc77cf
2 changed files with 489 additions and 491 deletions
+10 -4
View File
@@ -116,17 +116,23 @@ def update_detection(detection, lolbas, VERBOSE, OPUTPUT_PATH):
write_yaml(detection, VERBOSE, detection_output_path)
def write_csv(lolbas, OUTPUT_PATH):
with open(OUTPUT_PATH + '/' + 'lolbas_file_path.csv', 'w', newline='') as csvfile:
fieldnames = ['lolbas_file_name', 'lolbas_file_path', 'description']
writer = csv.DictWriter(csvfile, fieldnames=fieldnames)
writer.writeheader()
for lolba in lolbas:
parent_paths = []
if get_lolbas_paths(lolba):
full_paths = get_lolbas_paths(lolba)
for full_path in full_paths:
lolba_file_name = lolba['Name'].lower()
lolba_description = lolba['Description']
writer.writerow({'lolbas_file_name': lolba_file_name, 'lolbas_file_path': full_path.lower(), 'description': lolba_description})
parent_path_split = full_path.split("\\")[:-1]
parent_path = "\\".join(parent_path_split)
if parent_path not in parent_paths:
parent_paths.append(parent_path)
lolba_file_name = lolba['Name'].lower()
lolba_description = lolba['Description']
writer.writerow({'lolbas_file_name': lolba_file_name, 'lolbas_file_path': parent_path.lower(), 'description': lolba_description})
def write_yaml(detection, VERBOSE, detection_output_path):
@@ -144,7 +150,7 @@ if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Generates Updates Splunk detections with latest LOLBAS")
parser.add_argument("-splunk_security_content_path", "--spath", required=False, default='../../', help="path to security_content repo")
parser.add_argument("-lolbas_path", "--lpath", required=False, default='LOLBAS', help="path to the lolbas repo")
parser.add_argument("-o", "--output_path", required=False, default='.', help="Were to write results to")
parser.add_argument("-o", "--output_path", required=False, default='.', help="path to results")
parser.add_argument("-v", "--verbose", required=False, default=False, action='store_true', help="prints verbose output")
+479 -487
View File
@@ -1,488 +1,480 @@
lolbas_file_name,lolbas_file_path,description
eventvwr.exe,c:\windows\system32\eventvwr.exe,Displays Windows Event Logs in a GUI window.
eventvwr.exe,c:\windows\syswow64\eventvwr.exe,Displays Windows Event Logs in a GUI window.
rasautou.exe,c:\windows\system32\rasautou.exe,Windows Remote Access Dialer
regedit.exe,c:\windows\system32\regedit.exe,Used by Windows to manipulate registry
regedit.exe,c:\windows\syswow64\regedit.exe,Used by Windows to manipulate registry
regsvr32.exe,c:\windows\system32\regsvr32.exe,Used by Windows to register dlls
regsvr32.exe,c:\windows\syswow64\regsvr32.exe,Used by Windows to register dlls
control.exe,c:\windows\system32\control.exe,Binary used to launch controlpanel items in Windows
control.exe,c:\windows\syswow64\control.exe,Binary used to launch controlpanel items in Windows
configsecuritypolicy.exe,c:\programdata\microsoft\windows defender\platform\4.18.2008.9-0\configsecuritypolicy.exe,Binary part of Windows Defender. Used to manage settings in Windows Defender. you can configure different pilot collections for each of the co-management workloads. Being able to use different pilot collections allows you to take a more granular approach when shifting workloads.
scriptrunner.exe,c:\windows\system32\scriptrunner.exe,
scriptrunner.exe,c:\windows\syswow64\scriptrunner.exe,
offlinescannershell.exe,c:\program files\windows defender\offline\offlinescannershell.exe,Windows Defender Offline Shell
atbroker.exe,c:\windows\system32\atbroker.exe,Helper binary for Assistive Technology (AT)
atbroker.exe,c:\windows\syswow64\atbroker.exe,Helper binary for Assistive Technology (AT)
mmc.exe,c:\windows\system32\mmc.exe,Load snap-ins to locally and remotely manage Windows systems
mmc.exe,c:\windows\syswow64\mmc.exe,Load snap-ins to locally and remotely manage Windows systems
mavinject.exe,c:\windows\system32\mavinject.exe,Used by App-v in Windows
mavinject.exe,c:\windows\syswow64\mavinject.exe,Used by App-v in Windows
ftp.exe,c:\windows\system32\ftp.exe,A binary designed for connecting to FTP servers
ftp.exe,c:\windows\syswow64\ftp.exe,A binary designed for connecting to FTP servers
ttdinject.exe,c:\windows\system32\ttdinject.exe,Used by Windows 1809 and newer to Debug Time Travel (Underlying call of tttracer.exe)
ttdinject.exe,c:\windows\syswow64\ttdinject.exe,Used by Windows 1809 and newer to Debug Time Travel (Underlying call of tttracer.exe)
certoc.exe,c:\windows\system32\certoc.exe,Used for installing certificates
certoc.exe,c:\windows\syswow64\certoc.exe,Used for installing certificates
at.exe,c:\windows\system32\at.exe,Schedule periodic tasks
at.exe,c:\windows\syswow64\at.exe,Schedule periodic tasks
netsh.exe,c:\windows\system32\netsh.exe,Netsh is a Windows tool used to manipulate network interface settings.
netsh.exe,c:\windows\syswow64\netsh.exe,Netsh is a Windows tool used to manipulate network interface settings.
pnputil.exe,c:\windows\system32\pnputil.exe,Used for installing drivers
ie4uinit.exe,c:\windows\system32\ie4uinit.exe,
ie4uinit.exe,c:\windows\syswow64\ie4uinit.exe,
ie4uinit.exe,c:\windows\system32\ieuinit.inf,
ie4uinit.exe,c:\windows\syswow64\ieuinit.inf,
infdefaultinstall.exe,c:\windows\system32\infdefaultinstall.exe,Binary used to perform installation based on content inside inf files
infdefaultinstall.exe,c:\windows\syswow64\infdefaultinstall.exe,Binary used to perform installation based on content inside inf files
forfiles.exe,c:\windows\system32\forfiles.exe,Selects and executes a command on a file or set of files. This command is useful for batch processing.
forfiles.exe,c:\windows\syswow64\forfiles.exe,Selects and executes a command on a file or set of files. This command is useful for batch processing.
register-cimprovider.exe,c:\windows\system32\register-cimprovider.exe,Used to register new wmi providers
register-cimprovider.exe,c:\windows\syswow64\register-cimprovider.exe,Used to register new wmi providers
tttracer.exe,c:\windows\system32\tttracer.exe,Used by Windows 1809 and newer to Debug Time Travel
tttracer.exe,c:\windows\syswow64\tttracer.exe,Used by Windows 1809 and newer to Debug Time Travel
xwizard.exe,c:\windows\system32\xwizard.exe,
xwizard.exe,c:\windows\syswow64\xwizard.exe,
pcalua.exe,c:\windows\system32\pcalua.exe,Program Compatibility Assistant
print.exe,c:\windows\system32\print.exe,Used by Windows to send files to the printer
print.exe,c:\windows\syswow64\print.exe,Used by Windows to send files to the printer
runscripthelper.exe,c:\windows\winsxs\amd64_microsoft-windows-u..ed-telemetry-client_31bf3856ad364e35_10.0.16299.15_none_c2df1bba78111118\runscripthelper.exe,
runscripthelper.exe,c:\windows\winsxs\amd64_microsoft-windows-u..ed-telemetry-client_31bf3856ad364e35_10.0.16299.192_none_ad4699b571e00c4a\runscripthelper.exe,
regasm.exe,c:\windows\microsoft.net\framework\v2.0.50727\regasm.exe,Part of .NET
regasm.exe,c:\windows\microsoft.net\framework64\v2.0.50727\regasm.exe,Part of .NET
regasm.exe,c:\windows\microsoft.net\framework\v4.0.30319\regasm.exe,Part of .NET
regasm.exe,c:\windows\microsoft.net\framework64\v4.0.30319\regasm.exe,Part of .NET
cmd.exe,c:\windows\system32\cmd.exe,The command-line interpreter in Windows
cmd.exe,c:\windows\syswow64\cmd.exe,The command-line interpreter in Windows
msbuild.exe,c:\windows\microsoft.net\framework\v2.0.50727\msbuild.exe,Used to compile and execute code
msbuild.exe,c:\windows\microsoft.net\framework64\v2.0.50727\msbuild.exe,Used to compile and execute code
msbuild.exe,c:\windows\microsoft.net\framework\v3.5\msbuild.exe,Used to compile and execute code
msbuild.exe,c:\windows\microsoft.net\framework64\v3.5\msbuild.exe,Used to compile and execute code
msbuild.exe,c:\windows\microsoft.net\framework\v4.0.30319\msbuild.exe,Used to compile and execute code
msbuild.exe,c:\windows\microsoft.net\framework64\v4.0.30319\msbuild.exe,Used to compile and execute code
msbuild.exe,c:\program files (x86)\msbuild\14.0\bin\msbuild.exe,Used to compile and execute code
certutil.exe,c:\windows\system32\certutil.exe,Windows binary used for handling certificates
certutil.exe,c:\windows\syswow64\certutil.exe,Windows binary used for handling certificates
vbc.exe,c:\windows\microsoft.net\framework64\v4.0.30319\vbc.exe,Binary file used for compile vbs code
vbc.exe,c:\windows\microsoft.net\framework64\v3.5\vbc.exe,Binary file used for compile vbs code
psr.exe,c:\windows\system32\psr.exe,"Windows Problem Steps Recorder, used to record screen and clicks."
psr.exe,c:\windows\syswow64\psr.exe,"Windows Problem Steps Recorder, used to record screen and clicks."
extexport.exe,c:\program files\internet explorer\extexport.exe,
extexport.exe,c:\program files (x86)\internet explorer\extexport.exe,
rpcping.exe,c:\windows\system32\rpcping.exe,Used to verify rpc connection
rpcping.exe,c:\windows\syswow64\rpcping.exe,Used to verify rpc connection
msdt.exe,c:\windows\system32\msdt.exe,Microsoft diagnostics tool
msdt.exe,c:\windows\syswow64\msdt.exe,Microsoft diagnostics tool
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\64kb6472.inf_amd64_3daef03bbe98572b\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_0e9c57ae3396e055\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_209bd95d56b1ac2d\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_3fa2a843f8b7f16d\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_85c860f05274baa0\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_f7412e3e3404de80\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_feb9f1cf05b0de58\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_component.inf_amd64_0219cc1c7085a93f\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_component.inf_amd64_df4f60b1cae9b14a\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_16eb18b0e2526e57\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_1c77f1231c19bc72\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_31c60cc38cfcca28\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_82f69cea8b2d928f\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_b4d94f3e41ceb839\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_0606619cc97463de\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_0e95edab338ad669\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_22aac1442d387216\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_2461d914696db722\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_29d727269a34edf5\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_2caf76dbce56546d\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_353320edb98da643\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_4ea0ed0af1507894\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_56a48f4f1c2da7a7\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_64f23fdadb76a511\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_668dd0c6d3f9fa0e\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_6be8e5b7f731a6e5\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_6dad7e4e9a8fa889\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_6df442103a1937a4\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_767e7683f9ad126c\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_8644298f665a12c4\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_868acf86149aef5d\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_92cf9d9d84f1d3db\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_93239c65f222d453\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_9de8154b682af864\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_a7428663aca90897\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_ad7cb5e55a410add\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_afbf41cf8ab202d7\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_d193c96475eaa96e\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_db953c52208ada71\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_e7523682cc7528cc\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_e9f341319ca84274\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_f3a64c75ee4defb7\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_f51939e52b944f4b\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch_comp.inf_amd64_4938423c9b9639d7\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch_comp.inf_amd64_c8e108d4a62c59d5\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch_comp.inf_amd64_deecec7d232ced2b\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_01ee1299f4982efe\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_02edfc87000937e4\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_0541b698fc6e40b0\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_0707757077710fff\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_0b3e3ed3ace9602a\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_0cff362f9dff4228\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_16ed7d82b93e4f68\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_1a33d2f73651d989\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_1aca2a92a37fce23\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_1af2dd3e4df5fd61\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_1d571527c7083952\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_23f7302c2b9ee813\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_24de78387e6208e4\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_250db833a1cd577e\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_25e7c5a58c052bc5\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_28d80681d3523b1c\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_2dda3b1147a3a572\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_31ba00ea6900d67d\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_329877a66f240808\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_42af9f4718aa1395\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_4645af5c659ae51a\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_48c2e68e54c92258\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_48e7e903a369eae2\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_491d20003583dabe\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_4b34c18659561116\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_51ce968bf19942c2\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_555cfc07a674ecdd\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_561bd21d54545ed3\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_579a75f602cc2dce\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_57f66a4f0a97f1a3\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_587befb80671fb38\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_62f096fe77e085c0\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_6ae0ddbb4a38e23c\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_6bb02522ea3fdb0d\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_6d34ac0763025a06\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_712b6a0adbaabc0a\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_78b09d9681a2400f\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_842874489af34daa\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_88084eb1fe7cebc3\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_89033455cb08186f\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_8a9535cd18c90bc3\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_8c1fc948b5a01c52\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_9088b61921a6ff9f\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_90f68cd0dc48b625\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_95cb371d046d4b4c\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_a58de0cf5f3e9dca\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_abe9d37302f8b1ae\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_acb3edda7b82982f\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_aebc5a8535dd3184\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_b5d4c82c67b39358\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_b846bbf1e81ea3cf\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_babb2e8b8072ff3b\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_bc75cebf5edbbc50\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_be91293cf20d4372\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c11f4d5f0bc4c592\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c4e5173126d31cf0\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c4f600ffe34acc7b\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c8634ed19e331cda\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c9081e50bcffa972\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_ceddadac8a2b489e\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_d4406f0ad6ec2581\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_d5877a2e0e6374b6\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_d8ca5f86add535ef\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_e8abe176c7b553b5\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_eabb3ac2c517211f\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_f8d8be8fea71e1a0\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_fe5e116bb07c0629\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_fe73d2ebaa05fb95\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64_kbl_kit127397.inf_amd64_e1da8ee9e92ccadb\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\k127153.inf_amd64_364f43f2a27f7bd7\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\k127153.inf_amd64_3f3936d8dec668b8\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\k127793.inf_amd64_3ab7883eddccbf0f\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki129523.inf_amd64_32947eecf8f3e231\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki126950.inf_amd64_fa7f56314967630d\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki126951.inf_amd64_94804e3918169543\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki126973.inf_amd64_06dde156632145e3\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki126974.inf_amd64_9168fc04b8275db9\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127005.inf_amd64_753576c4406c1193\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127018.inf_amd64_0f67ff47e9e30716\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127021.inf_amd64_0d68af55c12c7c17\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127171.inf_amd64_368f8c7337214025\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127176.inf_amd64_86c658cabfb17c9c\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127390.inf_amd64_e1ccb879ece8f084\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127678.inf_amd64_8427d3a09f47dfc1\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127727.inf_amd64_cf8e31692f82192e\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127807.inf_amd64_fc915899816dbc5d\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127850.inf_amd64_6ad8d99023b59fd5\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki128602.inf_amd64_6ff790822fd674ab\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki128916.inf_amd64_3509e1eb83b83cfb\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki129407.inf_amd64_f26f36ac54ce3076\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki129633.inf_amd64_d9b8af875f664a8c\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki129866.inf_amd64_e7cdca9882c16f55\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki130274.inf_amd64_bafd2440fa1ffdd6\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki130350.inf_amd64_696b7c6764071b63\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki130409.inf_amd64_0d8d61270dfb4560\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki130471.inf_amd64_26ad6921447aa568\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki130624.inf_amd64_d85487143eec5e1a\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki130825.inf_amd64_ee3ba427c553f15f\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki130871.inf_amd64_382f7c369d4bf777\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki131064.inf_amd64_5d13f27a9a9843fa\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki131176.inf_amd64_fb4fe914575fdd15\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki131191.inf_amd64_d668106cb6f2eae0\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki131622.inf_amd64_0058d71ace34db73\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki132032.inf_amd64_f29660d80998e019\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki132337.inf_amd64_223d6831ffa64ab1\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki132535.inf_amd64_7875dff189ab2fa2\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki132544.inf_amd64_b8c1f31373153db4\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki132574.inf_amd64_54c9b905b975ee55\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki132869.inf_amd64_052eb72d070df60f\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\kit126731.inf_amd64_1905c9d5f38631d9\,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
dnscmd.exe,c:\windows\system32\dnscmd.exe,A command-line interface for managing DNS servers
dnscmd.exe,c:\windows\syswow64\dnscmd.exe,A command-line interface for managing DNS servers
wab.exe,c:\program files\windows mail\wab.exe,Windows address book manager
wab.exe,c:\program files (x86)\windows mail\wab.exe,Windows address book manager
msconfig.exe,c:\windows\system32\msconfig.exe,"MSConfig is a troubleshooting tool which is used to temporarily disable or re-enable software, device drivers or Windows services that run during startup process to help the user determine the cause of a problem with Windows"
wscript.exe,c:\windows\system32\wscript.exe,Used by Windows to execute scripts
wscript.exe,c:\windows\syswow64\wscript.exe,Used by Windows to execute scripts
makecab.exe,c:\windows\system32\makecab.exe,Binary to package existing files into a cabinet (.cab) file
makecab.exe,c:\windows\syswow64\makecab.exe,Binary to package existing files into a cabinet (.cab) file
datasvcutil.exe,c:\windows\microsoft.net\framework64\v3.5\datasvcutil.exe,DataSvcUtil.exe is a command-line tool provided by WCF Data Services that consumes an Open Data Protocol (OData) feed and generates the client data service classes that are needed to access a data service from a .NET Framework client application.
cmdl32.exe,c:\windows\system32\cmdl32.exe,Microsoft Connection Manager Auto-Download
cmdl32.exe,c:\windows\syswow64\cmdl32.exe,Microsoft Connection Manager Auto-Download
mshta.exe,c:\windows\system32\mshta.exe,Used by Windows to execute html applications. (.hta)
mshta.exe,c:\windows\syswow64\mshta.exe,Used by Windows to execute html applications. (.hta)
cmdkey.exe,c:\windows\system32\cmdkey.exe,"creates, lists, and deletes stored user names and passwords or credentials."
cmdkey.exe,c:\windows\syswow64\cmdkey.exe,"creates, lists, and deletes stored user names and passwords or credentials."
ilasm.exe,c:\windows\microsoft.net\framework\v4.0.30319\ilasm.exe,used for compile c# code into dll or exe.
ilasm.exe,c:\windows\microsoft.net\framework64\v4.0.30319\ilasm.exe,used for compile c# code into dll or exe.
rdrleakdiag.exe,c:\windows\system32\rdrleakdiag.exe,Microsoft Windows resource leak diagnostic tool
rdrleakdiag.exe,c:\windows\syswow64\rdrleakdiag.exe,Microsoft Windows resource leak diagnostic tool
mpcmdrun.exe,c:\programdata\microsoft\windows defender\platform\4.18.2008.4-0\mpcmdrun.exe,Binary part of Windows Defender. Used to manage settings in Windows Defender
mpcmdrun.exe,c:\programdata\microsoft\windows defender\platform\4.18.2008.7-0\mpcmdrun.exe,Binary part of Windows Defender. Used to manage settings in Windows Defender
mpcmdrun.exe,c:\programdata\microsoft\windows defender\platform\4.18.2008.9-0\mpcmdrun.exe,Binary part of Windows Defender. Used to manage settings in Windows Defender
jsc.exe,c:\windows\microsoft.net\framework\v4.0.30319\jsc.exe,Binary file used by .NET to compile javascript code to .exe or .dll format
jsc.exe,c:\windows\microsoft.net\framework64\v4.0.30319\jsc.exe,Binary file used by .NET to compile javascript code to .exe or .dll format
jsc.exe,c:\windows\microsoft.net\framework\v2.0.50727\jsc.exe,Binary file used by .NET to compile javascript code to .exe or .dll format
jsc.exe,c:\windows\microsoft.net\framework64\v2.0.50727\jsc.exe,Binary file used by .NET to compile javascript code to .exe or .dll format
cmstp.exe,c:\windows\system32\cmstp.exe,Installs or removes a Connection Manager service profile.
cmstp.exe,c:\windows\syswow64\cmstp.exe,Installs or removes a Connection Manager service profile.
stordiag.exe,c:\windows\system32\stordiag.exe,Storage diagnostic tool
stordiag.exe,c:\windows\syswow64\stordiag.exe,Storage diagnostic tool
odbcconf.exe,c:\windows\system32\odbcconf.exe,Used in Windows for managing ODBC connections
odbcconf.exe,c:\windows\syswow64\odbcconf.exe,Used in Windows for managing ODBC connections
wlrmdr.exe,c:\windows\system32\wlrmdr.exe,Windows Logon Reminder executable
printbrm.exe,c:\windows\system32\spool\tools\printbrm.exe,Printer Migration Command-Line Tool
dfsvc.exe,c:\windows\microsoft.net\framework\v2.0.50727\dfsvc.exe,ClickOnce engine in Windows used by .NET
dfsvc.exe,c:\windows\microsoft.net\framework64\v2.0.50727\dfsvc.exe,ClickOnce engine in Windows used by .NET
dfsvc.exe,c:\windows\microsoft.net\framework\v4.0.30319\dfsvc.exe,ClickOnce engine in Windows used by .NET
dfsvc.exe,c:\windows\microsoft.net\framework64\v4.0.30319\dfsvc.exe,ClickOnce engine in Windows used by .NET
extrac32.exe,c:\windows\system32\extrac32.exe,
extrac32.exe,c:\windows\syswow64\extrac32.exe,
rundll32.exe,c:\windows\system32\rundll32.exe,Used by Windows to execute dll files
rundll32.exe,c:\windows\syswow64\rundll32.exe,Used by Windows to execute dll files
runonce.exe,c:\windows\system32\runonce.exe,
runonce.exe,c:\windows\syswow64\runonce.exe,
explorer.exe,c:\windows\explorer.exe,Binary used for managing files and system components within Windows
explorer.exe,c:\windows\syswow64\explorer.exe,Binary used for managing files and system components within Windows
wuauclt.exe,c:\windows\system32\wuauclt.exe,Windows Update Client
wsreset.exe,c:\windows\system32\wsreset.exe,Used to reset Windows Store settings according to its manifest file
finger.exe,c:\windows\system32\finger.exe,Displays information about a user or users on a specified remote computer that is running the Finger service or daemon
finger.exe,c:\windows\syswow64\finger.exe,Displays information about a user or users on a specified remote computer that is running the Finger service or daemon
regini.exe,c:\windows\system32\regini.exe,Used to manipulate the registry
regini.exe,c:\windows\syswow64\regini.exe,Used to manipulate the registry
reg.exe,c:\windows\system32\reg.exe,Used to manipulate the registry
reg.exe,c:\windows\syswow64\reg.exe,Used to manipulate the registry
syncappvpublishingserver.exe,c:\windows\system32\syncappvpublishingserver.exe,Used by App-v to get App-v server lists
syncappvpublishingserver.exe,c:\windows\syswow64\syncappvpublishingserver.exe,Used by App-v to get App-v server lists
bitsadmin.exe,c:\windows\system32\bitsadmin.exe,Used for managing background intelligent transfer
bitsadmin.exe,c:\windows\syswow64\bitsadmin.exe,Used for managing background intelligent transfer
msiexec.exe,c:\windows\system32\msiexec.exe,Used by Windows to execute msi files
msiexec.exe,c:\windows\syswow64\msiexec.exe,Used by Windows to execute msi files
regsvcs.exe,c:\windows\system32\regsvcs.exe,Regsvcs and Regasm are Windows command-line utilities that are used to register .NET Component Object Model (COM) assemblies
regsvcs.exe,c:\windows\syswow64\regsvcs.exe,Regsvcs and Regasm are Windows command-line utilities that are used to register .NET Component Object Model (COM) assemblies
gpscript.exe,c:\windows\system32\gpscript.exe,Used by group policy to process scripts
gpscript.exe,c:\windows\syswow64\gpscript.exe,Used by group policy to process scripts
diskshadow.exe,c:\windows\system32\diskshadow.exe,Diskshadow.exe is a tool that exposes the functionality offered by the volume shadow copy Service (VSS).
diskshadow.exe,c:\windows\syswow64\diskshadow.exe,Diskshadow.exe is a tool that exposes the functionality offered by the volume shadow copy Service (VSS).
ieexec.exe,c:\windows\microsoft.net\framework\v2.0.50727\ieexec.exe,The IEExec.exe application is an undocumented Microsoft .NET Framework application that is included with the .NET Framework. You can use the IEExec.exe application as a host to run other managed applications that you start by using a URL.
ieexec.exe,c:\windows\microsoft.net\framework64\v2.0.50727\ieexec.exe,The IEExec.exe application is an undocumented Microsoft .NET Framework application that is included with the .NET Framework. You can use the IEExec.exe application as a host to run other managed applications that you start by using a URL.
diantz.exe,c:\windows\system32\diantz.exe,Binary that package existing files into a cabinet (.cab) file
diantz.exe,c:\windows\syswow64\diantz.exe,Binary that package existing files into a cabinet (.cab) file
desktopimgdownldr.exe,c:\windows\system32\desktopimgdownldr.exe,Windows binary used to configure lockscreen/desktop image
appinstaller.exe,c:\program files\windowsapps\microsoft.desktopappinstaller_1.11.2521.0_x64__8wekyb3d8bbwe\appinstaller.exe,Tool used for installation of AppX/MSIX applications on Windows 10
sc.exe,c:\windows\system32\sc.exe,Used by Windows to manage services
sc.exe,c:\windows\syswow64\sc.exe,Used by Windows to manage services
replace.exe,c:\windows\system32\replace.exe,Used to replace file with another file
replace.exe,c:\windows\syswow64\replace.exe,Used to replace file with another file
schtasks.exe,c:\windows\system32\schtasks.exe,Schedule periodic tasks
schtasks.exe,c:\windows\syswow64\schtasks.exe,Schedule periodic tasks
microsoft.workflow.compiler.exe,c:\windows\microsoft.net\framework64\v4.0.30319\microsoft.workflow.compiler.exe,A utility included with .NET that is capable of compiling and executing C# or VB.net code.
expand.exe,c:\windows\system32\expand.exe,Binary that expands one or more compressed files
expand.exe,c:\windows\syswow64\expand.exe,Binary that expands one or more compressed files
conhost.exe,c:\windows\system32\conhost.exe,Console Window host
bash.exe,c:\windows\system32\bash.exe,File used by Windows subsystem for Linux
bash.exe,c:\windows\syswow64\bash.exe,File used by Windows subsystem for Linux
pcwrun.exe,c:\windows\system32\pcwrun.exe,Program Compatibility Wizard
fltmc.exe,c:\windows\system32\fltmc.exe,Filter Manager Control Program used by Windows
wmic.exe,c:\windows\system32\wbem\wmic.exe,The WMI command-line (WMIC) utility provides a command-line interface for WMI
wmic.exe,c:\windows\syswow64\wbem\wmic.exe,The WMI command-line (WMIC) utility provides a command-line interface for WMI
workfolders.exe,c:\windows\system32\workfolders.exe,Work Folders
settingsynchost.exe,c:\windows\system32\settingsynchost.exe,Host Process for Setting Synchronization
settingsynchost.exe,c:\windows\syswow64\settingsynchost.exe,Host Process for Setting Synchronization
pktmon.exe,c:\windows\system32\pktmon.exe,Capture Network Packets on the windows 10 with October 2018 Update or later.
pktmon.exe,c:\windows\syswow64\pktmon.exe,Capture Network Packets on the windows 10 with October 2018 Update or later.
aspnet_compiler.exe,c:\windows\microsoft.net\framework\v4.0.30319\aspnet_compiler.exe,ASP.NET Compilation Tool
aspnet_compiler.exe,c:\windows\microsoft.net\framework64\v4.0.30319\aspnet_compiler.exe,ASP.NET Compilation Tool
cscript.exe,c:\windows\system32\cscript.exe,Binary used to execute scripts in Windows
cscript.exe,c:\windows\syswow64\cscript.exe,Binary used to execute scripts in Windows
installutil.exe,c:\windows\microsoft.net\framework\v2.0.50727\installutil.exe,The Installer tool is a command-line utility that allows you to install and uninstall server resources by executing the installer components in specified assemblies
installutil.exe,c:\windows\microsoft.net\framework64\v2.0.50727\installutil.exe,The Installer tool is a command-line utility that allows you to install and uninstall server resources by executing the installer components in specified assemblies
installutil.exe,c:\windows\microsoft.net\framework\v4.0.30319\installutil.exe,The Installer tool is a command-line utility that allows you to install and uninstall server resources by executing the installer components in specified assemblies
installutil.exe,c:\windows\microsoft.net\framework64\v4.0.30319\installutil.exe,The Installer tool is a command-line utility that allows you to install and uninstall server resources by executing the installer components in specified assemblies
esentutl.exe,c:\windows\system32\esentutl.exe,Binary for working with Microsoft Joint Engine Technology (JET) database
esentutl.exe,c:\windows\syswow64\esentutl.exe,Binary for working with Microsoft Joint Engine Technology (JET) database
hh.exe,c:\windows\hh.exe,Binary used for processing chm files in Windows
hh.exe,c:\windows\syswow64\hh.exe,Binary used for processing chm files in Windows
findstr.exe,c:\windows\system32\findstr.exe,
findstr.exe,c:\windows\syswow64\findstr.exe,
verclsid.exe,c:\windows\system32\verclsid.exe,
verclsid.exe,c:\windows\syswow64\verclsid.exe,
certreq.exe,c:\windows\system32\certreq.exe,Used for requesting and managing certificates
certreq.exe,c:\windows\syswow64\certreq.exe,Used for requesting and managing certificates
csc.exe,c:\windows\microsoft.net\framework\v4.0.30319\csc.exe,Binary file used by .NET to compile C# code
csc.exe,c:\windows\microsoft.net\framework64\v4.0.30319\csc.exe,Binary file used by .NET to compile C# code
imewdbld.exe,c:\windows\system32\ime\shared\imewdbld.exe,Microsoft IME Open Extended Dictionary Module
presentationhost.exe,c:\windows\system32\presentationhost.exe,File is used for executing Browser applications
presentationhost.exe,c:\windows\syswow64\presentationhost.exe,File is used for executing Browser applications
shell32.dll,c:\windows\system32\shell32.dll,Windows Shell Common Dll
shell32.dll,c:\windows\syswow64\shell32.dll,Windows Shell Common Dll
zipfldr.dll,c:\windows\system32\zipfldr.dll,Compressed Folder library
zipfldr.dll,c:\windows\syswow64\zipfldr.dll,Compressed Folder library
desk.cpl,c:\windows\system32\desk.cpl,Desktop Settings Control Panel
desk.cpl,c:\windows\syswow64\desk.cpl,Desktop Settings Control Panel
comsvcs.dll,c:\windows\system32\comsvcs.dll,COM+ Services
setupapi.dll,c:\windows\system32\setupapi.dll,Windows Setup Application Programming Interface
setupapi.dll,c:\windows\syswow64\setupapi.dll,Windows Setup Application Programming Interface
mshtml.dll,c:\windows\system32\mshtml.dll,Microsoft HTML Viewer
mshtml.dll,c:\windows\syswow64\mshtml.dll,Microsoft HTML Viewer
advpack.dll,c:\windows\system32\advpack.dll,Utility for installing software and drivers with rundll32.exe
advpack.dll,c:\windows\syswow64\advpack.dll,Utility for installing software and drivers with rundll32.exe
pcwutl.dll,c:\windows\system32\pcwutl.dll,Microsoft HTML Viewer
pcwutl.dll,c:\windows\syswow64\pcwutl.dll,Microsoft HTML Viewer
shdocvw.dll,c:\windows\system32\shdocvw.dll,Shell Doc Object and Control Library.
shdocvw.dll,c:\windows\syswow64\shdocvw.dll,Shell Doc Object and Control Library.
ieframe.dll,c:\windows\system32\ieframe.dll,Internet Browser DLL for translating HTML code.
ieframe.dll,c:\windows\syswow64\ieframe.dll,Internet Browser DLL for translating HTML code.
dfshim.dll,c:\windows\microsoft.net\framework\v2.0.50727\dfsvc.exe,ClickOnce engine in Windows used by .NET
dfshim.dll,c:\windows\microsoft.net\framework64\v2.0.50727\dfsvc.exe,ClickOnce engine in Windows used by .NET
dfshim.dll,c:\windows\microsoft.net\framework\v4.0.30319\dfsvc.exe,ClickOnce engine in Windows used by .NET
dfshim.dll,c:\windows\microsoft.net\framework64\v4.0.30319\dfsvc.exe,ClickOnce engine in Windows used by .NET
url.dll,c:\windows\system32\url.dll,Internet Shortcut Shell Extension DLL.
url.dll,c:\windows\syswow64\url.dll,Internet Shortcut Shell Extension DLL.
ieadvpack.dll,c:\windows\system32\ieadvpack.dll,INF installer for Internet Explorer. Has much of the same functionality as advpack.dll.
ieadvpack.dll,c:\windows\syswow64\ieadvpack.dll,INF installer for Internet Explorer. Has much of the same functionality as advpack.dll.
syssetup.dll,c:\windows\system32\syssetup.dll,Windows NT System Setup
syssetup.dll,c:\windows\syswow64\syssetup.dll,Windows NT System Setup
winrm.vbs,c:\windows\system32\winrm.vbs,Script used for manage Windows RM settings
winrm.vbs,c:\windows\syswow64\winrm.vbs,Script used for manage Windows RM settings
manage-bde.wsf,c:\windows\system32\manage-bde.wsf,Script for managing BitLocker
cl_mutexverifiers.ps1,c:\windows\diagnostics\system\windowsupdate\cl_mutexverifiers.ps1,
cl_mutexverifiers.ps1,c:\windows\diagnostics\system\audio\cl_mutexverifiers.ps1,
cl_mutexverifiers.ps1,c:\windows\diagnostics\system\windowsupdate\cl_mutexverifiers.ps1,
cl_mutexverifiers.ps1,c:\windows\diagnostics\system\video\cl_mutexverifiers.ps1,
cl_mutexverifiers.ps1,c:\windows\diagnostics\system\speech\cl_mutexverifiers.ps1,
pubprn.vbs,c:\windows\system32\printing_admin_scripts\en-us\pubprn.vbs,
pubprn.vbs,c:\windows\syswow64\printing_admin_scripts\en-us\pubprn.vbs,
pester.bat,c:\program files\windowspowershell\modules\pester\3.4.0\bin\pester.bat,Used as part of the Powershell pester
pester.bat,c:\program files\windowspowershell\modules\pester\*\bin\pester.bat,Used as part of the Powershell pester
cl_loadassembly.ps1,c:\windows\diagnostics\system\audio\cl_loadassembly.ps1,PowerShell Diagnostic Script
syncappvpublishingserver.vbs,c:\windows\system32\syncappvpublishingserver.vbs,Script used related to app-v and publishing server
cl_invocation.ps1,c:\windows\diagnostics\system\aero\cl_invocation.ps1,Aero diagnostics script
cl_invocation.ps1,c:\windows\diagnostics\system\audio\cl_invocation.ps1,Aero diagnostics script
cl_invocation.ps1,c:\windows\diagnostics\system\windowsupdate\cl_invocation.ps1,Aero diagnostics script
utilityfunctions.ps1,c:\windows\diagnostics\system\networking\utilityfunctions.ps1,PowerShell Diagnostic Script
coregen.exe,c:\program files\microsoft silverlight\5.1.50918.0\coregen.exe,"Binary coregen.exe (Microsoft CoreCLR Native Image Generator) loads exported function GetCLRRuntimeHost from coreclr.dll or from .DLL in arbitrary path. Coregen is located within ""C:\Program Files (x86)\Microsoft Silverlight\5.1.50918.0\"" or another version of Silverlight. Coregen is signed by Microsoft and bundled with Microsoft Silverlight."
coregen.exe,c:\program files (x86)\microsoft silverlight\5.1.50918.0\coregen.exe,"Binary coregen.exe (Microsoft CoreCLR Native Image Generator) loads exported function GetCLRRuntimeHost from coreclr.dll or from .DLL in arbitrary path. Coregen is located within ""C:\Program Files (x86)\Microsoft Silverlight\5.1.50918.0\"" or another version of Silverlight. Coregen is signed by Microsoft and bundled with Microsoft Silverlight."
fsi.exe,c:\program files\dotnet\sdk\[sdk version]\fsharp\fsi.exe,64-bit FSharp (F#) Interpreter included with Visual Studio and DotNet Core SDK.
fsi.exe,c:\program files (x86)\microsoft visual studio\2019\professional\common7\ide\commonextensions\microsoft\fsharp\fsi.exe,64-bit FSharp (F#) Interpreter included with Visual Studio and DotNet Core SDK.
visualuiaverifynative.exe,c:\program files (x86)\windows kits\10\bin\[sdk version]\arm64\uiaverify\visualuiaverifynative.exe,A Windows SDK binary for manual and automated testing of Microsoft UI Automation implementation and controls.
visualuiaverifynative.exe,c:\program files (x86)\windows kits\10\bin\[sdk version]\x64\uiaverify\visualuiaverifynative.exe,A Windows SDK binary for manual and automated testing of Microsoft UI Automation implementation and controls.
visualuiaverifynative.exe,c:\program files (x86)\windows kits\10\bin\[sdk version]\uiaverify\visualuiaverifynative.exe,A Windows SDK binary for manual and automated testing of Microsoft UI Automation implementation and controls.
ntdsutil.exe,c:\windows\system32\ntdsutil.exe,Command line utility used to export Active Directory.
sqltoolsps.exe,c:\program files (x86)\microsoft sql server\130\tools\binn\sqlps.exe,Tool included with Microsoft SQL that loads SQL Server cmdlts. A replacement for sqlps.exe. Successor to sqlps.exe in SQL Server 2016+.
dump64.exe,c:\program files (x86)\microsoft visual studio\installer\feedback\dump64.exe,Memory dump tool that comes with Microsoft Visual Studio
wsl.exe,c:\windows\system32\wsl.exe,Windows subsystem for Linux executable
csi.exe,c:\program files (x86)\microsoft visual studio\2017\community\msbuild\15.0\bin\roslyn\csi.exe,Command line interface included with Visual Studio.
csi.exe,c:\program files (x86)\microsoft web tools\packages\microsoft.net.compilers.x.y.z\tools\csi.exe,Command line interface included with Visual Studio.
mftrace.exe,c:\program files (x86)\windows kits\10\bin\10.0.16299.0\x86,Trace log generation tool for Media Foundation Tools.
mftrace.exe,c:\program files (x86)\windows kits\10\bin\10.0.16299.0\x64,Trace log generation tool for Media Foundation Tools.
mftrace.exe,c:\program files (x86)\windows kits\10\bin\x86,Trace log generation tool for Media Foundation Tools.
mftrace.exe,c:\program files (x86)\windows kits\10\bin\x64,Trace log generation tool for Media Foundation Tools.
adplus.exe,c:\program files (x86)\windows kits\10\debuggers\x64\adplus.exe,Debugging tool included with Windows Debugging Tools
adplus.exe,c:\program files (x86)\windows kits\10\debuggers\x86\adplus.exe,Debugging tool included with Windows Debugging Tools
excel.exe,c:\program files (x86)\microsoft office 16\clientx86\root\office16\excel.exe,Microsoft Office binary
excel.exe,c:\program files\microsoft office 16\clientx64\root\office16\excel.exe,Microsoft Office binary
excel.exe,c:\program files (x86)\microsoft office\office16\excel.exe,Microsoft Office binary
excel.exe,c:\program files\microsoft office\office16\excel.exe,Microsoft Office binary
excel.exe,c:\program files (x86)\microsoft office 15\clientx86\root\office15\excel.exe,Microsoft Office binary
excel.exe,c:\program files\microsoft office 15\clientx64\root\office15\excel.exe,Microsoft Office binary
excel.exe,c:\program files (x86)\microsoft office\office15\excel.exe,Microsoft Office binary
excel.exe,c:\program files\microsoft office\office15\excel.exe,Microsoft Office binary
excel.exe,c:\program files (x86)\microsoft office 14\clientx86\root\office14\excel.exe,Microsoft Office binary
excel.exe,c:\program files\microsoft office 14\clientx64\root\office14\excel.exe,Microsoft Office binary
excel.exe,c:\program files (x86)\microsoft office\office14\excel.exe,Microsoft Office binary
excel.exe,c:\program files\microsoft office\office14\excel.exe,Microsoft Office binary
excel.exe,c:\program files (x86)\microsoft office\office12\excel.exe,Microsoft Office binary
excel.exe,c:\program files\microsoft office\office12\excel.exe,Microsoft Office binary
excel.exe,c:\program files\microsoft office\office12\excel.exe,Microsoft Office binary
dotnet.exe,c:\program files\dotnet\dotnet.exe,dotnet.exe comes with .NET Framework
sqlps.exe,c:\program files (x86)\microsoft sql server\100\tools\binn\sqlps.exe,"Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons."
sqlps.exe,c:\program files (x86)\microsoft sql server\110\tools\binn\sqlps.exe,"Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons."
sqlps.exe,c:\program files (x86)\microsoft sql server\120\tools\binn\sqlps.exe,"Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons."
sqlps.exe,c:\program files (x86)\microsoft sql server\130\tools\binn\sqlps.exe,"Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons."
sqlps.exe,c:\program files (x86)\microsoft sql server\150\tools\binn\sqlps.exe,"Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons."
acccheckconsole.exe,c:\program files (x86)\windows kits\10\bin\10.0.22000.0\x86\accchecker\acccheckconsole.exe,Verifies UI accessibility requirements
acccheckconsole.exe,c:\program files (x86)\windows kits\10\bin\10.0.22000.0\x64\accchecker\acccheckconsole.exe,Verifies UI accessibility requirements
acccheckconsole.exe,c:\program files (x86)\windows kits\10\bin\10.0.22000.0\arm\accchecker\acccheckconsole.exe,Verifies UI accessibility requirements
acccheckconsole.exe,c:\program files (x86)\windows kits\10\bin\10.0.22000.0\arm64\accchecker\acccheckconsole.exe,Verifies UI accessibility requirements
powerpnt.exe,c:\program files (x86)\microsoft office 16\clientx86\root\office16\powerpnt.exe,Microsoft Office binary.
powerpnt.exe,c:\program files\microsoft office 16\clientx64\root\office16\powerpnt.exe,Microsoft Office binary.
powerpnt.exe,c:\program files (x86)\microsoft office\office16\powerpnt.exe,Microsoft Office binary.
powerpnt.exe,c:\program files\microsoft office\office16\powerpnt.exe,Microsoft Office binary.
powerpnt.exe,c:\program files (x86)\microsoft office 15\clientx86\root\office15\powerpnt.exe,Microsoft Office binary.
powerpnt.exe,c:\program files\microsoft office 15\clientx64\root\office15\powerpnt.exe,Microsoft Office binary.
powerpnt.exe,c:\program files (x86)\microsoft office\office15\powerpnt.exe,Microsoft Office binary.
powerpnt.exe,c:\program files\microsoft office\office15\powerpnt.exe,Microsoft Office binary.
powerpnt.exe,c:\program files (x86)\microsoft office 14\clientx86\root\office14\powerpnt.exe,Microsoft Office binary.
powerpnt.exe,c:\program files\microsoft office 14\clientx64\root\office14\powerpnt.exe,Microsoft Office binary.
powerpnt.exe,c:\program files (x86)\microsoft office\office14\powerpnt.exe,Microsoft Office binary.
powerpnt.exe,c:\program files\microsoft office\office14\powerpnt.exe,Microsoft Office binary.
powerpnt.exe,c:\program files (x86)\microsoft office\office12\powerpnt.exe,Microsoft Office binary.
powerpnt.exe,c:\program files\microsoft office\office12\powerpnt.exe,Microsoft Office binary.
powerpnt.exe,c:\program files\microsoft office\office12\powerpnt.exe,Microsoft Office binary.
sqldumper.exe,c:\program files\microsoft sql server\90\shared\sqldumper.exe,Debugging utility included with Microsoft SQL.
sqldumper.exe,c:\program files (x86)\microsoft office\root\vfs\programfilesx86\microsoft analysis\as oledb\140\sqldumper.exe,Debugging utility included with Microsoft SQL.
remote.exe,c:\program files (x86)\windows kits\10\debuggers\x64\remote.exe,Debugging tool included with Windows Debugging Tools
remote.exe,c:\program files (x86)\windows kits\10\debuggers\x86\remote.exe,Debugging tool included with Windows Debugging Tools
appvlp.exe,c:\program files\microsoft office\root\client\appvlp.exe,Application Virtualization Utility Included with Microsoft Office 2016
appvlp.exe,c:\program files (x86)\microsoft office\root\client\appvlp.exe,Application Virtualization Utility Included with Microsoft Office 2016
agentexecutor.exe,c:\program files (x86)\microsoft intune management extension,Intune Management Extension included on Intune Managed Devices
dxcap.exe,c:\windows\system32\dxcap.exe,DirectX diagnostics/debugger included with Visual Studio.
dxcap.exe,c:\windows\syswow64\dxcap.exe,DirectX diagnostics/debugger included with Visual Studio.
cdb.exe,c:\program files (x86)\windows kits\10\debuggers\x64\cdb.exe,Debugging tool included with Windows Debugging Tools.
cdb.exe,c:\program files (x86)\windows kits\10\debuggers\x86\cdb.exe,Debugging tool included with Windows Debugging Tools.
defaultpack.exe,c:\program files (x86)\microsoft\defaultpack\,This binary can be downloaded along side multiple software downloads on the microsoft website. It gets downloaded when the user forgets to uncheck the option to set Bing as the default search provider.
devtoolslauncher.exe,c:\windows\system32\devtoolslauncher.exe,Binary will execute specified binary. Part of VS/VScode installation.
vsiisexelauncher.exe,c:\program files (x86)\microsoft visual studio\2019\community\common7\ide\extensions\microsoft\web tools\projectsystem\vsiisexelauncher.exe,Binary will execute specified binary. Part of VS/VScode installation.
winword.exe,c:\program files\microsoft office\root\office16\winword.exe,Microsoft Office binary
winword.exe,c:\program files (x86)\microsoft office 16\clientx86\root\office16\winword.exe,Microsoft Office binary
winword.exe,c:\program files\microsoft office 16\clientx64\root\office16\winword.exe,Microsoft Office binary
winword.exe,c:\program files (x86)\microsoft office\office16\winword.exe,Microsoft Office binary
winword.exe,c:\program files\microsoft office\office16\winword.exe,Microsoft Office binary
winword.exe,c:\program files (x86)\microsoft office 15\clientx86\root\office15\winword.exe,Microsoft Office binary
winword.exe,c:\program files\microsoft office 15\clientx64\root\office15\winword.exe,Microsoft Office binary
winword.exe,c:\program files (x86)\microsoft office\office15\winword.exe,Microsoft Office binary
winword.exe,c:\program files\microsoft office\office15\winword.exe,Microsoft Office binary
winword.exe,c:\program files (x86)\microsoft office 14\clientx86\root\office14\winword.exe,Microsoft Office binary
winword.exe,c:\program files\microsoft office 14\clientx64\root\office14\winword.exe,Microsoft Office binary
winword.exe,c:\program files (x86)\microsoft office\office14\winword.exe,Microsoft Office binary
winword.exe,c:\program files\microsoft office\office14\winword.exe,Microsoft Office binary
winword.exe,c:\program files (x86)\microsoft office\office12\winword.exe,Microsoft Office binary
winword.exe,c:\program files\microsoft office\office12\winword.exe,Microsoft Office binary
winword.exe,c:\program files\microsoft office\office12\winword.exe,Microsoft Office binary
fsianycpu.exe,c:\program files (x86)\microsoft visual studio\2019\professional\common7\ide\commonextensions\microsoft\fsharp\fsianycpu.exe,32/64-bit FSharp (F#) Interpreter included with Visual Studio.
vsjitdebugger.exe,c:\windows\system32\vsjitdebugger.exe,Just-In-Time (JIT) debugger included with Visual Studio
wfc.exe,c:\program files (x86)\microsoft sdks\windows\v10.0a\bin\netfx 4.8 tools\wfc.exe,The Workflow Command-line Compiler tool is included with the Windows Software Development Kit (SDK).
msdeploy.exe,c:\program files (x86)\iis\microsoft web deploy v3\msdeploy.exe,Microsoft tool used to deploy Web Applications.
eventvwr.exe,c:\windows\system32,Displays Windows Event Logs in a GUI window.
eventvwr.exe,c:\windows\syswow64,Displays Windows Event Logs in a GUI window.
rasautou.exe,c:\windows\system32,Windows Remote Access Dialer
regedit.exe,c:\windows\system32,Used by Windows to manipulate registry
regedit.exe,c:\windows\syswow64,Used by Windows to manipulate registry
regsvr32.exe,c:\windows\system32,Used by Windows to register dlls
regsvr32.exe,c:\windows\syswow64,Used by Windows to register dlls
control.exe,c:\windows\system32,Binary used to launch controlpanel items in Windows
control.exe,c:\windows\syswow64,Binary used to launch controlpanel items in Windows
configsecuritypolicy.exe,c:\programdata\microsoft\windows defender\platform\4.18.2008.9-0,Binary part of Windows Defender. Used to manage settings in Windows Defender. you can configure different pilot collections for each of the co-management workloads. Being able to use different pilot collections allows you to take a more granular approach when shifting workloads.
scriptrunner.exe,c:\windows\system32,Execute binary through proxy binary to evade defensive counter measures
scriptrunner.exe,c:\windows\syswow64,Execute binary through proxy binary to evade defensive counter measures
offlinescannershell.exe,c:\program files\windows defender\offline,Windows Defender Offline Shell
atbroker.exe,c:\windows\system32,Helper binary for Assistive Technology (AT)
atbroker.exe,c:\windows\syswow64,Helper binary for Assistive Technology (AT)
mmc.exe,c:\windows\system32,Load snap-ins to locally and remotely manage Windows systems
mmc.exe,c:\windows\syswow64,Load snap-ins to locally and remotely manage Windows systems
mavinject.exe,c:\windows\system32,Used by App-v in Windows
mavinject.exe,c:\windows\syswow64,Used by App-v in Windows
ftp.exe,c:\windows\system32,A binary designed for connecting to FTP servers
ftp.exe,c:\windows\syswow64,A binary designed for connecting to FTP servers
ttdinject.exe,c:\windows\system32,Used by Windows 1809 and newer to Debug Time Travel (Underlying call of tttracer.exe)
ttdinject.exe,c:\windows\syswow64,Used by Windows 1809 and newer to Debug Time Travel (Underlying call of tttracer.exe)
certoc.exe,c:\windows\system32,Used for installing certificates
certoc.exe,c:\windows\syswow64,Used for installing certificates
at.exe,c:\windows\system32,Schedule periodic tasks
at.exe,c:\windows\syswow64,Schedule periodic tasks
netsh.exe,c:\windows\system32,Netsh is a Windows tool used to manipulate network interface settings.
netsh.exe,c:\windows\syswow64,Netsh is a Windows tool used to manipulate network interface settings.
pnputil.exe,c:\windows\system32,Used for installing drivers
ie4uinit.exe,c:\windows\system32,Executes commands from a specially prepared ie4uinit.inf file.
ie4uinit.exe,c:\windows\syswow64,Executes commands from a specially prepared ie4uinit.inf file.
infdefaultinstall.exe,c:\windows\system32,Binary used to perform installation based on content inside inf files
infdefaultinstall.exe,c:\windows\syswow64,Binary used to perform installation based on content inside inf files
forfiles.exe,c:\windows\system32,Selects and executes a command on a file or set of files. This command is useful for batch processing.
forfiles.exe,c:\windows\syswow64,Selects and executes a command on a file or set of files. This command is useful for batch processing.
register-cimprovider.exe,c:\windows\system32,Used to register new wmi providers
register-cimprovider.exe,c:\windows\syswow64,Used to register new wmi providers
tttracer.exe,c:\windows\system32,Used by Windows 1809 and newer to Debug Time Travel
tttracer.exe,c:\windows\syswow64,Used by Windows 1809 and newer to Debug Time Travel
xwizard.exe,c:\windows\system32,Execute custom class that has been added to the registry or download a file with Xwizard.exe
xwizard.exe,c:\windows\syswow64,Execute custom class that has been added to the registry or download a file with Xwizard.exe
pcalua.exe,c:\windows\system32,Program Compatibility Assistant
print.exe,c:\windows\system32,Used by Windows to send files to the printer
print.exe,c:\windows\syswow64,Used by Windows to send files to the printer
runscripthelper.exe,c:\windows\winsxs\amd64_microsoft-windows-u..ed-telemetry-client_31bf3856ad364e35_10.0.16299.15_none_c2df1bba78111118,Execute target PowerShell script
runscripthelper.exe,c:\windows\winsxs\amd64_microsoft-windows-u..ed-telemetry-client_31bf3856ad364e35_10.0.16299.192_none_ad4699b571e00c4a,Execute target PowerShell script
regasm.exe,c:\windows\microsoft.net\framework\v2.0.50727,Part of .NET
regasm.exe,c:\windows\microsoft.net\framework64\v2.0.50727,Part of .NET
regasm.exe,c:\windows\microsoft.net\framework\v4.0.30319,Part of .NET
regasm.exe,c:\windows\microsoft.net\framework64\v4.0.30319,Part of .NET
cmd.exe,c:\windows\system32,The command-line interpreter in Windows
cmd.exe,c:\windows\syswow64,The command-line interpreter in Windows
msbuild.exe,c:\windows\microsoft.net\framework\v2.0.50727,Used to compile and execute code
msbuild.exe,c:\windows\microsoft.net\framework64\v2.0.50727,Used to compile and execute code
msbuild.exe,c:\windows\microsoft.net\framework\v3.5,Used to compile and execute code
msbuild.exe,c:\windows\microsoft.net\framework64\v3.5,Used to compile and execute code
msbuild.exe,c:\windows\microsoft.net\framework\v4.0.30319,Used to compile and execute code
msbuild.exe,c:\windows\microsoft.net\framework64\v4.0.30319,Used to compile and execute code
msbuild.exe,c:\program files (x86)\msbuild\14.0\bin,Used to compile and execute code
certutil.exe,c:\windows\system32,Windows binary used for handling certificates
certutil.exe,c:\windows\syswow64,Windows binary used for handling certificates
vbc.exe,c:\windows\microsoft.net\framework64\v4.0.30319,Binary file used for compile vbs code
vbc.exe,c:\windows\microsoft.net\framework64\v3.5,Binary file used for compile vbs code
psr.exe,c:\windows\system32,"Windows Problem Steps Recorder, used to record screen and clicks."
psr.exe,c:\windows\syswow64,"Windows Problem Steps Recorder, used to record screen and clicks."
extexport.exe,c:\program files\internet explorer,Load a DLL located in the c:\test folder with a specific name.
extexport.exe,c:\program files (x86)\internet explorer,Load a DLL located in the c:\test folder with a specific name.
rpcping.exe,c:\windows\system32,Used to verify rpc connection
rpcping.exe,c:\windows\syswow64,Used to verify rpc connection
msdt.exe,c:\windows\system32,Microsoft diagnostics tool
msdt.exe,c:\windows\syswow64,Microsoft diagnostics tool
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\64kb6472.inf_amd64_3daef03bbe98572b,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_0e9c57ae3396e055,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_209bd95d56b1ac2d,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_3fa2a843f8b7f16d,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_85c860f05274baa0,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_f7412e3e3404de80,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_feb9f1cf05b0de58,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_component.inf_amd64_0219cc1c7085a93f,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_component.inf_amd64_df4f60b1cae9b14a,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_16eb18b0e2526e57,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_1c77f1231c19bc72,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_31c60cc38cfcca28,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_82f69cea8b2d928f,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_b4d94f3e41ceb839,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_0606619cc97463de,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_0e95edab338ad669,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_22aac1442d387216,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_2461d914696db722,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_29d727269a34edf5,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_2caf76dbce56546d,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_353320edb98da643,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_4ea0ed0af1507894,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_56a48f4f1c2da7a7,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_64f23fdadb76a511,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_668dd0c6d3f9fa0e,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_6be8e5b7f731a6e5,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_6dad7e4e9a8fa889,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_6df442103a1937a4,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_767e7683f9ad126c,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_8644298f665a12c4,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_868acf86149aef5d,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_92cf9d9d84f1d3db,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_93239c65f222d453,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_9de8154b682af864,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_a7428663aca90897,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_ad7cb5e55a410add,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_afbf41cf8ab202d7,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_d193c96475eaa96e,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_db953c52208ada71,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_e7523682cc7528cc,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_e9f341319ca84274,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_f3a64c75ee4defb7,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_f51939e52b944f4b,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch_comp.inf_amd64_4938423c9b9639d7,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch_comp.inf_amd64_c8e108d4a62c59d5,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\cui_dch_comp.inf_amd64_deecec7d232ced2b,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_01ee1299f4982efe,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_02edfc87000937e4,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_0541b698fc6e40b0,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_0707757077710fff,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_0b3e3ed3ace9602a,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_0cff362f9dff4228,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_16ed7d82b93e4f68,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_1a33d2f73651d989,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_1aca2a92a37fce23,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_1af2dd3e4df5fd61,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_1d571527c7083952,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_23f7302c2b9ee813,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_24de78387e6208e4,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_250db833a1cd577e,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_25e7c5a58c052bc5,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_28d80681d3523b1c,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_2dda3b1147a3a572,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_31ba00ea6900d67d,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_329877a66f240808,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_42af9f4718aa1395,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_4645af5c659ae51a,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_48c2e68e54c92258,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_48e7e903a369eae2,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_491d20003583dabe,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_4b34c18659561116,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_51ce968bf19942c2,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_555cfc07a674ecdd,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_561bd21d54545ed3,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_579a75f602cc2dce,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_57f66a4f0a97f1a3,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_587befb80671fb38,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_62f096fe77e085c0,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_6ae0ddbb4a38e23c,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_6bb02522ea3fdb0d,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_6d34ac0763025a06,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_712b6a0adbaabc0a,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_78b09d9681a2400f,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_842874489af34daa,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_88084eb1fe7cebc3,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_89033455cb08186f,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_8a9535cd18c90bc3,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_8c1fc948b5a01c52,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_9088b61921a6ff9f,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_90f68cd0dc48b625,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_95cb371d046d4b4c,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_a58de0cf5f3e9dca,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_abe9d37302f8b1ae,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_acb3edda7b82982f,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_aebc5a8535dd3184,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_b5d4c82c67b39358,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_b846bbf1e81ea3cf,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_babb2e8b8072ff3b,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_bc75cebf5edbbc50,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_be91293cf20d4372,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c11f4d5f0bc4c592,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c4e5173126d31cf0,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c4f600ffe34acc7b,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c8634ed19e331cda,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c9081e50bcffa972,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_ceddadac8a2b489e,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_d4406f0ad6ec2581,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_d5877a2e0e6374b6,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_d8ca5f86add535ef,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_e8abe176c7b553b5,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_eabb3ac2c517211f,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_f8d8be8fea71e1a0,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_fe5e116bb07c0629,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_fe73d2ebaa05fb95,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\igdlh64_kbl_kit127397.inf_amd64_e1da8ee9e92ccadb,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\k127153.inf_amd64_364f43f2a27f7bd7,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\k127153.inf_amd64_3f3936d8dec668b8,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\k127793.inf_amd64_3ab7883eddccbf0f,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki129523.inf_amd64_32947eecf8f3e231,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki126950.inf_amd64_fa7f56314967630d,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki126951.inf_amd64_94804e3918169543,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki126973.inf_amd64_06dde156632145e3,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki126974.inf_amd64_9168fc04b8275db9,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127005.inf_amd64_753576c4406c1193,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127018.inf_amd64_0f67ff47e9e30716,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127021.inf_amd64_0d68af55c12c7c17,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127171.inf_amd64_368f8c7337214025,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127176.inf_amd64_86c658cabfb17c9c,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127390.inf_amd64_e1ccb879ece8f084,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127678.inf_amd64_8427d3a09f47dfc1,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127727.inf_amd64_cf8e31692f82192e,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127807.inf_amd64_fc915899816dbc5d,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki127850.inf_amd64_6ad8d99023b59fd5,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki128602.inf_amd64_6ff790822fd674ab,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki128916.inf_amd64_3509e1eb83b83cfb,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki129407.inf_amd64_f26f36ac54ce3076,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki129633.inf_amd64_d9b8af875f664a8c,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki129866.inf_amd64_e7cdca9882c16f55,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki130274.inf_amd64_bafd2440fa1ffdd6,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki130350.inf_amd64_696b7c6764071b63,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki130409.inf_amd64_0d8d61270dfb4560,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki130471.inf_amd64_26ad6921447aa568,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki130624.inf_amd64_d85487143eec5e1a,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki130825.inf_amd64_ee3ba427c553f15f,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki130871.inf_amd64_382f7c369d4bf777,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki131064.inf_amd64_5d13f27a9a9843fa,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki131176.inf_amd64_fb4fe914575fdd15,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki131191.inf_amd64_d668106cb6f2eae0,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki131622.inf_amd64_0058d71ace34db73,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki132032.inf_amd64_f29660d80998e019,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki132337.inf_amd64_223d6831ffa64ab1,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki132535.inf_amd64_7875dff189ab2fa2,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki132544.inf_amd64_b8c1f31373153db4,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki132574.inf_amd64_54c9b905b975ee55,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\ki132869.inf_amd64_052eb72d070df60f,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
gfxdownloadwrapper.exe,c:\windows\system32\driverstore\filerepository\kit126731.inf_amd64_1905c9d5f38631d9,"Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path."
dnscmd.exe,c:\windows\system32,A command-line interface for managing DNS servers
dnscmd.exe,c:\windows\syswow64,A command-line interface for managing DNS servers
wab.exe,c:\program files\windows mail,Windows address book manager
wab.exe,c:\program files (x86)\windows mail,Windows address book manager
msconfig.exe,c:\windows\system32,"MSConfig is a troubleshooting tool which is used to temporarily disable or re-enable software, device drivers or Windows services that run during startup process to help the user determine the cause of a problem with Windows"
wscript.exe,c:\windows\system32,Used by Windows to execute scripts
wscript.exe,c:\windows\syswow64,Used by Windows to execute scripts
makecab.exe,c:\windows\system32,Binary to package existing files into a cabinet (.cab) file
makecab.exe,c:\windows\syswow64,Binary to package existing files into a cabinet (.cab) file
datasvcutil.exe,c:\windows\microsoft.net\framework64\v3.5,DataSvcUtil.exe is a command-line tool provided by WCF Data Services that consumes an Open Data Protocol (OData) feed and generates the client data service classes that are needed to access a data service from a .NET Framework client application.
cmdl32.exe,c:\windows\system32,Microsoft Connection Manager Auto-Download
cmdl32.exe,c:\windows\syswow64,Microsoft Connection Manager Auto-Download
mshta.exe,c:\windows\system32,Used by Windows to execute html applications. (.hta)
mshta.exe,c:\windows\syswow64,Used by Windows to execute html applications. (.hta)
cmdkey.exe,c:\windows\system32,"creates, lists, and deletes stored user names and passwords or credentials."
cmdkey.exe,c:\windows\syswow64,"creates, lists, and deletes stored user names and passwords or credentials."
ilasm.exe,c:\windows\microsoft.net\framework\v4.0.30319,used for compile c# code into dll or exe.
ilasm.exe,c:\windows\microsoft.net\framework64\v4.0.30319,used for compile c# code into dll or exe.
rdrleakdiag.exe,c:\windows\system32,Microsoft Windows resource leak diagnostic tool
rdrleakdiag.exe,c:\windows\syswow64,Microsoft Windows resource leak diagnostic tool
mpcmdrun.exe,c:\programdata\microsoft\windows defender\platform\4.18.2008.4-0,Binary part of Windows Defender. Used to manage settings in Windows Defender
mpcmdrun.exe,c:\programdata\microsoft\windows defender\platform\4.18.2008.7-0,Binary part of Windows Defender. Used to manage settings in Windows Defender
mpcmdrun.exe,c:\programdata\microsoft\windows defender\platform\4.18.2008.9-0,Binary part of Windows Defender. Used to manage settings in Windows Defender
jsc.exe,c:\windows\microsoft.net\framework\v4.0.30319,Binary file used by .NET to compile javascript code to .exe or .dll format
jsc.exe,c:\windows\microsoft.net\framework64\v4.0.30319,Binary file used by .NET to compile javascript code to .exe or .dll format
jsc.exe,c:\windows\microsoft.net\framework\v2.0.50727,Binary file used by .NET to compile javascript code to .exe or .dll format
jsc.exe,c:\windows\microsoft.net\framework64\v2.0.50727,Binary file used by .NET to compile javascript code to .exe or .dll format
cmstp.exe,c:\windows\system32,Installs or removes a Connection Manager service profile.
cmstp.exe,c:\windows\syswow64,Installs or removes a Connection Manager service profile.
stordiag.exe,c:\windows\system32,Storage diagnostic tool
stordiag.exe,c:\windows\syswow64,Storage diagnostic tool
odbcconf.exe,c:\windows\system32,Used in Windows for managing ODBC connections
odbcconf.exe,c:\windows\syswow64,Used in Windows for managing ODBC connections
wlrmdr.exe,c:\windows\system32,Windows Logon Reminder executable
printbrm.exe,c:\windows\system32\spool\tools,Printer Migration Command-Line Tool
dfsvc.exe,c:\windows\microsoft.net\framework\v2.0.50727,ClickOnce engine in Windows used by .NET
dfsvc.exe,c:\windows\microsoft.net\framework64\v2.0.50727,ClickOnce engine in Windows used by .NET
dfsvc.exe,c:\windows\microsoft.net\framework\v4.0.30319,ClickOnce engine in Windows used by .NET
dfsvc.exe,c:\windows\microsoft.net\framework64\v4.0.30319,ClickOnce engine in Windows used by .NET
extrac32.exe,c:\windows\system32,"Extract to ADS, copy or overwrite a file with Extrac32.exe"
extrac32.exe,c:\windows\syswow64,"Extract to ADS, copy or overwrite a file with Extrac32.exe"
rundll32.exe,c:\windows\system32,Used by Windows to execute dll files
rundll32.exe,c:\windows\syswow64,Used by Windows to execute dll files
runonce.exe,c:\windows\system32,Executes a Run Once Task that has been configured in the registry
runonce.exe,c:\windows\syswow64,Executes a Run Once Task that has been configured in the registry
explorer.exe,c:\windows,Binary used for managing files and system components within Windows
explorer.exe,c:\windows\syswow64,Binary used for managing files and system components within Windows
wuauclt.exe,c:\windows\system32,Windows Update Client
wsreset.exe,c:\windows\system32,Used to reset Windows Store settings according to its manifest file
finger.exe,c:\windows\system32,Displays information about a user or users on a specified remote computer that is running the Finger service or daemon
finger.exe,c:\windows\syswow64,Displays information about a user or users on a specified remote computer that is running the Finger service or daemon
regini.exe,c:\windows\system32,Used to manipulate the registry
regini.exe,c:\windows\syswow64,Used to manipulate the registry
reg.exe,c:\windows\system32,Used to manipulate the registry
reg.exe,c:\windows\syswow64,Used to manipulate the registry
syncappvpublishingserver.exe,c:\windows\system32,Used by App-v to get App-v server lists
syncappvpublishingserver.exe,c:\windows\syswow64,Used by App-v to get App-v server lists
bitsadmin.exe,c:\windows\system32,Used for managing background intelligent transfer
bitsadmin.exe,c:\windows\syswow64,Used for managing background intelligent transfer
msiexec.exe,c:\windows\system32,Used by Windows to execute msi files
msiexec.exe,c:\windows\syswow64,Used by Windows to execute msi files
regsvcs.exe,c:\windows\system32,Regsvcs and Regasm are Windows command-line utilities that are used to register .NET Component Object Model (COM) assemblies
regsvcs.exe,c:\windows\syswow64,Regsvcs and Regasm are Windows command-line utilities that are used to register .NET Component Object Model (COM) assemblies
gpscript.exe,c:\windows\system32,Used by group policy to process scripts
gpscript.exe,c:\windows\syswow64,Used by group policy to process scripts
diskshadow.exe,c:\windows\system32,Diskshadow.exe is a tool that exposes the functionality offered by the volume shadow copy Service (VSS).
diskshadow.exe,c:\windows\syswow64,Diskshadow.exe is a tool that exposes the functionality offered by the volume shadow copy Service (VSS).
ieexec.exe,c:\windows\microsoft.net\framework\v2.0.50727,The IEExec.exe application is an undocumented Microsoft .NET Framework application that is included with the .NET Framework. You can use the IEExec.exe application as a host to run other managed applications that you start by using a URL.
ieexec.exe,c:\windows\microsoft.net\framework64\v2.0.50727,The IEExec.exe application is an undocumented Microsoft .NET Framework application that is included with the .NET Framework. You can use the IEExec.exe application as a host to run other managed applications that you start by using a URL.
diantz.exe,c:\windows\system32,Binary that package existing files into a cabinet (.cab) file
diantz.exe,c:\windows\syswow64,Binary that package existing files into a cabinet (.cab) file
desktopimgdownldr.exe,c:\windows\system32,Windows binary used to configure lockscreen/desktop image
appinstaller.exe,c:\program files\windowsapps\microsoft.desktopappinstaller_1.11.2521.0_x64__8wekyb3d8bbwe,Tool used for installation of AppX/MSIX applications on Windows 10
sc.exe,c:\windows\system32,Used by Windows to manage services
sc.exe,c:\windows\syswow64,Used by Windows to manage services
replace.exe,c:\windows\system32,Used to replace file with another file
replace.exe,c:\windows\syswow64,Used to replace file with another file
schtasks.exe,c:\windows\system32,Schedule periodic tasks
schtasks.exe,c:\windows\syswow64,Schedule periodic tasks
microsoft.workflow.compiler.exe,c:\windows\microsoft.net\framework64\v4.0.30319,A utility included with .NET that is capable of compiling and executing C# or VB.net code.
expand.exe,c:\windows\system32,Binary that expands one or more compressed files
expand.exe,c:\windows\syswow64,Binary that expands one or more compressed files
conhost.exe,c:\windows\system32,Console Window host
bash.exe,c:\windows\system32,File used by Windows subsystem for Linux
bash.exe,c:\windows\syswow64,File used by Windows subsystem for Linux
pcwrun.exe,c:\windows\system32,Program Compatibility Wizard
fltmc.exe,c:\windows\system32,Filter Manager Control Program used by Windows
wmic.exe,c:\windows\system32\wbem,The WMI command-line (WMIC) utility provides a command-line interface for WMI
wmic.exe,c:\windows\syswow64\wbem,The WMI command-line (WMIC) utility provides a command-line interface for WMI
workfolders.exe,c:\windows\system32,Work Folders
settingsynchost.exe,c:\windows\system32,Host Process for Setting Synchronization
settingsynchost.exe,c:\windows\syswow64,Host Process for Setting Synchronization
pktmon.exe,c:\windows\system32,Capture Network Packets on the windows 10 with October 2018 Update or later.
pktmon.exe,c:\windows\syswow64,Capture Network Packets on the windows 10 with October 2018 Update or later.
aspnet_compiler.exe,c:\windows\microsoft.net\framework\v4.0.30319,ASP.NET Compilation Tool
aspnet_compiler.exe,c:\windows\microsoft.net\framework64\v4.0.30319,ASP.NET Compilation Tool
cscript.exe,c:\windows\system32,Binary used to execute scripts in Windows
cscript.exe,c:\windows\syswow64,Binary used to execute scripts in Windows
installutil.exe,c:\windows\microsoft.net\framework\v2.0.50727,The Installer tool is a command-line utility that allows you to install and uninstall server resources by executing the installer components in specified assemblies
installutil.exe,c:\windows\microsoft.net\framework64\v2.0.50727,The Installer tool is a command-line utility that allows you to install and uninstall server resources by executing the installer components in specified assemblies
installutil.exe,c:\windows\microsoft.net\framework\v4.0.30319,The Installer tool is a command-line utility that allows you to install and uninstall server resources by executing the installer components in specified assemblies
installutil.exe,c:\windows\microsoft.net\framework64\v4.0.30319,The Installer tool is a command-line utility that allows you to install and uninstall server resources by executing the installer components in specified assemblies
esentutl.exe,c:\windows\system32,Binary for working with Microsoft Joint Engine Technology (JET) database
esentutl.exe,c:\windows\syswow64,Binary for working with Microsoft Joint Engine Technology (JET) database
hh.exe,c:\windows,Binary used for processing chm files in Windows
hh.exe,c:\windows\syswow64,Binary used for processing chm files in Windows
findstr.exe,c:\windows\system32,"Write to ADS, discover, or download files with Findstr.exe"
findstr.exe,c:\windows\syswow64,"Write to ADS, discover, or download files with Findstr.exe"
verclsid.exe,c:\windows\system32,Used to verify a COM object before it is instantiated by Windows Explorer
verclsid.exe,c:\windows\syswow64,Used to verify a COM object before it is instantiated by Windows Explorer
certreq.exe,c:\windows\system32,Used for requesting and managing certificates
certreq.exe,c:\windows\syswow64,Used for requesting and managing certificates
csc.exe,c:\windows\microsoft.net\framework\v4.0.30319,Binary file used by .NET to compile C# code
csc.exe,c:\windows\microsoft.net\framework64\v4.0.30319,Binary file used by .NET to compile C# code
imewdbld.exe,c:\windows\system32\ime\shared,Microsoft IME Open Extended Dictionary Module
presentationhost.exe,c:\windows\system32,File is used for executing Browser applications
presentationhost.exe,c:\windows\syswow64,File is used for executing Browser applications
shell32.dll,c:\windows\system32,Windows Shell Common Dll
shell32.dll,c:\windows\syswow64,Windows Shell Common Dll
zipfldr.dll,c:\windows\system32,Compressed Folder library
zipfldr.dll,c:\windows\syswow64,Compressed Folder library
desk.cpl,c:\windows\system32,Desktop Settings Control Panel
desk.cpl,c:\windows\syswow64,Desktop Settings Control Panel
comsvcs.dll,c:\windows\system32,COM+ Services
setupapi.dll,c:\windows\system32,Windows Setup Application Programming Interface
setupapi.dll,c:\windows\syswow64,Windows Setup Application Programming Interface
mshtml.dll,c:\windows\system32,Microsoft HTML Viewer
mshtml.dll,c:\windows\syswow64,Microsoft HTML Viewer
advpack.dll,c:\windows\system32,Utility for installing software and drivers with rundll32.exe
advpack.dll,c:\windows\syswow64,Utility for installing software and drivers with rundll32.exe
pcwutl.dll,c:\windows\system32,Microsoft HTML Viewer
pcwutl.dll,c:\windows\syswow64,Microsoft HTML Viewer
shdocvw.dll,c:\windows\system32,Shell Doc Object and Control Library.
shdocvw.dll,c:\windows\syswow64,Shell Doc Object and Control Library.
ieframe.dll,c:\windows\system32,Internet Browser DLL for translating HTML code.
ieframe.dll,c:\windows\syswow64,Internet Browser DLL for translating HTML code.
dfshim.dll,c:\windows\microsoft.net\framework\v2.0.50727,ClickOnce engine in Windows used by .NET
dfshim.dll,c:\windows\microsoft.net\framework64\v2.0.50727,ClickOnce engine in Windows used by .NET
dfshim.dll,c:\windows\microsoft.net\framework\v4.0.30319,ClickOnce engine in Windows used by .NET
dfshim.dll,c:\windows\microsoft.net\framework64\v4.0.30319,ClickOnce engine in Windows used by .NET
url.dll,c:\windows\system32,Internet Shortcut Shell Extension DLL.
url.dll,c:\windows\syswow64,Internet Shortcut Shell Extension DLL.
ieadvpack.dll,c:\windows\system32,INF installer for Internet Explorer. Has much of the same functionality as advpack.dll.
ieadvpack.dll,c:\windows\syswow64,INF installer for Internet Explorer. Has much of the same functionality as advpack.dll.
syssetup.dll,c:\windows\system32,Windows NT System Setup
syssetup.dll,c:\windows\syswow64,Windows NT System Setup
winrm.vbs,c:\windows\system32,Script used for manage Windows RM settings
winrm.vbs,c:\windows\syswow64,Script used for manage Windows RM settings
manage-bde.wsf,c:\windows\system32,Script for managing BitLocker
cl_mutexverifiers.ps1,c:\windows\diagnostics\system\windowsupdate,Proxy execution with CL_Mutexverifiers.ps1
cl_mutexverifiers.ps1,c:\windows\diagnostics\system\audio,Proxy execution with CL_Mutexverifiers.ps1
cl_mutexverifiers.ps1,c:\windows\diagnostics\system\video,Proxy execution with CL_Mutexverifiers.ps1
cl_mutexverifiers.ps1,c:\windows\diagnostics\system\speech,Proxy execution with CL_Mutexverifiers.ps1
pubprn.vbs,c:\windows\system32\printing_admin_scripts\en-us,Proxy execution with Pubprn.vbs
pubprn.vbs,c:\windows\syswow64\printing_admin_scripts\en-us,Proxy execution with Pubprn.vbs
pester.bat,c:\program files\windowspowershell\modules\pester\3.4.0\bin,Used as part of the Powershell pester
pester.bat,c:\program files\windowspowershell\modules\pester\*\bin,Used as part of the Powershell pester
cl_loadassembly.ps1,c:\windows\diagnostics\system\audio,PowerShell Diagnostic Script
syncappvpublishingserver.vbs,c:\windows\system32,Script used related to app-v and publishing server
cl_invocation.ps1,c:\windows\diagnostics\system\aero,Aero diagnostics script
cl_invocation.ps1,c:\windows\diagnostics\system\audio,Aero diagnostics script
cl_invocation.ps1,c:\windows\diagnostics\system\windowsupdate,Aero diagnostics script
utilityfunctions.ps1,c:\windows\diagnostics\system\networking,PowerShell Diagnostic Script
coregen.exe,c:\program files\microsoft silverlight\5.1.50918.0,"Binary coregen.exe (Microsoft CoreCLR Native Image Generator) loads exported function GetCLRRuntimeHost from coreclr.dll or from .DLL in arbitrary path. Coregen is located within ""C:\Program Files (x86)\Microsoft Silverlight\5.1.50918.0\"" or another version of Silverlight. Coregen is signed by Microsoft and bundled with Microsoft Silverlight."
coregen.exe,c:\program files (x86)\microsoft silverlight\5.1.50918.0,"Binary coregen.exe (Microsoft CoreCLR Native Image Generator) loads exported function GetCLRRuntimeHost from coreclr.dll or from .DLL in arbitrary path. Coregen is located within ""C:\Program Files (x86)\Microsoft Silverlight\5.1.50918.0\"" or another version of Silverlight. Coregen is signed by Microsoft and bundled with Microsoft Silverlight."
fsi.exe,c:\program files\dotnet\sdk\[sdk version]\fsharp,64-bit FSharp (F#) Interpreter included with Visual Studio and DotNet Core SDK.
fsi.exe,c:\program files (x86)\microsoft visual studio\2019\professional\common7\ide\commonextensions\microsoft\fsharp,64-bit FSharp (F#) Interpreter included with Visual Studio and DotNet Core SDK.
visualuiaverifynative.exe,c:\program files (x86)\windows kits\10\bin\[sdk version]\arm64\uiaverify,A Windows SDK binary for manual and automated testing of Microsoft UI Automation implementation and controls.
visualuiaverifynative.exe,c:\program files (x86)\windows kits\10\bin\[sdk version]\x64\uiaverify,A Windows SDK binary for manual and automated testing of Microsoft UI Automation implementation and controls.
visualuiaverifynative.exe,c:\program files (x86)\windows kits\10\bin\[sdk version]\uiaverify,A Windows SDK binary for manual and automated testing of Microsoft UI Automation implementation and controls.
ntdsutil.exe,c:\windows\system32,Command line utility used to export Active Directory.
sqltoolsps.exe,c:\program files (x86)\microsoft sql server\130\tools\binn,Tool included with Microsoft SQL that loads SQL Server cmdlts. A replacement for sqlps.exe. Successor to sqlps.exe in SQL Server 2016+.
dump64.exe,c:\program files (x86)\microsoft visual studio\installer\feedback,Memory dump tool that comes with Microsoft Visual Studio
wsl.exe,c:\windows\system32,Windows subsystem for Linux executable
csi.exe,c:\program files (x86)\microsoft visual studio\2017\community\msbuild\15.0\bin\roslyn,Command line interface included with Visual Studio.
csi.exe,c:\program files (x86)\microsoft web tools\packages\microsoft.net.compilers.x.y.z\tools,Command line interface included with Visual Studio.
mftrace.exe,c:\program files (x86)\windows kits\10\bin\10.0.16299.0,Trace log generation tool for Media Foundation Tools.
mftrace.exe,c:\program files (x86)\windows kits\10\bin,Trace log generation tool for Media Foundation Tools.
adplus.exe,c:\program files (x86)\windows kits\10\debuggers\x64,Debugging tool included with Windows Debugging Tools
adplus.exe,c:\program files (x86)\windows kits\10\debuggers\x86,Debugging tool included with Windows Debugging Tools
excel.exe,c:\program files (x86)\microsoft office 16\clientx86\root\office16,Microsoft Office binary
excel.exe,c:\program files\microsoft office 16\clientx64\root\office16,Microsoft Office binary
excel.exe,c:\program files (x86)\microsoft office\office16,Microsoft Office binary
excel.exe,c:\program files\microsoft office\office16,Microsoft Office binary
excel.exe,c:\program files (x86)\microsoft office 15\clientx86\root\office15,Microsoft Office binary
excel.exe,c:\program files\microsoft office 15\clientx64\root\office15,Microsoft Office binary
excel.exe,c:\program files (x86)\microsoft office\office15,Microsoft Office binary
excel.exe,c:\program files\microsoft office\office15,Microsoft Office binary
excel.exe,c:\program files (x86)\microsoft office 14\clientx86\root\office14,Microsoft Office binary
excel.exe,c:\program files\microsoft office 14\clientx64\root\office14,Microsoft Office binary
excel.exe,c:\program files (x86)\microsoft office\office14,Microsoft Office binary
excel.exe,c:\program files\microsoft office\office14,Microsoft Office binary
excel.exe,c:\program files (x86)\microsoft office\office12,Microsoft Office binary
excel.exe,c:\program files\microsoft office\office12,Microsoft Office binary
dotnet.exe,c:\program files\dotnet,dotnet.exe comes with .NET Framework
sqlps.exe,c:\program files (x86)\microsoft sql server\100\tools\binn,"Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons."
sqlps.exe,c:\program files (x86)\microsoft sql server\110\tools\binn,"Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons."
sqlps.exe,c:\program files (x86)\microsoft sql server\120\tools\binn,"Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons."
sqlps.exe,c:\program files (x86)\microsoft sql server\130\tools\binn,"Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons."
sqlps.exe,c:\program files (x86)\microsoft sql server\150\tools\binn,"Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons."
acccheckconsole.exe,c:\program files (x86)\windows kits\10\bin\10.0.22000.0\x86\accchecker,Verifies UI accessibility requirements
acccheckconsole.exe,c:\program files (x86)\windows kits\10\bin\10.0.22000.0\x64\accchecker,Verifies UI accessibility requirements
acccheckconsole.exe,c:\program files (x86)\windows kits\10\bin\10.0.22000.0\arm\accchecker,Verifies UI accessibility requirements
acccheckconsole.exe,c:\program files (x86)\windows kits\10\bin\10.0.22000.0\arm64\accchecker,Verifies UI accessibility requirements
powerpnt.exe,c:\program files (x86)\microsoft office 16\clientx86\root\office16,Microsoft Office binary.
powerpnt.exe,c:\program files\microsoft office 16\clientx64\root\office16,Microsoft Office binary.
powerpnt.exe,c:\program files (x86)\microsoft office\office16,Microsoft Office binary.
powerpnt.exe,c:\program files\microsoft office\office16,Microsoft Office binary.
powerpnt.exe,c:\program files (x86)\microsoft office 15\clientx86\root\office15,Microsoft Office binary.
powerpnt.exe,c:\program files\microsoft office 15\clientx64\root\office15,Microsoft Office binary.
powerpnt.exe,c:\program files (x86)\microsoft office\office15,Microsoft Office binary.
powerpnt.exe,c:\program files\microsoft office\office15,Microsoft Office binary.
powerpnt.exe,c:\program files (x86)\microsoft office 14\clientx86\root\office14,Microsoft Office binary.
powerpnt.exe,c:\program files\microsoft office 14\clientx64\root\office14,Microsoft Office binary.
powerpnt.exe,c:\program files (x86)\microsoft office\office14,Microsoft Office binary.
powerpnt.exe,c:\program files\microsoft office\office14,Microsoft Office binary.
powerpnt.exe,c:\program files (x86)\microsoft office\office12,Microsoft Office binary.
powerpnt.exe,c:\program files\microsoft office\office12,Microsoft Office binary.
sqldumper.exe,c:\program files\microsoft sql server\90\shared,Debugging utility included with Microsoft SQL.
sqldumper.exe,c:\program files (x86)\microsoft office\root\vfs\programfilesx86\microsoft analysis\as oledb\140,Debugging utility included with Microsoft SQL.
remote.exe,c:\program files (x86)\windows kits\10\debuggers\x64,Debugging tool included with Windows Debugging Tools
remote.exe,c:\program files (x86)\windows kits\10\debuggers\x86,Debugging tool included with Windows Debugging Tools
appvlp.exe,c:\program files\microsoft office\root\client,Application Virtualization Utility Included with Microsoft Office 2016
appvlp.exe,c:\program files (x86)\microsoft office\root\client,Application Virtualization Utility Included with Microsoft Office 2016
agentexecutor.exe,c:\program files (x86),Intune Management Extension included on Intune Managed Devices
dxcap.exe,c:\windows\system32,DirectX diagnostics/debugger included with Visual Studio.
dxcap.exe,c:\windows\syswow64,DirectX diagnostics/debugger included with Visual Studio.
cdb.exe,c:\program files (x86)\windows kits\10\debuggers\x64,Debugging tool included with Windows Debugging Tools.
cdb.exe,c:\program files (x86)\windows kits\10\debuggers\x86,Debugging tool included with Windows Debugging Tools.
defaultpack.exe,c:\program files (x86)\microsoft\defaultpack,This binary can be downloaded along side multiple software downloads on the microsoft website. It gets downloaded when the user forgets to uncheck the option to set Bing as the default search provider.
devtoolslauncher.exe,c:\windows\system32,Binary will execute specified binary. Part of VS/VScode installation.
vsiisexelauncher.exe,c:\program files (x86)\microsoft visual studio\2019\community\common7\ide\extensions\microsoft\web tools\projectsystem,Binary will execute specified binary. Part of VS/VScode installation.
winword.exe,c:\program files\microsoft office\root\office16,Microsoft Office binary
winword.exe,c:\program files (x86)\microsoft office 16\clientx86\root\office16,Microsoft Office binary
winword.exe,c:\program files\microsoft office 16\clientx64\root\office16,Microsoft Office binary
winword.exe,c:\program files (x86)\microsoft office\office16,Microsoft Office binary
winword.exe,c:\program files\microsoft office\office16,Microsoft Office binary
winword.exe,c:\program files (x86)\microsoft office 15\clientx86\root\office15,Microsoft Office binary
winword.exe,c:\program files\microsoft office 15\clientx64\root\office15,Microsoft Office binary
winword.exe,c:\program files (x86)\microsoft office\office15,Microsoft Office binary
winword.exe,c:\program files\microsoft office\office15,Microsoft Office binary
winword.exe,c:\program files (x86)\microsoft office 14\clientx86\root\office14,Microsoft Office binary
winword.exe,c:\program files\microsoft office 14\clientx64\root\office14,Microsoft Office binary
winword.exe,c:\program files (x86)\microsoft office\office14,Microsoft Office binary
winword.exe,c:\program files\microsoft office\office14,Microsoft Office binary
winword.exe,c:\program files (x86)\microsoft office\office12,Microsoft Office binary
winword.exe,c:\program files\microsoft office\office12,Microsoft Office binary
fsianycpu.exe,c:\program files (x86)\microsoft visual studio\2019\professional\common7\ide\commonextensions\microsoft\fsharp,32/64-bit FSharp (F#) Interpreter included with Visual Studio.
vsjitdebugger.exe,c:\windows\system32,Just-In-Time (JIT) debugger included with Visual Studio
wfc.exe,c:\program files (x86)\microsoft sdks\windows\v10.0a\bin\netfx 4.8 tools,The Workflow Command-line Compiler tool is included with the Windows Software Development Kit (SDK).
msdeploy.exe,c:\program files (x86)\iis\microsoft web deploy v3,Microsoft tool used to deploy Web Applications.
1 lolbas_file_name lolbas_file_path description
2 eventvwr.exe c:\windows\system32\eventvwr.exe c:\windows\system32 Displays Windows Event Logs in a GUI window.
3 eventvwr.exe c:\windows\syswow64\eventvwr.exe c:\windows\syswow64 Displays Windows Event Logs in a GUI window.
4 rasautou.exe c:\windows\system32\rasautou.exe c:\windows\system32 Windows Remote Access Dialer
5 regedit.exe c:\windows\system32\regedit.exe c:\windows\system32 Used by Windows to manipulate registry
6 regedit.exe c:\windows\syswow64\regedit.exe c:\windows\syswow64 Used by Windows to manipulate registry
7 regsvr32.exe c:\windows\system32\regsvr32.exe c:\windows\system32 Used by Windows to register dlls
8 regsvr32.exe c:\windows\syswow64\regsvr32.exe c:\windows\syswow64 Used by Windows to register dlls
9 control.exe c:\windows\system32\control.exe c:\windows\system32 Binary used to launch controlpanel items in Windows
10 control.exe c:\windows\syswow64\control.exe c:\windows\syswow64 Binary used to launch controlpanel items in Windows
11 configsecuritypolicy.exe c:\programdata\microsoft\windows defender\platform\4.18.2008.9-0\configsecuritypolicy.exe c:\programdata\microsoft\windows defender\platform\4.18.2008.9-0 Binary part of Windows Defender. Used to manage settings in Windows Defender. you can configure different pilot collections for each of the co-management workloads. Being able to use different pilot collections allows you to take a more granular approach when shifting workloads.
12 scriptrunner.exe c:\windows\system32\scriptrunner.exe c:\windows\system32 Execute binary through proxy binary to evade defensive counter measures
13 scriptrunner.exe c:\windows\syswow64\scriptrunner.exe c:\windows\syswow64 Execute binary through proxy binary to evade defensive counter measures
14 offlinescannershell.exe c:\program files\windows defender\offline\offlinescannershell.exe c:\program files\windows defender\offline Windows Defender Offline Shell
15 atbroker.exe c:\windows\system32\atbroker.exe c:\windows\system32 Helper binary for Assistive Technology (AT)
16 atbroker.exe c:\windows\syswow64\atbroker.exe c:\windows\syswow64 Helper binary for Assistive Technology (AT)
17 mmc.exe c:\windows\system32\mmc.exe c:\windows\system32 Load snap-ins to locally and remotely manage Windows systems
18 mmc.exe c:\windows\syswow64\mmc.exe c:\windows\syswow64 Load snap-ins to locally and remotely manage Windows systems
19 mavinject.exe c:\windows\system32\mavinject.exe c:\windows\system32 Used by App-v in Windows
20 mavinject.exe c:\windows\syswow64\mavinject.exe c:\windows\syswow64 Used by App-v in Windows
21 ftp.exe c:\windows\system32\ftp.exe c:\windows\system32 A binary designed for connecting to FTP servers
22 ftp.exe c:\windows\syswow64\ftp.exe c:\windows\syswow64 A binary designed for connecting to FTP servers
23 ttdinject.exe c:\windows\system32\ttdinject.exe c:\windows\system32 Used by Windows 1809 and newer to Debug Time Travel (Underlying call of tttracer.exe)
24 ttdinject.exe c:\windows\syswow64\ttdinject.exe c:\windows\syswow64 Used by Windows 1809 and newer to Debug Time Travel (Underlying call of tttracer.exe)
25 certoc.exe c:\windows\system32\certoc.exe c:\windows\system32 Used for installing certificates
26 certoc.exe c:\windows\syswow64\certoc.exe c:\windows\syswow64 Used for installing certificates
27 at.exe c:\windows\system32\at.exe c:\windows\system32 Schedule periodic tasks
28 at.exe c:\windows\syswow64\at.exe c:\windows\syswow64 Schedule periodic tasks
29 netsh.exe c:\windows\system32\netsh.exe c:\windows\system32 Netsh is a Windows tool used to manipulate network interface settings.
30 netsh.exe c:\windows\syswow64\netsh.exe c:\windows\syswow64 Netsh is a Windows tool used to manipulate network interface settings.
31 pnputil.exe c:\windows\system32\pnputil.exe c:\windows\system32 Used for installing drivers
32 ie4uinit.exe c:\windows\system32\ie4uinit.exe c:\windows\system32 Executes commands from a specially prepared ie4uinit.inf file.
33 ie4uinit.exe c:\windows\syswow64\ie4uinit.exe c:\windows\syswow64 Executes commands from a specially prepared ie4uinit.inf file.
34 ie4uinit.exe infdefaultinstall.exe c:\windows\system32\ieuinit.inf c:\windows\system32 Binary used to perform installation based on content inside inf files
35 ie4uinit.exe infdefaultinstall.exe c:\windows\syswow64\ieuinit.inf c:\windows\syswow64 Binary used to perform installation based on content inside inf files
36 infdefaultinstall.exe forfiles.exe c:\windows\system32\infdefaultinstall.exe c:\windows\system32 Binary used to perform installation based on content inside inf files Selects and executes a command on a file or set of files. This command is useful for batch processing.
37 infdefaultinstall.exe forfiles.exe c:\windows\syswow64\infdefaultinstall.exe c:\windows\syswow64 Binary used to perform installation based on content inside inf files Selects and executes a command on a file or set of files. This command is useful for batch processing.
38 forfiles.exe register-cimprovider.exe c:\windows\system32\forfiles.exe c:\windows\system32 Selects and executes a command on a file or set of files. This command is useful for batch processing. Used to register new wmi providers
39 forfiles.exe register-cimprovider.exe c:\windows\syswow64\forfiles.exe c:\windows\syswow64 Selects and executes a command on a file or set of files. This command is useful for batch processing. Used to register new wmi providers
40 register-cimprovider.exe tttracer.exe c:\windows\system32\register-cimprovider.exe c:\windows\system32 Used to register new wmi providers Used by Windows 1809 and newer to Debug Time Travel
41 register-cimprovider.exe tttracer.exe c:\windows\syswow64\register-cimprovider.exe c:\windows\syswow64 Used to register new wmi providers Used by Windows 1809 and newer to Debug Time Travel
42 tttracer.exe xwizard.exe c:\windows\system32\tttracer.exe c:\windows\system32 Used by Windows 1809 and newer to Debug Time Travel Execute custom class that has been added to the registry or download a file with Xwizard.exe
43 tttracer.exe xwizard.exe c:\windows\syswow64\tttracer.exe c:\windows\syswow64 Used by Windows 1809 and newer to Debug Time Travel Execute custom class that has been added to the registry or download a file with Xwizard.exe
44 xwizard.exe pcalua.exe c:\windows\system32\xwizard.exe c:\windows\system32 Program Compatibility Assistant
45 xwizard.exe print.exe c:\windows\syswow64\xwizard.exe c:\windows\system32 Used by Windows to send files to the printer
46 pcalua.exe print.exe c:\windows\system32\pcalua.exe c:\windows\syswow64 Program Compatibility Assistant Used by Windows to send files to the printer
47 print.exe runscripthelper.exe c:\windows\system32\print.exe c:\windows\winsxs\amd64_microsoft-windows-u..ed-telemetry-client_31bf3856ad364e35_10.0.16299.15_none_c2df1bba78111118 Used by Windows to send files to the printer Execute target PowerShell script
48 print.exe runscripthelper.exe c:\windows\syswow64\print.exe c:\windows\winsxs\amd64_microsoft-windows-u..ed-telemetry-client_31bf3856ad364e35_10.0.16299.192_none_ad4699b571e00c4a Used by Windows to send files to the printer Execute target PowerShell script
49 runscripthelper.exe regasm.exe c:\windows\winsxs\amd64_microsoft-windows-u..ed-telemetry-client_31bf3856ad364e35_10.0.16299.15_none_c2df1bba78111118\runscripthelper.exe c:\windows\microsoft.net\framework\v2.0.50727 Part of .NET
50 runscripthelper.exe regasm.exe c:\windows\winsxs\amd64_microsoft-windows-u..ed-telemetry-client_31bf3856ad364e35_10.0.16299.192_none_ad4699b571e00c4a\runscripthelper.exe c:\windows\microsoft.net\framework64\v2.0.50727 Part of .NET
51 regasm.exe c:\windows\microsoft.net\framework\v2.0.50727\regasm.exe c:\windows\microsoft.net\framework\v4.0.30319 Part of .NET
52 regasm.exe c:\windows\microsoft.net\framework64\v2.0.50727\regasm.exe c:\windows\microsoft.net\framework64\v4.0.30319 Part of .NET
53 regasm.exe cmd.exe c:\windows\microsoft.net\framework\v4.0.30319\regasm.exe c:\windows\system32 Part of .NET The command-line interpreter in Windows
54 regasm.exe cmd.exe c:\windows\microsoft.net\framework64\v4.0.30319\regasm.exe c:\windows\syswow64 Part of .NET The command-line interpreter in Windows
55 cmd.exe msbuild.exe c:\windows\system32\cmd.exe c:\windows\microsoft.net\framework\v2.0.50727 The command-line interpreter in Windows Used to compile and execute code
56 cmd.exe msbuild.exe c:\windows\syswow64\cmd.exe c:\windows\microsoft.net\framework64\v2.0.50727 The command-line interpreter in Windows Used to compile and execute code
57 msbuild.exe c:\windows\microsoft.net\framework\v2.0.50727\msbuild.exe c:\windows\microsoft.net\framework\v3.5 Used to compile and execute code
58 msbuild.exe c:\windows\microsoft.net\framework64\v2.0.50727\msbuild.exe c:\windows\microsoft.net\framework64\v3.5 Used to compile and execute code
59 msbuild.exe c:\windows\microsoft.net\framework\v3.5\msbuild.exe c:\windows\microsoft.net\framework\v4.0.30319 Used to compile and execute code
60 msbuild.exe c:\windows\microsoft.net\framework64\v3.5\msbuild.exe c:\windows\microsoft.net\framework64\v4.0.30319 Used to compile and execute code
61 msbuild.exe c:\windows\microsoft.net\framework\v4.0.30319\msbuild.exe c:\program files (x86)\msbuild\14.0\bin Used to compile and execute code
62 msbuild.exe certutil.exe c:\windows\microsoft.net\framework64\v4.0.30319\msbuild.exe c:\windows\system32 Used to compile and execute code Windows binary used for handling certificates
63 msbuild.exe certutil.exe c:\program files (x86)\msbuild\14.0\bin\msbuild.exe c:\windows\syswow64 Used to compile and execute code Windows binary used for handling certificates
64 certutil.exe vbc.exe c:\windows\system32\certutil.exe c:\windows\microsoft.net\framework64\v4.0.30319 Windows binary used for handling certificates Binary file used for compile vbs code
65 certutil.exe vbc.exe c:\windows\syswow64\certutil.exe c:\windows\microsoft.net\framework64\v3.5 Windows binary used for handling certificates Binary file used for compile vbs code
66 vbc.exe psr.exe c:\windows\microsoft.net\framework64\v4.0.30319\vbc.exe c:\windows\system32 Binary file used for compile vbs code Windows Problem Steps Recorder, used to record screen and clicks.
67 vbc.exe psr.exe c:\windows\microsoft.net\framework64\v3.5\vbc.exe c:\windows\syswow64 Binary file used for compile vbs code Windows Problem Steps Recorder, used to record screen and clicks.
68 psr.exe extexport.exe c:\windows\system32\psr.exe c:\program files\internet explorer Windows Problem Steps Recorder, used to record screen and clicks. Load a DLL located in the c:\test folder with a specific name.
69 psr.exe extexport.exe c:\windows\syswow64\psr.exe c:\program files (x86)\internet explorer Windows Problem Steps Recorder, used to record screen and clicks. Load a DLL located in the c:\test folder with a specific name.
70 extexport.exe rpcping.exe c:\program files\internet explorer\extexport.exe c:\windows\system32 Used to verify rpc connection
71 extexport.exe rpcping.exe c:\program files (x86)\internet explorer\extexport.exe c:\windows\syswow64 Used to verify rpc connection
72 rpcping.exe msdt.exe c:\windows\system32\rpcping.exe c:\windows\system32 Used to verify rpc connection Microsoft diagnostics tool
73 rpcping.exe msdt.exe c:\windows\syswow64\rpcping.exe c:\windows\syswow64 Used to verify rpc connection Microsoft diagnostics tool
74 msdt.exe gfxdownloadwrapper.exe c:\windows\system32\msdt.exe c:\windows\system32\driverstore\filerepository\64kb6472.inf_amd64_3daef03bbe98572b Microsoft diagnostics tool Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
75 msdt.exe gfxdownloadwrapper.exe c:\windows\syswow64\msdt.exe c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_0e9c57ae3396e055 Microsoft diagnostics tool Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
76 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\64kb6472.inf_amd64_3daef03bbe98572b\ c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_209bd95d56b1ac2d Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
77 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_0e9c57ae3396e055\ c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_3fa2a843f8b7f16d Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
78 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_209bd95d56b1ac2d\ c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_85c860f05274baa0 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
79 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_3fa2a843f8b7f16d\ c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_f7412e3e3404de80 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
80 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_85c860f05274baa0\ c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_feb9f1cf05b0de58 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
81 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_f7412e3e3404de80\ c:\windows\system32\driverstore\filerepository\cui_component.inf_amd64_0219cc1c7085a93f Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
82 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_feb9f1cf05b0de58\ c:\windows\system32\driverstore\filerepository\cui_component.inf_amd64_df4f60b1cae9b14a Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
83 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_component.inf_amd64_0219cc1c7085a93f\ c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_16eb18b0e2526e57 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
84 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_component.inf_amd64_df4f60b1cae9b14a\ c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_1c77f1231c19bc72 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
85 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_16eb18b0e2526e57\ c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_31c60cc38cfcca28 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
86 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_1c77f1231c19bc72\ c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_82f69cea8b2d928f Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
87 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_31c60cc38cfcca28\ c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_b4d94f3e41ceb839 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
88 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_82f69cea8b2d928f\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_0606619cc97463de Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
89 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dc_comp.inf_amd64_b4d94f3e41ceb839\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_0e95edab338ad669 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
90 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_0606619cc97463de\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_22aac1442d387216 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
91 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_0e95edab338ad669\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_2461d914696db722 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
92 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_22aac1442d387216\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_29d727269a34edf5 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
93 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_2461d914696db722\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_2caf76dbce56546d Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
94 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_29d727269a34edf5\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_353320edb98da643 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
95 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_2caf76dbce56546d\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_4ea0ed0af1507894 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
96 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_353320edb98da643\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_56a48f4f1c2da7a7 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
97 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_4ea0ed0af1507894\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_64f23fdadb76a511 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
98 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_56a48f4f1c2da7a7\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_668dd0c6d3f9fa0e Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
99 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_64f23fdadb76a511\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_6be8e5b7f731a6e5 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
100 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_668dd0c6d3f9fa0e\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_6dad7e4e9a8fa889 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
101 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_6be8e5b7f731a6e5\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_6df442103a1937a4 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
102 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_6dad7e4e9a8fa889\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_767e7683f9ad126c Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
103 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_6df442103a1937a4\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_8644298f665a12c4 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
104 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_767e7683f9ad126c\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_868acf86149aef5d Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
105 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_8644298f665a12c4\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_92cf9d9d84f1d3db Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
106 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_868acf86149aef5d\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_93239c65f222d453 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
107 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_92cf9d9d84f1d3db\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_9de8154b682af864 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
108 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_93239c65f222d453\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_a7428663aca90897 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
109 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_9de8154b682af864\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_ad7cb5e55a410add Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
110 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_a7428663aca90897\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_afbf41cf8ab202d7 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
111 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_ad7cb5e55a410add\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_d193c96475eaa96e Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
112 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_afbf41cf8ab202d7\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_db953c52208ada71 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
113 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_d193c96475eaa96e\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_e7523682cc7528cc Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
114 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_db953c52208ada71\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_e9f341319ca84274 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
115 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_e7523682cc7528cc\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_f3a64c75ee4defb7 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
116 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_e9f341319ca84274\ c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_f51939e52b944f4b Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
117 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_f3a64c75ee4defb7\ c:\windows\system32\driverstore\filerepository\cui_dch_comp.inf_amd64_4938423c9b9639d7 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
118 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch.inf_amd64_f51939e52b944f4b\ c:\windows\system32\driverstore\filerepository\cui_dch_comp.inf_amd64_c8e108d4a62c59d5 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
119 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch_comp.inf_amd64_4938423c9b9639d7\ c:\windows\system32\driverstore\filerepository\cui_dch_comp.inf_amd64_deecec7d232ced2b Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
120 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch_comp.inf_amd64_c8e108d4a62c59d5\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_01ee1299f4982efe Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
121 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\cui_dch_comp.inf_amd64_deecec7d232ced2b\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_02edfc87000937e4 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
122 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_01ee1299f4982efe\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_0541b698fc6e40b0 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
123 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_02edfc87000937e4\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_0707757077710fff Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
124 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_0541b698fc6e40b0\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_0b3e3ed3ace9602a Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
125 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_0707757077710fff\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_0cff362f9dff4228 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
126 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_0b3e3ed3ace9602a\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_16ed7d82b93e4f68 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
127 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_0cff362f9dff4228\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_1a33d2f73651d989 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
128 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_16ed7d82b93e4f68\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_1aca2a92a37fce23 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
129 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_1a33d2f73651d989\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_1af2dd3e4df5fd61 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
130 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_1aca2a92a37fce23\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_1d571527c7083952 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
131 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_1af2dd3e4df5fd61\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_23f7302c2b9ee813 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
132 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_1d571527c7083952\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_24de78387e6208e4 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
133 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_23f7302c2b9ee813\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_250db833a1cd577e Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
134 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_24de78387e6208e4\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_25e7c5a58c052bc5 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
135 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_250db833a1cd577e\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_28d80681d3523b1c Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
136 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_25e7c5a58c052bc5\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_2dda3b1147a3a572 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
137 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_28d80681d3523b1c\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_31ba00ea6900d67d Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
138 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_2dda3b1147a3a572\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_329877a66f240808 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
139 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_31ba00ea6900d67d\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_42af9f4718aa1395 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
140 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_329877a66f240808\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_4645af5c659ae51a Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
141 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_42af9f4718aa1395\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_48c2e68e54c92258 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
142 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_4645af5c659ae51a\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_48e7e903a369eae2 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
143 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_48c2e68e54c92258\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_491d20003583dabe Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
144 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_48e7e903a369eae2\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_4b34c18659561116 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
145 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_491d20003583dabe\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_51ce968bf19942c2 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
146 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_4b34c18659561116\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_555cfc07a674ecdd Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
147 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_51ce968bf19942c2\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_561bd21d54545ed3 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
148 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_555cfc07a674ecdd\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_579a75f602cc2dce Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
149 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_561bd21d54545ed3\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_57f66a4f0a97f1a3 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
150 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_579a75f602cc2dce\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_587befb80671fb38 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
151 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_57f66a4f0a97f1a3\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_62f096fe77e085c0 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
152 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_587befb80671fb38\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_6ae0ddbb4a38e23c Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
153 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_62f096fe77e085c0\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_6bb02522ea3fdb0d Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
154 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_6ae0ddbb4a38e23c\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_6d34ac0763025a06 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
155 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_6bb02522ea3fdb0d\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_712b6a0adbaabc0a Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
156 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_6d34ac0763025a06\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_78b09d9681a2400f Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
157 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_712b6a0adbaabc0a\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_842874489af34daa Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
158 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_78b09d9681a2400f\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_88084eb1fe7cebc3 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
159 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_842874489af34daa\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_89033455cb08186f Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
160 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_88084eb1fe7cebc3\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_8a9535cd18c90bc3 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
161 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_89033455cb08186f\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_8c1fc948b5a01c52 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
162 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_8a9535cd18c90bc3\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_9088b61921a6ff9f Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
163 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_8c1fc948b5a01c52\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_90f68cd0dc48b625 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
164 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_9088b61921a6ff9f\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_95cb371d046d4b4c Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
165 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_90f68cd0dc48b625\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_a58de0cf5f3e9dca Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
166 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_95cb371d046d4b4c\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_abe9d37302f8b1ae Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
167 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_a58de0cf5f3e9dca\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_acb3edda7b82982f Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
168 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_abe9d37302f8b1ae\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_aebc5a8535dd3184 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
169 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_acb3edda7b82982f\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_b5d4c82c67b39358 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
170 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_aebc5a8535dd3184\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_b846bbf1e81ea3cf Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
171 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_b5d4c82c67b39358\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_babb2e8b8072ff3b Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
172 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_b846bbf1e81ea3cf\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_bc75cebf5edbbc50 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
173 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_babb2e8b8072ff3b\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_be91293cf20d4372 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
174 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_bc75cebf5edbbc50\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c11f4d5f0bc4c592 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
175 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_be91293cf20d4372\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c4e5173126d31cf0 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
176 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c11f4d5f0bc4c592\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c4f600ffe34acc7b Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
177 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c4e5173126d31cf0\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c8634ed19e331cda Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
178 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c4f600ffe34acc7b\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c9081e50bcffa972 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
179 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c8634ed19e331cda\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_ceddadac8a2b489e Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
180 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_c9081e50bcffa972\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_d4406f0ad6ec2581 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
181 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_ceddadac8a2b489e\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_d5877a2e0e6374b6 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
182 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_d4406f0ad6ec2581\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_d8ca5f86add535ef Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
183 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_d5877a2e0e6374b6\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_e8abe176c7b553b5 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
184 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_d8ca5f86add535ef\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_eabb3ac2c517211f Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
185 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_e8abe176c7b553b5\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_f8d8be8fea71e1a0 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
186 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_eabb3ac2c517211f\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_fe5e116bb07c0629 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
187 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_f8d8be8fea71e1a0\ c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_fe73d2ebaa05fb95 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
188 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_fe5e116bb07c0629\ c:\windows\system32\driverstore\filerepository\igdlh64_kbl_kit127397.inf_amd64_e1da8ee9e92ccadb Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
189 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64.inf_amd64_fe73d2ebaa05fb95\ c:\windows\system32\driverstore\filerepository\k127153.inf_amd64_364f43f2a27f7bd7 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
190 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\igdlh64_kbl_kit127397.inf_amd64_e1da8ee9e92ccadb\ c:\windows\system32\driverstore\filerepository\k127153.inf_amd64_3f3936d8dec668b8 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
191 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\k127153.inf_amd64_364f43f2a27f7bd7\ c:\windows\system32\driverstore\filerepository\k127793.inf_amd64_3ab7883eddccbf0f Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
192 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\k127153.inf_amd64_3f3936d8dec668b8\ c:\windows\system32\driverstore\filerepository\ki129523.inf_amd64_32947eecf8f3e231 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
193 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\k127793.inf_amd64_3ab7883eddccbf0f\ c:\windows\system32\driverstore\filerepository\ki126950.inf_amd64_fa7f56314967630d Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
194 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki129523.inf_amd64_32947eecf8f3e231\ c:\windows\system32\driverstore\filerepository\ki126951.inf_amd64_94804e3918169543 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
195 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki126950.inf_amd64_fa7f56314967630d\ c:\windows\system32\driverstore\filerepository\ki126973.inf_amd64_06dde156632145e3 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
196 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki126951.inf_amd64_94804e3918169543\ c:\windows\system32\driverstore\filerepository\ki126974.inf_amd64_9168fc04b8275db9 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
197 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki126973.inf_amd64_06dde156632145e3\ c:\windows\system32\driverstore\filerepository\ki127005.inf_amd64_753576c4406c1193 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
198 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki126974.inf_amd64_9168fc04b8275db9\ c:\windows\system32\driverstore\filerepository\ki127018.inf_amd64_0f67ff47e9e30716 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
199 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki127005.inf_amd64_753576c4406c1193\ c:\windows\system32\driverstore\filerepository\ki127021.inf_amd64_0d68af55c12c7c17 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
200 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki127018.inf_amd64_0f67ff47e9e30716\ c:\windows\system32\driverstore\filerepository\ki127171.inf_amd64_368f8c7337214025 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
201 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki127021.inf_amd64_0d68af55c12c7c17\ c:\windows\system32\driverstore\filerepository\ki127176.inf_amd64_86c658cabfb17c9c Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
202 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki127171.inf_amd64_368f8c7337214025\ c:\windows\system32\driverstore\filerepository\ki127390.inf_amd64_e1ccb879ece8f084 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
203 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki127176.inf_amd64_86c658cabfb17c9c\ c:\windows\system32\driverstore\filerepository\ki127678.inf_amd64_8427d3a09f47dfc1 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
204 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki127390.inf_amd64_e1ccb879ece8f084\ c:\windows\system32\driverstore\filerepository\ki127727.inf_amd64_cf8e31692f82192e Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
205 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki127678.inf_amd64_8427d3a09f47dfc1\ c:\windows\system32\driverstore\filerepository\ki127807.inf_amd64_fc915899816dbc5d Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
206 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki127727.inf_amd64_cf8e31692f82192e\ c:\windows\system32\driverstore\filerepository\ki127850.inf_amd64_6ad8d99023b59fd5 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
207 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki127807.inf_amd64_fc915899816dbc5d\ c:\windows\system32\driverstore\filerepository\ki128602.inf_amd64_6ff790822fd674ab Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
208 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki127850.inf_amd64_6ad8d99023b59fd5\ c:\windows\system32\driverstore\filerepository\ki128916.inf_amd64_3509e1eb83b83cfb Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
209 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki128602.inf_amd64_6ff790822fd674ab\ c:\windows\system32\driverstore\filerepository\ki129407.inf_amd64_f26f36ac54ce3076 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
210 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki128916.inf_amd64_3509e1eb83b83cfb\ c:\windows\system32\driverstore\filerepository\ki129633.inf_amd64_d9b8af875f664a8c Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
211 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki129407.inf_amd64_f26f36ac54ce3076\ c:\windows\system32\driverstore\filerepository\ki129866.inf_amd64_e7cdca9882c16f55 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
212 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki129633.inf_amd64_d9b8af875f664a8c\ c:\windows\system32\driverstore\filerepository\ki130274.inf_amd64_bafd2440fa1ffdd6 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
213 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki129866.inf_amd64_e7cdca9882c16f55\ c:\windows\system32\driverstore\filerepository\ki130350.inf_amd64_696b7c6764071b63 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
214 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki130274.inf_amd64_bafd2440fa1ffdd6\ c:\windows\system32\driverstore\filerepository\ki130409.inf_amd64_0d8d61270dfb4560 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
215 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki130350.inf_amd64_696b7c6764071b63\ c:\windows\system32\driverstore\filerepository\ki130471.inf_amd64_26ad6921447aa568 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
216 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki130409.inf_amd64_0d8d61270dfb4560\ c:\windows\system32\driverstore\filerepository\ki130624.inf_amd64_d85487143eec5e1a Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
217 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki130471.inf_amd64_26ad6921447aa568\ c:\windows\system32\driverstore\filerepository\ki130825.inf_amd64_ee3ba427c553f15f Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
218 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki130624.inf_amd64_d85487143eec5e1a\ c:\windows\system32\driverstore\filerepository\ki130871.inf_amd64_382f7c369d4bf777 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
219 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki130825.inf_amd64_ee3ba427c553f15f\ c:\windows\system32\driverstore\filerepository\ki131064.inf_amd64_5d13f27a9a9843fa Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
220 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki130871.inf_amd64_382f7c369d4bf777\ c:\windows\system32\driverstore\filerepository\ki131176.inf_amd64_fb4fe914575fdd15 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
221 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki131064.inf_amd64_5d13f27a9a9843fa\ c:\windows\system32\driverstore\filerepository\ki131191.inf_amd64_d668106cb6f2eae0 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
222 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki131176.inf_amd64_fb4fe914575fdd15\ c:\windows\system32\driverstore\filerepository\ki131622.inf_amd64_0058d71ace34db73 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
223 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki131191.inf_amd64_d668106cb6f2eae0\ c:\windows\system32\driverstore\filerepository\ki132032.inf_amd64_f29660d80998e019 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
224 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki131622.inf_amd64_0058d71ace34db73\ c:\windows\system32\driverstore\filerepository\ki132337.inf_amd64_223d6831ffa64ab1 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
225 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki132032.inf_amd64_f29660d80998e019\ c:\windows\system32\driverstore\filerepository\ki132535.inf_amd64_7875dff189ab2fa2 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
226 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki132337.inf_amd64_223d6831ffa64ab1\ c:\windows\system32\driverstore\filerepository\ki132544.inf_amd64_b8c1f31373153db4 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
227 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki132535.inf_amd64_7875dff189ab2fa2\ c:\windows\system32\driverstore\filerepository\ki132574.inf_amd64_54c9b905b975ee55 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
228 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki132544.inf_amd64_b8c1f31373153db4\ c:\windows\system32\driverstore\filerepository\ki132869.inf_amd64_052eb72d070df60f Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
229 gfxdownloadwrapper.exe c:\windows\system32\driverstore\filerepository\ki132574.inf_amd64_54c9b905b975ee55\ c:\windows\system32\driverstore\filerepository\kit126731.inf_amd64_1905c9d5f38631d9 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.
230 gfxdownloadwrapper.exe dnscmd.exe c:\windows\system32\driverstore\filerepository\ki132869.inf_amd64_052eb72d070df60f\ c:\windows\system32 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path. A command-line interface for managing DNS servers
231 gfxdownloadwrapper.exe dnscmd.exe c:\windows\system32\driverstore\filerepository\kit126731.inf_amd64_1905c9d5f38631d9\ c:\windows\syswow64 Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path. A command-line interface for managing DNS servers
232 dnscmd.exe wab.exe c:\windows\system32\dnscmd.exe c:\program files\windows mail A command-line interface for managing DNS servers Windows address book manager
233 dnscmd.exe wab.exe c:\windows\syswow64\dnscmd.exe c:\program files (x86)\windows mail A command-line interface for managing DNS servers Windows address book manager
234 wab.exe msconfig.exe c:\program files\windows mail\wab.exe c:\windows\system32 Windows address book manager MSConfig is a troubleshooting tool which is used to temporarily disable or re-enable software, device drivers or Windows services that run during startup process to help the user determine the cause of a problem with Windows
235 wab.exe wscript.exe c:\program files (x86)\windows mail\wab.exe c:\windows\system32 Windows address book manager Used by Windows to execute scripts
236 msconfig.exe wscript.exe c:\windows\system32\msconfig.exe c:\windows\syswow64 MSConfig is a troubleshooting tool which is used to temporarily disable or re-enable software, device drivers or Windows services that run during startup process to help the user determine the cause of a problem with Windows Used by Windows to execute scripts
237 wscript.exe makecab.exe c:\windows\system32\wscript.exe c:\windows\system32 Used by Windows to execute scripts Binary to package existing files into a cabinet (.cab) file
238 wscript.exe makecab.exe c:\windows\syswow64\wscript.exe c:\windows\syswow64 Used by Windows to execute scripts Binary to package existing files into a cabinet (.cab) file
239 makecab.exe datasvcutil.exe c:\windows\system32\makecab.exe c:\windows\microsoft.net\framework64\v3.5 Binary to package existing files into a cabinet (.cab) file DataSvcUtil.exe is a command-line tool provided by WCF Data Services that consumes an Open Data Protocol (OData) feed and generates the client data service classes that are needed to access a data service from a .NET Framework client application.
240 makecab.exe cmdl32.exe c:\windows\syswow64\makecab.exe c:\windows\system32 Binary to package existing files into a cabinet (.cab) file Microsoft Connection Manager Auto-Download
241 datasvcutil.exe cmdl32.exe c:\windows\microsoft.net\framework64\v3.5\datasvcutil.exe c:\windows\syswow64 DataSvcUtil.exe is a command-line tool provided by WCF Data Services that consumes an Open Data Protocol (OData) feed and generates the client data service classes that are needed to access a data service from a .NET Framework client application. Microsoft Connection Manager Auto-Download
242 cmdl32.exe mshta.exe c:\windows\system32\cmdl32.exe c:\windows\system32 Microsoft Connection Manager Auto-Download Used by Windows to execute html applications. (.hta)
243 cmdl32.exe mshta.exe c:\windows\syswow64\cmdl32.exe c:\windows\syswow64 Microsoft Connection Manager Auto-Download Used by Windows to execute html applications. (.hta)
244 mshta.exe cmdkey.exe c:\windows\system32\mshta.exe c:\windows\system32 Used by Windows to execute html applications. (.hta) creates, lists, and deletes stored user names and passwords or credentials.
245 mshta.exe cmdkey.exe c:\windows\syswow64\mshta.exe c:\windows\syswow64 Used by Windows to execute html applications. (.hta) creates, lists, and deletes stored user names and passwords or credentials.
246 cmdkey.exe ilasm.exe c:\windows\system32\cmdkey.exe c:\windows\microsoft.net\framework\v4.0.30319 creates, lists, and deletes stored user names and passwords or credentials. used for compile c# code into dll or exe.
247 cmdkey.exe ilasm.exe c:\windows\syswow64\cmdkey.exe c:\windows\microsoft.net\framework64\v4.0.30319 creates, lists, and deletes stored user names and passwords or credentials. used for compile c# code into dll or exe.
248 ilasm.exe rdrleakdiag.exe c:\windows\microsoft.net\framework\v4.0.30319\ilasm.exe c:\windows\system32 used for compile c# code into dll or exe. Microsoft Windows resource leak diagnostic tool
249 ilasm.exe rdrleakdiag.exe c:\windows\microsoft.net\framework64\v4.0.30319\ilasm.exe c:\windows\syswow64 used for compile c# code into dll or exe. Microsoft Windows resource leak diagnostic tool
250 rdrleakdiag.exe mpcmdrun.exe c:\windows\system32\rdrleakdiag.exe c:\programdata\microsoft\windows defender\platform\4.18.2008.4-0 Microsoft Windows resource leak diagnostic tool Binary part of Windows Defender. Used to manage settings in Windows Defender
251 rdrleakdiag.exe mpcmdrun.exe c:\windows\syswow64\rdrleakdiag.exe c:\programdata\microsoft\windows defender\platform\4.18.2008.7-0 Microsoft Windows resource leak diagnostic tool Binary part of Windows Defender. Used to manage settings in Windows Defender
252 mpcmdrun.exe c:\programdata\microsoft\windows defender\platform\4.18.2008.4-0\mpcmdrun.exe c:\programdata\microsoft\windows defender\platform\4.18.2008.9-0 Binary part of Windows Defender. Used to manage settings in Windows Defender
253 mpcmdrun.exe jsc.exe c:\programdata\microsoft\windows defender\platform\4.18.2008.7-0\mpcmdrun.exe c:\windows\microsoft.net\framework\v4.0.30319 Binary part of Windows Defender. Used to manage settings in Windows Defender Binary file used by .NET to compile javascript code to .exe or .dll format
254 mpcmdrun.exe jsc.exe c:\programdata\microsoft\windows defender\platform\4.18.2008.9-0\mpcmdrun.exe c:\windows\microsoft.net\framework64\v4.0.30319 Binary part of Windows Defender. Used to manage settings in Windows Defender Binary file used by .NET to compile javascript code to .exe or .dll format
255 jsc.exe c:\windows\microsoft.net\framework\v4.0.30319\jsc.exe c:\windows\microsoft.net\framework\v2.0.50727 Binary file used by .NET to compile javascript code to .exe or .dll format
256 jsc.exe c:\windows\microsoft.net\framework64\v4.0.30319\jsc.exe c:\windows\microsoft.net\framework64\v2.0.50727 Binary file used by .NET to compile javascript code to .exe or .dll format
257 jsc.exe cmstp.exe c:\windows\microsoft.net\framework\v2.0.50727\jsc.exe c:\windows\system32 Binary file used by .NET to compile javascript code to .exe or .dll format Installs or removes a Connection Manager service profile.
258 jsc.exe cmstp.exe c:\windows\microsoft.net\framework64\v2.0.50727\jsc.exe c:\windows\syswow64 Binary file used by .NET to compile javascript code to .exe or .dll format Installs or removes a Connection Manager service profile.
259 cmstp.exe stordiag.exe c:\windows\system32\cmstp.exe c:\windows\system32 Installs or removes a Connection Manager service profile. Storage diagnostic tool
260 cmstp.exe stordiag.exe c:\windows\syswow64\cmstp.exe c:\windows\syswow64 Installs or removes a Connection Manager service profile. Storage diagnostic tool
261 stordiag.exe odbcconf.exe c:\windows\system32\stordiag.exe c:\windows\system32 Storage diagnostic tool Used in Windows for managing ODBC connections
262 stordiag.exe odbcconf.exe c:\windows\syswow64\stordiag.exe c:\windows\syswow64 Storage diagnostic tool Used in Windows for managing ODBC connections
263 odbcconf.exe wlrmdr.exe c:\windows\system32\odbcconf.exe c:\windows\system32 Used in Windows for managing ODBC connections Windows Logon Reminder executable
264 odbcconf.exe printbrm.exe c:\windows\syswow64\odbcconf.exe c:\windows\system32\spool\tools Used in Windows for managing ODBC connections Printer Migration Command-Line Tool
265 wlrmdr.exe dfsvc.exe c:\windows\system32\wlrmdr.exe c:\windows\microsoft.net\framework\v2.0.50727 Windows Logon Reminder executable ClickOnce engine in Windows used by .NET
266 printbrm.exe dfsvc.exe c:\windows\system32\spool\tools\printbrm.exe c:\windows\microsoft.net\framework64\v2.0.50727 Printer Migration Command-Line Tool ClickOnce engine in Windows used by .NET
267 dfsvc.exe c:\windows\microsoft.net\framework\v2.0.50727\dfsvc.exe c:\windows\microsoft.net\framework\v4.0.30319 ClickOnce engine in Windows used by .NET
268 dfsvc.exe c:\windows\microsoft.net\framework64\v2.0.50727\dfsvc.exe c:\windows\microsoft.net\framework64\v4.0.30319 ClickOnce engine in Windows used by .NET
269 dfsvc.exe extrac32.exe c:\windows\microsoft.net\framework\v4.0.30319\dfsvc.exe c:\windows\system32 ClickOnce engine in Windows used by .NET Extract to ADS, copy or overwrite a file with Extrac32.exe
270 dfsvc.exe extrac32.exe c:\windows\microsoft.net\framework64\v4.0.30319\dfsvc.exe c:\windows\syswow64 ClickOnce engine in Windows used by .NET Extract to ADS, copy or overwrite a file with Extrac32.exe
271 extrac32.exe rundll32.exe c:\windows\system32\extrac32.exe c:\windows\system32 Used by Windows to execute dll files
272 extrac32.exe rundll32.exe c:\windows\syswow64\extrac32.exe c:\windows\syswow64 Used by Windows to execute dll files
273 rundll32.exe runonce.exe c:\windows\system32\rundll32.exe c:\windows\system32 Used by Windows to execute dll files Executes a Run Once Task that has been configured in the registry
274 rundll32.exe runonce.exe c:\windows\syswow64\rundll32.exe c:\windows\syswow64 Used by Windows to execute dll files Executes a Run Once Task that has been configured in the registry
275 runonce.exe explorer.exe c:\windows\system32\runonce.exe c:\windows Binary used for managing files and system components within Windows
276 runonce.exe explorer.exe c:\windows\syswow64\runonce.exe c:\windows\syswow64 Binary used for managing files and system components within Windows
277 explorer.exe wuauclt.exe c:\windows\explorer.exe c:\windows\system32 Binary used for managing files and system components within Windows Windows Update Client
278 explorer.exe wsreset.exe c:\windows\syswow64\explorer.exe c:\windows\system32 Binary used for managing files and system components within Windows Used to reset Windows Store settings according to its manifest file
279 wuauclt.exe finger.exe c:\windows\system32\wuauclt.exe c:\windows\system32 Windows Update Client Displays information about a user or users on a specified remote computer that is running the Finger service or daemon
280 wsreset.exe finger.exe c:\windows\system32\wsreset.exe c:\windows\syswow64 Used to reset Windows Store settings according to its manifest file Displays information about a user or users on a specified remote computer that is running the Finger service or daemon
281 finger.exe regini.exe c:\windows\system32\finger.exe c:\windows\system32 Displays information about a user or users on a specified remote computer that is running the Finger service or daemon Used to manipulate the registry
282 finger.exe regini.exe c:\windows\syswow64\finger.exe c:\windows\syswow64 Displays information about a user or users on a specified remote computer that is running the Finger service or daemon Used to manipulate the registry
283 regini.exe reg.exe c:\windows\system32\regini.exe c:\windows\system32 Used to manipulate the registry
284 regini.exe reg.exe c:\windows\syswow64\regini.exe c:\windows\syswow64 Used to manipulate the registry
285 reg.exe syncappvpublishingserver.exe c:\windows\system32\reg.exe c:\windows\system32 Used to manipulate the registry Used by App-v to get App-v server lists
286 reg.exe syncappvpublishingserver.exe c:\windows\syswow64\reg.exe c:\windows\syswow64 Used to manipulate the registry Used by App-v to get App-v server lists
287 syncappvpublishingserver.exe bitsadmin.exe c:\windows\system32\syncappvpublishingserver.exe c:\windows\system32 Used by App-v to get App-v server lists Used for managing background intelligent transfer
288 syncappvpublishingserver.exe bitsadmin.exe c:\windows\syswow64\syncappvpublishingserver.exe c:\windows\syswow64 Used by App-v to get App-v server lists Used for managing background intelligent transfer
289 bitsadmin.exe msiexec.exe c:\windows\system32\bitsadmin.exe c:\windows\system32 Used for managing background intelligent transfer Used by Windows to execute msi files
290 bitsadmin.exe msiexec.exe c:\windows\syswow64\bitsadmin.exe c:\windows\syswow64 Used for managing background intelligent transfer Used by Windows to execute msi files
291 msiexec.exe regsvcs.exe c:\windows\system32\msiexec.exe c:\windows\system32 Used by Windows to execute msi files Regsvcs and Regasm are Windows command-line utilities that are used to register .NET Component Object Model (COM) assemblies
292 msiexec.exe regsvcs.exe c:\windows\syswow64\msiexec.exe c:\windows\syswow64 Used by Windows to execute msi files Regsvcs and Regasm are Windows command-line utilities that are used to register .NET Component Object Model (COM) assemblies
293 regsvcs.exe gpscript.exe c:\windows\system32\regsvcs.exe c:\windows\system32 Regsvcs and Regasm are Windows command-line utilities that are used to register .NET Component Object Model (COM) assemblies Used by group policy to process scripts
294 regsvcs.exe gpscript.exe c:\windows\syswow64\regsvcs.exe c:\windows\syswow64 Regsvcs and Regasm are Windows command-line utilities that are used to register .NET Component Object Model (COM) assemblies Used by group policy to process scripts
295 gpscript.exe diskshadow.exe c:\windows\system32\gpscript.exe c:\windows\system32 Used by group policy to process scripts Diskshadow.exe is a tool that exposes the functionality offered by the volume shadow copy Service (VSS).
296 gpscript.exe diskshadow.exe c:\windows\syswow64\gpscript.exe c:\windows\syswow64 Used by group policy to process scripts Diskshadow.exe is a tool that exposes the functionality offered by the volume shadow copy Service (VSS).
297 diskshadow.exe ieexec.exe c:\windows\system32\diskshadow.exe c:\windows\microsoft.net\framework\v2.0.50727 Diskshadow.exe is a tool that exposes the functionality offered by the volume shadow copy Service (VSS). The IEExec.exe application is an undocumented Microsoft .NET Framework application that is included with the .NET Framework. You can use the IEExec.exe application as a host to run other managed applications that you start by using a URL.
298 diskshadow.exe ieexec.exe c:\windows\syswow64\diskshadow.exe c:\windows\microsoft.net\framework64\v2.0.50727 Diskshadow.exe is a tool that exposes the functionality offered by the volume shadow copy Service (VSS). The IEExec.exe application is an undocumented Microsoft .NET Framework application that is included with the .NET Framework. You can use the IEExec.exe application as a host to run other managed applications that you start by using a URL.
299 ieexec.exe diantz.exe c:\windows\microsoft.net\framework\v2.0.50727\ieexec.exe c:\windows\system32 The IEExec.exe application is an undocumented Microsoft .NET Framework application that is included with the .NET Framework. You can use the IEExec.exe application as a host to run other managed applications that you start by using a URL. Binary that package existing files into a cabinet (.cab) file
300 ieexec.exe diantz.exe c:\windows\microsoft.net\framework64\v2.0.50727\ieexec.exe c:\windows\syswow64 The IEExec.exe application is an undocumented Microsoft .NET Framework application that is included with the .NET Framework. You can use the IEExec.exe application as a host to run other managed applications that you start by using a URL. Binary that package existing files into a cabinet (.cab) file
301 diantz.exe desktopimgdownldr.exe c:\windows\system32\diantz.exe c:\windows\system32 Binary that package existing files into a cabinet (.cab) file Windows binary used to configure lockscreen/desktop image
302 diantz.exe appinstaller.exe c:\windows\syswow64\diantz.exe c:\program files\windowsapps\microsoft.desktopappinstaller_1.11.2521.0_x64__8wekyb3d8bbwe Binary that package existing files into a cabinet (.cab) file Tool used for installation of AppX/MSIX applications on Windows 10
303 desktopimgdownldr.exe sc.exe c:\windows\system32\desktopimgdownldr.exe c:\windows\system32 Windows binary used to configure lockscreen/desktop image Used by Windows to manage services
304 appinstaller.exe sc.exe c:\program files\windowsapps\microsoft.desktopappinstaller_1.11.2521.0_x64__8wekyb3d8bbwe\appinstaller.exe c:\windows\syswow64 Tool used for installation of AppX/MSIX applications on Windows 10 Used by Windows to manage services
305 sc.exe replace.exe c:\windows\system32\sc.exe c:\windows\system32 Used by Windows to manage services Used to replace file with another file
306 sc.exe replace.exe c:\windows\syswow64\sc.exe c:\windows\syswow64 Used by Windows to manage services Used to replace file with another file
307 replace.exe schtasks.exe c:\windows\system32\replace.exe c:\windows\system32 Used to replace file with another file Schedule periodic tasks
308 replace.exe schtasks.exe c:\windows\syswow64\replace.exe c:\windows\syswow64 Used to replace file with another file Schedule periodic tasks
309 schtasks.exe microsoft.workflow.compiler.exe c:\windows\system32\schtasks.exe c:\windows\microsoft.net\framework64\v4.0.30319 Schedule periodic tasks A utility included with .NET that is capable of compiling and executing C# or VB.net code.
310 schtasks.exe expand.exe c:\windows\syswow64\schtasks.exe c:\windows\system32 Schedule periodic tasks Binary that expands one or more compressed files
311 microsoft.workflow.compiler.exe expand.exe c:\windows\microsoft.net\framework64\v4.0.30319\microsoft.workflow.compiler.exe c:\windows\syswow64 A utility included with .NET that is capable of compiling and executing C# or VB.net code. Binary that expands one or more compressed files
312 expand.exe conhost.exe c:\windows\system32\expand.exe c:\windows\system32 Binary that expands one or more compressed files Console Window host
313 expand.exe bash.exe c:\windows\syswow64\expand.exe c:\windows\system32 Binary that expands one or more compressed files File used by Windows subsystem for Linux
314 conhost.exe bash.exe c:\windows\system32\conhost.exe c:\windows\syswow64 Console Window host File used by Windows subsystem for Linux
315 bash.exe pcwrun.exe c:\windows\system32\bash.exe c:\windows\system32 File used by Windows subsystem for Linux Program Compatibility Wizard
316 bash.exe fltmc.exe c:\windows\syswow64\bash.exe c:\windows\system32 File used by Windows subsystem for Linux Filter Manager Control Program used by Windows
317 pcwrun.exe wmic.exe c:\windows\system32\pcwrun.exe c:\windows\system32\wbem Program Compatibility Wizard The WMI command-line (WMIC) utility provides a command-line interface for WMI
318 fltmc.exe wmic.exe c:\windows\system32\fltmc.exe c:\windows\syswow64\wbem Filter Manager Control Program used by Windows The WMI command-line (WMIC) utility provides a command-line interface for WMI
319 wmic.exe workfolders.exe c:\windows\system32\wbem\wmic.exe c:\windows\system32 The WMI command-line (WMIC) utility provides a command-line interface for WMI Work Folders
320 wmic.exe settingsynchost.exe c:\windows\syswow64\wbem\wmic.exe c:\windows\system32 The WMI command-line (WMIC) utility provides a command-line interface for WMI Host Process for Setting Synchronization
321 workfolders.exe settingsynchost.exe c:\windows\system32\workfolders.exe c:\windows\syswow64 Work Folders Host Process for Setting Synchronization
322 settingsynchost.exe pktmon.exe c:\windows\system32\settingsynchost.exe c:\windows\system32 Host Process for Setting Synchronization Capture Network Packets on the windows 10 with October 2018 Update or later.
323 settingsynchost.exe pktmon.exe c:\windows\syswow64\settingsynchost.exe c:\windows\syswow64 Host Process for Setting Synchronization Capture Network Packets on the windows 10 with October 2018 Update or later.
324 pktmon.exe aspnet_compiler.exe c:\windows\system32\pktmon.exe c:\windows\microsoft.net\framework\v4.0.30319 Capture Network Packets on the windows 10 with October 2018 Update or later. ASP.NET Compilation Tool
325 pktmon.exe aspnet_compiler.exe c:\windows\syswow64\pktmon.exe c:\windows\microsoft.net\framework64\v4.0.30319 Capture Network Packets on the windows 10 with October 2018 Update or later. ASP.NET Compilation Tool
326 aspnet_compiler.exe cscript.exe c:\windows\microsoft.net\framework\v4.0.30319\aspnet_compiler.exe c:\windows\system32 ASP.NET Compilation Tool Binary used to execute scripts in Windows
327 aspnet_compiler.exe cscript.exe c:\windows\microsoft.net\framework64\v4.0.30319\aspnet_compiler.exe c:\windows\syswow64 ASP.NET Compilation Tool Binary used to execute scripts in Windows
328 cscript.exe installutil.exe c:\windows\system32\cscript.exe c:\windows\microsoft.net\framework\v2.0.50727 Binary used to execute scripts in Windows The Installer tool is a command-line utility that allows you to install and uninstall server resources by executing the installer components in specified assemblies
329 cscript.exe installutil.exe c:\windows\syswow64\cscript.exe c:\windows\microsoft.net\framework64\v2.0.50727 Binary used to execute scripts in Windows The Installer tool is a command-line utility that allows you to install and uninstall server resources by executing the installer components in specified assemblies
330 installutil.exe c:\windows\microsoft.net\framework\v2.0.50727\installutil.exe c:\windows\microsoft.net\framework\v4.0.30319 The Installer tool is a command-line utility that allows you to install and uninstall server resources by executing the installer components in specified assemblies
331 installutil.exe c:\windows\microsoft.net\framework64\v2.0.50727\installutil.exe c:\windows\microsoft.net\framework64\v4.0.30319 The Installer tool is a command-line utility that allows you to install and uninstall server resources by executing the installer components in specified assemblies
332 installutil.exe esentutl.exe c:\windows\microsoft.net\framework\v4.0.30319\installutil.exe c:\windows\system32 The Installer tool is a command-line utility that allows you to install and uninstall server resources by executing the installer components in specified assemblies Binary for working with Microsoft Joint Engine Technology (JET) database
333 installutil.exe esentutl.exe c:\windows\microsoft.net\framework64\v4.0.30319\installutil.exe c:\windows\syswow64 The Installer tool is a command-line utility that allows you to install and uninstall server resources by executing the installer components in specified assemblies Binary for working with Microsoft Joint Engine Technology (JET) database
334 esentutl.exe hh.exe c:\windows\system32\esentutl.exe c:\windows Binary for working with Microsoft Joint Engine Technology (JET) database Binary used for processing chm files in Windows
335 esentutl.exe hh.exe c:\windows\syswow64\esentutl.exe c:\windows\syswow64 Binary for working with Microsoft Joint Engine Technology (JET) database Binary used for processing chm files in Windows
336 hh.exe findstr.exe c:\windows\hh.exe c:\windows\system32 Binary used for processing chm files in Windows Write to ADS, discover, or download files with Findstr.exe
337 hh.exe findstr.exe c:\windows\syswow64\hh.exe c:\windows\syswow64 Binary used for processing chm files in Windows Write to ADS, discover, or download files with Findstr.exe
338 findstr.exe verclsid.exe c:\windows\system32\findstr.exe c:\windows\system32 Used to verify a COM object before it is instantiated by Windows Explorer
339 findstr.exe verclsid.exe c:\windows\syswow64\findstr.exe c:\windows\syswow64 Used to verify a COM object before it is instantiated by Windows Explorer
340 verclsid.exe certreq.exe c:\windows\system32\verclsid.exe c:\windows\system32 Used for requesting and managing certificates
341 verclsid.exe certreq.exe c:\windows\syswow64\verclsid.exe c:\windows\syswow64 Used for requesting and managing certificates
342 certreq.exe csc.exe c:\windows\system32\certreq.exe c:\windows\microsoft.net\framework\v4.0.30319 Used for requesting and managing certificates Binary file used by .NET to compile C# code
343 certreq.exe csc.exe c:\windows\syswow64\certreq.exe c:\windows\microsoft.net\framework64\v4.0.30319 Used for requesting and managing certificates Binary file used by .NET to compile C# code
344 csc.exe imewdbld.exe c:\windows\microsoft.net\framework\v4.0.30319\csc.exe c:\windows\system32\ime\shared Binary file used by .NET to compile C# code Microsoft IME Open Extended Dictionary Module
345 csc.exe presentationhost.exe c:\windows\microsoft.net\framework64\v4.0.30319\csc.exe c:\windows\system32 Binary file used by .NET to compile C# code File is used for executing Browser applications
346 imewdbld.exe presentationhost.exe c:\windows\system32\ime\shared\imewdbld.exe c:\windows\syswow64 Microsoft IME Open Extended Dictionary Module File is used for executing Browser applications
347 presentationhost.exe shell32.dll c:\windows\system32\presentationhost.exe c:\windows\system32 File is used for executing Browser applications Windows Shell Common Dll
348 presentationhost.exe shell32.dll c:\windows\syswow64\presentationhost.exe c:\windows\syswow64 File is used for executing Browser applications Windows Shell Common Dll
349 shell32.dll zipfldr.dll c:\windows\system32\shell32.dll c:\windows\system32 Windows Shell Common Dll Compressed Folder library
350 shell32.dll zipfldr.dll c:\windows\syswow64\shell32.dll c:\windows\syswow64 Windows Shell Common Dll Compressed Folder library
351 zipfldr.dll desk.cpl c:\windows\system32\zipfldr.dll c:\windows\system32 Compressed Folder library Desktop Settings Control Panel
352 zipfldr.dll desk.cpl c:\windows\syswow64\zipfldr.dll c:\windows\syswow64 Compressed Folder library Desktop Settings Control Panel
353 desk.cpl comsvcs.dll c:\windows\system32\desk.cpl c:\windows\system32 Desktop Settings Control Panel COM+ Services
354 desk.cpl setupapi.dll c:\windows\syswow64\desk.cpl c:\windows\system32 Desktop Settings Control Panel Windows Setup Application Programming Interface
355 comsvcs.dll setupapi.dll c:\windows\system32\comsvcs.dll c:\windows\syswow64 COM+ Services Windows Setup Application Programming Interface
356 setupapi.dll mshtml.dll c:\windows\system32\setupapi.dll c:\windows\system32 Windows Setup Application Programming Interface Microsoft HTML Viewer
357 setupapi.dll mshtml.dll c:\windows\syswow64\setupapi.dll c:\windows\syswow64 Windows Setup Application Programming Interface Microsoft HTML Viewer
358 mshtml.dll advpack.dll c:\windows\system32\mshtml.dll c:\windows\system32 Microsoft HTML Viewer Utility for installing software and drivers with rundll32.exe
359 mshtml.dll advpack.dll c:\windows\syswow64\mshtml.dll c:\windows\syswow64 Microsoft HTML Viewer Utility for installing software and drivers with rundll32.exe
360 advpack.dll pcwutl.dll c:\windows\system32\advpack.dll c:\windows\system32 Utility for installing software and drivers with rundll32.exe Microsoft HTML Viewer
361 advpack.dll pcwutl.dll c:\windows\syswow64\advpack.dll c:\windows\syswow64 Utility for installing software and drivers with rundll32.exe Microsoft HTML Viewer
362 pcwutl.dll shdocvw.dll c:\windows\system32\pcwutl.dll c:\windows\system32 Microsoft HTML Viewer Shell Doc Object and Control Library.
363 pcwutl.dll shdocvw.dll c:\windows\syswow64\pcwutl.dll c:\windows\syswow64 Microsoft HTML Viewer Shell Doc Object and Control Library.
364 shdocvw.dll ieframe.dll c:\windows\system32\shdocvw.dll c:\windows\system32 Shell Doc Object and Control Library. Internet Browser DLL for translating HTML code.
365 shdocvw.dll ieframe.dll c:\windows\syswow64\shdocvw.dll c:\windows\syswow64 Shell Doc Object and Control Library. Internet Browser DLL for translating HTML code.
366 ieframe.dll dfshim.dll c:\windows\system32\ieframe.dll c:\windows\microsoft.net\framework\v2.0.50727 Internet Browser DLL for translating HTML code. ClickOnce engine in Windows used by .NET
367 ieframe.dll dfshim.dll c:\windows\syswow64\ieframe.dll c:\windows\microsoft.net\framework64\v2.0.50727 Internet Browser DLL for translating HTML code. ClickOnce engine in Windows used by .NET
368 dfshim.dll c:\windows\microsoft.net\framework\v2.0.50727\dfsvc.exe c:\windows\microsoft.net\framework\v4.0.30319 ClickOnce engine in Windows used by .NET
369 dfshim.dll c:\windows\microsoft.net\framework64\v2.0.50727\dfsvc.exe c:\windows\microsoft.net\framework64\v4.0.30319 ClickOnce engine in Windows used by .NET
370 dfshim.dll url.dll c:\windows\microsoft.net\framework\v4.0.30319\dfsvc.exe c:\windows\system32 ClickOnce engine in Windows used by .NET Internet Shortcut Shell Extension DLL.
371 dfshim.dll url.dll c:\windows\microsoft.net\framework64\v4.0.30319\dfsvc.exe c:\windows\syswow64 ClickOnce engine in Windows used by .NET Internet Shortcut Shell Extension DLL.
372 url.dll ieadvpack.dll c:\windows\system32\url.dll c:\windows\system32 Internet Shortcut Shell Extension DLL. INF installer for Internet Explorer. Has much of the same functionality as advpack.dll.
373 url.dll ieadvpack.dll c:\windows\syswow64\url.dll c:\windows\syswow64 Internet Shortcut Shell Extension DLL. INF installer for Internet Explorer. Has much of the same functionality as advpack.dll.
374 ieadvpack.dll syssetup.dll c:\windows\system32\ieadvpack.dll c:\windows\system32 INF installer for Internet Explorer. Has much of the same functionality as advpack.dll. Windows NT System Setup
375 ieadvpack.dll syssetup.dll c:\windows\syswow64\ieadvpack.dll c:\windows\syswow64 INF installer for Internet Explorer. Has much of the same functionality as advpack.dll. Windows NT System Setup
376 syssetup.dll winrm.vbs c:\windows\system32\syssetup.dll c:\windows\system32 Windows NT System Setup Script used for manage Windows RM settings
377 syssetup.dll winrm.vbs c:\windows\syswow64\syssetup.dll c:\windows\syswow64 Windows NT System Setup Script used for manage Windows RM settings
378 winrm.vbs manage-bde.wsf c:\windows\system32\winrm.vbs c:\windows\system32 Script used for manage Windows RM settings Script for managing BitLocker
379 winrm.vbs cl_mutexverifiers.ps1 c:\windows\syswow64\winrm.vbs c:\windows\diagnostics\system\windowsupdate Script used for manage Windows RM settings Proxy execution with CL_Mutexverifiers.ps1
380 manage-bde.wsf cl_mutexverifiers.ps1 c:\windows\system32\manage-bde.wsf c:\windows\diagnostics\system\audio Script for managing BitLocker Proxy execution with CL_Mutexverifiers.ps1
381 cl_mutexverifiers.ps1 c:\windows\diagnostics\system\windowsupdate\cl_mutexverifiers.ps1 c:\windows\diagnostics\system\video Proxy execution with CL_Mutexverifiers.ps1
382 cl_mutexverifiers.ps1 c:\windows\diagnostics\system\audio\cl_mutexverifiers.ps1 c:\windows\diagnostics\system\speech Proxy execution with CL_Mutexverifiers.ps1
383 cl_mutexverifiers.ps1 pubprn.vbs c:\windows\diagnostics\system\windowsupdate\cl_mutexverifiers.ps1 c:\windows\system32\printing_admin_scripts\en-us Proxy execution with Pubprn.vbs
384 cl_mutexverifiers.ps1 pubprn.vbs c:\windows\diagnostics\system\video\cl_mutexverifiers.ps1 c:\windows\syswow64\printing_admin_scripts\en-us Proxy execution with Pubprn.vbs
385 cl_mutexverifiers.ps1 pester.bat c:\windows\diagnostics\system\speech\cl_mutexverifiers.ps1 c:\program files\windowspowershell\modules\pester\3.4.0\bin Used as part of the Powershell pester
386 pubprn.vbs pester.bat c:\windows\system32\printing_admin_scripts\en-us\pubprn.vbs c:\program files\windowspowershell\modules\pester\*\bin Used as part of the Powershell pester
387 pubprn.vbs cl_loadassembly.ps1 c:\windows\syswow64\printing_admin_scripts\en-us\pubprn.vbs c:\windows\diagnostics\system\audio PowerShell Diagnostic Script
388 pester.bat syncappvpublishingserver.vbs c:\program files\windowspowershell\modules\pester\3.4.0\bin\pester.bat c:\windows\system32 Used as part of the Powershell pester Script used related to app-v and publishing server
389 pester.bat cl_invocation.ps1 c:\program files\windowspowershell\modules\pester\*\bin\pester.bat c:\windows\diagnostics\system\aero Used as part of the Powershell pester Aero diagnostics script
390 cl_loadassembly.ps1 cl_invocation.ps1 c:\windows\diagnostics\system\audio\cl_loadassembly.ps1 c:\windows\diagnostics\system\audio PowerShell Diagnostic Script Aero diagnostics script
391 syncappvpublishingserver.vbs cl_invocation.ps1 c:\windows\system32\syncappvpublishingserver.vbs c:\windows\diagnostics\system\windowsupdate Script used related to app-v and publishing server Aero diagnostics script
392 cl_invocation.ps1 utilityfunctions.ps1 c:\windows\diagnostics\system\aero\cl_invocation.ps1 c:\windows\diagnostics\system\networking Aero diagnostics script PowerShell Diagnostic Script
393 cl_invocation.ps1 coregen.exe c:\windows\diagnostics\system\audio\cl_invocation.ps1 c:\program files\microsoft silverlight\5.1.50918.0 Aero diagnostics script Binary coregen.exe (Microsoft CoreCLR Native Image Generator) loads exported function GetCLRRuntimeHost from coreclr.dll or from .DLL in arbitrary path. Coregen is located within "C:\Program Files (x86)\Microsoft Silverlight\5.1.50918.0\" or another version of Silverlight. Coregen is signed by Microsoft and bundled with Microsoft Silverlight.
394 cl_invocation.ps1 coregen.exe c:\windows\diagnostics\system\windowsupdate\cl_invocation.ps1 c:\program files (x86)\microsoft silverlight\5.1.50918.0 Aero diagnostics script Binary coregen.exe (Microsoft CoreCLR Native Image Generator) loads exported function GetCLRRuntimeHost from coreclr.dll or from .DLL in arbitrary path. Coregen is located within "C:\Program Files (x86)\Microsoft Silverlight\5.1.50918.0\" or another version of Silverlight. Coregen is signed by Microsoft and bundled with Microsoft Silverlight.
395 utilityfunctions.ps1 fsi.exe c:\windows\diagnostics\system\networking\utilityfunctions.ps1 c:\program files\dotnet\sdk\[sdk version]\fsharp PowerShell Diagnostic Script 64-bit FSharp (F#) Interpreter included with Visual Studio and DotNet Core SDK.
396 coregen.exe fsi.exe c:\program files\microsoft silverlight\5.1.50918.0\coregen.exe c:\program files (x86)\microsoft visual studio\2019\professional\common7\ide\commonextensions\microsoft\fsharp Binary coregen.exe (Microsoft CoreCLR Native Image Generator) loads exported function GetCLRRuntimeHost from coreclr.dll or from .DLL in arbitrary path. Coregen is located within "C:\Program Files (x86)\Microsoft Silverlight\5.1.50918.0\" or another version of Silverlight. Coregen is signed by Microsoft and bundled with Microsoft Silverlight. 64-bit FSharp (F#) Interpreter included with Visual Studio and DotNet Core SDK.
397 coregen.exe visualuiaverifynative.exe c:\program files (x86)\microsoft silverlight\5.1.50918.0\coregen.exe c:\program files (x86)\windows kits\10\bin\[sdk version]\arm64\uiaverify Binary coregen.exe (Microsoft CoreCLR Native Image Generator) loads exported function GetCLRRuntimeHost from coreclr.dll or from .DLL in arbitrary path. Coregen is located within "C:\Program Files (x86)\Microsoft Silverlight\5.1.50918.0\" or another version of Silverlight. Coregen is signed by Microsoft and bundled with Microsoft Silverlight. A Windows SDK binary for manual and automated testing of Microsoft UI Automation implementation and controls.
398 fsi.exe visualuiaverifynative.exe c:\program files\dotnet\sdk\[sdk version]\fsharp\fsi.exe c:\program files (x86)\windows kits\10\bin\[sdk version]\x64\uiaverify 64-bit FSharp (F#) Interpreter included with Visual Studio and DotNet Core SDK. A Windows SDK binary for manual and automated testing of Microsoft UI Automation implementation and controls.
399 fsi.exe visualuiaverifynative.exe c:\program files (x86)\microsoft visual studio\2019\professional\common7\ide\commonextensions\microsoft\fsharp\fsi.exe c:\program files (x86)\windows kits\10\bin\[sdk version]\uiaverify 64-bit FSharp (F#) Interpreter included with Visual Studio and DotNet Core SDK. A Windows SDK binary for manual and automated testing of Microsoft UI Automation implementation and controls.
400 visualuiaverifynative.exe ntdsutil.exe c:\program files (x86)\windows kits\10\bin\[sdk version]\arm64\uiaverify\visualuiaverifynative.exe c:\windows\system32 A Windows SDK binary for manual and automated testing of Microsoft UI Automation implementation and controls. Command line utility used to export Active Directory.
401 visualuiaverifynative.exe sqltoolsps.exe c:\program files (x86)\windows kits\10\bin\[sdk version]\x64\uiaverify\visualuiaverifynative.exe c:\program files (x86)\microsoft sql server\130\tools\binn A Windows SDK binary for manual and automated testing of Microsoft UI Automation implementation and controls. Tool included with Microsoft SQL that loads SQL Server cmdlts. A replacement for sqlps.exe. Successor to sqlps.exe in SQL Server 2016+.
402 visualuiaverifynative.exe dump64.exe c:\program files (x86)\windows kits\10\bin\[sdk version]\uiaverify\visualuiaverifynative.exe c:\program files (x86)\microsoft visual studio\installer\feedback A Windows SDK binary for manual and automated testing of Microsoft UI Automation implementation and controls. Memory dump tool that comes with Microsoft Visual Studio
403 ntdsutil.exe wsl.exe c:\windows\system32\ntdsutil.exe c:\windows\system32 Command line utility used to export Active Directory. Windows subsystem for Linux executable
404 sqltoolsps.exe csi.exe c:\program files (x86)\microsoft sql server\130\tools\binn\sqlps.exe c:\program files (x86)\microsoft visual studio\2017\community\msbuild\15.0\bin\roslyn Tool included with Microsoft SQL that loads SQL Server cmdlts. A replacement for sqlps.exe. Successor to sqlps.exe in SQL Server 2016+. Command line interface included with Visual Studio.
405 dump64.exe csi.exe c:\program files (x86)\microsoft visual studio\installer\feedback\dump64.exe c:\program files (x86)\microsoft web tools\packages\microsoft.net.compilers.x.y.z\tools Memory dump tool that comes with Microsoft Visual Studio Command line interface included with Visual Studio.
406 wsl.exe mftrace.exe c:\windows\system32\wsl.exe c:\program files (x86)\windows kits\10\bin\10.0.16299.0 Windows subsystem for Linux executable Trace log generation tool for Media Foundation Tools.
407 csi.exe mftrace.exe c:\program files (x86)\microsoft visual studio\2017\community\msbuild\15.0\bin\roslyn\csi.exe c:\program files (x86)\windows kits\10\bin Command line interface included with Visual Studio. Trace log generation tool for Media Foundation Tools.
408 csi.exe adplus.exe c:\program files (x86)\microsoft web tools\packages\microsoft.net.compilers.x.y.z\tools\csi.exe c:\program files (x86)\windows kits\10\debuggers\x64 Command line interface included with Visual Studio. Debugging tool included with Windows Debugging Tools
409 mftrace.exe adplus.exe c:\program files (x86)\windows kits\10\bin\10.0.16299.0\x86 c:\program files (x86)\windows kits\10\debuggers\x86 Trace log generation tool for Media Foundation Tools. Debugging tool included with Windows Debugging Tools
410 mftrace.exe excel.exe c:\program files (x86)\windows kits\10\bin\10.0.16299.0\x64 c:\program files (x86)\microsoft office 16\clientx86\root\office16 Trace log generation tool for Media Foundation Tools. Microsoft Office binary
411 mftrace.exe excel.exe c:\program files (x86)\windows kits\10\bin\x86 c:\program files\microsoft office 16\clientx64\root\office16 Trace log generation tool for Media Foundation Tools. Microsoft Office binary
412 mftrace.exe excel.exe c:\program files (x86)\windows kits\10\bin\x64 c:\program files (x86)\microsoft office\office16 Trace log generation tool for Media Foundation Tools. Microsoft Office binary
413 adplus.exe excel.exe c:\program files (x86)\windows kits\10\debuggers\x64\adplus.exe c:\program files\microsoft office\office16 Debugging tool included with Windows Debugging Tools Microsoft Office binary
414 adplus.exe excel.exe c:\program files (x86)\windows kits\10\debuggers\x86\adplus.exe c:\program files (x86)\microsoft office 15\clientx86\root\office15 Debugging tool included with Windows Debugging Tools Microsoft Office binary
415 excel.exe c:\program files (x86)\microsoft office 16\clientx86\root\office16\excel.exe c:\program files\microsoft office 15\clientx64\root\office15 Microsoft Office binary
416 excel.exe c:\program files\microsoft office 16\clientx64\root\office16\excel.exe c:\program files (x86)\microsoft office\office15 Microsoft Office binary
417 excel.exe c:\program files (x86)\microsoft office\office16\excel.exe c:\program files\microsoft office\office15 Microsoft Office binary
418 excel.exe c:\program files\microsoft office\office16\excel.exe c:\program files (x86)\microsoft office 14\clientx86\root\office14 Microsoft Office binary
419 excel.exe c:\program files (x86)\microsoft office 15\clientx86\root\office15\excel.exe c:\program files\microsoft office 14\clientx64\root\office14 Microsoft Office binary
420 excel.exe c:\program files\microsoft office 15\clientx64\root\office15\excel.exe c:\program files (x86)\microsoft office\office14 Microsoft Office binary
421 excel.exe c:\program files (x86)\microsoft office\office15\excel.exe c:\program files\microsoft office\office14 Microsoft Office binary
422 excel.exe c:\program files\microsoft office\office15\excel.exe c:\program files (x86)\microsoft office\office12 Microsoft Office binary
423 excel.exe c:\program files (x86)\microsoft office 14\clientx86\root\office14\excel.exe c:\program files\microsoft office\office12 Microsoft Office binary
424 excel.exe dotnet.exe c:\program files\microsoft office 14\clientx64\root\office14\excel.exe c:\program files\dotnet Microsoft Office binary dotnet.exe comes with .NET Framework
425 excel.exe sqlps.exe c:\program files (x86)\microsoft office\office14\excel.exe c:\program files (x86)\microsoft sql server\100\tools\binn Microsoft Office binary Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons.
426 excel.exe sqlps.exe c:\program files\microsoft office\office14\excel.exe c:\program files (x86)\microsoft sql server\110\tools\binn Microsoft Office binary Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons.
427 excel.exe sqlps.exe c:\program files (x86)\microsoft office\office12\excel.exe c:\program files (x86)\microsoft sql server\120\tools\binn Microsoft Office binary Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons.
428 excel.exe sqlps.exe c:\program files\microsoft office\office12\excel.exe c:\program files (x86)\microsoft sql server\130\tools\binn Microsoft Office binary Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons.
429 excel.exe sqlps.exe c:\program files\microsoft office\office12\excel.exe c:\program files (x86)\microsoft sql server\150\tools\binn Microsoft Office binary Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons.
430 dotnet.exe acccheckconsole.exe c:\program files\dotnet\dotnet.exe c:\program files (x86)\windows kits\10\bin\10.0.22000.0\x86\accchecker dotnet.exe comes with .NET Framework Verifies UI accessibility requirements
431 sqlps.exe acccheckconsole.exe c:\program files (x86)\microsoft sql server\100\tools\binn\sqlps.exe c:\program files (x86)\windows kits\10\bin\10.0.22000.0\x64\accchecker Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons. Verifies UI accessibility requirements
432 sqlps.exe acccheckconsole.exe c:\program files (x86)\microsoft sql server\110\tools\binn\sqlps.exe c:\program files (x86)\windows kits\10\bin\10.0.22000.0\arm\accchecker Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons. Verifies UI accessibility requirements
433 sqlps.exe acccheckconsole.exe c:\program files (x86)\microsoft sql server\120\tools\binn\sqlps.exe c:\program files (x86)\windows kits\10\bin\10.0.22000.0\arm64\accchecker Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons. Verifies UI accessibility requirements
434 sqlps.exe powerpnt.exe c:\program files (x86)\microsoft sql server\130\tools\binn\sqlps.exe c:\program files (x86)\microsoft office 16\clientx86\root\office16 Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons. Microsoft Office binary.
435 sqlps.exe powerpnt.exe c:\program files (x86)\microsoft sql server\150\tools\binn\sqlps.exe c:\program files\microsoft office 16\clientx64\root\office16 Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\100 and 110 are Powershell v2. Microsoft SQL Server\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons. Microsoft Office binary.
436 acccheckconsole.exe powerpnt.exe c:\program files (x86)\windows kits\10\bin\10.0.22000.0\x86\accchecker\acccheckconsole.exe c:\program files (x86)\microsoft office\office16 Verifies UI accessibility requirements Microsoft Office binary.
437 acccheckconsole.exe powerpnt.exe c:\program files (x86)\windows kits\10\bin\10.0.22000.0\x64\accchecker\acccheckconsole.exe c:\program files\microsoft office\office16 Verifies UI accessibility requirements Microsoft Office binary.
438 acccheckconsole.exe powerpnt.exe c:\program files (x86)\windows kits\10\bin\10.0.22000.0\arm\accchecker\acccheckconsole.exe c:\program files (x86)\microsoft office 15\clientx86\root\office15 Verifies UI accessibility requirements Microsoft Office binary.
439 acccheckconsole.exe powerpnt.exe c:\program files (x86)\windows kits\10\bin\10.0.22000.0\arm64\accchecker\acccheckconsole.exe c:\program files\microsoft office 15\clientx64\root\office15 Verifies UI accessibility requirements Microsoft Office binary.
440 powerpnt.exe c:\program files (x86)\microsoft office 16\clientx86\root\office16\powerpnt.exe c:\program files (x86)\microsoft office\office15 Microsoft Office binary.
441 powerpnt.exe c:\program files\microsoft office 16\clientx64\root\office16\powerpnt.exe c:\program files\microsoft office\office15 Microsoft Office binary.
442 powerpnt.exe c:\program files (x86)\microsoft office\office16\powerpnt.exe c:\program files (x86)\microsoft office 14\clientx86\root\office14 Microsoft Office binary.
443 powerpnt.exe c:\program files\microsoft office\office16\powerpnt.exe c:\program files\microsoft office 14\clientx64\root\office14 Microsoft Office binary.
444 powerpnt.exe c:\program files (x86)\microsoft office 15\clientx86\root\office15\powerpnt.exe c:\program files (x86)\microsoft office\office14 Microsoft Office binary.
445 powerpnt.exe c:\program files\microsoft office 15\clientx64\root\office15\powerpnt.exe c:\program files\microsoft office\office14 Microsoft Office binary.
446 powerpnt.exe c:\program files (x86)\microsoft office\office15\powerpnt.exe c:\program files (x86)\microsoft office\office12 Microsoft Office binary.
447 powerpnt.exe c:\program files\microsoft office\office15\powerpnt.exe c:\program files\microsoft office\office12 Microsoft Office binary.
448 powerpnt.exe sqldumper.exe c:\program files (x86)\microsoft office 14\clientx86\root\office14\powerpnt.exe c:\program files\microsoft sql server\90\shared Microsoft Office binary. Debugging utility included with Microsoft SQL.
449 powerpnt.exe sqldumper.exe c:\program files\microsoft office 14\clientx64\root\office14\powerpnt.exe c:\program files (x86)\microsoft office\root\vfs\programfilesx86\microsoft analysis\as oledb\140 Microsoft Office binary. Debugging utility included with Microsoft SQL.
450 powerpnt.exe remote.exe c:\program files (x86)\microsoft office\office14\powerpnt.exe c:\program files (x86)\windows kits\10\debuggers\x64 Microsoft Office binary. Debugging tool included with Windows Debugging Tools
451 powerpnt.exe remote.exe c:\program files\microsoft office\office14\powerpnt.exe c:\program files (x86)\windows kits\10\debuggers\x86 Microsoft Office binary. Debugging tool included with Windows Debugging Tools
452 powerpnt.exe appvlp.exe c:\program files (x86)\microsoft office\office12\powerpnt.exe c:\program files\microsoft office\root\client Microsoft Office binary. Application Virtualization Utility Included with Microsoft Office 2016
453 powerpnt.exe appvlp.exe c:\program files\microsoft office\office12\powerpnt.exe c:\program files (x86)\microsoft office\root\client Microsoft Office binary. Application Virtualization Utility Included with Microsoft Office 2016
454 powerpnt.exe agentexecutor.exe c:\program files\microsoft office\office12\powerpnt.exe c:\program files (x86) Microsoft Office binary. Intune Management Extension included on Intune Managed Devices
455 sqldumper.exe dxcap.exe c:\program files\microsoft sql server\90\shared\sqldumper.exe c:\windows\system32 Debugging utility included with Microsoft SQL. DirectX diagnostics/debugger included with Visual Studio.
456 sqldumper.exe dxcap.exe c:\program files (x86)\microsoft office\root\vfs\programfilesx86\microsoft analysis\as oledb\140\sqldumper.exe c:\windows\syswow64 Debugging utility included with Microsoft SQL. DirectX diagnostics/debugger included with Visual Studio.
457 remote.exe cdb.exe c:\program files (x86)\windows kits\10\debuggers\x64\remote.exe c:\program files (x86)\windows kits\10\debuggers\x64 Debugging tool included with Windows Debugging Tools Debugging tool included with Windows Debugging Tools.
458 remote.exe cdb.exe c:\program files (x86)\windows kits\10\debuggers\x86\remote.exe c:\program files (x86)\windows kits\10\debuggers\x86 Debugging tool included with Windows Debugging Tools Debugging tool included with Windows Debugging Tools.
459 appvlp.exe defaultpack.exe c:\program files\microsoft office\root\client\appvlp.exe c:\program files (x86)\microsoft\defaultpack Application Virtualization Utility Included with Microsoft Office 2016 This binary can be downloaded along side multiple software downloads on the microsoft website. It gets downloaded when the user forgets to uncheck the option to set Bing as the default search provider.
460 appvlp.exe devtoolslauncher.exe c:\program files (x86)\microsoft office\root\client\appvlp.exe c:\windows\system32 Application Virtualization Utility Included with Microsoft Office 2016 Binary will execute specified binary. Part of VS/VScode installation.
461 agentexecutor.exe vsiisexelauncher.exe c:\program files (x86)\microsoft intune management extension c:\program files (x86)\microsoft visual studio\2019\community\common7\ide\extensions\microsoft\web tools\projectsystem Intune Management Extension included on Intune Managed Devices Binary will execute specified binary. Part of VS/VScode installation.
462 dxcap.exe winword.exe c:\windows\system32\dxcap.exe c:\program files\microsoft office\root\office16 DirectX diagnostics/debugger included with Visual Studio. Microsoft Office binary
463 dxcap.exe winword.exe c:\windows\syswow64\dxcap.exe c:\program files (x86)\microsoft office 16\clientx86\root\office16 DirectX diagnostics/debugger included with Visual Studio. Microsoft Office binary
464 cdb.exe winword.exe c:\program files (x86)\windows kits\10\debuggers\x64\cdb.exe c:\program files\microsoft office 16\clientx64\root\office16 Debugging tool included with Windows Debugging Tools. Microsoft Office binary
465 cdb.exe winword.exe c:\program files (x86)\windows kits\10\debuggers\x86\cdb.exe c:\program files (x86)\microsoft office\office16 Debugging tool included with Windows Debugging Tools. Microsoft Office binary
466 defaultpack.exe winword.exe c:\program files (x86)\microsoft\defaultpack\ c:\program files\microsoft office\office16 This binary can be downloaded along side multiple software downloads on the microsoft website. It gets downloaded when the user forgets to uncheck the option to set Bing as the default search provider. Microsoft Office binary
467 devtoolslauncher.exe winword.exe c:\windows\system32\devtoolslauncher.exe c:\program files (x86)\microsoft office 15\clientx86\root\office15 Binary will execute specified binary. Part of VS/VScode installation. Microsoft Office binary
468 vsiisexelauncher.exe winword.exe c:\program files (x86)\microsoft visual studio\2019\community\common7\ide\extensions\microsoft\web tools\projectsystem\vsiisexelauncher.exe c:\program files\microsoft office 15\clientx64\root\office15 Binary will execute specified binary. Part of VS/VScode installation. Microsoft Office binary
469 winword.exe c:\program files\microsoft office\root\office16\winword.exe c:\program files (x86)\microsoft office\office15 Microsoft Office binary
470 winword.exe c:\program files (x86)\microsoft office 16\clientx86\root\office16\winword.exe c:\program files\microsoft office\office15 Microsoft Office binary
471 winword.exe c:\program files\microsoft office 16\clientx64\root\office16\winword.exe c:\program files (x86)\microsoft office 14\clientx86\root\office14 Microsoft Office binary
472 winword.exe c:\program files (x86)\microsoft office\office16\winword.exe c:\program files\microsoft office 14\clientx64\root\office14 Microsoft Office binary
473 winword.exe c:\program files\microsoft office\office16\winword.exe c:\program files (x86)\microsoft office\office14 Microsoft Office binary
474 winword.exe c:\program files (x86)\microsoft office 15\clientx86\root\office15\winword.exe c:\program files\microsoft office\office14 Microsoft Office binary
475 winword.exe c:\program files\microsoft office 15\clientx64\root\office15\winword.exe c:\program files (x86)\microsoft office\office12 Microsoft Office binary
476 winword.exe c:\program files (x86)\microsoft office\office15\winword.exe c:\program files\microsoft office\office12 Microsoft Office binary
477 winword.exe fsianycpu.exe c:\program files\microsoft office\office15\winword.exe c:\program files (x86)\microsoft visual studio\2019\professional\common7\ide\commonextensions\microsoft\fsharp Microsoft Office binary 32/64-bit FSharp (F#) Interpreter included with Visual Studio.
478 winword.exe vsjitdebugger.exe c:\program files (x86)\microsoft office 14\clientx86\root\office14\winword.exe c:\windows\system32 Microsoft Office binary Just-In-Time (JIT) debugger included with Visual Studio
479 winword.exe wfc.exe c:\program files\microsoft office 14\clientx64\root\office14\winword.exe c:\program files (x86)\microsoft sdks\windows\v10.0a\bin\netfx 4.8 tools Microsoft Office binary The Workflow Command-line Compiler tool is included with the Windows Software Development Kit (SDK).
480 winword.exe msdeploy.exe c:\program files (x86)\microsoft office\office14\winword.exe c:\program files (x86)\iis\microsoft web deploy v3 Microsoft Office binary Microsoft tool used to deploy Web Applications.
winword.exe c:\program files\microsoft office\office14\winword.exe Microsoft Office binary
winword.exe c:\program files (x86)\microsoft office\office12\winword.exe Microsoft Office binary
winword.exe c:\program files\microsoft office\office12\winword.exe Microsoft Office binary
winword.exe c:\program files\microsoft office\office12\winword.exe Microsoft Office binary
fsianycpu.exe c:\program files (x86)\microsoft visual studio\2019\professional\common7\ide\commonextensions\microsoft\fsharp\fsianycpu.exe 32/64-bit FSharp (F#) Interpreter included with Visual Studio.
vsjitdebugger.exe c:\windows\system32\vsjitdebugger.exe Just-In-Time (JIT) debugger included with Visual Studio
wfc.exe c:\program files (x86)\microsoft sdks\windows\v10.0a\bin\netfx 4.8 tools\wfc.exe The Workflow Command-line Compiler tool is included with the Windows Software Development Kit (SDK).
msdeploy.exe c:\program files (x86)\iis\microsoft web deploy v3\msdeploy.exe Microsoft tool used to deploy Web Applications.