From b27f6bec3c06f4a98fd4c95ceeabb6f081c64a11 Mon Sep 17 00:00:00 2001
From: ili101
Date: Mon, 26 Aug 2019 14:34:05 +0300
Subject: [PATCH 01/14] Module.Template 2.0.2
---
.gitignore | 1 -
.vscode/launch.json | 56 ++++
Compare-WorkSheet.ps1 | 286 ++++++++++++++++++
DoTests.ps1 | 28 --
.../TryMultiplePivotTablesFromOneSheet.ps1 | 2 +-
ImportExcel.psm1 | 2 +-
Install.ps1 | 238 ++++++++++-----
InstallModule.ps1 | 3 -
README.md | 12 +-
__tests__/CI.ps1 | 132 ++++++++
__tests__/Compare-WorkSheet.tests.ps1 | 4 +-
.../ConvertFromExcelToSQLInsert.tests.ps1 | 4 +-
__tests__/FunctionAlias.tests.ps1 | 4 +-
__tests__/ImportExcelTests/Simple.tests.ps1 | 2 +-
__tests__/InstallPowerShell.ps1 | 26 ++
__tests__/Publish.ps1 | 105 +++++++
__tests__/Remove-WorkSheet.tests.ps1 | 3 +-
appveyor.yml | 72 ++++-
azure-pipelines.yml | 125 +++++---
19 files changed, 922 insertions(+), 183 deletions(-)
create mode 100644 .vscode/launch.json
create mode 100644 Compare-WorkSheet.ps1
delete mode 100644 DoTests.ps1
delete mode 100644 InstallModule.ps1
create mode 100644 __tests__/CI.ps1
create mode 100644 __tests__/InstallPowerShell.ps1
create mode 100644 __tests__/Publish.ps1
diff --git a/.gitignore b/.gitignore
index 84a681b..7a4ebe0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -60,7 +60,6 @@ test.xlsx
testCCFMT.ps1
testHide.ps1
ImportExcel.zip
-.vscode/launch.json
.vscode/settings.json
~$*
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..2d3f445
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,56 @@
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "type": "PowerShell",
+ "request": "launch",
+ "name": "PowerShell Pester Tests",
+ "script": "Import-Module -Name '.\\' -Force ; Invoke-Pester", // Change to '.\\ModuleName.psd1' if Git name different
+ "args": [""],
+ "cwd": "${workspaceFolder}"
+ },
+ {
+ "type": "PowerShell",
+ "request": "launch",
+ "name": "PowerShell Launch Current File",
+ "script": "${file}",
+ "args": [],
+ "cwd": "${file}"
+ },
+ {
+ "type": "PowerShell",
+ "request": "launch",
+ "name": "PowerShell Launch Current File in Temporary Console",
+ "script": "${file}",
+ "args": [],
+ "cwd": "${file}",
+ "createTemporaryIntegratedConsole": true
+ },
+ {
+ "type": "PowerShell",
+ "request": "launch",
+ "name": "PowerShell Launch Current File w/Args Prompt",
+ "script": "${file}",
+ "args": [
+ "${command:SpecifyScriptArgs}"
+ ],
+ "cwd": "${file}"
+ },
+ {
+ "type": "PowerShell",
+ "request": "attach",
+ "name": "PowerShell Attach to Host Process",
+ "processId": "${command:PickPSHostProcess}",
+ "runspaceId": 1
+ },
+ {
+ "type": "PowerShell",
+ "request": "launch",
+ "name": "PowerShell Interactive Session",
+ "cwd": ""
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Compare-WorkSheet.ps1 b/Compare-WorkSheet.ps1
new file mode 100644
index 0000000..fb8edf6
--- /dev/null
+++ b/Compare-WorkSheet.ps1
@@ -0,0 +1,286 @@
+Function Compare-WorkSheet {
+<#
+ .Synopsis
+ Compares two worksheets and shows the differences.
+ .Description
+ This command takes two file names, one or two worksheet names and a name
+ for a "key" column. It reads the worksheet from each file and decides the
+ column names and builds a hashtable of the key-column values and the
+ rows in which they appear.
+ It then uses PowerShell's Compare-Object command to compare the sheets
+ (explicitly checkingall the column names which have not been excluded).
+ For the difference rows it adds the row number for the key of that row -
+ we have to add the key after doing the comparison, otherwise identical
+ rows at different positions in the file will not be considered a match.
+ We also add the name of the file and sheet in which the difference occurs.
+ If -BackgroundColor is specified the difference rows will be changed to
+ that background in the orginal file.
+ .Example
+ Compare-WorkSheet -Referencefile 'Server56.xlsx' -Differencefile 'Server57.xlsx' -WorkSheetName Products -key IdentifyingNumber -ExcludeProperty Install* | Format-Table
+
+ The two workbooks in this example contain the result of redirecting a subset
+ of properties from Get-WmiObject -Class win32_product to Export-Excel.
+ The command compares the "Products" pages in the two workbooks, but we
+ don't want to register a difference if the software was installed on a
+ different date or from a different place, and excluding Install* removes
+ InstallDate and InstallSource. This data doesn't have a "Name" column, so
+ we specify the "IdentifyingNumber" column as the key.
+ The results will be presented as a table.
+ .Example
+ Compare-WorkSheet "Server54.xlsx" "Server55.xlsx" -WorkSheetName Services -GridView
+
+ This time two workbooks contain the result of redirecting the command
+ Get-WmiObject -Class win32_service to Export-Excel. Here the -Differencefile
+ and -Referencefile parameter switches are assumed and the default setting for
+ -Key ("Name") works for services. This will display the differences between
+ the "Services" sheets using a grid view
+ .Example
+ Compare-WorkSheet 'Server54.xlsx' 'Server55.xlsx' -WorkSheetName Services -BackgroundColor lightGreen
+
+ This version of the command outputs the differences between the "services" pages and highlights any different rows in the spreadsheet files.
+ .Example
+ Compare-WorkSheet 'Server54.xlsx' 'Server55.xlsx' -WorkSheetName Services -BackgroundColor lightGreen -FontColor Red -Show
+
+ This example builds on the previous one: this time where two changed rows have
+ the value in the "Name" column (the default value for -Key), this version adds
+ highlighting of the changed cells in red; and then opens the Excel file.
+ .Example
+ Compare-WorkSheet 'Pester-tests.xlsx' 'Pester-tests.xlsx' -WorkSheetName 'Server1','Server2' -Property "full Description","Executed","Result" -Key "full Description"
+
+ This time the reference file and the difference file are the same file and
+ two different sheets are used. Because the tests include the machine name
+ and time the test was run, the command specifies that a limited set of
+ columns should be used.
+ .Example
+ Compare-WorkSheet 'Server54.xlsx' 'Server55.xlsx' -WorkSheetName general -Startrow 2 -Headername Label,value -Key Label -GridView -ExcludeDifferent
+
+ The "General" page in the two workbooks has a title and two unlabelled columns
+ with a row each for CPU, Memory, Domain, Disk and so on. So the command is
+ told to start at row 2 in order to skip the title and given names for the
+ columns: the first is "label" and the second "Value"; the label acts as the key.
+ This time we are interested in those rows which are the same in both sheets,
+ and the result is displayed using grid view.
+ Note that grid view works best when the number of columns is small.
+ .Example
+ Compare-WorkSheet 'Server1.xlsx' 'Server2.xlsx' -WorkSheetName general -Startrow 2 -Headername Label,value -Key Label -BackgroundColor White -Show -AllDataBackgroundColor LightGray
+
+ This version of the previous command highlights all the cells in LightGray
+ and then sets the changed rows back to white.
+ Only the unchanged rows are highlighted.
+#>
+ [cmdletbinding(DefaultParameterSetName)]
+ [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingWriteHost', '', Justification="Write host used for sub-warning level message to operator which does not form output")]
+ [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseDeclaredVarsMoreThanAssignments', '', Justification="False positives when initializing variable in begin block")]
+ Param(
+ #First file to compare.
+ [parameter(Mandatory=$true,Position=0)]
+ $Referencefile ,
+ #Second file to compare.
+ [parameter(Mandatory=$true,Position=1)]
+ $Differencefile ,
+ #Name(s) of worksheets to compare.
+ $WorkSheetName = "Sheet1",
+ #Properties to include in the comparison - supports wildcards, default is "*".
+ $Property = "*" ,
+ #Properties to exclude from the comparison - supports wildcards.
+ $ExcludeProperty ,
+ #Specifies custom property names to use, instead of the values defined in the starting row of the sheet.
+ [Parameter(ParameterSetName='B', Mandatory)]
+ [String[]]$Headername,
+ #Automatically generate property names (P1, P2, P3 ...) instead of the using the values the starting row of the sheet.
+ [Parameter(ParameterSetName='C', Mandatory)]
+ [switch]$NoHeader,
+ #The row from where we start to import data: all rows above the start row are disregarded. By default, this is the first row.
+ [int]$Startrow = 1,
+ #If specified, highlights all the cells - so you can make Equal cells one color, and Different cells another.
+ $AllDataBackgroundColor,
+ #If specified, highlights the rows with differences.
+ $BackgroundColor,
+ #If specified identifies the tabs which contain difference rows (ignored if -BackgroundColor is omitted).
+ $TabColor,
+ #Name of a column which is unique and will be used to add a row to the DIFF object, defaults to "Name".
+ $Key = "Name" ,
+ #If specified, highlights the DIFF columns in rows which have the same key.
+ $FontColor,
+ #If specified, opens the Excel workbooks instead of outputting the diff to the console (unless -PassThru is also specified).
+ [Switch]$Show,
+ #If specified, the command tries to the show the DIFF in a Grid-View and not on the console. (unless-PassThru is also specified). This works best with few columns selected, and requires a key.
+ [switch]$GridView,
+ #If specifieda full set of DIFF data is returned without filtering to the specified properties.
+ [Switch]$PassThru,
+ #If specified the result will include equal rows as well. By default only different rows are returned.
+ [Switch]$IncludeEqual,
+ #If specified, the result includes only the rows where both are equal.
+ [Switch]$ExcludeDifferent
+ )
+
+ #if the filenames don't resolve, give up now.
+ try { $oneFile = ((Resolve-Path -Path $Referencefile -ErrorAction Stop).path -eq (Resolve-Path -Path $Differencefile -ErrorAction Stop).path)}
+ Catch { Write-Warning -Message "Could not Resolve the filenames." ; return }
+
+ #If we have one file , we must have two different worksheet names. If we have two files we can have a single string or two strings.
+ if ($onefile -and ( ($WorkSheetName.count -ne 2) -or $WorkSheetName[0] -eq $WorkSheetName[1] ) ) {
+ Write-Warning -Message "If both the Reference and difference file are the same then worksheet name must provide 2 different names"
+ return
+ }
+ if ($WorkSheetName.count -eq 2) {$worksheet1 = $WorkSheetName[0] ; $workSheet2 = $WorkSheetName[1]}
+ elseif ($WorkSheetName -is [string]) {$worksheet1 = $workSheet2 = $WorkSheetName}
+ else {Write-Warning -Message "You must provide either a single worksheet name or two names." ; return }
+
+ $params= @{ ErrorAction = [System.Management.Automation.ActionPreference]::Stop }
+ foreach ($p in @("HeaderName","NoHeader","StartRow")) {if ($PSBoundParameters[$p]) {$params[$p] = $PSBoundParameters[$p]}}
+ try {
+ $sheet1 = Import-Excel -Path $Referencefile -WorksheetName $WorkSheet1 @params
+ $sheet2 = Import-Excel -Path $Differencefile -WorksheetName $WorkSheet2 @Params
+ }
+ Catch {Write-Warning -Message "Could not read the worksheet from $Referencefile and/or $Differencefile." ; return }
+
+ #Get Column headings and create a hash table of Name to column letter.
+ $headings = $Sheet1[-1].psobject.Properties.name # This preserves the sequence - using get-member would sort them alphabetically!
+ $headings | ForEach-Object -Begin {$columns = @{} ; $i= 1 } -Process {$Columns[$_] = [OfficeOpenXml.ExcelAddress]::GetAddress(1,($i ++)) -replace "\d","" }
+
+ #Make a list of property headings using the Property (default "*") and ExcludeProperty parameters
+ if ($Key -eq "Name" -and $NoHeader) {$Key = "p1"}
+ $propList = @()
+ foreach ($p in $Property) {$propList += ($headings.where({$_ -like $p}) )}
+ foreach ($p in $ExcludeProperty) {$propList = $propList.where({$_ -notlike $p}) }
+ if (($headings -contains $key) -and ($propList -notcontains $Key)) {$propList += $Key}
+ $propList = $propList | Select-Object -Unique
+ if ($propList.Count -eq 0) {Write-Warning -Message "No Columns are selected with -Property = '$Property' and -excludeProperty = '$ExcludeProperty'." ; return}
+
+ #Add RowNumber, Sheetname and file name to every row
+ $firstDataRow = $startRow + 1
+ if ($Headername -or $NoHeader) {$firstDataRow -- }
+ $i = $firstDataRow ; foreach ($row in $Sheet1) {Add-Member -InputObject $row -MemberType NoteProperty -Name "_Row" -Value ($i ++)
+ Add-Member -InputObject $row -MemberType NoteProperty -Name "_Sheet" -Value $worksheet1
+ Add-Member -InputObject $row -MemberType NoteProperty -Name "_File" -Value $Referencefile}
+ $i = $firstDataRow ; foreach ($row in $Sheet2) {Add-Member -InputObject $row -MemberType NoteProperty -Name "_Row" -Value ($i ++)
+ Add-Member -InputObject $row -MemberType NoteProperty -Name "_Sheet" -Value $worksheet2
+ Add-Member -InputObject $row -MemberType NoteProperty -Name "_File" -Value $Differencefile}
+
+ if ($ExcludeDifferent -and -not $IncludeEqual) {$IncludeEqual = $true}
+ #Do the comparison and add file,sheet and row to the result - these are prefixed with "_" to show they are added the addition will fail if the sheet has these properties so split the operations
+ [PSCustomObject[]]$diff = Compare-Object -ReferenceObject $Sheet1 -DifferenceObject $Sheet2 -Property $propList -PassThru -IncludeEqual:$IncludeEqual -ExcludeDifferent:$ExcludeDifferent |
+ Sort-Object -Property "_Row","File"
+
+ #if BackgroundColor was specified, set it on extra or extra or changed rows
+ if ($diff -and $BackgroundColor) {
+ #Differences may only exist in one file. So gather the changes for each file; open the file, update each impacted row in the shee, save the file
+ $updates = $diff.where({$_.SideIndicator -ne "=="}) | Group-object -Property "_File"
+ foreach ($file in $updates) {
+ try {$xl = Open-ExcelPackage -Path $file.name }
+ catch {Write-warning -Message "Can't open $($file.Name) for writing." ; return}
+ if ($PSBoundParameters.ContainsKey("AllDataBackgroundColor")) {
+ $file.Group._sheet | Sort-Object -Unique | ForEach-Object {
+ $ws = $xl.Workbook.Worksheets[$_]
+ if ($headerName) {$range = "A" + $startrow + ":" + $ws.dimension.end.address}
+ else {$range = "A" + ($startrow + 1) + ":" + $ws.dimension.end.address}
+ Set-Format -WorkSheet $ws -BackgroundColor $AllDataBackgroundColor -Range $Range
+ }
+ }
+ foreach ($row in $file.group) {
+ $ws = $xl.Workbook.Worksheets[$row._Sheet]
+ $range = $ws.Dimension -replace "\d+",$row._row
+ Set-Format -WorkSheet $ws -Range $range -BackgroundColor $BackgroundColor
+ }
+ if ($PSBoundParameters.ContainsKey("TabColor")) {
+ if ($TabColor -is [string]) {$TabColor = [System.Drawing.Color]::$TabColor }
+ foreach ($tab in ($file.group._sheet | Select-Object -Unique)) {
+ $xl.Workbook.Worksheets[$tab].TabColor = $TabColor
+ }
+ }
+ $xl.save() ; $xl.Stream.Close() ; $xl.Dispose()
+ }
+ }
+ #if font color was specified, set it on changed properties where the same key appears in both sheets.
+ if ($diff -and $FontColor -and (($propList -contains $Key) -or ($key -is [hashtable])) ) {
+ $updates = $diff.where({$_.SideIndicator -ne "=="}) | Group-object -Property $Key | Where-Object {$_.count -eq 2}
+ if ($updates) {
+ $XL1 = Open-ExcelPackage -path $Referencefile
+ if ($oneFile ) {$xl2 = $xl1}
+ else {$xl2 = Open-ExcelPackage -path $Differencefile }
+ foreach ($u in $updates) {
+ foreach ($p in $propList) {
+ if ($u.group[0]._file -eq $Referencefile) {
+ $ws1 = $xl1.Workbook.Worksheets[$u.Group[0]._sheet]
+ $ws2 = $xl2.Workbook.Worksheets[$u.Group[1]._sheet]
+ }
+ else {
+ $ws1 = $xl2.Workbook.Worksheets[$u.Group[0]._sheet]
+ $ws2 = $xl1.Workbook.Worksheets[$u.Group[1]._sheet]
+ }
+ if($u.Group[0].$p -ne $u.Group[1].$p ) {
+ Set-Format -WorkSheet $ws1 -Range ($Columns[$p] + $u.Group[0]._Row) -FontColor $FontColor
+ Set-Format -WorkSheet $ws2 -Range ($Columns[$p] + $u.Group[1]._Row) -FontColor $FontColor
+ }
+ }
+ }
+ $xl1.Save() ; $xl1.Stream.Close() ; $xl1.Dispose()
+ if (-not $oneFile) {$xl2.Save() ; $xl2.Stream.Close() ; $xl2.Dispose()}
+ }
+ }
+ elseif ($diff -and $FontColor) {Write-Warning -Message "To match rows to set changed cells, you must specify -Key and it must match one of the included properties." }
+
+ #if nothing was found write a message which will not be redirected
+ if (-not $diff) {Write-Host "Comparison of $Referencefile::$worksheet1 and $Differencefile::$WorkSheet2 returned no results." }
+
+ if ($Show) {
+ Start-Process -FilePath $Referencefile
+ if (-not $oneFile) { Start-Process -FilePath $Differencefile }
+ if ($GridView) { Write-Warning -Message "-GridView is ignored when -Show is specified" }
+ }
+ elseif ($GridView -and $propList -contains $key) {
+
+
+ if ($IncludeEqual -and -not $ExcludeDifferent) {
+ $GroupedRows = $diff | Group-Object -Property $key
+ }
+ else { #to get the right now numbers on the grid we need to have all the rows.
+ $GroupedRows = Compare-Object -ReferenceObject $Sheet1 -DifferenceObject $Sheet2 -Property $propList -PassThru -IncludeEqual |
+ Group-Object -Property $key
+ }
+ #Additions, deletions and unchanged rows will give a group of 1; changes will give a group of 2 .
+
+ #If one sheet has extra rows we can get a single "==" result from compare, but with the row from the reference sheet
+ #but the row in the other sheet might so we will look up the row number from the key field build a hash table for that
+ $Sheet2 | ForEach-Object -Begin {$Rowhash = @{} } -Process {$Rowhash[$_.$key] = $_._row }
+
+ $ExpandedDiff = ForEach ($g in $GroupedRows) {
+ #we're going to create a custom object from a hash table. We want the fields to be ordered
+ $hash = [ordered]@{}
+ foreach ($result IN $g.Group) {
+ # if result indicates equal or "in Reference" set the reference side row. If we did that on a previous result keep it. Otherwise set to "blank"
+ if ($result.sideindicator -ne "=>") {$hash[""} else {$hash["Side"] = $result.sideindicator}
+ #if result is "in reference" and we don't have a matching "in difference" (meaning a change) the lookup will be blank. Which we want.
+ $hash[">Row"] = $Rowhash[$g.Name]
+ #position the key as the next field (only appears once)
+ $Hash[$key] = $g.Name
+ #For all the other fields we care about create <=FieldName and/or =>FieldName
+ foreach ($p in $propList.Where({$_ -ne $key})) {
+ if ($result.SideIndicator -eq "==") {$hash[("=>$P")] = $hash[("<=$P")] =$result.$P}
+ else {$hash[($result.SideIndicator+$P)] =$result.$P}
+ }
+ }
+ [Pscustomobject]$hash
+ }
+
+ #Sort by reference row number, and fill in any blanks in the difference-row column
+ $ExpandedDiff = $ExpandedDiff | Sort-Object -Property "row") {$ExpandedDiff[$i].">row" = $ExpandedDiff[$i-1].">row" } }
+ #Sort by difference row number, and fill in any blanks in the reference-row column
+ $ExpandedDiff = $ExpandedDiff | Sort-Object -Property ">row"
+ for ($i = 1; $i -lt $ExpandedDiff.Count; $i++) {if (-not $ExpandedDiff[$i]."row" }
+ elseif ( $IncludeEqual) {$ExpandedDiff = $ExpandedDiff | Sort-Object -Property "row" }
+ else {$ExpandedDiff = $ExpandedDiff.where({$_.side -ne "=="}) | Sort-Object -Property "row" }
+ $ExpandedDiff | Update-FirstObjectProperties | Out-GridView -Title "Comparing $Referencefile::$worksheet1 (<=) with $Differencefile::$WorkSheet2 (=>)"
+ }
+ elseif ($GridView ) {Write-Warning -Message "To use -GridView you must specify -Key and it must match one of the included properties." }
+ elseif (-not $PassThru) {return ($diff | Select-Object -Property (@(@{n="_Side";e={$_.SideIndicator}},"_File" ,"_Sheet","_Row") + $propList))}
+ if ( $PassThru) {return $diff }
+}
diff --git a/DoTests.ps1 b/DoTests.ps1
deleted file mode 100644
index c55ff58..0000000
--- a/DoTests.ps1
+++ /dev/null
@@ -1,28 +0,0 @@
-param(
- [Switch]$DontCreateZip
-)
-
-##
-# Used in Appveyor.yml
-##
-
-$PSVersionTable.PSVersion
-
-## Create the zip before the tests run
-## Otherwise the EPPlus.dll is in use after the Pester run
-$ModuleVersion = (Invoke-Command -ScriptBlock ([scriptblock]::Create((Get-Content -Raw .\ImportExcel.psd1)))).moduleVersion
-
-if (!$DontCreateZip) {
- $dest = "ImportExcel-{0}-{1}.zip" -f $ModuleVersion, (Get-Date).ToString("yyyyMMddHHmmss")
- Compress-Archive -Path . -DestinationPath .\$dest
-}
-
-if ($null -eq (Get-Module -ListAvailable pester)) {
- Install-Module -Name Pester -Repository PSGallery -Force -Scope CurrentUser
-}
-
-$result = Invoke-Pester -Script $PSScriptRoot\__tests__ -Verbose -PassThru
-
-if ($result.FailedCount -gt 0) {
- throw "$($result.FailedCount) tests failed."
-}
\ No newline at end of file
diff --git a/Examples/TryMultiplePivotTablesFromOneSheet.ps1 b/Examples/TryMultiplePivotTablesFromOneSheet.ps1
index 3993ebc..1533a78 100644
--- a/Examples/TryMultiplePivotTablesFromOneSheet.ps1
+++ b/Examples/TryMultiplePivotTablesFromOneSheet.ps1
@@ -1,4 +1,4 @@
-Import-Module ..\ImportExcel.psd1 -Force
+try {. $PSScriptRoot\..\..\LoadPSD1.ps1} catch {}
$file = "C:\Temp\test.xlsx"
diff --git a/ImportExcel.psm1 b/ImportExcel.psm1
index 4bdbb55..7baf5b0 100644
--- a/ImportExcel.psm1
+++ b/ImportExcel.psm1
@@ -5,7 +5,7 @@ Add-Type -Path "$($PSScriptRoot)\EPPlus.dll"
. $PSScriptRoot\Charting.ps1
. $PSScriptRoot\ColorCompletion.ps1
. $PSScriptRoot\ConvertExcelToImageFile.ps1
-. $PSScriptRoot\compare-workSheet.ps1
+. $PSScriptRoot\Compare-WorkSheet.ps1
. $PSScriptRoot\ConvertFromExcelData.ps1
. $PSScriptRoot\ConvertFromExcelToSQLInsert.ps1
. $PSScriptRoot\ConvertToExcelXlsx.ps1
diff --git a/Install.ps1 b/Install.ps1
index 6b367dd..1c96619 100644
--- a/Install.ps1
+++ b/Install.ps1
@@ -1,104 +1,174 @@
<#
.SYNOPSIS
- Download the module files from GitHub.
-
- .DESCRIPTION
- Download the module files from GitHub to the local client in the module folder.
+ Installs module from Git clone or directly from GitHub.
+ File must not have BOM for GitHub deploy to work.
#>
-
-[CmdLetBinding()]
+[CmdletBinding(DefaultParameterSetName = 'Default')]
Param (
+ # Path to install the module to, if not provided -Scope used.
+ [Parameter(Mandatory, ParameterSetName = 'ModulePath')]
[ValidateNotNullOrEmpty()]
- [String]$ModuleName = 'ImportExcel',
- [String]$InstallDirectory,
+ [String]$ModulePath,
+
+ # Path to install the module to, PSModulePath "CurrentUser" or "AllUsers", if not provided "CurrentUser" used.
+ [Parameter(Mandatory, ParameterSetName = 'Scope')]
+ [ValidateSet('CurrentUser', 'AllUsers')]
+ [string]
+ $Scope = 'CurrentUser',
+
+ # Get module from GitHub instead of local Git clone, for example "https://raw.githubusercontent.com/ili101/Module.Template/master/Install.ps1"
[ValidateNotNullOrEmpty()]
- [String]$GitPath = 'https://raw.github.com/dfinke/ImportExcel/master'
+ [Uri]$FromGitHub
+)
+# Set Files and Folders patterns to Include/Exclude.
+$IncludeFiles = @(
+ '*.dll',
+ '*.psd1',
+ '*.psm1',
+ '*.ps1',
+ 'BinFolder*'
+)
+$ExcludeFiles = @(
+ 'Install.ps1'
)
-Begin {
- Try {
- Write-Verbose "$ModuleName module installation started"
- $Files = @(
- 'AddConditionalFormatting.ps1',
- 'Charting.ps1',
- 'ColorCompletion.ps1',
- 'ConvertFromExcelData.ps1',
- 'ConvertFromExcelToSQLInsert.ps1',
- 'ConvertExcelToImageFile.ps1',
- 'ConvertToExcelXlsx.ps1',
- 'Copy-ExcelWorkSheet.ps1',
- 'EPPlus.dll',
- 'Export-charts.ps1',
- 'Export-Excel.ps1',
- 'Export-ExcelSheet.ps1',
- 'formatting.ps1',
- 'Get-ExcelColumnName.ps1',
- 'Get-ExcelSheetInfo.ps1',
- 'Get-ExcelWorkbookInfo.ps1',
- 'Get-HtmlTable.ps1',
- 'Get-Range.ps1',
- 'Get-XYRange.ps1',
- 'Import-Html.ps1',
- 'ImportExcel.psd1',
- 'ImportExcel.psm1',
- 'InferData.ps1',
- 'Invoke-Sum.ps1',
- 'New-ConditionalFormattingIconSet.ps1',
- 'New-ConditionalText.ps1',
- 'New-ExcelChart.ps1',
- 'New-PSItem.ps1',
- 'Open-ExcelPackage.ps1',
- 'Pivot.ps1',
- 'plot.ps1',
- 'Send-SqlDataToExcel.ps1',
- 'Set-CellStyle.ps1',
- 'Set-Column.ps1',
- 'Set-Row.ps1',
- 'SetFormat.ps1',
- 'TrackingUtils.ps1',
- 'Update-FirstObjectProperties.ps1'
- )
+function Invoke-MultiLike {
+ [alias("LikeAny")]
+ [CmdletBinding()]
+ param
+ (
+ $InputObject,
+ [Parameter(Mandatory)]
+ [String[]]$Filters,
+ [Switch]$Not
+ )
+ $FiltersRegex = foreach ($Filter In $Filters) {
+ $Filter = [regex]::Escape($Filter)
+ if ($Filter -match "^\\\*") {
+ $Filter = $Filter.Remove(0, 2)
+ }
+ else {
+ $Filter = '^' + $Filter
+ }
+ if ($Filter -match "\\\*$") {
+ $Filter = $Filter.Substring(0, $Filter.Length - 2)
+ }
+ else {
+ $Filter = $Filter + '$'
+ }
+ $Filter
}
- Catch {
- throw "Failed installing the module in the install directory '$InstallDirectory': $_"
+ if ($Not) {
+ $InputObject -notmatch ($FiltersRegex -join '|').replace('\*', '.*').replace('\?', '.')
+ }
+ else {
+ $InputObject -match ($FiltersRegex -join '|').replace('\*', '.*').replace('\?', '.')
}
}
-Process {
- Try {
- if (-not $InstallDirectory) {
- Write-Verbose "$ModuleName no installation directory provided"
+Try {
+ Write-Verbose -Message 'Module installation started'
- $PersonalModules = Join-Path -Path ([Environment]::GetFolderPath('MyDocuments')) -ChildPath WindowsPowerShell\Modules
-
- if (($env:PSModulePath -split ';') -notcontains $PersonalModules) {
- Write-Warning "$ModuleName personal module path '$PersonalModules' not found in '`$env:PSModulePath'"
- }
-
- if (-not (Test-Path $PersonalModules)) {
- Write-Error "$ModuleName path '$PersonalModules' does not exist"
- }
-
- $InstallDirectory = Join-Path -Path $PersonalModules -ChildPath $ModuleName
- Write-Verbose "$ModuleName default installation directory is '$InstallDirectory'"
+ if (!$ModulePath) {
+ if ($Scope -eq 'CurrentUser') {
+ $ModulePathIndex = 0
}
-
- if (-not (Test-Path $InstallDirectory)) {
- $null = New-Item -Path $InstallDirectory -ItemType Directory -EA Stop
- Write-Verbose "$ModuleName created module folder '$InstallDirectory'"
+ else {
+ $ModulePathIndex = 1
}
-
- $WebClient = New-Object System.Net.WebClient
-
- $Files | ForEach-Object {
- $WebClient.DownloadFile("$GitPath/$_","$installDirectory\$_")
- Write-Verbose "$ModuleName installed module file '$_'"
+ if ($IsLinux -or $IsMacOS) {
+ $ModulePathSeparator = ':'
}
-
- Write-Verbose "$ModuleName module installation successful"
+ else {
+ $ModulePathSeparator = ';'
+ }
+ $ModulePath = ($env:PSModulePath -split $ModulePathSeparator)[$ModulePathIndex]
}
- Catch {
- throw "Failed installing the module in the install directory '$InstallDirectory': $_"
+
+ # Get $ModuleName, $TargetPath, [$Links]
+ if ($FromGitHub) {
+ # Fix Could not create SSL/TLS secure channel
+ #$SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol
+ #[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
+
+ $WebClient = [System.Net.WebClient]::new()
+ $GitUri = $FromGitHub.AbsolutePath.Split('/')[1, 2] -join '/'
+ $GitBranch = $FromGitHub.AbsolutePath.Split('/')[3]
+ $Links = (Invoke-RestMethod -Uri "https://api.github.com/repos/$GitUri/contents" -Body @{ref = $GitBranch }) | Where-Object { (LikeAny $_.name $IncludeFiles) -and (LikeAny $_.name $ExcludeFiles -Not) }
+
+ $ModuleName = [System.IO.Path]::GetFileNameWithoutExtension(($Links | Where-Object { $_.name -like '*.psm1' }).name)
+ $ModuleVersion = (. ([Scriptblock]::Create((Invoke-WebRequest -Uri ($Links | Where-Object { $_.name -eq "$ModuleName.psd1" }).download_url)))).ModuleVersion
}
+ else {
+ $ModuleName = [System.IO.Path]::GetFileNameWithoutExtension((Get-ChildItem -File -Filter *.psm1 -Name -Path $PSScriptRoot))
+ $ModuleVersion = (. ([Scriptblock]::Create((Get-Content -Path (Join-Path $PSScriptRoot "$ModuleName.psd1") | Out-String)))).ModuleVersion
+ }
+ $TargetPath = Join-Path -Path $ModulePath -ChildPath $ModuleName
+ $TargetPath = Join-Path -Path $TargetPath -ChildPath $ModuleVersion
+
+ # Create Directory
+ if (-not (Test-Path -Path $TargetPath)) {
+ $null = New-Item -Path $TargetPath -ItemType Directory -ErrorAction Stop
+ Write-Verbose -Message ('Created module folder: "{0}"' -f $TargetPath)
+ }
+
+ # Copy Files
+ if ($FromGitHub) {
+ foreach ($Link in $Links) {
+ $TargetPathItem = Join-Path -Path $TargetPath -ChildPath $Link.name
+ if ($Link.type -ne 'dir') {
+ $WebClient.DownloadFile($Link.download_url, $TargetPathItem)
+ Write-Verbose -Message ('Installed module file: "{0}"' -f $Link.name)
+ }
+ else {
+ if (-not (Test-Path -Path $TargetPathItem)) {
+ $null = New-Item -Path $TargetPathItem -ItemType Directory -ErrorAction Stop
+ Write-Verbose -Message 'Created module folder: "{0}"' -f $TargetPathItem
+ }
+ $SubLinks = (Invoke-RestMethod -Uri $Link.git_url -Body @{recursive = '1' }).tree
+ foreach ($SubLink in $SubLinks) {
+ $TargetPathSub = Join-Path -Path $TargetPathItem -ChildPath $SubLink.path
+ if ($SubLink.'type' -EQ 'tree') {
+ if (-not (Test-Path -Path $TargetPathSub)) {
+ $null = New-Item -Path $TargetPathSub -ItemType Directory -ErrorAction Stop
+ Write-Verbose -Message 'Created module folder: "{0}"' -f $TargetPathSub
+ }
+ }
+ else {
+ $WebClient.DownloadFile(
+ ('https://raw.githubusercontent.com/{0}/{1}/{2}/{3}' -f $GitUri, $GitBranch, $Link.name, $SubLink.path),
+ $TargetPathSub
+ )
+ }
+ }
+ }
+ }
+ }
+ else {
+ Get-ChildItem -Path $PSScriptRoot -Exclude $ExcludeFiles | Where-Object { LikeAny $_.Name $IncludeFiles } | ForEach-Object {
+ if ($_.Attributes -ne 'Directory') {
+ Copy-Item -Path $_ -Destination $TargetPath
+ Write-Verbose -Message ('Installed module file "{0}"' -f $_)
+ }
+ else {
+ Copy-Item -Path $_ -Destination $TargetPath -Recurse -Force
+ Write-Verbose -Message ('Installed module folder "{0}"' -f $_)
+ }
+ }
+ }
+
+ # Import Module
+ Write-Verbose -Message "$ModuleName module installation successful to $TargetPath"
+ Import-Module -Name $ModuleName -Force
+ Write-Verbose -Message "Module installed"
+}
+Catch {
+ throw ('Failed installing module "{0}". Error: "{1}" in Line {2}' -f $ModuleName, $_, $_.InvocationInfo.ScriptLineNumber)
+}
+finally {
+ #if ($FromGitHub) {
+ # [Net.ServicePointManager]::SecurityProtocol = $SecurityProtocol
+ #}
+ Write-Verbose -Message 'Module installation end'
}
\ No newline at end of file
diff --git a/InstallModule.ps1 b/InstallModule.ps1
deleted file mode 100644
index 1b78852..0000000
--- a/InstallModule.ps1
+++ /dev/null
@@ -1,3 +0,0 @@
-$fullPath = 'C:\Program Files\WindowsPowerShell\Modules\ImportExcel'
-
-Robocopy . $fullPath /mir /XD .vscode .git examples testimonials images spikes /XF appveyor.yml .gitattributes .gitignore
\ No newline at end of file
diff --git a/README.md b/README.md
index 4261f31..a3d0b1e 100644
--- a/README.md
+++ b/README.md
@@ -15,11 +15,13 @@ If this project helped you reduce the time to get your job done, let me know.
-|CI System |OS|Status|
-|---|---|---|
-|Azure DevOps|Windows|[](https://dougfinke.visualstudio.com/ImportExcel/_build/latest?definitionId=10)|
-|Azure DevOps|Windows, Linux, Mac|[](https://dougfinke.visualstudio.com/ImportExcel/_build/latest?definitionId=20&branchName=master)|
-|Appveyor|Windows|[](https://ci.appveyor.com/project/dfinke/importexcel/branch/master)|
+| CI System | Environment | Status |
+|--------------|-------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| AppVeyor | Windows, Core preview, Ubuntu | [](https://ci.appveyor.com/project/ili101/Module-Template) |
+| Azure DevOps | Windows | [](https://dev.azure.com/ili101/ImportExcel/_build/latest?definitionId=1&branchName=master) |
+| Azure DevOps | Windows (Core) | [](https://dev.azure.com/ili101/ImportExcel/_build/latest?definitionId=1&branchName=master) |
+| Azure DevOps | Ubuntu | [](https://dev.azure.com/ili101/ImportExcel/_build/latest?definitionId=1&branchName=master) |
+| Azure DevOps | macOS | [](https://dev.azure.com/ili101/ImportExcel/_build/latest?definitionId=1&branchName=master) |
diff --git a/__tests__/CI.ps1 b/__tests__/CI.ps1
new file mode 100644
index 0000000..55e90a5
--- /dev/null
+++ b/__tests__/CI.ps1
@@ -0,0 +1,132 @@
+<#
+ .SYNOPSIS
+ Handel Continuous Integration Testing in AppVeyor and Azure DevOps Pipelines.
+#>
+param
+(
+ # AppVeyor Only - Update AppVeyor build name.
+ [Switch]$Initialize,
+ # Installs the module and invoke the Pester tests with the current version of PowerShell.
+ [Switch]$Test,
+ # AppVeyor Only - Upload results to AppVeyor "Tests" tab.
+ [Switch]$Finalize,
+ # AppVeyor and Azure - Upload module as AppVeyor Artifact.
+ [Switch]$Artifact
+)
+$ErrorActionPreference = 'Stop'
+if ($Initialize) {
+ $Psd1 = (Get-ChildItem -File -Filter *.psd1 -Name -Path (Split-Path $PSScriptRoot)).PSPath
+ $ModuleVersion = (. ([Scriptblock]::Create((Get-Content -Path $Psd1 | Out-String)))).ModuleVersion
+ Update-AppveyorBuild -Version "$ModuleVersion ($env:APPVEYOR_BUILD_NUMBER) $env:APPVEYOR_REPO_BRANCH"
+}
+if ($Test) {
+ function Get-EnvironmentInfo {
+ if ($null -eq $IsWindows -or $IsWindows) {
+ # Get Windows Version
+ try {
+ $WinRelease, $WinVer = Get-ItemPropertyValue "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" ReleaseId, CurrentMajorVersionNumber, CurrentMinorVersionNumber, CurrentBuildNumber, UBR
+ $WindowsVersion = "$($WinVer -join '.') ($WinRelease)"
+ }
+ catch {
+ $WindowsVersion = [System.Environment]::OSVersion.Version
+ }
+
+ # Get .Net Version
+ # https://stackoverflow.com/questions/3487265/powershell-script-to-return-versions-of-net-framework-on-a-machine
+ $Lookup = @{
+ 378389 = [version]'4.5'
+ 378675 = [version]'4.5.1'
+ 378758 = [version]'4.5.1'
+ 379893 = [version]'4.5.2'
+ 393295 = [version]'4.6'
+ 393297 = [version]'4.6'
+ 394254 = [version]'4.6.1'
+ 394271 = [version]'4.6.1'
+ 394802 = [version]'4.6.2'
+ 394806 = [version]'4.6.2'
+ 460798 = [version]'4.7'
+ 460805 = [version]'4.7'
+ 461308 = [version]'4.7.1'
+ 461310 = [version]'4.7.1'
+ 461808 = [version]'4.7.2'
+ 461814 = [version]'4.7.2'
+ 528040 = [version]'4.8'
+ 528049 = [version]'4.8'
+ }
+
+ # For One True framework (latest .NET 4x), change the Where-Object match
+ # to PSChildName -eq "Full":
+ $DotNetVersion = Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -Recurse |
+ Get-ItemProperty -name Version, Release -EA 0 |
+ Where-Object { $_.PSChildName -eq "Full" } |
+ Select-Object @{name = ".NET Framework"; expression = { $_.PSChildName } },
+ @{name = "Product"; expression = { $Lookup[$_.Release] } },
+ Version, Release
+
+ # Output
+ [PSCustomObject]($PSVersionTable + @{
+ ComputerName = $env:Computername
+ WindowsVersion = $WindowsVersion
+ '.Net Version' = '{0} (Version: {1}, Release: {2})' -f $DotNetVersion.Product, $DotNetVersion.Version, $DotNetVersion.Release
+ #EnvironmentPath = $env:Path
+ })
+ }
+ else {
+ # Output
+ [PSCustomObject]($PSVersionTable + @{
+ ComputerName = $env:Computername
+ #EnvironmentPath = $env:Path
+ })
+ }
+ }
+
+ '[Info] Testing On:'
+ Get-EnvironmentInfo
+ '[Progress] Installing Module.'
+ . .\Install.ps1
+ '[Progress] Invoking Pester.'
+ Invoke-Pester -OutputFile ('TestResultsPS{0}.xml' -f $PSVersionTable.PSVersion)
+}
+if ($Finalize) {
+ '[Progress] Finalizing.'
+ $Failure = $false
+ $AppVeyorResultsUri = 'https://ci.appveyor.com/api/testresults/nunit/{0}' -f $env:APPVEYOR_JOB_ID
+ foreach ($TestResultsFile in Get-ChildItem -Path 'TestResultsPS*.xml') {
+ $TestResultsFilePath = $TestResultsFile.FullName
+ "[Info] Uploading Files: $AppVeyorResultsUri, $TestResultsFilePath."
+ # Add PowerShell version to test results
+ $PSVersion = $TestResultsFile.Name.Replace('TestResults', '').Replace('.xml', '')
+ [Xml]$Xml = Get-Content -Path $TestResultsFilePath
+ Select-Xml -Xml $Xml -XPath '//test-case' | ForEach-Object { $_.Node.name = "$PSVersion " + $_.Node.name }
+ $Xml.OuterXml | Out-File -FilePath $TestResultsFilePath
+
+ #Invoke-RestMethod -Method Post -Uri $AppVeyorResultsUri -Body $Xml
+ [Net.WebClient]::new().UploadFile($AppVeyorResultsUri, $TestResultsFilePath)
+
+ if ($Xml.'test-results'.failures -ne '0') {
+ $Failure = $true
+ }
+ }
+ if ($Failure) {
+ throw 'Tests failed.'
+ }
+}
+if ($Artifact) {
+ # Get Module Info
+ $ModuleName = [System.IO.Path]::GetFileNameWithoutExtension((Get-ChildItem -File -Filter *.psm1 -Name -Path (Split-Path $PSScriptRoot)))
+ $ModulePath = (Get-Module -Name $ModuleName -ListAvailable).ModuleBase | Split-Path
+ $VersionLocal = ((Get-Module -Name $ModuleName -ListAvailable).Version | Measure-Object -Maximum).Maximum
+ "[Progress] Artifact Start for Module: $ModuleName, Version: $VersionLocal."
+ if ($env:APPVEYOR) {
+ $ZipFileName = "{0} {1} {2} {3:yyyy-MM-dd HH-mm-ss}.zip" -f $ModuleName, $VersionLocal, $env:APPVEYOR_REPO_BRANCH, (Get-Date)
+ $ZipFileFullPath = Join-Path -Path $PSScriptRoot -ChildPath $ZipFileName
+ "[Info] Artifact. $ModuleName, ZipFileName: $ZipFileName."
+ #Compress-Archive -Path $ModulePath -DestinationPath $ZipFileFullPath
+ [System.IO.Compression.ZipFile]::CreateFromDirectory($ModulePath, $ZipFileFullPath, [System.IO.Compression.CompressionLevel]::Optimal, $true)
+ Push-AppveyorArtifact $ZipFileFullPath -DeploymentName $ModuleName
+ }
+ elseif ($env:AGENT_NAME) {
+ #Write-Host "##vso[task.setvariable variable=ModuleName]$ModuleName"
+ Copy-Item -Path $ModulePath -Destination $env:Build_ArtifactStagingDirectory -Recurse
+ }
+}
\ No newline at end of file
diff --git a/__tests__/Compare-WorkSheet.tests.ps1 b/__tests__/Compare-WorkSheet.tests.ps1
index e3c300e..a8114e4 100644
--- a/__tests__/Compare-WorkSheet.tests.ps1
+++ b/__tests__/Compare-WorkSheet.tests.ps1
@@ -1,7 +1,5 @@
#Requires -Modules Pester
-if ($PSVersionTable.os -and $PSVersionTable.os -notMatch 'Windows' ) {return} #Currently this test outputs windows services so only run on Windows.
-if (-not $env:TEMP) {$env:TEMP = [IO.Path]::GetTempPath() }
-Import-Module $PSScriptRoot\..\ImportExcel.psd1 -Force
+#Import-Module $PSScriptRoot\..\ImportExcel.psd1 -Force
if ($PSVersionTable.PSVersion.Major -gt 5) { Write-Warning "Can't test grid view on V6 and later" }
else {Add-Type -AssemblyName System.Windows.Forms }
Describe "Compare Worksheet" {
diff --git a/__tests__/ConvertFromExcelToSQLInsert.tests.ps1 b/__tests__/ConvertFromExcelToSQLInsert.tests.ps1
index bda8890..b5b13f9 100644
--- a/__tests__/ConvertFromExcelToSQLInsert.tests.ps1
+++ b/__tests__/ConvertFromExcelToSQLInsert.tests.ps1
@@ -1,5 +1,5 @@
-Import-Module $PSScriptRoot\..\ImportExcel.psd1 -Force
-if (-not $env:TEMP) {$env:TEMP = [IO.Path]::GetTempPath() -replace "/$","" }
+#Import-Module $PSScriptRoot\..\ImportExcel.psd1 -Force
+
$xlFile = "$env:TEMP\testSQL.xlsx"
Describe "ConvertFrom-ExcelToSQLInsert" {
diff --git a/__tests__/FunctionAlias.tests.ps1 b/__tests__/FunctionAlias.tests.ps1
index 02bd6e4..86fbe10 100644
--- a/__tests__/FunctionAlias.tests.ps1
+++ b/__tests__/FunctionAlias.tests.ps1
@@ -1,6 +1,6 @@
#Requires -Modules Pester
-remove-module importExcel -erroraction silentlyContinue
-Import-Module $PSScriptRoot\..\ImportExcel.psd1 -Force
+#remove-module importExcel -erroraction silentlyContinue
+#Import-Module $PSScriptRoot\..\ImportExcel.psd1 -Force
Describe "Check if Function aliases exist" {
diff --git a/__tests__/ImportExcelTests/Simple.tests.ps1 b/__tests__/ImportExcelTests/Simple.tests.ps1
index 7248b07..46f8d07 100644
--- a/__tests__/ImportExcelTests/Simple.tests.ps1
+++ b/__tests__/ImportExcelTests/Simple.tests.ps1
@@ -1,4 +1,4 @@
-Import-Module $PSScriptRoot\..\..\ImportExcel.psd1
+#Import-Module $PSScriptRoot\..\..\ImportExcel.psd1
Describe "Tests" {
BeforeAll {
diff --git a/__tests__/InstallPowerShell.ps1 b/__tests__/InstallPowerShell.ps1
new file mode 100644
index 0000000..b4f3cc7
--- /dev/null
+++ b/__tests__/InstallPowerShell.ps1
@@ -0,0 +1,26 @@
+<#
+ .SYNOPSIS
+ Installs PowerShell Core on Windows.
+#>
+[CmdLetBinding()]
+Param
+(
+ # Version to install in the format from the .msi, for example "7.0.0-preview.1"
+ [Parameter(Mandatory)]
+ [String]$Version
+)
+$ErrorActionPreference = 'Stop'
+
+'[Progress] Downloading PowerShell Core.'
+$MsiPath = Join-Path $env:TEMP "PowerShell-$Version-win-x64.msi"
+[System.Net.WebClient]::new().DownloadFile("https://github.com/PowerShell/PowerShell/releases/download/v$Version/PowerShell-$Version-win-x64.msi", $MsiPath)
+
+'[Progress] Installing PowerShell Core.'
+Start-Process 'msiexec.exe' -Wait -ArgumentList "/i $MsiPath /quiet"
+Remove-Item -Path $MsiPath
+$PowerShellFolder = $Version[0]
+if ($Version -like "*preview*") {
+ $PowerShellFolder += '-preview'
+}
+$env:Path = "$env:ProgramFiles\PowerShell\$PowerShellFolder;$env:Path"
+'[Progress] PowerShell Core Installed.'
\ No newline at end of file
diff --git a/__tests__/Publish.ps1 b/__tests__/Publish.ps1
new file mode 100644
index 0000000..625d5bf
--- /dev/null
+++ b/__tests__/Publish.ps1
@@ -0,0 +1,105 @@
+<#
+ .SYNOPSIS
+ Deploy module to PowerShellGallery.
+#>
+[CmdletBinding(DefaultParameterSetName = 'ModuleName')]
+Param
+(
+ # The name of the installed module to be deployed, if not provided the name of the .psm1 file in the parent folder is used.
+ [Parameter(ParameterSetName = 'ModuleName')]
+ [ValidateNotNullOrEmpty()]
+ [String]$ModuleName,
+
+ # Publish module from path (module folder), if not provided -ModuleName is used.
+ [Parameter(Mandatory, ParameterSetName = 'Path')]
+ [ValidateNotNullOrEmpty()]
+ [String]$Path,
+
+ # Key for PowerShellGallery deployment, if not provided $env:NugetApiKey is used.
+ [ValidateNotNullOrEmpty()]
+ [String]$NugetApiKey,
+
+ # Skip Version verification for PowerShellGallery deployment, can be used for first release.
+ [Switch]$Force
+)
+$ErrorActionPreference = 'Stop'
+
+if ($Path) {
+ $Path = Resolve-Path -Path $Path
+ if ($Path.Count -ne 1) {
+ throw ('Invalid Path, $Path.Count: {0}.' -f $Path.Count)
+ }
+ $Psd1Path = (Get-ChildItem -File -Filter *.psd1 -Path $Path -Recurse)[0].FullName
+ $ModuleName = [System.IO.Path]::GetFileNameWithoutExtension($Psd1Path)
+ $VersionLocal = (. ([Scriptblock]::Create((Get-Content -Path $Psd1Path | Out-String)))).ModuleVersion
+}
+else {
+ # Get Script Root
+ if ($PSScriptRoot) {
+ $ScriptRoot = $PSScriptRoot
+ }
+ elseif ($psISE.CurrentFile.IsUntitled -eq $false) {
+ $ScriptRoot = Split-Path -Path $psISE.CurrentFile.FullPath
+ }
+ elseif ($null -ne $psEditor.GetEditorContext().CurrentFile.Path -and $psEditor.GetEditorContext().CurrentFile.Path -notlike 'untitled:*') {
+ $ScriptRoot = Split-Path -Path $psEditor.GetEditorContext().CurrentFile.Path
+ }
+ else {
+ $ScriptRoot = '.'
+ }
+
+ # Get Module Info
+ if (!$ModuleName) {
+ $ModuleName = [System.IO.Path]::GetFileNameWithoutExtension((Get-ChildItem -File -Filter *.psm1 -Name -Path (Split-Path $ScriptRoot)))
+ }
+ $VersionLocal = ((Get-Module -Name $ModuleName -ListAvailable).Version | Measure-Object -Maximum).Maximum
+}
+
+"[Progress] Deploy Script Start for Module: $ModuleName, Version: $VersionLocal."
+
+# Deploy to PowerShell Gallery if run locally OR from AppVeyor & GitHub master
+if (!$env:APPVEYOR -or $env:APPVEYOR_REPO_BRANCH -eq 'master') {
+ if ($env:APPVEYOR) {
+ $Success = $true
+ $AppVeyorProject = Invoke-RestMethod -Uri "https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG"
+ $AppVeyorProject.build.jobs | ForEach-Object {
+ '[Info] AppVeyor job name: "{0}", Id: {1}, Status: {2}.' -f $_.name, $_.jobId, $_.status
+ if ($_.jobId -ne $env:APPVEYOR_JOB_ID -and $_.status -ne "success") {
+ $Success = $false
+ }
+ }
+ if (!$Success) {
+ '[Info] There are filed jobs skipping PowerShell Gallery deploy.'
+ break
+ }
+ }
+ try {
+ $VersionGallery = (Find-Module -Name $ModuleName -ErrorAction Stop).Version
+ }
+ catch {
+ if ($_.Exception.Message -notlike 'No match was found for the specified search criteria*' -or !$Force) {
+ throw $_
+ }
+ }
+
+ "[Info] PowerShellGallery. $ModuleName, VersionGallery: $VersionGallery, VersionLocal: $VersionLocal."
+ if ($VersionGallery -lt $VersionLocal -or $Force) {
+ if (!$NugetApiKey) {
+ $NugetApiKey = $env:NugetApiKey
+ }
+ "[Info] PowerShellGallery. Deploying $ModuleName version $VersionLocal."
+ if ($Path) {
+ Publish-Module -NuGetApiKey $NugetApiKey -Path $Path
+ }
+ else {
+ Publish-Module -NuGetApiKey $NugetApiKey -Name $ModuleName -RequiredVersion $VersionLocal
+ }
+ }
+ else {
+ '[Info] PowerShellGallery Deploy Skipped (Version Check).'
+ }
+}
+else {
+ '[Info] PowerShellGallery Deploy Skipped.'
+}
+'[Progress] Deploy Ended.'
\ No newline at end of file
diff --git a/__tests__/Remove-WorkSheet.tests.ps1 b/__tests__/Remove-WorkSheet.tests.ps1
index 9458619..a720487 100644
--- a/__tests__/Remove-WorkSheet.tests.ps1
+++ b/__tests__/Remove-WorkSheet.tests.ps1
@@ -1,6 +1,5 @@
#Requires -Modules Pester
-Import-Module $PSScriptRoot\..\ImportExcel.psd1 -Force
-if (-not $env:TEMP) {$env:TEMP = [IO.Path]::GetTempPath() -replace "/$","" }
+#Import-Module $PSScriptRoot\..\ImportExcel.psd1 -Force
Describe "Remove Worksheet" {
Context "Remove a worksheet output" {
diff --git a/appveyor.yml b/appveyor.yml
index b92d3b3..7c24f2b 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,17 +1,67 @@
-image:
- - Visual Studio 2015
- # - Ubuntu
+# Version format
+version: '({build})'
+# Build worker image (VM templates)
+image:
+ - Ubuntu1804
+ - 'Visual Studio 2019'
+
+# Fix CRLF on Windows
+init:
+ - cmd: 'git config --global --unset core.autocrlf'
+
+# To disable automatic builds
build: off
-test_script:
- - ps: .\DoTests.ps1
- - pwsh: .\DoTests.ps1 -DontCreateZip
-
+# Skipping commits with particular message or from specific user
skip_commits:
+ message: '/\[skip av\]/'
files:
- - README.md
+ - '*.md'
-artifacts:
- - path: ImportExcel*.zip
- name: ImportExcel
+# Including commits with particular message or from specific user
+#only_commits:
+# message: '/\[build\]/' # Start a new build if message contains 'build'
+
+# Scripts that run after cloning repository
+install:
+ - ps: 'Install-Module -Name Pester -Force -SkipPublisherCheck'
+ - ps: 'Install-Module -Name Assert -Force'
+ # PowerShell Core
+ - ps: '& .\__tests__\InstallPowerShell.ps1 -Version "7.0.0-preview.3"' # Install other PowerShell Core version (Optional)
+ - pwsh: 'Install-Module -Name Pester -Force'
+ - pwsh: 'Install-Module -Name Assert -Force'
+
+# To run your custom scripts instead of automatic tests
+test_script:
+ - ps: '& .\__tests__\CI.ps1 -Test'
+ - pwsh: '& .\__tests__\CI.ps1 -Test'
+ - ps: '& .\__tests__\CI.ps1 -Finalize' # Collect and upload results
+
+# Deploy
+deploy_script:
+ - ps: '& .\__tests__\CI.ps1 -Artifact'
+ - ps: '$null = Install-PackageProvider -Name NuGet -Force ; & .\__tests__\Publish.ps1'
+
+# Linux setup
+for:
+ -
+ matrix:
+ only:
+ - image: Ubuntu1804
+ # Install other PowerShell Core version (Optional)
+ init:
+ - sh: 'sudo apt-get -qq update && sudo apt-get -qq install powershell-preview && sudo rm /usr/bin/pwsh && sudo ln -s /opt/microsoft/powershell/7-preview/pwsh /usr/bin/pwsh'
+ - sh: 'export LANG=en_US.UTF-8' # Fix for PowerShell 7.0.0-preview.2, Remove if using other version.
+ # Scripts that run after cloning repository
+ install:
+ - pwsh: '& .\__tests__\CI.ps1 -Initialize' # Set AppVeyor build version
+ - pwsh: 'Install-Module -Name Pester -Force'
+ - pwsh: 'Install-Module -Name Assert -Force'
+ # To run your custom scripts instead of automatic tests
+ test_script:
+ - pwsh: '& .\__tests__\CI.ps1 -Test'
+ - pwsh: '& .\__tests__\CI.ps1 -Finalize' # Collect and upload results
+ # Skip Deploy
+ deploy_script:
+ - pwsh: '"Deploy skiped on Linux."'
\ No newline at end of file
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index a53b71d..c8ff6c8 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -1,44 +1,91 @@
-jobs:
- - job: Build_PS_Win2016
- pool:
- vmImage: vs2017-win2016
- steps:
- - powershell: |
- .\DoTests.ps1
- displayName: 'Run Tests on Windows'
-
- - job: Build_PSCore_Ubuntu1604
-
- pool:
- vmImage: ubuntu-16.04
-
- steps:
- - script: |
- curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
- curl https://packages.microsoft.com/config/ubuntu/16.04/prod.list | sudo tee /etc/apt/sources.list.d/microsoft.list
- sudo apt-get update
- sudo apt-get install -y powershell
- displayName: 'Install PowerShell Core'
-
- - script: |
- pwsh -c '.\DoTests.ps1'
- displayName: 'Run Tests on Linux'
-
- - job: Build_PSCore_MacOS1013
- pool:
- vmImage: xcode9-macos10.13
- steps:
- - script: |
- brew update
- brew tap caskroom/cask
- brew cask install powershell
- displayName: 'Install PowerShell Core'
-
- - script: |
- pwsh -c '.\DoTests.ps1'
- displayName: 'Run Tests on macOS'
+# Starter pipeline
+# Start with a minimal pipeline that you can customize to build and deploy your code.
+# Add steps that build, run tests, deploy, and more:
+# https://aka.ms/yaml
trigger:
+ branches:
+ include:
+ - '*'
+ # - master
+ # - releases/*
paths:
exclude:
- README.md
+ - CHANGELOG.md
+
+jobs:
+ - job: Windows
+ pool:
+ vmImage: 'windows-latest'
+
+ steps:
+ - powershell: 'Install-Module -Name Pester -Force -SkipPublisherCheck'
+ displayName: 'Update Pester'
+ - powershell: './__tests__/CI.ps1 -Test'
+ displayName: 'Install and Test'
+
+ - task: PublishTestResults@2
+ inputs:
+ testResultsFormat: 'NUnit'
+ testResultsFiles: '**/TestResults*.xml'
+ failTaskOnFailedTests: true
+
+ - powershell: './__tests__/CI.ps1 -Artifact'
+ displayName: 'Prepare Artifact'
+ - task: PublishPipelineArtifact@1
+ inputs:
+ targetPath: '$(Build.ArtifactStagingDirectory)'
+ artifact: 'Modules'
+ - task: PublishPipelineArtifact@1
+ inputs:
+ targetPath: '$(Build.SourcesDirectory)'
+ artifact: 'Source'
+
+ - job: WindowsPSCore
+ pool:
+ vmImage: 'windows-latest'
+
+ steps:
+ - pwsh: 'Install-Module -Name Pester -Force'
+ displayName: 'Update Pester'
+ - pwsh: './__tests__/CI.ps1 -Test'
+ displayName: 'Install and Test'
+
+ - task: PublishTestResults@2
+ inputs:
+ testResultsFormat: 'NUnit'
+ testResultsFiles: '**/TestResults*.xml'
+ failTaskOnFailedTests: true
+
+ - job: Ubuntu
+ pool:
+ vmImage: 'ubuntu-latest'
+
+ steps:
+ - powershell: 'Install-Module -Name Pester -Force'
+ displayName: 'Update Pester'
+ - powershell: './__tests__/CI.ps1 -Test'
+ displayName: 'Install and Test'
+
+ - task: PublishTestResults@2
+ inputs:
+ testResultsFormat: 'NUnit'
+ testResultsFiles: '**/TestResults*.xml'
+ failTaskOnFailedTests: true
+
+ - job: macOS
+ pool:
+ vmImage: 'macOS-latest'
+
+ steps:
+ - powershell: 'Install-Module -Name Pester -Force'
+ displayName: 'Update Pester'
+ - powershell: './__tests__/CI.ps1 -Test'
+ displayName: 'Install and Test'
+
+ - task: PublishTestResults@2
+ inputs:
+ testResultsFormat: 'NUnit'
+ testResultsFiles: '**/TestResults*.xml'
+ failTaskOnFailedTests: true
\ No newline at end of file
From 6650ecd5b8e3a15fa877b480837f47d62227ec39 Mon Sep 17 00:00:00 2001
From: ili101
Date: Mon, 26 Aug 2019 15:45:28 +0300
Subject: [PATCH 02/14] FileList Case
---
ImportExcel.psm1 | 9 +-
Install.ps1 | 43 +++-
Merge-Worksheet.ps1 | 538 ++++++++++++++++++++++++++++++++++++++++
Plot.ps1 | 218 ++++++++++++++++
PublishToGallery.ps1 | 7 -
Send-SQLDataToExcel.ps1 | 175 +++++++++++++
filelist.txt | 7 +-
7 files changed, 982 insertions(+), 15 deletions(-)
create mode 100644 Merge-Worksheet.ps1
create mode 100644 Plot.ps1
delete mode 100644 PublishToGallery.ps1
create mode 100644 Send-SQLDataToExcel.ps1
diff --git a/ImportExcel.psm1 b/ImportExcel.psm1
index 7baf5b0..b8c428e 100644
--- a/ImportExcel.psm1
+++ b/ImportExcel.psm1
@@ -4,8 +4,8 @@ Add-Type -Path "$($PSScriptRoot)\EPPlus.dll"
. $PSScriptRoot\AddDataValidation.ps1
. $PSScriptRoot\Charting.ps1
. $PSScriptRoot\ColorCompletion.ps1
-. $PSScriptRoot\ConvertExcelToImageFile.ps1
. $PSScriptRoot\Compare-WorkSheet.ps1
+. $PSScriptRoot\ConvertExcelToImageFile.ps1
. $PSScriptRoot\ConvertFromExcelData.ps1
. $PSScriptRoot\ConvertFromExcelToSQLInsert.ps1
. $PSScriptRoot\ConvertToExcelXlsx.ps1
@@ -23,7 +23,7 @@ Add-Type -Path "$($PSScriptRoot)\EPPlus.dll"
. $PSScriptRoot\InferData.ps1
. $PSScriptRoot\Invoke-Sum.ps1
. $PSScriptRoot\Join-Worksheet.ps1
-. $PSScriptRoot\Merge-worksheet.ps1
+. $PSScriptRoot\Merge-Worksheet.ps1
. $PSScriptRoot\New-ConditionalFormattingIconSet.ps1
. $PSScriptRoot\New-ConditionalText.ps1
. $PSScriptRoot\New-ExcelChart.ps1
@@ -31,8 +31,9 @@ Add-Type -Path "$($PSScriptRoot)\EPPlus.dll"
. $PSScriptRoot\Open-ExcelPackage.ps1
. $PSScriptRoot\Pivot.ps1
. $PSScriptRoot\PivotTable.ps1
+#. $PSScriptRoot\Plot.ps1
. $PSScriptRoot\RemoveWorksheet.ps1
-. $PSScriptRoot\Send-SqlDataToExcel.ps1
+. $PSScriptRoot\Send-SQLDataToExcel.ps1
. $PSScriptRoot\Set-CellStyle.ps1
. $PSScriptRoot\Set-Column.ps1
. $PSScriptRoot\Set-Row.ps1
@@ -45,7 +46,7 @@ Add-Type -Path "$($PSScriptRoot)\EPPlus.dll"
New-Alias -Name Use-ExcelData -Value "ConvertFrom-ExcelData" -Force
if ($PSVersionTable.PSVersion.Major -ge 5) {
- . $PSScriptRoot\plot.ps1
+ . $PSScriptRoot\Plot.ps1
Function New-Plot {
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseShouldProcessForStateChangingFunctions', '', Justification = 'New-Plot does not change system state')]
diff --git a/Install.ps1 b/Install.ps1
index 1c96619..ae5e08a 100644
--- a/Install.ps1
+++ b/Install.ps1
@@ -25,8 +25,47 @@ $IncludeFiles = @(
'*.dll',
'*.psd1',
'*.psm1',
- '*.ps1',
- 'BinFolder*'
+ 'AddConditionalFormatting.ps1',
+ 'AddDataValidation.ps1',
+ 'Charting.ps1',
+ 'ColorCompletion.ps1',
+ 'Compare-WorkSheet.ps1',
+ 'ConvertExcelToImageFile.ps1',
+ 'ConvertFromExcelData.ps1',
+ 'ConvertFromExcelToSQLInsert.ps1',
+ 'ConvertToExcelXlsx.ps1',
+ 'Copy-ExcelWorkSheet.ps1',
+ 'Export-Excel.ps1',
+ 'Export-ExcelSheet.ps1',
+ 'Export-StocksToExcel.ps1',
+ 'Get-ExcelColumnName.ps1',
+ 'Get-ExcelSheetInfo.ps1',
+ 'Get-ExcelWorkbookInfo.ps1',
+ 'Get-HtmlTable.ps1',
+ 'Get-Range.ps1',
+ 'Get-XYRange.ps1',
+ 'Import-Html.ps1',
+ 'InferData.ps1',
+ 'Invoke-Sum.ps1',
+ 'Join-Worksheet.ps1',
+ 'Merge-Worksheet.ps1',
+ 'New-ConditionalFormattingIconSet.ps1',
+ 'New-ConditionalText.ps1',
+ 'New-ExcelChart.ps1',
+ 'New-PSItem.ps1',
+ 'Open-ExcelPackage.ps1',
+ 'Pivot.ps1',
+ 'PivotTable.ps1',
+ 'Plot.ps1',
+ 'RemoveWorksheet.ps1',
+ 'Send-SQLDataToExcel.ps1',
+ 'Set-CellStyle.ps1',
+ 'Set-Column.ps1',
+ 'Set-Row.ps1',
+ 'Set-WorkSheetProtection.ps1',
+ 'SetFormat.ps1',
+ 'TrackingUtils.ps1',
+ 'Update-FirstObjectProperties.ps1'
)
$ExcludeFiles = @(
'Install.ps1'
diff --git a/Merge-Worksheet.ps1 b/Merge-Worksheet.ps1
new file mode 100644
index 0000000..01ae37e
--- /dev/null
+++ b/Merge-Worksheet.ps1
@@ -0,0 +1,538 @@
+Function Merge-Worksheet {
+ <#
+ .Synopsis
+ Merges two Worksheets (or other objects) into a single Worksheet with differences marked up.
+ .Description
+ The Compare-Worksheet command takes two Worksheets and marks differences in the source document, and optionally outputs a grid showing the changes.
+ By contrast the Merge-Worksheet command takes the Worksheets and combines them into a single sheet showing the old and new data side by side.
+ Although it is designed to work with Excel data it can work with arrays of any kind of object; so it can be a merge *of* Worksheets, or a merge *to* a Worksheet.
+ .Example
+ Merge-Worksheet "Server54.xlsx" "Server55.xlsx" -WorksheetName services -OutputFile Services.xlsx -OutputSheetName 54-55 -show
+ The workbooks contain audit information for two servers, one sheet contains
+ a list of services. This command creates a worksheet named "54-55" in a
+ workbook named "services.xlsx" which shows all the services and their
+ differences, and opens the new workbook in Excel.
+ .Example
+ Merge-Worksheet "Server54.xlsx" "Server55.xlsx" -WorksheetName services -OutputFile Services.xlsx -OutputSheetName 54-55 -HideEqual -AddBackgroundColor LightBlue -show
+ This modifies the previous command to hide the equal rows in the output
+ sheet and changes the color used to mark rows added to the second file.
+ .Example
+ Merge-Worksheet -OutputFile .\j1.xlsx -OutputSheetName test11 -ReferenceObject (dir .\ImportExcel\4.0.7) -DifferenceObject (dir .\ImportExcel\4.0.8) -Property Length -Show
+ This version compares two directories, and marks what has changed.
+ Because no "Key" property is given, "Name" is assumed to be the key
+ and the only other property examined is length. Files which are added
+ or deleted or have changed size will be highlighed in the output sheet.
+ Changes to dates or other attributes will be ignored.
+ .Example
+ Merge-Worksheet -RefO (dir .\ImportExcel\4.0.7) -DiffO (dir .\ImportExcel\4.0.8) -Pr Length | Out-GridView
+ This time no file is written and the results - which include all properties,
+ not just length, are output and sent to Out-Gridview. This version uses
+ aliases to shorten the parameters, (OutputFileName can be "outFile" and
+ the Sheet can be"OutSheet"; DifferenceObject & ReferenceObject can be
+ DiffObject & RefObject respectively).
+ #>
+ [cmdletbinding(SupportsShouldProcess=$true)]
+ Param(
+ #First Excel file to compare. You can compare two Excel files or two other objects or a reference obhct against a difference file, but not a reference file against an object.
+ [parameter(ParameterSetName='A',Mandatory=$true,Position=0)] #A = Compare two files default headers
+ [parameter(ParameterSetName='B',Mandatory=$true,Position=0)] #B = Compare two files user supplied headers
+ [parameter(ParameterSetName='C',Mandatory=$true,Position=0)] #C = Compare two files headers P1, P2, P3 etc
+ $Referencefile ,
+
+ #Second Excel file to compare.
+ [parameter(ParameterSetName='A',Mandatory=$true,Position=1)]
+ [parameter(ParameterSetName='B',Mandatory=$true,Position=1)]
+ [parameter(ParameterSetName='C',Mandatory=$true,Position=1)]
+ [parameter(ParameterSetName='E',Mandatory=$true,Position=1)] #D Compare two objects; E = Compare one object one file that uses default headers
+ [parameter(ParameterSetName='F',Mandatory=$true,Position=1)] #F = Compare one object one file that uses user supplied headers
+ [parameter(ParameterSetName='G',Mandatory=$true,Position=1)] #G Compare one object one file that uses headers P1, P2, P3 etc
+ $Differencefile ,
+
+ #Name(s) of Worksheets to compare.
+ [parameter(ParameterSetName='A',Position=2)] #Applies to all sets EXCEPT D which is two objects (no sheets)
+ [parameter(ParameterSetName='B',Position=2)]
+ [parameter(ParameterSetName='C',Position=2)]
+ [parameter(ParameterSetName='E',Position=2)]
+ [parameter(ParameterSetName='F',Position=2)]
+ [parameter(ParameterSetName='G',Position=2)]
+ $WorksheetName = "Sheet1",
+
+ #The row from where we start to import data, all rows above the StartRow are disregarded. By default this is the first row.
+ [parameter(ParameterSetName='A')] #Applies to all sets EXCEPT D which is two objects (no sheets, so no start row )
+ [parameter(ParameterSetName='B')]
+ [parameter(ParameterSetName='C')]
+ [parameter(ParameterSetName='E')]
+ [parameter(ParameterSetName='F')]
+ [parameter(ParameterSetName='G')]
+ [int]$Startrow = 1,
+
+ #Specifies custom property names to use, instead of the values defined in the column headers of the Start ROw.
+ [Parameter(ParameterSetName='B',Mandatory=$true)] #Compare object + sheet or 2 sheets with user supplied headers
+ [Parameter(ParameterSetName='F',Mandatory=$true)]
+ [String[]]$Headername,
+
+ #Automatically generate property names (P1, P2, P3, ..) instead of using the values the top row of the sheet.
+ [Parameter(ParameterSetName='C',Mandatory=$true)] #Compare object + sheet or 2 sheets with headers of P1, P2, P3 ...
+ [Parameter(ParameterSetName='G',Mandatory=$true)]
+ [switch]$NoHeader,
+
+ #Reference object to compare if a Worksheet is NOT being used. Reference object can combine with a difference sheet or difference object
+ [parameter(ParameterSetName='D',Mandatory=$true)]
+ [parameter(ParameterSetName='E',Mandatory=$true)]
+ [parameter(ParameterSetName='F',Mandatory=$true)]
+ [parameter(ParameterSetName='G',Mandatory=$true)]
+ [Alias('RefObject')]
+ $ReferenceObject ,
+ #Difference object to compare if a Worksheet is NOT being used for either half. Can't have a reference sheet and difference object.
+ [parameter(ParameterSetName='D',Mandatory=$true,Position=1)]
+ [Alias('DiffObject')]
+ $DifferenceObject ,
+ [parameter(ParameterSetName='D',Position=2)]
+ [parameter(ParameterSetName='E',Position=2)]
+ [parameter(ParameterSetName='F',Position=2)]
+ [parameter(ParameterSetName='G',Position=2)]
+ #If there isn't a filename to use to label data from the "Difference" side, DiffPrefix is used, it defaults to "=>"
+ $DiffPrefix = "=>" ,
+ #File to hold merged data.
+ [parameter(Position=3)]
+ [Alias('OutFile')]
+ $OutputFile ,
+ #Name of Worksheet to output - if none specified will use the reference Worksheet name.
+ [parameter(Position=4)]
+ [Alias('OutSheet')]
+ $OutputSheetName = "Sheet1",
+ #Properties to include in the DIFF - supports wildcards, default is "*".
+ $Property = "*" ,
+ #Properties to exclude from the the search - supports wildcards.
+ $ExcludeProperty ,
+ #Name of a column which is unique used to pair up rows from the refence and difference side, default is "Name".
+ $Key = "Name" ,
+ #Sets the font color for the "key" field; this means you can filter by color to get only changed rows.
+ $KeyFontColor = [System.Drawing.Color]::DarkRed ,
+ #Sets the background color for changed rows.
+ $ChangeBackgroundColor = [System.Drawing.Color]::Orange,
+ #Sets the background color for rows in the reference but deleted from the difference sheet.
+ $DeleteBackgroundColor = [System.Drawing.Color]::LightPink,
+ #Sets the background color for rows not in the reference but added to the difference sheet.
+ $AddBackgroundColor = [System.Drawing.Color]::PaleGreen,
+ #if specified, hides the rows in the spreadsheet that are equal and only shows changes, added or deleted rows.
+ [switch]$HideEqual ,
+ #If specified, outputs the data to the pipeline (you can add -WhatIf so the command only outputs to the pipeline).
+ [switch]$Passthru ,
+ #If specified, opens the output workbook.
+ [Switch]$Show
+ )
+
+ #region Read Excel data
+ if ($Differencefile -is [System.IO.FileInfo]) {$Differencefile = $Differencefile.FullName}
+ if ($Referencefile -is [System.IO.FileInfo]) {$Referencefile = $Referencefile.FullName}
+ if ($Referencefile -and $Differencefile) {
+ #if the filenames don't resolve, give up now.
+ try { $oneFile = ((Resolve-Path -Path $Referencefile -ErrorAction Stop).path -eq (Resolve-Path -Path $Differencefile -ErrorAction Stop).path)}
+ Catch { Write-Warning -Message "Could not Resolve the filenames." ; return }
+
+ #If we have one file , we must have two different Worksheet names. If we have two files $WorksheetName can be a single string or two strings.
+ if ($onefile -and ( ($WorksheetName.count -ne 2) -or $WorksheetName[0] -eq $WorksheetName[1] ) ) {
+ Write-Warning -Message "If both the Reference and difference file are the same then Worksheet name must provide 2 different names"
+ return
+ }
+ if ($WorksheetName.count -eq 2) {$Worksheet2 = $DiffPrefix = $WorksheetName[1] ; $Worksheet1 = $WorksheetName[0] ; }
+ elseif ($WorksheetName -is [string]) {$Worksheet2 = $Worksheet1 = $WorksheetName ;
+ $DiffPrefix = (Split-Path -Path $Differencefile -Leaf) -replace "\.xlsx$","" }
+ else {Write-Warning -Message "You must provide either a single Worksheet name or two names." ; return }
+
+ $params= @{ ErrorAction = [System.Management.Automation.ActionPreference]::Stop }
+ foreach ($p in @("HeaderName","NoHeader","StartRow")) {if ($PSBoundParameters[$p]) {$params[$p] = $PSBoundParameters[$p]}}
+ try {
+ $ReferenceObject = Import-Excel -Path $Referencefile -WorksheetName $Worksheet1 @params
+ $DifferenceObject = Import-Excel -Path $Differencefile -WorksheetName $Worksheet2 @Params
+ }
+ Catch {Write-Warning -Message "Could not read the Worksheet from $Referencefile::$Worksheet1 and/or $Differencefile::$Worksheet2." ; return }
+ if ($NoHeader) {$firstDataRow = $Startrow } else {$firstDataRow = $Startrow + 1}
+ }
+ elseif ( $Differencefile) {
+ if ($WorksheetName -isnot [string]) {Write-Warning -Message "You must provide a single Worksheet name." ; return }
+ $params = @{WorksheetName=$WorksheetName; Path=$Differencefile; ErrorAction=[System.Management.Automation.ActionPreference]::Stop }
+ foreach ($p in @("HeaderName","NoHeader","StartRow")) {if ($PSBoundParameters[$p]) {$params[$p] = $PSBoundParameters[$p]}}
+ try {$DifferenceObject = Import-Excel @Params }
+ Catch {Write-Warning -Message "Could not read the Worksheet '$WorksheetName' from $Differencefile::$WorksheetName." ; return }
+ if ($DiffPrefix -eq "=>" ) {
+ $DiffPrefix = (Split-Path -Path $Differencefile -Leaf) -replace "\.xlsx$",""
+ }
+ if ($NoHeader) {$firstDataRow = $Startrow } else {$firstDataRow = $Startrow + 1}
+ }
+ else { $firstDataRow = 1 }
+ #endregion
+
+ #region Set lists of properties and row numbers
+ #Make a list of properties/headings using the Property (default "*") and ExcludeProperty parameters
+ $propList = @()
+ $DifferenceObject = $DifferenceObject | Update-FirstObjectProperties
+ $headings = $DifferenceObject[0].psobject.Properties.Name # This preserves the sequence - using get-member would sort them alphabetically! There may be extra properties in
+ if ($NoHeader -and "Name" -eq $Key) {$Key = "p1"}
+ if ($headings -notcontains $Key -and
+ ('*' -ne $Key)) {Write-Warning -Message "You need to specify one of the headings in the sheet '$Worksheet1' as a key." ; return }
+ foreach ($p in $Property) { $propList += ($headings.where({$_ -like $p}) )}
+ foreach ($p in $ExcludeProperty) { $propList = $propList.where({$_ -notlike $p}) }
+ if (($propList -notcontains $Key) -and
+ ('*' -ne $Key)) { $propList += $Key} #If $key isn't one of the headings we will have bailed by now
+ $propList = $propList | Select-Object -Unique #so, prolist must contain at least $key if nothing else
+
+ #If key is "*" we treat it differently , and we will create a script property which concatenates all the Properties in $Proplist
+ $ConCatblock = [scriptblock]::Create( ($proplist | ForEach-Object {'$this."' + $_ + '"'}) -join " + ")
+
+ #Build the list of the properties to output, in order.
+ $diffpart = @()
+ $refpart = @()
+ foreach ($p in $proplist.Where({$key -ne $_}) ) {$refPart += $p ; $diffPart += "$DiffPrefix $p" }
+ $lastRefColNo = $proplist.count
+ $FirstDiffColNo = $lastRefColNo + 1
+
+ if ($key -ne '*') {
+ $outputProps = @($key) + $refpart + $diffpart
+ #If we are using a single column as the key, don't duplicate it, so the last difference column will be A if there is one property, C if there are two, E if there are 3
+ $lastDiffColNo = (2 * $proplist.count) - 1
+ }
+ else {
+ $outputProps = @( ) + $refpart + $diffpart
+ #If we not using a single column as a key all columns are duplicated so, the Last difference column will be B if there is one property, D if there are two, F if there are 3
+ $lastDiffColNo = (2 * $proplist.count )
+ }
+
+ #Add RowNumber to every row
+ #If one sheet has extra rows we can get a single "==" result from compare, with the row from the reference sheet, but
+ #the row in the other sheet might be different so we will look up the row number from the key field - build a hash table for that here
+ #If we have "*" as the key ad the script property to concatenate the [selected] properties.
+
+ $Rowhash = @{}
+ $rowNo = $firstDataRow
+ foreach ($row in $ReferenceObject) {
+ if ($null -eq $row._row) {Add-Member -InputObject $row -MemberType NoteProperty -Value ($rowNo ++) -Name "_Row" }
+ else {$rowNo++ }
+ if ($Key -eq '*' ) {Add-Member -InputObject $row -MemberType ScriptProperty -Value $ConCatblock -Name "_All" }
+ }
+ $rowNo = $firstDataRow
+ foreach ($row in $DifferenceObject) {
+ Add-Member -InputObject $row -MemberType NoteProperty -Value $rowNo -Name "$DiffPrefix Row" -Force
+ if ($Key -eq '*' ) {
+ Add-Member -InputObject $row -MemberType ScriptProperty -Value $ConCatblock -Name "_All"
+ $Rowhash[$row._All] = $rowNo
+ }
+ else {$Rowhash[$row.$key] = $rowNo }
+ $rowNo ++
+ }
+ if ($DifferenceObject.count -gt $Rowhash.Keys.Count) {
+ Write-Warning -Message "Difference object has $($DifferenceObject.Count) rows; but only $($Rowhash.keys.count) unique keys"
+ }
+ if ($Key -eq '*') {$key = "_ALL"}
+ #endregion
+ #We need to know all the properties we've met on the objects we've diffed
+ $eDiffProps = [ordered]@{}
+ #When we do a compare object changes will result in two rows so we group them and join them together.
+ $expandedDiff = Compare-Object -ReferenceObject $ReferenceObject -DifferenceObject $DifferenceObject -Property $propList -PassThru -IncludeEqual |
+ Group-Object -Property $key | ForEach-Object {
+ #The value of the key column is the name of the Group.
+ $keyval = $_.name
+ #we're going to create a custom object from a hash table.
+ $hash = [ordered]@{}
+ foreach ($result in $_.Group) {
+ if ($result.SideIndicator -ne "=>") {$hash["_Row"] = $result._Row }
+ elseif (-not $hash["$DiffPrefix Row"]) {$hash["_Row"] = "" }
+ #if we have already set the side, this must be the second record, so set side to indicate "changed"; if we got two "Same" indicators we may have a classh of keys
+ if ($hash.Side) {
+ if ($hash.Side -eq $result.SideIndicator) {Write-Warning -Message "'$keyval' may be a duplicate."}
+ $hash.Side = "<>"
+ }
+ else {$hash["Side"] = $result.SideIndicator}
+ switch ($hash.side) {
+ '==' { $hash["$DiffPrefix is"] = 'Same' }
+ '=>' { $hash["$DiffPrefix is"] = 'Added' }
+ '<>' { if (-not $hash["_Row"]) {
+ $hash["$DiffPrefix is"] = 'Added'
+ }
+ else {
+ $hash["$DiffPrefix is"] = 'Changed'
+ }
+ }
+ '<=' { $hash["$DiffPrefix is"] = 'Removed'}
+ }
+ #find the number of the row in the the "difference" object which has this key. If it is the object is only in the reference this will be blank.
+ $hash["$DiffPrefix Row"] = $Rowhash[$keyval]
+ $hash[$key] = $keyval
+ #Create FieldName and/or =>FieldName columns
+ foreach ($p in $result.psobject.Properties.name.where({$_ -ne $key -and $_ -ne "SideIndicator" -and $_ -ne "$DiffPrefix Row" })) {
+ if ($result.SideIndicator -eq "==" -and $p -in $propList)
+ {$hash[("$p")] = $hash[("$DiffPrefix $p")] = $result.$P}
+ elseif ($result.SideIndicator -eq "==" -or $result.SideIndicator -eq "<=")
+ {$hash[("$p")] = $result.$P}
+ elseif ($result.SideIndicator -eq "=>") { $hash[("$DiffPrefix $p")] = $result.$P}
+ }
+ }
+
+ foreach ($k in $hash.keys) {$eDiffProps[$k] = $true}
+ [Pscustomobject]$hash
+ } | Sort-Object -Property "_row"
+
+ #Already sorted by reference row number, fill in any blanks in the difference-row column.
+ for ($i = 1; $i -lt $expandedDiff.Count; $i++) {if (-not $expandedDiff[$i]."$DiffPrefix Row") {$expandedDiff[$i]."$DiffPrefix Row" = $expandedDiff[$i-1]."$DiffPrefix Row" } }
+
+ #Now re-Sort by difference row number, and fill in any blanks in the reference-row column.
+ $expandedDiff = $expandedDiff | Sort-Object -Property "$DiffPrefix Row"
+ for ($i = 1; $i -lt $expandedDiff.Count; $i++) {if (-not $expandedDiff[$i]."_Row") {$expandedDiff[$i]."_Row" = $expandedDiff[$i-1]."_Row" } }
+
+ $AllProps = @("_Row") + $OutputProps + $eDiffProps.keys.where({$_ -notin ($outputProps + @("_row","side","SideIndicator","_ALL" ))})
+
+ if ($PassThru -or -not $OutputFile) {return ($expandedDiff | Select-Object -Property $allprops | Sort-Object -Property "_row", "$DiffPrefix Row" ) }
+ elseif ($PSCmdlet.ShouldProcess($OutputFile,"Write Output to Excel file")) {
+ $expandedDiff = $expandedDiff | Sort-Object -Property "_row", "$DiffPrefix Row"
+ $xl = $expandedDiff | Select-Object -Property $OutputProps | Update-FirstObjectProperties |
+ Export-Excel -Path $OutputFile -Worksheetname $OutputSheetName -FreezeTopRow -BoldTopRow -AutoSize -AutoFilter -PassThru
+ $ws = $xl.Workbook.Worksheets[$OutputSheetName]
+ for ($i = 0; $i -lt $expandedDiff.Count; $i++ ) {
+ if ( $expandedDiff[$i].side -ne "==" ) {
+ Set-ExcelRange -Worksheet $ws -Range ("A" + ($i + 2 )) -FontColor $KeyFontColor
+ }
+ elseif ( $HideEqual ) {$ws.row($i+2).hidden = $true }
+ if ( $expandedDiff[$i].side -eq "<>" ) {
+ $range = $ws.Dimension -replace "\d+", ($i + 2 )
+ Set-ExcelRange -Worksheet $ws -Range $range -BackgroundColor $ChangeBackgroundColor
+ }
+ elseif ( $expandedDiff[$i].side -eq "<=" ) {
+ $rangeR1C1 = "R[{0}]C[1]:R[{0}]C[{1}]" -f ($i + 2 ) , $lastRefColNo
+ $range = [OfficeOpenXml.ExcelAddress]::TranslateFromR1C1($rangeR1C1,0,0)
+ Set-ExcelRange -Worksheet $ws -Range $range -BackgroundColor $DeleteBackgroundColor
+ }
+ elseif ( $expandedDiff[$i].side -eq "=>" ) {
+ if ($propList.count -gt 1) {
+ $rangeR1C1 = "R[{0}]C[{1}]:R[{0}]C[{2}]" -f ($i + 2 ) , $FirstDiffColNo , $lastDiffColNo
+ $range = [OfficeOpenXml.ExcelAddress]::TranslateFromR1C1($rangeR1C1,0,0)
+ Set-ExcelRange -Worksheet $ws -Range $range -BackgroundColor $AddBackgroundColor
+ }
+ Set-ExcelRange -Worksheet $ws -Range ("A" + ($i + 2 )) -BackgroundColor $AddBackgroundColor
+ }
+ }
+ Close-ExcelPackage -ExcelPackage $xl -Show:$Show
+ }
+}
+
+Function Merge-MultipleSheets {
+ <#
+ .Synopsis
+ Merges Worksheets into a single Worksheet with differences marked up.
+ .Description
+ The Merge Worksheet command combines two sheets. Merge-MultipleSheets is
+ designed to merge more than two. So if asked to merge sheets A,B,C which
+ contain Services, with a Name, Displayname and Start mode, where "Name" is
+ treated as the key, Merge-MultipleSheets calls Merge-Worksheet to merge
+ "Name", "Displayname" and "Startmode" from sheets A and C; the result has
+ column headings "_Row", "Name", "DisplayName", "Startmode", "C-DisplayName",
+ "C-StartMode", "C-Is" and "C-Row".
+ Merge-MultipleSheets then calls Merge-Worksheet again passing it the
+ intermediate result and sheet B, comparing "Name", "Displayname" and
+ "Start mode" columns on each side, and gets a result with columns "_Row",
+ "Name", "DisplayName", "Startmode", "B-DisplayName", "B-StartMode", "B-Is",
+ "B-Row", "C-DisplayName", "C-StartMode", "C-Is" and "C-Row". Any columns on
+ the "reference" side which are not used in the comparison are added on the
+ right, which is why we compare the sheets in reverse order.
+
+ The "Is" columns hold "Same", "Added", "Removed" or "Changed" and is used for
+ conditional formatting in the output sheet (these columns are hidden by default),
+ and when the data is written to Excel the "reference" columns, in this case
+ "DisplayName" and "Start" are renamed to reflect their source, so become
+ "A-DisplayName" and "A-Start".
+
+ Conditional formatting is also applied to the Key column ("Name" in this
+ case) so the view can be filtered to rows with changes by filtering this
+ column on color.
+
+ Note: the processing order can affect what is seen as a change. For example
+ if there is an extra item in sheet B in the example above, Sheet C will be
+ processed and that row and will not be seen to be missing. When sheet B is
+ processed it is marked as an addition, and the conditional formatting marks
+ the entries from sheet A to show that a values were added in at least one
+ sheet. However if Sheet B is the reference sheet, A and C will be seen to
+ have an item removed; and if B is processed before C, the extra item is
+ known when C is processed and so C is considered to be missing that item.
+ .Example
+ dir Server*.xlsx | Merge-MulipleSheets -WorksheetName Services -OutputFile Test2.xlsx -OutputSheetName Services -Show
+ Here we are auditing servers and each one has a workbook in the current
+ directory which contains a "Services" Worksheet (the result of
+ Get-WmiObject -Class win32_service | Select-Object -Property Name, Displayname, Startmode)
+ No key is specified so the key is assumed to be the "Name" column.
+ The files are merged and the result is opened on completion.
+ .Example
+ dir Serv*.xlsx | Merge-MulipleSheets -WorksheetName Software -Key "*" -ExcludeProperty Install* -OutputFile Test2.xlsx -OutputSheetName Software -Show
+ The server audit files in the previous example also have "Software" worksheet,
+ but no single field on that sheet works as a key. Specifying "*" for the key
+ produces a compound key using all non-excluded fields (and the installation
+ date and file location are excluded).
+ .Example
+ Merge-MulipleSheets -Path hotfixes.xlsx -WorksheetName Serv* -Key hotfixid -OutputFile test2.xlsx -OutputSheetName hotfixes -HideRowNumbers -Show
+ This time all the servers have written their hotfix information to their own
+ worksheets in a shared Excel workbook named "Hotfixes.xlsx" (the information was
+ obtained by running Get-Hotfix | Sort-Object -Property description,hotfixid | Select-Object -Property Description,HotfixID)
+ This ignores any sheets which are not named "Serv*", and uses the HotfixID as
+ the key; in this version the row numbers are hidden.
+ #>
+ [cmdletbinding()]
+ [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseDeclaredVarsMoreThanAssignments', '', Justification="False positives when initializing variable in begin block")]
+ [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseSingularNouns', '', Justification="MultipleSheet would be incorrect")]
+ #[Alias("Merge-MulipleSheets")] #There was a spelling error in the first release. This was there to ensure things didn't break but intelisense gave the alias first.
+ param (
+ #Paths to the files to be merged. Files are also accepted
+ [Parameter(Mandatory=$true,ValueFromPipeline=$true)]
+ $Path ,
+ #The row from where we start to import data, all rows above the Start row are disregarded. By default this is the first row.
+ [int]$Startrow = 1,
+
+ #Specifies custom property names to use, instead of the values defined in the column headers of the Start row.
+ [String[]]$Headername,
+
+ #If specified, property names will be automatically generated (P1, P2, P3, ..) instead of using the values from the start row.
+ [switch]$NoHeader,
+
+ #Name(s) of Worksheets to compare.
+ $WorksheetName = "Sheet1",
+ #File to write output to.
+ [Alias('OutFile')]
+ $OutputFile = ".\temp.xlsx",
+ #Name of Worksheet to output - if none specified will use the reference Worksheet name.
+ [Alias('OutSheet')]
+ $OutputSheetName = "Sheet1",
+ #Properties to include in the comparison - supports wildcards, default is "*".
+ $Property = "*" ,
+ #Properties to exclude from the the comparison - supports wildcards.
+ $ExcludeProperty ,
+ #Name of a column which is unique used to pair up rows from the reference and difference sides, default is "Name".
+ $Key = "Name" ,
+ #Sets the font color for the Key field; this means you can filter by color to get only changed rows.
+ $KeyFontColor = [System.Drawing.Color]::Red,
+ #Sets the background color for changed rows.
+ $ChangeBackgroundColor = [System.Drawing.Color]::Orange,
+ #Sets the background color for rows in the reference but deleted from the difference sheet.
+ $DeleteBackgroundColor = [System.Drawing.Color]::LightPink,
+ #Sets the background color for rows not in the reference but added to the difference sheet.
+ $AddBackgroundColor = [System.Drawing.Color]::Orange,
+ #If specified, hides the columns in the spreadsheet that contain the row numbers.
+ [switch]$HideRowNumbers ,
+ #If specified, outputs the data to the pipeline (you can add -whatif so it the command only outputs to the pipeline).
+ [switch]$Passthru ,
+ #If specified, opens the output workbook.
+ [Switch]$Show
+ )
+ begin { $filestoProcess = @() }
+ process { $filestoProcess += $Path}
+ end {
+ if ($filestoProcess.Count -eq 1 -and $WorksheetName -match '\*') {
+ Write-Progress -Activity "Merging sheets" -CurrentOperation "Expanding * to names of sheets in $($filestoProcess[0]). "
+ $excel = Open-ExcelPackage -Path $filestoProcess
+ $WorksheetName = $excel.Workbook.Worksheets.Name.where({$_ -like $WorksheetName})
+ Close-ExcelPackage -NoSave -ExcelPackage $excel
+ }
+
+ #Merge identically named sheets in different work books;
+ if ($filestoProcess.Count -ge 2 -and $WorksheetName -is "string" ) {
+ Get-Variable -Name 'HeaderName','NoHeader','StartRow','Key','Property','ExcludeProperty','WorksheetName' -ErrorAction SilentlyContinue |
+ Where-Object {$_.Value} | ForEach-Object -Begin {$params= @{} } -Process {$params[$_.Name] = $_.Value}
+
+ Write-Progress -Activity "Merging sheets" -CurrentOperation "comparing '$WorksheetName' in $($filestoProcess[-1]) against $($filestoProcess[0]). "
+ $merged = Merge-Worksheet @params -Referencefile $filestoProcess[0] -Differencefile $filestoProcess[-1]
+ $nextFileNo = 2
+ while ($nextFileNo -lt $filestoProcess.count -and $merged) {
+ Write-Progress -Activity "Merging sheets" -CurrentOperation "comparing '$WorksheetName' in $($filestoProcess[-$nextFileNo]) against $($filestoProcess[0]). "
+ $merged = Merge-Worksheet @params -ReferenceObject $merged -Differencefile $filestoProcess[-$nextFileNo]
+ $nextFileNo ++
+
+ }
+ }
+ #Merge different sheets from one workbook
+ elseif ($filestoProcess.Count -eq 1 -and $WorksheetName.Count -ge 2 ) {
+ Get-Variable -Name 'HeaderName','NoHeader','StartRow','Key','Property','ExcludeProperty' -ErrorAction SilentlyContinue |
+ Where-Object {$_.Value} | ForEach-Object -Begin {$params= @{} } -Process {$params[$_.Name] = $_.Value}
+
+ Write-Progress -Activity "Merging sheets" -CurrentOperation "Comparing $($WorksheetName[-1]) against $($WorksheetName[0]). "
+ $merged = Merge-Worksheet @params -Referencefile $filestoProcess[0] -Differencefile $filestoProcess[0] -WorksheetName $WorksheetName[0,-1]
+ $nextSheetNo = 2
+ while ($nextSheetNo -lt $WorksheetName.count -and $merged) {
+ Write-Progress -Activity "Merging sheets" -CurrentOperation "Comparing $($WorksheetName[-$nextSheetNo]) against $($WorksheetName[0]). "
+ $merged = Merge-Worksheet @params -ReferenceObject $merged -Differencefile $filestoProcess[0] -WorksheetName $WorksheetName[-$nextSheetNo] -DiffPrefix $WorksheetName[-$nextSheetNo]
+ $nextSheetNo ++
+ }
+ }
+ #We either need one Worksheet name and many files or one file and many sheets.
+ else { Write-Warning -Message "Need at least two files to process" ; return }
+ #if the process didn't return data then abandon now.
+ if (-not $merged) {Write-Warning -Message "The merge operation did not return any data."; return }
+
+ $orderByProperties = $merged[0].psobject.properties.where({$_.name -match "row$"}).name
+ Write-Progress -Activity "Merging sheets" -CurrentOperation "creating output sheet '$OutputSheetName' in $OutputFile"
+ $excel = $merged | Sort-Object -Property $orderByProperties |
+ Export-Excel -Path $OutputFile -Worksheetname $OutputSheetName -ClearSheet -BoldTopRow -AutoFilter -PassThru
+ $sheet = $excel.Workbook.Worksheets[$OutputSheetName]
+
+ #We will put in a conditional format for "if all the others are not flagged as 'same'" to mark rows where something is added, removed or changed
+ $sameChecks = @()
+
+ #All the 'difference' columns in the sheet are labeled with the file they came from, 'reference' columns need their
+ #headers prefixed with the ref file name, $colnames is the basis of a regular expression to identify what should have $refPrefix appended
+ $colNames = @("^_Row$")
+ if ($key -ne "*")
+ {$colnames += "^$Key$"}
+ if ($filesToProcess.Count -ge 2) {
+ $refPrefix = (Split-Path -Path $filestoProcess[0] -Leaf) -replace "\.xlsx$"," "
+ }
+ else {$refPrefix = $WorksheetName[0] }
+ Write-Progress -Activity "Merging sheets" -CurrentOperation "applying formatting to sheet '$OutputSheetName' in $OutputFile"
+ #Find the column headings which are in the form "diffFile is"; which will hold 'Same', 'Added' or 'Changed'
+ foreach ($cell in $sheet.Cells[($sheet.Dimension.Address -replace "\d+$","1")].Where({$_.value -match "\sIS$"}) ) {
+ #Work leftwards across the headings applying conditional formatting which says
+ # 'Format this cell if the "IS" column has a value of ...' until you find a heading which doesn't have the prefix.
+ $prefix = $cell.value -replace "\sIS$",""
+ $columnNo = $cell.start.Column -1
+ $cellAddr = [OfficeOpenXml.ExcelAddress]::TranslateFromR1C1("R1C$columnNo",1,$columnNo)
+ while ($sheet.cells[$cellAddr].value -match $prefix) {
+ $condFormattingParams = @{RuleType='Expression'; BackgroundPattern='Solid'; Worksheet=$sheet; StopIfTrue=$true; Range=$([OfficeOpenXml.ExcelAddress]::TranslateFromR1C1("R[1]C[$columnNo]:R[1048576]C[$columnNo]",0,0)) }
+ Add-ConditionalFormatting @condFormattingParams -ConditionValue ($cell.Address + '="Added"' ) -BackgroundColor $AddBackgroundColor
+ Add-ConditionalFormatting @condFormattingParams -ConditionValue ($cell.Address + '="Changed"') -BackgroundColor $ChangeBackgroundColor
+ Add-ConditionalFormatting @condFormattingParams -ConditionValue ($cell.Address + '="Removed"') -BackgroundColor $DeleteBackgroundColor
+ $columnNo --
+ $cellAddr = [OfficeOpenXml.ExcelAddress]::TranslateFromR1C1("R1C$columnNo",1,$columnNo)
+ }
+ #build up a list of prefixes in $colnames - we'll use that to set headers on rows from the reference file; and build up the "if the 'is' cell isn't same" list
+ $colNames += $prefix
+ $sameChecks += (($cell.Address -replace "1","2") +'<>"Same"')
+ }
+
+ #For all the columns which don't match one of the Diff-file prefixes or "_Row" or the 'Key' columnn name; add the reference file prefix to their header.
+ $nameRegex = $colNames -Join '|'
+ foreach ($cell in $sheet.Cells[($sheet.Dimension.Address -replace "\d+$","1")].Where({$_.value -Notmatch $nameRegex}) ) {
+ $cell.Value = $refPrefix + $cell.Value
+ $condFormattingParams = @{RuleType='Expression'; BackgroundPattern='Solid'; Worksheet=$sheet; StopIfTrue=$true; Range=[OfficeOpenXml.ExcelAddress]::TranslateFromR1C1("R[2]C[$($cell.start.column)]:R[1048576]C[$($cell.start.column)]",0,0)}
+ Add-ConditionalFormatting @condFormattingParams -ConditionValue ("OR(" +(($sameChecks -join ",") -replace '<>"Same"','="Added"' ) +")" ) -BackgroundColor $DeleteBackgroundColor
+ Add-ConditionalFormatting @condFormattingParams -ConditionValue ("AND(" +(($sameChecks -join ",") -replace '<>"Same"','="Changed"') +")" ) -BackgroundColor $ChangeBackgroundColor
+ }
+ #We've made a bunch of things wider so now is the time to autofit columns. Any hiding has to come AFTER this, because it unhides things
+ $sheet.Cells.AutoFitColumns()
+
+ #if we have a key field (we didn't concatenate all fields) use what we built up in $sameChecks to apply conditional formatting to it (Row no will be in column A, Key in Column B)
+ if ($Key -ne '*') {
+ Add-ConditionalFormatting -Worksheet $sheet -Range "B2:B1048576" -ForeGroundColor $KeyFontColor -BackgroundPattern 'None' -RuleType Expression -ConditionValue ("OR(" +($sameChecks -join ",") +")" )
+ $sheet.view.FreezePanes(2, 3)
+ }
+ else {$sheet.view.FreezePanes(2, 2) }
+ #Go back over the headings to find and hide the "is" columns;
+ foreach ($cell in $sheet.Cells[($sheet.Dimension.Address -replace "\d+$","1")].Where({$_.value -match "\sIS$"}) ) {
+ $sheet.Column($cell.start.Column).HIDDEN = $true
+ }
+
+ #If specified, look over the headings for "row" and hide the columns which say "this was in row such-and-such"
+ if ($HideRowNumbers) {
+ foreach ($cell in $sheet.Cells[($sheet.Dimension.Address -replace "\d+$","1")].Where({$_.value -match "Row$"}) ) {
+ $sheet.Column($cell.start.Column).HIDDEN = $true
+ }
+ }
+ if ($Passthru) {$excel}
+ else {Close-ExcelPackage -ExcelPackage $excel -Show:$Show}
+ Write-Progress -Activity "Merging sheets" -Completed
+ }
+}
diff --git a/Plot.ps1 b/Plot.ps1
new file mode 100644
index 0000000..4a54ea1
--- /dev/null
+++ b/Plot.ps1
@@ -0,0 +1,218 @@
+[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseDeclaredVarsMoreThanAssignments', '', Justification="False positives")]
+param()
+class PSPlot {
+ hidden $path
+ hidden $pkg
+ hidden $ws
+ hidden $chart
+
+ PSPlot() {
+ $this.path=[System.IO.Path]::GetTempFileName() -replace "\.tmp", ".xlsx"
+ $this.pkg = New-Object OfficeOpenXml.ExcelPackage $this.path
+ $this.ws=$this.pkg.Workbook.Worksheets.Add("plot")
+ }
+
+ [PSPlot] Plot($yValues) {
+
+ $this.NewChart()
+
+ $xValues = 0..$yValues.Count
+
+ $xCol = 'A'
+ $yCol = 'B'
+
+ $this.AddDataToSheet($xCol,$yCol,'x','y',$xValues,$yValues)
+ $this.AddSeries($xCol,$yCol,$yValues)
+ $this.SetChartPosition($yCol)
+
+ return $this
+ }
+
+ [PSPlot] Plot($yValues,[string]$options) {
+ $this.NewChart()
+
+ $xValues = 0..$yValues.Count
+
+ $xCol = 'A'
+ $yCol = 'B'
+
+ $this.AddDataToSheet($xCol,$yCol,'x','y',$xValues,$yValues)
+ $this.AddSeries($xCol,$yCol,$yValues)
+
+ $this.SetMarkerInfo($options)
+ $this.SetChartPosition($yCol)
+
+ return $this
+ }
+
+ [PSPlot] Plot($xValues,$yValues) {
+
+ $this.NewChart()
+
+ $xCol = 'A'
+ $yCol = 'B'
+
+ $this.AddDataToSheet($xCol,$yCol,'x','y',$xValues,$yValues)
+ $this.AddSeries($xCol,$yCol,$yValues)
+
+ $this.SetChartPosition($yCol)
+
+ return $this
+ }
+
+ [PSPlot] Plot($xValues,$yValues,[string]$options) {
+ $this.NewChart()
+
+ $xCol = 'A'
+ $yCol = 'B'
+
+ $this.AddDataToSheet($xCol,$yCol,'x','y',$xValues,$yValues)
+ $this.AddSeries($xCol,$yCol,$yValues)
+
+ $this.SetMarkerInfo($options)
+
+ $this.SetChartPosition($yCol)
+
+ return $this
+ }
+
+ [PSPlot] Plot($xValues,$yValues,$x1Values,$y1Values) {
+
+ $this.NewChart()
+
+ $xCol = 'A'
+ $yCol = 'B'
+
+ $this.AddDataToSheet($xCol,$yCol,'x','y',$xValues,$yValues)
+ $this.AddSeries($xCol,$yCol,$yValues)
+
+ $xCol=$this.GetNextColumnName($yCol)
+ $yCol=$this.GetNextColumnName($xCol)
+
+ $this.AddDataToSheet($xCol,$yCol,'x1','y1',$x1Values,$y1Values)
+ $this.AddSeries($xCol,$yCol,$y1Values)
+
+ $this.SetChartPosition($yCol)
+
+ return $this
+ }
+
+ [PSPlot] Plot($xValues,$yValues,$x1Values,$y1Values,$x2Values,$y2Values) {
+
+ $this.NewChart()
+
+ $xCol = 'A'
+ $yCol = 'B'
+
+ $this.AddDataToSheet($xCol,$yCol,'x','y',$xValues,$yValues)
+ $this.AddSeries($xCol,$yCol,$yValues)
+
+ $xCol=$this.GetNextColumnName($yCol)
+ $yCol=$this.GetNextColumnName($xCol)
+
+ $this.AddDataToSheet($xCol,$yCol,'x1','y1',$x1Values,$y1Values)
+ $this.AddSeries($xCol,$yCol,$y1Values)
+
+ $xCol=$this.GetNextColumnName($yCol)
+ $yCol=$this.GetNextColumnName($xCol)
+
+ $this.AddDataToSheet($xCol,$yCol,'x2','y2',$x2Values,$y2Values)
+ $this.AddSeries($xCol,$yCol,$y2Values)
+
+ $this.SetChartPosition($yCol)
+
+ return $this
+ }
+
+ [PSPLot] SetChartPosition($yCol) {
+ $columnNumber = $this.GetColumnNumber($yCol)+1
+ $this.chart.SetPosition(1,0,$columnNumber,0)
+
+ return $this
+ }
+
+ AddSeries($xCol,$yCol,$yValues) {
+ $yRange = "{0}2:{0}{1}" -f $yCol,($yValues.Count+1)
+ $xRange = "{0}2:{0}{1}" -f $xCol,($yValues.Count+1)
+ $Series=$this.chart.Series.Add($yRange,$xRange)
+ }
+
+ hidden SetMarkerInfo([string]$options) {
+ $c=$options.Substring(0,1)
+ $m=$options.Substring(1)
+
+ $cmap=@{r='red';g='green';b='blue';i='indigo';v='violet';c='cyan'}
+ $mmap=@{Ci='Circle';Da='Dash';di='diamond';do='dot';pl='plus';sq='square';tr='triangle'}
+
+ $this.chart.Series[0].Marker = $mmap.$m
+ $this.chart.Series[0].MarkerColor = $cmap.$c
+ $this.chart.Series[0].MarkerLineColor = $cmap.$c
+ }
+
+ hidden [string]GetNextColumnName($columnName) {
+ return $this.GetColumnName($this.GetColumnNumber($columnName)+1)
+ }
+
+ hidden [int]GetColumnNumber($columnName) {
+ $sum=0
+
+ $columnName.ToCharArray() |
+ ForEach-Object {
+ $sum*=26
+ $sum+=[char]$_.tostring().toupper()-[char]'A'+1
+ }
+
+ return $sum
+ }
+
+ hidden [string]GetColumnName($columnNumber) {
+ $dividend = $columnNumber
+ $columnName = @()
+ while($dividend -gt 0) {
+ $modulo = ($dividend - 1) % 26
+ $columnName += [char](65 + $modulo)
+ $dividend = [int](($dividend -$modulo)/26)
+ }
+
+ return ($columnName -join '')
+ }
+
+ hidden AddDataToSheet($xColumn,$yColumn,$xHeader,$yHeader,$xValues,$yValues) {
+ $count=$yValues.Count
+ $this.ws.Cells["$($xColumn)1"].Value=$xHeader
+ $this.ws.Cells["$($yColumn)1"].Value=$yHeader
+
+ for ($idx= 0; $idx-lt $count; $idx++) {
+ $row=$idx+2
+ $this.ws.Cells["$($xColumn)$($row)"].Value=$xValues[$idx]
+ $this.ws.Cells["$($yColumn)$($row)"].Value=$yValues[$idx]
+ }
+ }
+
+ hidden NewChart() {
+ $chartType="XYScatter"
+ #$chartType="line"
+ $this.chart=$this.ws.Drawings.AddChart("plot", $chartType)
+ $this.chart.Title.Text = 'Plot'
+ $this.chart.Legend.Remove()
+ $this.SetChartSize(300,300)
+ }
+
+ [PSPlot] SetChartSize([int]$width,[int]$height){
+ $this.chart.SetSize($width, $height)
+
+ return $this
+ }
+
+ [PSPlot] Title($title) {
+ $this.chart.Title.Text = $title
+
+ return $this
+ }
+
+ Show() {
+ $this.pkg.Save()
+ $this.pkg.Dispose()
+ Invoke-Item $this.path
+ }
+}
\ No newline at end of file
diff --git a/PublishToGallery.ps1 b/PublishToGallery.ps1
deleted file mode 100644
index cc352c2..0000000
--- a/PublishToGallery.ps1
+++ /dev/null
@@ -1,7 +0,0 @@
-$p = @{
- Name = "ImportExcel"
- NuGetApiKey = $NuGetApiKey
- ReleaseNote = "Add NumberFormat parameter"
-}
-
-Publish-Module @p
\ No newline at end of file
diff --git a/Send-SQLDataToExcel.ps1 b/Send-SQLDataToExcel.ps1
new file mode 100644
index 0000000..874ee87
--- /dev/null
+++ b/Send-SQLDataToExcel.ps1
@@ -0,0 +1,175 @@
+Function Send-SQLDataToExcel {
+ <#
+ .SYNOPSIS
+ Inserts a DataTable - returned by a SQL query - into an ExcelSheet
+ .DESCRIPTION
+ This command takes a SQL statement and run it against a database connection; for the connection it accepts either
+ * an object representing a session with a SQL server or ODBC database, or
+ * a connection string to make a session (if -MSSQLServer is specified it uses the SQL Native client,
+ and -Connection can be a server name instead of a detailed connection string. Without this switch it uses ODBC)
+ The command takes all the parameters of Export-Excel, except for -InputObject (alias TargetData); after
+ fetching the data it calls Export-Excel with the data as the value of InputParameter and whichever of
+ Export-Excel's parameters it was passed; for details of these parameters see the help for Export-Excel.
+ .PARAMETER Session
+ An active ODBC Connection or SQL connection object representing a session with a database which will be queried to get the data .
+ .PARAMETER Connection
+ A database connection string to be used to create a database session; either
+ * A Data source name written in the form DSN=ODBC_Data_Source_Name, or
+ * A full ODBC or SQL Native Client Connection string, or
+ * The name of a SQL server.
+ .PARAMETER MSSQLServer
+ Specifies the connection string is for SQL server, not ODBC.
+ .PARAMETER SQL
+ The SQL query to run against the session which was passed in -Session or set up from -Connection.
+ .PARAMETER Database
+ Switches to a specific database on a SQL server.
+ .PARAMETER QueryTimeout
+ Override the default query time of 30 seconds.
+ .PARAMETER DataTable
+ A System.Data.DataTable object containing the data to be inserted into the spreadsheet without running a query.
+ This remains supported to avoid breaking older scripts, but if you have a DataTable object you can pass the it
+ into Export-Excel using -InputObject.
+ .EXAMPLE
+ C:\> Send-SQLDataToExcel -MsSQLserver -Connection localhost -SQL "select name,type,type_desc from [master].[sys].[all_objects]" -Path .\temp.xlsx -WorkSheetname master -AutoSize -FreezeTopRow -AutoFilter -BoldTopRow
+
+ Connects to the local SQL server and selects 3 columns from [Sys].[all_objects] and exports then to a sheet named master with some basic header management
+ .EXAMPLE
+ C:\> $dbPath = 'C:\Users\James\Documents\Database1.accdb'
+ C:\> $Connection = "Driver={Microsoft Access Driver (*.mdb, *.accdb)};Dbq=$dbPath;"
+ C:\> $SQL="SELECT top 25 Name,Length From TestData ORDER BY Length DESC"
+
+ C:\> Send-SQLDataToExcel -Connection $connection -SQL $sql -path .\demo1.xlsx -WorkSheetname "Sizes" -AutoSize
+
+ This creates an ODBC connection string to read from an Access file and a SQL Statement to extracts data from it,
+ and sends the resulting data to a new worksheet
+
+ .EXAMPLE
+ C:\> $dbPath = 'C:\users\James\Documents\f1Results.xlsx'
+ C:\> $Connection = "Driver={Microsoft Excel Driver (*.xls, *.xlsx, *.xlsm, *.xlsb)};Dbq=$dbPath;"
+ C:\> $SQL="SELECT top 25 DriverName, Count(RaceDate) as Races, Count(Win) as Wins, Count(Pole) as Poles, Count(FastestLap) as Fastlaps " +
+ " FROM Results GROUP BY DriverName ORDER BY (count(win)) DESC"
+
+ C:\> Send-SQLDataToExcel -Connection $connection -SQL $sql -path .\demo2.xlsx -WorkSheetname "Winners" -AutoSize -AutoNameRange -ConditionalFormat @{DataBarColor="Blue"; Range="Wins"}
+
+ Similar to the previous example this creates a connection string, this time for an Excel file, and runs
+ a SQL statement to get a list of motor-racing results, outputting the resulting data to a new spreadsheet.
+ The spreadsheet is formatted and a data bar added to show make the drivers' wins clearer.
+ (the F1 results database is available from https://1drv.ms/x/s!AhfYu7-CJv4ehNdZWxJE9LMAX_N5sg )
+ .EXAMPLE
+ C:\> $dbPath = 'C:\users\James\Documents\f1Results.xlsx'
+ C:\> $SQL = "SELECT top 25 DriverName, Count(RaceDate) as Races, Count(Win) as Wins, Count(Pole) as Poles, Count(FastestLap) as Fastlaps " +
+ " FROM Results GROUP BY DriverName ORDER BY (count(win)) DESC"
+ C:\> $null = Get-SQL -Session F1 -excel -Connection $dbPath -sql $sql -OutputVariable Table
+
+ C:\> Send-SQLDataToExcel -DataTable $Table -Path ".\demo3.xlsx" -WorkSheetname Gpwinners -autosize -TableName winners -TableStyle Light6 -show
+
+ This uses Get-SQL (at least V1.1 - download from the PowerShell gallery with Install-Module -Name GetSQL -
+ note the function is Get-SQL the module is GetSQL without the "-" )
+ Get-SQL simplify making database connections and building /submitting SQL statements.
+ Here Get-SQL uses the same SQL statement as before; -OutputVariable leaves a System.Data.DataTable object in $table
+ and Send-SQLDataToExcel puts $table into the worksheet and sets it as an Excel table.
+ The command is equivalent to running
+ C:\> Export-Excel -inputObject $Table -Path ".\demo3.xlsx" -WorkSheetname Gpwinners -autosize -TableName winners -TableStyle Light6 -show
+ This is quicker than using
+ C:\> Get-SQL | export-excel -ExcludeProperty rowerror,rowstate,table,itemarray,haserrors
+ (the F1 results database is available from https://1drv.ms/x/s!AhfYu7-CJv4ehNdZWxJE9LMAX_N5sg )
+ .EXAMPLE
+ C:\> $SQL = "SELECT top 25 DriverName, Count(Win) as Wins FROM Results GROUP BY DriverName ORDER BY (count(win)) DESC"
+ C:\> Send-SQLDataToExcel -Session $DbSessions["f1"] -SQL $sql -Path ".\demo3.xlsx" -WorkSheetname Gpwinners -ClearSheet -autosize -ColumnChart
+
+ Like the previous example, this uses Get-SQL (download from the gallery with Install-Module -Name GetSQL).
+ It uses the database session which Get-SQL created, rather than an ODBC connection string.
+ The Session parameter can either be a object (as shown here), or the name used by Get-SQL ("F1" in this case).
+ Here the data is presented as a quick chart.
+ .EXAMPLE
+ C:\> Send-SQLDataToExcel -path .\demo4.xlsx -WorkSheetname "LR" -Connection "DSN=LR" -sql "SELECT name AS CollectionName FROM AgLibraryCollection Collection ORDER BY CollectionName"
+
+ This example uses an Existing ODBC datasource name "LR" which maps to an adobe lightroom database and gets a list of collection names into a worksheet
+
+ .Link
+ Export-Excel
+ #>
+ [CmdletBinding(DefaultParameterSetName="none")]
+ [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidGlobalVars', '', Justification="Allowed to use DBSessions Global variable from GETSQL Module")]
+
+ param (
+ [Parameter(ParameterSetName="SQLConnection", Mandatory=$true)]
+ [Parameter(ParameterSetName="ODBCConnection", Mandatory=$true)]
+ $Connection,
+ [Parameter(ParameterSetName="ExistingSession", Mandatory=$true)]
+ $Session,
+ [Parameter(ParameterSetName="SQLConnection", Mandatory=$true)]
+ [switch]$MsSQLserver,
+ [Parameter(ParameterSetName="SQLConnection")]
+ [String]$DataBase,
+ [Parameter(ParameterSetName="SQLConnection", Mandatory=$true)]
+ [Parameter(ParameterSetName="ODBCConnection", Mandatory=$true)]
+ [Parameter(ParameterSetName="ExistingSession", Mandatory=$true)]
+ [string]$SQL,
+ [int]$QueryTimeout,
+ [Parameter(ParameterSetName="Pre-FetchedData", Mandatory=$true)]
+ [System.Data.DataTable]$DataTable
+ )
+#Import the parameters from Export-Excel, we will pass InputObject, and we have the common parameters so exclude those,
+#and re-write the [Parmameter] attribute on each one to avoid parameterSetName here competing with the settings in Export excel.
+#The down side of this that impossible parameter combinations won't be filtered out and need to be caught later.
+ DynamicParam {
+ $ParameterAttribute = "System.Management.Automation.ParameterAttribute"
+ $RuntimeDefinedParam = "System.Management.Automation.RuntimeDefinedParameter"
+ $paramDictionary = New-Object -TypeName System.Management.Automation.RuntimeDefinedParameterDictionary
+ $attributeCollection = New-Object -TypeName System.Collections.ObjectModel.Collection[System.Attribute]
+ $attributeCollection.Add((New-Object -TypeName $ParameterAttribute -Property @{ ParameterSetName = "__AllParameterSets" ;Mandatory = $false}))
+ foreach ($P in (Get-Command -Name Export-Excel).Parameters.values.where({$_.name -notmatch 'Verbose|Debug|Action$|Variable$|Buffer$|TargetData$|InputObject$'})) {
+ $paramDictionary.Add($p.Name, (New-Object -TypeName $RuntimeDefinedParam -ArgumentList $p.name, $p.ParameterType, $attributeCollection ) )
+ }
+ return $paramDictionary
+ }
+ process {
+ #Dynamic params mean we can get passed parameter combination Export-Excel will reject, so throw here, rather than get data and then have Export-Excel error.
+ if ($PSBoundParameters.Path -and $PSBoundParameters.ExcelPackage) {
+ throw 'Parameter error: you cannot specify both a path and an Excel Package.'
+ return
+ }
+ if ($PSBoundParameters.AutoFilter -and ($PSBoundParameters.TableName -or $PSBoundParameters.TableStyle)) {
+ Write-Warning "Tables are automatically auto-filtered, -AutoFilter will be ignored"
+ $null = $PSBoundParameters.Remove('AutoFilter')
+ }
+ #We were either given a session object or a connection string (with, optionally a MSSQLServer parameter)
+ #If we got -MSSQLServer, create a SQL connection, if we didn't but we got -Connection create an ODBC connection
+ if ($MsSQLserver -and $Connection) {
+ if ($Connection -notmatch '=') {$Connection = "server=$Connection;trusted_connection=true;timeout=60"}
+ $Session = New-Object -TypeName System.Data.SqlClient.SqlConnection -ArgumentList $Connection
+ if ($Session.State -ne 'Open') {$Session.Open()}
+ if ($DataBase) {$Session.ChangeDatabase($DataBase) }
+ }
+ elseif ($Connection) {
+ $Session = New-Object -TypeName System.Data.Odbc.OdbcConnection -ArgumentList $Connection ; $Session.ConnectionTimeout = 30
+ }
+ if ($Session) {
+ #A session was either passed in or just created. If it's a SQL one make a SQL DataAdapter, otherwise make an ODBC one
+ if ($Session -is [String] -and $Global:DbSessions[$Session]) {$Session = $Global:DbSessions[$Session]}
+ if ($Session.GetType().name -match "SqlConnection") {
+ $dataAdapter = New-Object -TypeName System.Data.SqlClient.SqlDataAdapter -ArgumentList (
+ New-Object -TypeName System.Data.SqlClient.SqlCommand -ArgumentList $SQL, $Session)
+ }
+ else {
+ $dataAdapter = New-Object -TypeName System.Data.Odbc.OdbcDataAdapter -ArgumentList (
+ New-Object -TypeName System.Data.Odbc.OdbcCommand -ArgumentList $SQL, $Session )
+ }
+ if ($QueryTimeout) {$dataAdapter.SelectCommand.CommandTimeout = $QueryTimeout}
+
+ #Both adapter types output the same kind of table, create one and fill it from the adapter
+ $DataTable = New-Object -TypeName System.Data.DataTable
+ $rowCount = $dataAdapter.fill($dataTable)
+ Write-Verbose -Message "Query returned $rowCount row(s)"
+ }
+ if ($DataTable.Rows.Count) {
+ #Call export-excel removing parameters which relate to the SQL query, and keeping the rest.
+ 'Connection' , 'Database' , 'Session' , 'MsSQLserver' , 'SQL' , 'DataTable' , 'QueryTimeout' | ForEach-Object {$null = $PSBoundParameters.Remove($_) }
+ Export-Excel @PSBoundParameters -InputObject $DataTable
+ }
+ else {Write-Warning -Message ' No Data to insert.' }
+ #If we were passed a connection and opened a session, close that session.
+ if ($Connection) {$Session.close() }
+ }
+}
\ No newline at end of file
diff --git a/filelist.txt b/filelist.txt
index ebe3d59..e6bd0dc 100644
--- a/filelist.txt
+++ b/filelist.txt
@@ -2,17 +2,18 @@
*.psd1
*.psm1
AddConditionalFormatting.ps1
+AddDataValidation.ps1
Charting.ps1
ColorCompletion.ps1
-Compare-Worksheet.ps1
+Compare-WorkSheet.ps1
ConvertExcelToImageFile.ps1
ConvertFromExcelData.ps1
ConvertFromExcelToSQLInsert.ps1
ConvertToExcelXlsx.ps1
Copy-ExcelWorkSheet.ps1
-Export-Charts.ps1
Export-Excel.ps1
Export-ExcelSheet.ps1
+Export-StocksToExcel.ps1
Get-ExcelColumnName.ps1
Get-ExcelSheetInfo.ps1
Get-ExcelWorkbookInfo.ps1
@@ -32,10 +33,12 @@ Open-ExcelPackage.ps1
Pivot.ps1
PivotTable.ps1
Plot.ps1
+RemoveWorksheet.ps1
Send-SQLDataToExcel.ps1
Set-CellStyle.ps1
Set-Column.ps1
Set-Row.ps1
+Set-WorkSheetProtection.ps1
SetFormat.ps1
TrackingUtils.ps1
Update-FirstObjectProperties.ps1
\ No newline at end of file
From d1592f87398b3ba8b5beac707905d2e41258881b Mon Sep 17 00:00:00 2001
From: ili101
Date: Mon, 26 Aug 2019 15:55:43 +0300
Subject: [PATCH 03/14] Replace $env:TEMP
---
Export-StocksToExcel.ps1 | 2 +-
__tests__/AddTrendlinesToAChart.tests.ps1 | 2 +-
__tests__/Compare-WorkSheet.tests.ps1 | 56 +++++++++----------
.../ConvertFromExcelToSQLInsert.tests.ps1 | 2 +-
__tests__/Copy-ExcelWorksheet.Tests.ps1 | 15 ++---
__tests__/Export-Excel.Tests.ps1 | 44 +++++++--------
__tests__/ExtraLongCmd.tests.ps1 | 2 +-
__tests__/First10Races.tests.ps1 | 2 +-
__tests__/InputItemParameter.tests.ps1 | 2 +-
__tests__/Join-Worksheet.tests.ps1 | 4 +-
__tests__/PasswordProtection.tests.ps1 | 2 +-
__tests__/ProtectWorksheet.tests.ps1 | 4 +-
__tests__/RangePassing.ps1 | 6 +-
__tests__/Remove-WorkSheet.tests.ps1 | 6 +-
.../Set-Row_Set-Column-SetFormat.tests.ps1 | 8 +--
__tests__/Validation.tests.ps1 | 2 +-
16 files changed, 73 insertions(+), 86 deletions(-)
diff --git a/Export-StocksToExcel.ps1 b/Export-StocksToExcel.ps1
index bf3672f..4785e0b 100644
--- a/Export-StocksToExcel.ps1
+++ b/Export-StocksToExcel.ps1
@@ -5,7 +5,7 @@
$measure = "Open"
)
- $xl = "$env:TEMP\Stocks.xlsx"
+ $xl = Join-Path ([IO.Path]::GetTempPath()) 'Stocks.xlsx'
Remove-Item $xl -ErrorAction SilentlyContinue
diff --git a/__tests__/AddTrendlinesToAChart.tests.ps1 b/__tests__/AddTrendlinesToAChart.tests.ps1
index 18bf7e4..5269a76 100644
--- a/__tests__/AddTrendlinesToAChart.tests.ps1
+++ b/__tests__/AddTrendlinesToAChart.tests.ps1
@@ -20,7 +20,7 @@ South,avocado,73
}
BeforeEach {
- $xlfile = "$env:TEMP\trendLine.xlsx"
+ $xlfile = "TestDrive:\trendLine.xlsx"
Remove-Item $xlfile -ErrorAction SilentlyContinue
}
diff --git a/__tests__/Compare-WorkSheet.tests.ps1 b/__tests__/Compare-WorkSheet.tests.ps1
index a8114e4..bd01b55 100644
--- a/__tests__/Compare-WorkSheet.tests.ps1
+++ b/__tests__/Compare-WorkSheet.tests.ps1
@@ -5,9 +5,9 @@ else {Add-Type -AssemblyName System.Window
Describe "Compare Worksheet" {
Context "Simple comparison output" {
BeforeAll {
- Remove-Item -Path "$env:temp\server*.xlsx"
+ Remove-Item -Path "TestDrive:\server*.xlsx"
[System.Collections.ArrayList]$s = get-service | Select-Object -first 25 -Property Name, RequiredServices, CanPauseAndContinue, CanShutdown, CanStop, DisplayName, DependentServices, MachineName
- $s | Export-Excel -Path $env:temp\server1.xlsx
+ $s | Export-Excel -Path TestDrive:\server1.xlsx
#$s is a zero based array, excel rows are 1 based and excel has a header row so Excel rows will be 2 + index in $s
$row4Displayname = $s[2].DisplayName
$s[2].DisplayName = "Changed from the orginal"
@@ -17,9 +17,9 @@ Describe "Compare Worksheet" {
$s.Insert(3,$d)
$row6Name = $s[5].name
$s.RemoveAt(5)
- $s | Export-Excel -Path $env:temp\server2.xlsx
+ $s | Export-Excel -Path TestDrive:\server2.xlsx
#Assume default worksheet name, (sheet1) and column header for key ("name")
- $comp = compare-WorkSheet "$env:temp\server1.xlsx" "$env:temp\server2.xlsx" | Sort-Object -Property _row, _file
+ $comp = compare-WorkSheet "TestDrive:\Server1.xlsx" "TestDrive:\Server2.xlsx" | Sort-Object -Property _row, _file
}
it "Found the right number of differences " {
$comp | should not beNullOrEmpty
@@ -55,13 +55,13 @@ Describe "Compare Worksheet" {
$ModulePath = (Get-Command -Name 'Compare-WorkSheet').Module.Path
$PowerShellExec = if ($PSEdition -eq 'Core') {'pwsh.exe'} else {'powershell.exe'}
$PowerShellPath = Join-Path -Path $PSHOME -ChildPath $PowerShellExec
- . $PowerShellPath -Command ("Import-Module $ModulePath; " + '$null = Compare-WorkSheet "$env:temp\server1.xlsx" "$env:temp\server2.xlsx" -BackgroundColor ([System.Drawing.Color]::LightGreen) -GridView; Start-Sleep -sec 5')
+ . $PowerShellPath -Command ("Import-Module $ModulePath; " + '$null = Compare-WorkSheet "TestDrive:\Server1.xlsx" "TestDrive:\Server2.xlsx" -BackgroundColor ([System.Drawing.Color]::LightGreen) -GridView; Start-Sleep -sec 5')
}
else {
- $null = Compare-WorkSheet "$env:temp\server1.xlsx" "$env:temp\server2.xlsx" -BackgroundColor ([System.Drawing.Color]::LightGreen) -GridView:$useGrid
+ $null = Compare-WorkSheet "TestDrive:\Server1.xlsx" "TestDrive:\Server2.xlsx" -BackgroundColor ([System.Drawing.Color]::LightGreen) -GridView:$useGrid
}
- $xl1 = Open-ExcelPackage -Path "$env:temp\server1.xlsx"
- $xl2 = Open-ExcelPackage -Path "$env:temp\server2.xlsx"
+ $xl1 = Open-ExcelPackage -Path "TestDrive:\Server1.xlsx"
+ $xl2 = Open-ExcelPackage -Path "TestDrive:\Server2.xlsx"
$s1Sheet = $xl1.Workbook.Worksheets[1]
$s2Sheet = $xl2.Workbook.Worksheets[1]
}
@@ -85,9 +85,9 @@ Describe "Compare Worksheet" {
Context "Setting the forgound to highlight changed properties" {
BeforeAll {
- $null = compare-WorkSheet "$env:temp\server1.xlsx" "$env:temp\server2.xlsx" -AllDataBackgroundColor([System.Drawing.Color]::white) -BackgroundColor ([System.Drawing.Color]::LightGreen) -FontColor ([System.Drawing.Color]::DarkRed)
- $xl1 = Open-ExcelPackage -Path "$env:temp\server1.xlsx"
- $xl2 = Open-ExcelPackage -Path "$env:temp\server2.xlsx"
+ $null = compare-WorkSheet "TestDrive:\Server1.xlsx" "TestDrive:\Server2.xlsx" -AllDataBackgroundColor([System.Drawing.Color]::white) -BackgroundColor ([System.Drawing.Color]::LightGreen) -FontColor ([System.Drawing.Color]::DarkRed)
+ $xl1 = Open-ExcelPackage -Path "TestDrive:\Server1.xlsx"
+ $xl2 = Open-ExcelPackage -Path "TestDrive:\Server2.xlsx"
$s1Sheet = $xl1.Workbook.Worksheets[1]
$s2Sheet = $xl2.Workbook.Worksheets[1]
}
@@ -116,7 +116,7 @@ Describe "Compare Worksheet" {
BeforeAll {
[System.Collections.ArrayList]$s = get-service | Select-Object -first 25 -Property RequiredServices, CanPauseAndContinue, CanShutdown, CanStop,
DisplayName, DependentServices, MachineName, ServiceName, ServicesDependedOn, ServiceHandle, Status, ServiceType, StartType -ExcludeProperty Name
- $s | Export-Excel -Path $env:temp\server1.xlsx -WorkSheetname Server1
+ $s | Export-Excel -Path TestDrive:\server1.xlsx -WorkSheetname Server1
#$s is a zero based array, excel rows are 1 based and excel has a header row so Excel rows will be 2 + index in $s
$row4Displayname = $s[2].DisplayName
$s[2].DisplayName = "Changed from the orginal"
@@ -128,11 +128,11 @@ Describe "Compare Worksheet" {
$s.RemoveAt(5)
$s[10].ServiceType = "Changed should not matter"
- $s | Select-Object -Property ServiceName, DisplayName, StartType, ServiceType | Export-Excel -Path $env:temp\server2.xlsx -WorkSheetname server2
+ $s | Select-Object -Property ServiceName, DisplayName, StartType, ServiceType | Export-Excel -Path TestDrive:\server2.xlsx -WorkSheetname server2
#Assume default worksheet name, (sheet1) and column header for key ("name")
- $comp = compare-WorkSheet "$env:temp\server1.xlsx" "$env:temp\server2.xlsx" -WorkSheetName Server1,Server2 -Key ServiceName -Property DisplayName,StartType -AllDataBackgroundColor ([System.Drawing.Color]::AliceBlue) -BackgroundColor ([System.Drawing.Color]::White) -FontColor ([System.Drawing.Color]::Red) | Sort-Object _row,_file
- $xl1 = Open-ExcelPackage -Path "$env:temp\server1.xlsx"
- $xl2 = Open-ExcelPackage -Path "$env:temp\server2.xlsx"
+ $comp = compare-WorkSheet "TestDrive:\Server1.xlsx" "TestDrive:\Server2.xlsx" -WorkSheetName Server1,Server2 -Key ServiceName -Property DisplayName,StartType -AllDataBackgroundColor ([System.Drawing.Color]::AliceBlue) -BackgroundColor ([System.Drawing.Color]::White) -FontColor ([System.Drawing.Color]::Red) | Sort-Object _row,_file
+ $xl1 = Open-ExcelPackage -Path "TestDrive:\Server1.xlsx"
+ $xl2 = Open-ExcelPackage -Path "TestDrive:\Server2.xlsx"
$s1Sheet = $xl1.Workbook.Worksheets["server1"]
$s2Sheet = $xl2.Workbook.Worksheets["server2"]
}
@@ -188,10 +188,10 @@ Describe "Compare Worksheet" {
Describe "Merge Worksheet" {
Context "Merge with 3 properties" {
BeforeAll {
- Remove-Item -Path "$env:temp\server*.xlsx" , "$env:temp\combined*.xlsx" -ErrorAction SilentlyContinue
+ Remove-Item -Path "TestDrive:\server*.xlsx" , "TestDrive:\Combined*.xlsx" -ErrorAction SilentlyContinue
[System.Collections.ArrayList]$s = get-service | Select-Object -first 25 -Property *
- $s | Export-Excel -Path $env:temp\server1.xlsx
+ $s | Export-Excel -Path TestDrive:\server1.xlsx
#$s is a zero based array, excel rows are 1 based and excel has a header row so Excel rows will be 2 + index in $s
$s[2].DisplayName = "Changed from the orginal"
@@ -203,10 +203,10 @@ Describe "Merge Worksheet" {
$s.RemoveAt(5)
- $s | Export-Excel -Path $env:temp\server2.xlsx
+ $s | Export-Excel -Path TestDrive:\server2.xlsx
#Assume default worksheet name, (sheet1) and column header for key ("name")
- Merge-Worksheet -Referencefile "$env:temp\server1.xlsx" -Differencefile "$env:temp\server2.xlsx" -OutputFile "$env:temp\combined1.xlsx" -Property name,displayname,startType -Key name
- $excel = Open-ExcelPackage -Path "$env:temp\combined1.xlsx"
+ Merge-Worksheet -Referencefile "TestDrive:\server1.xlsx" -Differencefile "TestDrive:\Server2.xlsx" -OutputFile "TestDrive:\combined1.xlsx" -Property name,displayname,startType -Key name
+ $excel = Open-ExcelPackage -Path "TestDrive:\combined1.xlsx"
$ws = $excel.Workbook.Worksheets["sheet1"]
}
it "Created a worksheet with the correct headings " {
@@ -247,16 +247,16 @@ Describe "Merge Worksheet" {
}
Context "Wider data set" {
it "Coped with columns beyond Z in the Output sheet " {
- { Merge-Worksheet -Referencefile "$env:temp\server1.xlsx" -Differencefile "$env:temp\server2.xlsx" -OutputFile "$env:temp\combined2.xlsx" } | Should not throw
+ { Merge-Worksheet -Referencefile "TestDrive:\server1.xlsx" -Differencefile "TestDrive:\Server2.xlsx" -OutputFile "TestDrive:\combined2.xlsx" } | Should not throw
}
}
}
Describe "Merge Multiple sheets" {
Context "Merge 3 sheets with 3 properties" {
BeforeAll {
- Remove-Item -Path "$env:temp\server*.xlsx" , "$env:temp\combined*.xlsx" -ErrorAction SilentlyContinue
+ Remove-Item -Path "TestDrive:\server*.xlsx" , "TestDrive:\Combined*.xlsx" -ErrorAction SilentlyContinue
[System.Collections.ArrayList]$s = get-service | Select-Object -first 25 -Property Name,DisplayName,StartType
- $s | Export-Excel -Path $env:temp\server1.xlsx
+ $s | Export-Excel -Path TestDrive:\server1.xlsx
#$s is a zero based array, excel rows are 1 based and excel has a header row so Excel rows will be 2 + index in $s
$row4Displayname = $s[2].DisplayName
@@ -269,7 +269,7 @@ Describe "Merge Multiple sheets" {
$s.RemoveAt(5)
- $s | Export-Excel -Path $env:temp\server2.xlsx
+ $s | Export-Excel -Path TestDrive:\server2.xlsx
$s[2].displayname = $row4Displayname
@@ -279,10 +279,10 @@ Describe "Merge Multiple sheets" {
$s.Insert(6,$d)
$s.RemoveAt(8)
- $s | Export-Excel -Path $env:temp\server3.xlsx
+ $s | Export-Excel -Path TestDrive:\server3.xlsx
- Merge-MultipleSheets -Path "$env:temp\server1.xlsx", "$env:temp\server2.xlsx","$env:temp\server3.xlsx" -OutputFile "$env:temp\combined3.xlsx" -Property name,displayname,startType -Key name
- $excel = Open-ExcelPackage -Path "$env:temp\combined3.xlsx"
+ Merge-MultipleSheets -Path "TestDrive:\server1.xlsx", "TestDrive:\Server2.xlsx","TestDrive:\Server3.xlsx" -OutputFile "TestDrive:\combined3.xlsx" -Property name,displayname,startType -Key name
+ $excel = Open-ExcelPackage -Path "TestDrive:\combined3.xlsx"
$ws = $excel.Workbook.Worksheets["sheet1"]
}
diff --git a/__tests__/ConvertFromExcelToSQLInsert.tests.ps1 b/__tests__/ConvertFromExcelToSQLInsert.tests.ps1
index b5b13f9..d506fa9 100644
--- a/__tests__/ConvertFromExcelToSQLInsert.tests.ps1
+++ b/__tests__/ConvertFromExcelToSQLInsert.tests.ps1
@@ -1,6 +1,6 @@
#Import-Module $PSScriptRoot\..\ImportExcel.psd1 -Force
-$xlFile = "$env:TEMP\testSQL.xlsx"
+$xlFile = "TestDrive:\testSQL.xlsx"
Describe "ConvertFrom-ExcelToSQLInsert" {
diff --git a/__tests__/Copy-ExcelWorksheet.Tests.ps1 b/__tests__/Copy-ExcelWorksheet.Tests.ps1
index 04c9809..b2d9bf0 100644
--- a/__tests__/Copy-ExcelWorksheet.Tests.ps1
+++ b/__tests__/Copy-ExcelWorksheet.Tests.ps1
@@ -1,8 +1,5 @@
-if ($PSVersionTable.os -and $PSVersionTable.os -notMatch 'Windows' ) {return} #Currently this test outputs windows services so only run on Windows.
-if (-not $env:TEMP) {$env:TEMP = [IO.Path]::GetTempPath() -replace "/$","" }
-
-$path1 = "$env:TEMP\Test1.xlsx"
-$path2 = "$env:TEMP\Test2.xlsx"
+$path1 = "TestDrive:\Test1.xlsx"
+$path2 = "TestDrive:\Test2.xlsx"
Remove-item -Path $path1, $path2 -ErrorAction SilentlyContinue
$ProcRange = Get-Process | Export-Excel $path1 -DisplayPropertySet -WorkSheetname Processes -ReturnRange
@@ -91,8 +88,8 @@ Describe "Copy-Worksheet" {
Context "Copy worksheet should close all files" {
BeforeAll {
- $xlfile = "$env:TEMP\reports.xlsx"
- $xlfileArchive = "$env:TEMP\reportsArchive.xlsx"
+ $xlfile = "TestDrive:\reports.xlsx"
+ $xlfileArchive = "TestDrive:\reportsArchive.xlsx"
Remove-Item $xlfile -ErrorAction SilentlyContinue
Remove-Item $xlfileArchive -ErrorAction SilentlyContinue
@@ -119,8 +116,8 @@ Describe "Copy-Worksheet" {
Context "Copy worksheet should support piped input" {
BeforeAll {
- $xlfile = "$env:TEMP\reports.xlsx"
- $xlfileArchive = "$env:TEMP\reportsArchive.xlsx"
+ $xlfile = "TestDrive:\reports.xlsx"
+ $xlfileArchive = "TestDrive:\reportsArchive.xlsx"
Remove-Item $xlfile -ErrorAction SilentlyContinue
Remove-Item $xlfileArchive -ErrorAction SilentlyContinue
diff --git a/__tests__/Export-Excel.Tests.ps1 b/__tests__/Export-Excel.Tests.ps1
index 964efc4..43fd806 100644
--- a/__tests__/Export-Excel.Tests.ps1
+++ b/__tests__/Export-Excel.Tests.ps1
@@ -8,7 +8,7 @@ if (Get-process -Name Excel,xlim -ErrorAction SilentlyContinue) { Write-Warni
Describe ExportExcel {
Context "#Example 1 # Creates and opens a file with the right number of rows and columns" {
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
Remove-item -Path $path -ErrorAction SilentlyContinue
#Test with a maximum of 100 processes for speed; export all properties, then export smaller subsets.
$processes = Get-Process | where {$_.StartTime} | Select-Object -first 100 -Property * -excludeProperty Parent
@@ -70,7 +70,7 @@ Describe ExportExcel {
}
Context " # NoAliasOrScriptPropeties -ExcludeProperty and -DisplayPropertySet work" {
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
Remove-item -Path $path -ErrorAction SilentlyContinue
$processes = Get-Process | Select-Object -First 100
$propertyNames = $Processes[0].psobject.properties.where( {$_.MemberType -eq 'Property'}).name
@@ -119,7 +119,7 @@ Describe ExportExcel {
Context "#Example 2 # Exports a list of numbers and applies number format " {
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
Remove-item -Path $path -ErrorAction SilentlyContinue
#testing -ReturnRange switch and applying number format to Formulas as well as values.
$returnedRange = @($null, -1, 0, 34, 777, "", -0.5, 119, -0.1, 234, 788,"=A9+A10") | Export-Excel -NumberFormat '[Blue]$#,##0.00;[Red]-$#,##0.00' -Path $path -ReturnRange
@@ -158,7 +158,7 @@ Describe ExportExcel {
Context " # Number format parameter" {
BeforeAll {
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\test.xlsx"
Remove-Item -Path $path -ErrorAction SilentlyContinue
1..10 | Export-Excel -Path $path -Numberformat 'Number'
1..10 | Export-Excel -Path $path -Numberformat 'Percentage' -Append
@@ -181,7 +181,7 @@ Describe ExportExcel {
if ((Get-Culture).NumberFormat.CurrencySymbol -eq "£") {$OtherCurrencySymbol = "$"}
else {$OtherCurrencySymbol = "£"}
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
$warnVar = $null
#Test correct export of different data types and number formats; test hyperlinks, test -NoNumberConversion test object is converted to a string with no warnings, test calcuation of formula
Remove-item -Path $path -ErrorAction SilentlyContinue
@@ -298,7 +298,7 @@ Describe ExportExcel {
Context "# # Setting cells for different data types with -noHeader" {
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
Remove-item -Path $path -ErrorAction SilentlyContinue
#Test -NoHeader & -NoNumberConversion
[PSCustOmobject][Ordered]@{
@@ -359,7 +359,7 @@ Describe ExportExcel {
#Test New-ConditionalText builds correctly
$ct = New-ConditionalText -ConditionalType GreaterThan 525 -ConditionalTextColor ([System.Drawing.Color]::DarkRed) -BackgroundColor ([System.Drawing.Color]::LightPink)
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
Remove-item -Path $path -ErrorAction SilentlyContinue
#Test -ConditionalText with a single conditional spec.
Write-Output 489 668 299 777 860 151 119 497 234 788 | Export-Excel -Path $path -ConditionalText $ct
@@ -389,7 +389,7 @@ Describe ExportExcel {
Context "#Example 6 # Adding multiple conditional formats using short form syntax. " {
if ($notwindows) {Write-warning "Test only runs on Windows" ; return}
#Test adding mutliple conditional blocks and using the minimal syntax for new-ConditionalText
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
Remove-item -Path $path -ErrorAction SilentlyContinue
#Testing -Passthrough
@@ -451,7 +451,7 @@ Describe ExportExcel {
}
Context "#Examples 8 & 9 # Adding Pivot tables and charts from parameters" {
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
#Test -passthru and -worksheetName creating a new, named, sheet in an existing file.
$Script:Procs= Get-Process | Select-Object -first 20 -Property Name, cpu, pm, handles, company
if ($Procs.count -lt 20) {Write-warning "Not enough proceses were returned by get-Process to run the test." ; return}
@@ -512,7 +512,7 @@ Describe ExportExcel {
}
Context " # Add-Worksheet inserted sheets, moved them correctly, and copied a sheet" {
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
#Test the -CopySource and -Movexxxx parameters for Add-WorkSheet
$Excel = Open-ExcelPackage $path
#At this point Sheets Should be in the order Sheet1, Processes, ProcessesPivotTable
@@ -547,7 +547,7 @@ Describe ExportExcel {
}
Context " # Create and append with Start row and Start Column, inc ranges and Pivot table. " {
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
remove-item -Path $path -ErrorAction SilentlyContinue
#Catch warning
$warnVar = $null
@@ -599,7 +599,7 @@ Describe ExportExcel {
}
Context " # Create and append explicit and auto table and range extension" {
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
#Test -Append automatically extends a table, even when it is not specified in the append command;
$Script:Procs= Get-process
if ($Procs.count -lt 20) {Write-warning "Not enough proceses were returned by get-Process to run the test." ; return}
@@ -635,8 +635,7 @@ Describe ExportExcel {
}
Context "#Example 11 # Create and append with title, inc ranges and Pivot table" {
- if ($Procs.count -lt 20) {Write-warning "Not enough proceses were returned by get-Process to run the test." ; return}
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
#Test New-PivotTableDefinition builds definition using -Pivotfilter and -PivotTotals options.
$ptDef = [ordered]@{}
$ptDef += New-PivotTableDefinition -PivotTableName "PT1" -SourceWorkSheet 'Sheet1' -PivotRows "Status" -PivotData @{'Status' = 'Count'} -PivotTotals Columns -PivotFilter "StartType" -IncludePivotChart -ChartType BarClustered3D -ChartTitle "Services by status" -ChartHeight 512 -ChartWidth 768 -ChartRow 10 -ChartColumn 0 -NoLegend -PivotColumns CanPauseAndContinue
@@ -718,8 +717,8 @@ Describe ExportExcel {
}
Context "#Example 13 # Formatting and another way to do a pivot. " {
- $path = Join-Path $Env:TEMP "test.xlsx"
- Remove-Item $path -ErrorAction SilentlyContinue
+ $path = "TestDrive:\Test.xlsx"
+ Remove-Item $path
#Test freezing top row/first column, adding formats and a pivot table - from Add-Pivot table not a specification variable - after the export
$excel = Get-Process | Select-Object -Property Name, Company, Handles, CPU, PM, NPM, WS | Export-Excel -Path $path -ClearSheet -WorkSheetname "Processes" -FreezeTopRowFirstColumn -PassThru
$sheet = $excel.Workbook.Worksheets["Processes"]
@@ -800,7 +799,7 @@ Describe ExportExcel {
}
Context " # Chart from MultiSeries.ps1 in the Examples\charts Directory" {
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
Remove-Item -Path $path -ErrorAction SilentlyContinue
#Test we haven't missed any parameters on New-ChartDefinition which are on add chart or vice versa.
@@ -858,7 +857,7 @@ Describe ExportExcel {
}
Context " # variation of plot.ps1 from Examples Directory using Add chart outside ExportExcel" {
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
#Test inserting a fomual
$excel = 0..360 | ForEach-Object {[pscustomobject][ordered]@{x = $_; Sinx = "=Sin(Radians(x)) "}} | Export-Excel -AutoNameRange -Path $path -WorkSheetname SinX -ClearSheet -FreezeFirstColumn -PassThru
#Test-Add Excel Chart to existing data. Test add Conditional formatting with a formula
@@ -900,7 +899,7 @@ Describe ExportExcel {
}
Context " # Quick line chart" {
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
Remove-Item -Path $path -ErrorAction SilentlyContinue
#test drawing a chart when data doesn't have a string
0..360 | ForEach-Object {[pscustomobject][ordered]@{x = $_; Sinx = "=Sin(Radians(x)) "}} | Export-Excel -AutoNameRange -Path $path -LineChart
@@ -918,7 +917,7 @@ Describe ExportExcel {
}
Context " # Quick Pie chart and three icon conditional formating" {
- $path = Join-Path $Env:TEMP "Pie.xlsx"
+ $path = "TestDrive:\Pie.xlsx"
Remove-Item -Path $path -ErrorAction SilentlyContinue
$Script:Procs= Get-Process
if ($Procs.count -lt 20) {Write-warning "Not enough proceses were returned by get-Process to run the test." ; return}
@@ -957,8 +956,7 @@ Describe ExportExcel {
}
Context " # Awkward multiple tables" {
- if ($notWindows) {Write-warning "Test only runs on Windows" ; return}
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\test.xlsx"
#Test creating 3 on overlapping tables on the same page. Create rightmost the left most then middle.
remove-item -Path $path -ErrorAction SilentlyContinue
$r = Get-ChildItem -path C:\WINDOWS\system32 -File
@@ -993,7 +991,7 @@ Describe ExportExcel {
}
Context " # Parameters and ParameterSets" {
- $Path = join-path $env:TEMP "temp.xlsx"
+ $Path = "TestDrive:\test.xlsx"
Remove-Item -Path $Path -ErrorAction SilentlyContinue
$Processes = Get-Process | Select-Object -first 10 -Property Name, cpu, pm, handles, company
diff --git a/__tests__/ExtraLongCmd.tests.ps1 b/__tests__/ExtraLongCmd.tests.ps1
index ecb8c17..026043a 100644
--- a/__tests__/ExtraLongCmd.tests.ps1
+++ b/__tests__/ExtraLongCmd.tests.ps1
@@ -1,7 +1,7 @@
if (-not $env:TEMP) {$env:TEMP = [IO.Path]::GetTempPath() -replace "/$","" }
-$path = Join-Path $Env:TEMP "test.xlsx"
+$path = "TestDrive:\test.xlsx"
remove-item -path $path -ErrorAction SilentlyContinue
ConvertFrom-Csv @"
Product, City, Gross, Net
diff --git a/__tests__/First10Races.tests.ps1 b/__tests__/First10Races.tests.ps1
index 3eaa924..02a66ad 100644
--- a/__tests__/First10Races.tests.ps1
+++ b/__tests__/First10Races.tests.ps1
@@ -5,7 +5,7 @@ $dataPath = Join-Path -Path $scriptPath -ChildPath "First10Races.csv"
Describe "Creating small named ranges with hyperlinks" {
BeforeAll {
- $path = Join-Path $Env:TEMP "results.xlsx"
+ $path = "TestDrive:\Results.xlsx"
Remove-Item -Path $path -ErrorAction SilentlyContinue
#Read race results, and group by race name : export 1 row to get headers, leaving enough rows aboce to put in a link for each race
$results = Import-Csv -Path $dataPath |
diff --git a/__tests__/InputItemParameter.tests.ps1 b/__tests__/InputItemParameter.tests.ps1
index 4c02609..6f2243e 100644
--- a/__tests__/InputItemParameter.tests.ps1
+++ b/__tests__/InputItemParameter.tests.ps1
@@ -2,7 +2,7 @@ if (-not $env:TEMP) {$env:TEMP = [IO.Path]::GetTempPath() -replace "/$","" }
Describe "Exporting with -Inputobject" {
BeforeAll {
- $path = Join-Path $Env:TEMP "results.xlsx"
+ $path = "TestDrive:\Results.xlsx"
Remove-Item -Path $path -ErrorAction SilentlyContinue
#Read race results, and group by race name : export 1 row to get headers, leaving enough rows aboce to put in a link for each race
$results = ((Get-Process) + (Get-Process -id $PID)) | Select-Object -last 10 -Property Name, cpu, pm, handles, StartTime
diff --git a/__tests__/Join-Worksheet.tests.ps1 b/__tests__/Join-Worksheet.tests.ps1
index c6b87b3..4adb952 100644
--- a/__tests__/Join-Worksheet.tests.ps1
+++ b/__tests__/Join-Worksheet.tests.ps1
@@ -27,7 +27,7 @@ ID,Product,Quantity,Price,Total
Describe "Join Worksheet part 1" {
BeforeAll {
- $path = Join-Path $Env:TEMP "test.xlsx"
+ $path = "TestDrive:\test.xlsx"
Remove-Item -Path $path -ErrorAction SilentlyContinue
$data1 | Export-Excel -Path $path -WorkSheetname Oxford
$data2 | Export-Excel -Path $path -WorkSheetname Abingdon
@@ -92,7 +92,7 @@ Describe "Join Worksheet part 1" {
}
}
}
- $path = Join-Path $Env:TEMP "Test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
Remove-item -Path $path -ErrorAction SilentlyContinue
#switched to CIM objects so test runs on V6
Describe "Join Worksheet part 2" {
diff --git a/__tests__/PasswordProtection.tests.ps1 b/__tests__/PasswordProtection.tests.ps1
index ec4e6a6..fddfca2 100644
--- a/__tests__/PasswordProtection.tests.ps1
+++ b/__tests__/PasswordProtection.tests.ps1
@@ -8,7 +8,7 @@ Describe "Password Support" {
Context "Password protected sheet" {
BeforeAll {
$password = "YouMustRememberThis"
- $path = "$env:TEMP\Test.xlsx"
+ $path = "TestDrive:\Test.xlsx"
Remove-Item $path -ErrorAction SilentlyContinue
Get-Service | Select-Object -First 10 | Export-excel -password $password -Path $Path -DisplayPropertySet
}
diff --git a/__tests__/ProtectWorksheet.tests.ps1 b/__tests__/ProtectWorksheet.tests.ps1
index 14c8f65..f763535 100644
--- a/__tests__/ProtectWorksheet.tests.ps1
+++ b/__tests__/ProtectWorksheet.tests.ps1
@@ -1,6 +1,4 @@
-if (-not $env:TEMP) {$env:TEMP = [IO.Path]::GetTempPath() -replace "/$","" }
-
-$path = Join-Path $Env:TEMP "test.xlsx"
+$path = "TestDrive:\test.xlsx"
Remove-Item -path $path -ErrorAction SilentlyContinue
$excel = ConvertFrom-Csv @"
Product, City, Gross, Net
diff --git a/__tests__/RangePassing.ps1 b/__tests__/RangePassing.ps1
index c26f9d0..e8f04f4 100644
--- a/__tests__/RangePassing.ps1
+++ b/__tests__/RangePassing.ps1
@@ -1,8 +1,4 @@
-
-if (-not $env:TEMP) {$env:TEMP = [IO.Path]::GetTempPath() -replace "/$","" }
-$notWindows = ($PSVersionTable.os -and $PSVersionTable.os -notMatch 'Windows' )
-
-$path = Join-Path $Env:TEMP "test.xlsx"
+$path = "TestDrive:\test.xlsx"
describe "Consistent passing of ranges." {
if ($notWindows) {Write-warning -message "Test uses get-service so only works on Windows" ; return}
Context "Conditional Formatting" {
diff --git a/__tests__/Remove-WorkSheet.tests.ps1 b/__tests__/Remove-WorkSheet.tests.ps1
index a720487..b433b45 100644
--- a/__tests__/Remove-WorkSheet.tests.ps1
+++ b/__tests__/Remove-WorkSheet.tests.ps1
@@ -10,7 +10,7 @@ Name,Age
Jane,10
John,20
"@
- $xlFile1 = Join-Path $Env:TEMP "removeWorsheet1.xlsx"
+ $xlFile1 = "TestDrive:\RemoveWorsheet1.xlsx"
Remove-Item $xlFile1 -ErrorAction SilentlyContinue
$data | Export-Excel -Path $xlFile1 -WorksheetName Target1
@@ -18,7 +18,7 @@ John,20
$data | Export-Excel -Path $xlFile1 -WorksheetName Target3
$data | Export-Excel -Path $xlFile1 -WorksheetName Sheet1
- $xlFile2 = Join-Path $Env:TEMP "removeWorsheet2.xlsx"
+ $xlFile2 = "TestDrive:\RemoveWorsheet2.xlsx"
Remove-Item $xlFile2 -ErrorAction SilentlyContinue
$data | Export-Excel -Path $xlFile2 -WorksheetName Target1
@@ -65,7 +65,7 @@ John,20
it "Should delete sheet from multiple workbooks".PadRight(87) {
- Get-ChildItem (Join-Path $Env:TEMP "removeWorsheet*.xlsx") | Remove-WorkSheet
+ Get-ChildItem "TestDrive:\RemoveWorsheet*.xlsx" | Remove-WorkSheet
$actual = Get-ExcelSheetInfo -Path $xlFile1
diff --git a/__tests__/Set-Row_Set-Column-SetFormat.tests.ps1 b/__tests__/Set-Row_Set-Column-SetFormat.tests.ps1
index b802895..aa2798d 100644
--- a/__tests__/Set-Row_Set-Column-SetFormat.tests.ps1
+++ b/__tests__/Set-Row_Set-Column-SetFormat.tests.ps1
@@ -1,6 +1,4 @@
-Import-Module $PSScriptRoot\..\ImportExcel.psd1 -Force
-if (-not $env:TEMP) {$env:TEMP = [IO.Path]::GetTempPath() -replace "/$","" }
-$path = Join-Path $Env:TEMP "test.xlsx"
+$path = "TestDrive:\test.xlsx"
$data = ConvertFrom-Csv -InputObject @"
ID,Product,Quantity,Price
@@ -300,7 +298,7 @@ Describe "Conditional Formatting" {
}
}
-$path = Join-Path $Env:TEMP "test.xlsx"
+$path = "TestDrive:\test.xlsx"
$data2 = ConvertFrom-Csv -InputObject @"
ID,Product,Quantity,Price,Total
12001,Nails,37,3.99,147.63
@@ -321,7 +319,7 @@ ID,Product,Quantity,Price,Total
Describe "AutoNameRange data with a single property name" {
BeforeEach {
- $xlfile = Join-Path $Env:TEMP "testNamedRange.xlsx"
+ $xlfile = "TestDrive:\testNamedRange.xlsx"
Remove-Item $xlfile -ErrorAction SilentlyContinue
}
diff --git a/__tests__/Validation.tests.ps1 b/__tests__/Validation.tests.ps1
index 7c30e43..62d055d 100644
--- a/__tests__/Validation.tests.ps1
+++ b/__tests__/Validation.tests.ps1
@@ -11,7 +11,7 @@ ID,Product,Quantity,Price
12011,Crowbar,7,23.48
"@
-$path = Join-Path $Env:TEMP "DataValidation.xlsx"
+$path = "TestDrive:\DataValidation.xlsx"
Describe "Data validation and protection" {
Context "Data Validation rules" {
From ab2405edad51bfbb10e4bae7fb6d89545b56186b Mon Sep 17 00:00:00 2001
From: ili101
Date: Mon, 26 Aug 2019 20:02:18 +0300
Subject: [PATCH 04/14] Scope fixes for TestDrive
---
__tests__/Compare-WorkSheet.tests.ps1 | 80 +++++++++----------
__tests__/Copy-ExcelWorksheet.Tests.ps1 | 64 +++++++--------
__tests__/Export-Excel.Tests.ps1 | 28 +++----
__tests__/ExtraLongCmd.tests.ps1 | 14 ++--
__tests__/ProtectWorksheet.tests.ps1 | 17 ++--
.../Set-Row_Set-Column-SetFormat.tests.ps1 | 4 +-
6 files changed, 103 insertions(+), 104 deletions(-)
diff --git a/__tests__/Compare-WorkSheet.tests.ps1 b/__tests__/Compare-WorkSheet.tests.ps1
index bd01b55..d3d87d2 100644
--- a/__tests__/Compare-WorkSheet.tests.ps1
+++ b/__tests__/Compare-WorkSheet.tests.ps1
@@ -3,24 +3,24 @@
if ($PSVersionTable.PSVersion.Major -gt 5) { Write-Warning "Can't test grid view on V6 and later" }
else {Add-Type -AssemblyName System.Windows.Forms }
Describe "Compare Worksheet" {
+ BeforeAll {
+ Remove-Item -Path "TestDrive:\server*.xlsx"
+ [System.Collections.ArrayList]$s = get-service | Select-Object -first 25 -Property Name, RequiredServices, CanPauseAndContinue, CanShutdown, CanStop, DisplayName, DependentServices, MachineName
+ $s | Export-Excel -Path TestDrive:\server1.xlsx
+ #$s is a zero based array, excel rows are 1 based and excel has a header row so Excel rows will be 2 + index in $s
+ $row4Displayname = $s[2].DisplayName
+ $s[2].DisplayName = "Changed from the orginal"
+ $d = $s[-1] | Select-Object -Property *
+ $d.DisplayName = "Dummy Service"
+ $d.Name = "Dummy"
+ $s.Insert(3,$d)
+ $row6Name = $s[5].name
+ $s.RemoveAt(5)
+ $s | Export-Excel -Path TestDrive:\server2.xlsx
+ #Assume default worksheet name, (sheet1) and column header for key ("name")
+ $comp = compare-WorkSheet "TestDrive:\Server1.xlsx" "TestDrive:\Server2.xlsx" | Sort-Object -Property _row, _file
+ }
Context "Simple comparison output" {
- BeforeAll {
- Remove-Item -Path "TestDrive:\server*.xlsx"
- [System.Collections.ArrayList]$s = get-service | Select-Object -first 25 -Property Name, RequiredServices, CanPauseAndContinue, CanShutdown, CanStop, DisplayName, DependentServices, MachineName
- $s | Export-Excel -Path TestDrive:\server1.xlsx
- #$s is a zero based array, excel rows are 1 based and excel has a header row so Excel rows will be 2 + index in $s
- $row4Displayname = $s[2].DisplayName
- $s[2].DisplayName = "Changed from the orginal"
- $d = $s[-1] | Select-Object -Property *
- $d.DisplayName = "Dummy Service"
- $d.Name = "Dummy"
- $s.Insert(3,$d)
- $row6Name = $s[5].name
- $s.RemoveAt(5)
- $s | Export-Excel -Path TestDrive:\server2.xlsx
- #Assume default worksheet name, (sheet1) and column header for key ("name")
- $comp = compare-WorkSheet "TestDrive:\Server1.xlsx" "TestDrive:\Server2.xlsx" | Sort-Object -Property _row, _file
- }
it "Found the right number of differences " {
$comp | should not beNullOrEmpty
$comp.Count | should be 4
@@ -55,7 +55,7 @@ Describe "Compare Worksheet" {
$ModulePath = (Get-Command -Name 'Compare-WorkSheet').Module.Path
$PowerShellExec = if ($PSEdition -eq 'Core') {'pwsh.exe'} else {'powershell.exe'}
$PowerShellPath = Join-Path -Path $PSHOME -ChildPath $PowerShellExec
- . $PowerShellPath -Command ("Import-Module $ModulePath; " + '$null = Compare-WorkSheet "TestDrive:\Server1.xlsx" "TestDrive:\Server2.xlsx" -BackgroundColor ([System.Drawing.Color]::LightGreen) -GridView; Start-Sleep -sec 5')
+ . $PowerShellPath -Command ('Import-Module {0}; $null = Compare-WorkSheet "{1}Server1.xlsx" "{1}Server2.xlsx" -BackgroundColor ([System.Drawing.Color]::LightGreen) -GridView; Start-Sleep -sec 5' -f $ModulePath, (Resolve-Path 'TestDrive:').ProviderPath)
}
else {
$null = Compare-WorkSheet "TestDrive:\Server1.xlsx" "TestDrive:\Server2.xlsx" -BackgroundColor ([System.Drawing.Color]::LightGreen) -GridView:$useGrid
@@ -186,29 +186,29 @@ Describe "Compare Worksheet" {
}
Describe "Merge Worksheet" {
+ BeforeAll {
+ Remove-Item -Path "TestDrive:\server*.xlsx" , "TestDrive:\Combined*.xlsx" -ErrorAction SilentlyContinue
+ [System.Collections.ArrayList]$s = get-service | Select-Object -first 25 -Property *
+
+ $s | Export-Excel -Path TestDrive:\server1.xlsx
+
+ #$s is a zero based array, excel rows are 1 based and excel has a header row so Excel rows will be 2 + index in $s
+ $s[2].DisplayName = "Changed from the orginal"
+
+ $d = $s[-1] | Select-Object -Property *
+ $d.DisplayName = "Dummy Service"
+ $d.Name = "Dummy"
+ $s.Insert(3,$d)
+
+ $s.RemoveAt(5)
+
+ $s | Export-Excel -Path TestDrive:\server2.xlsx
+ #Assume default worksheet name, (sheet1) and column header for key ("name")
+ Merge-Worksheet -Referencefile "TestDrive:\server1.xlsx" -Differencefile "TestDrive:\Server2.xlsx" -OutputFile "TestDrive:\combined1.xlsx" -Property name,displayname,startType -Key name
+ $excel = Open-ExcelPackage -Path "TestDrive:\combined1.xlsx"
+ $ws = $excel.Workbook.Worksheets["sheet1"]
+ }
Context "Merge with 3 properties" {
- BeforeAll {
- Remove-Item -Path "TestDrive:\server*.xlsx" , "TestDrive:\Combined*.xlsx" -ErrorAction SilentlyContinue
- [System.Collections.ArrayList]$s = get-service | Select-Object -first 25 -Property *
-
- $s | Export-Excel -Path TestDrive:\server1.xlsx
-
- #$s is a zero based array, excel rows are 1 based and excel has a header row so Excel rows will be 2 + index in $s
- $s[2].DisplayName = "Changed from the orginal"
-
- $d = $s[-1] | Select-Object -Property *
- $d.DisplayName = "Dummy Service"
- $d.Name = "Dummy"
- $s.Insert(3,$d)
-
- $s.RemoveAt(5)
-
- $s | Export-Excel -Path TestDrive:\server2.xlsx
- #Assume default worksheet name, (sheet1) and column header for key ("name")
- Merge-Worksheet -Referencefile "TestDrive:\server1.xlsx" -Differencefile "TestDrive:\Server2.xlsx" -OutputFile "TestDrive:\combined1.xlsx" -Property name,displayname,startType -Key name
- $excel = Open-ExcelPackage -Path "TestDrive:\combined1.xlsx"
- $ws = $excel.Workbook.Worksheets["sheet1"]
- }
it "Created a worksheet with the correct headings " {
$ws | should not beNullOrEmpty
$ws.Cells[ 1,1].Value | Should be "name"
diff --git a/__tests__/Copy-ExcelWorksheet.Tests.ps1 b/__tests__/Copy-ExcelWorksheet.Tests.ps1
index b2d9bf0..d260522 100644
--- a/__tests__/Copy-ExcelWorksheet.Tests.ps1
+++ b/__tests__/Copy-ExcelWorksheet.Tests.ps1
@@ -1,36 +1,36 @@
-$path1 = "TestDrive:\Test1.xlsx"
-$path2 = "TestDrive:\Test2.xlsx"
-Remove-item -Path $path1, $path2 -ErrorAction SilentlyContinue
-
-$ProcRange = Get-Process | Export-Excel $path1 -DisplayPropertySet -WorkSheetname Processes -ReturnRange
-
-if ((Get-Culture).NumberFormat.CurrencySymbol -eq "£") {$OtherCurrencySymbol = "$"}
-else {$OtherCurrencySymbol = "£"}
-[PSCustOmobject][Ordered]@{
- Date = Get-Date
- Formula1 = '=SUM(F2:G2)'
- String1 = 'My String'
- Float = [math]::pi
- IPAddress = '10.10.25.5'
- StrLeadZero = '07670'
- StrComma = '0,26'
- StrEngThousand = '1,234.56'
- StrEuroThousand = '1.555,83'
- StrDot = '1.2'
- StrNegInt = '-31'
- StrTrailingNeg = '31-'
- StrParens = '(123)'
- strLocalCurrency = ('{0}123.45' -f (Get-Culture).NumberFormat.CurrencySymbol )
- strOtherCurrency = ('{0}123.45' -f $OtherCurrencySymbol )
- StrE164Phone = '+32 (444) 444 4444'
- StrAltPhone1 = '+32 4 4444 444'
- StrAltPhone2 = '+3244444444'
- StrLeadSpace = ' 123'
- StrTrailSpace = '123 '
- Link1 = [uri]"https://github.com/dfinke/ImportExcel"
- Link2 = "https://github.com/dfinke/ImportExcel" # Links are not copied correctly, hopefully this will be fixed at some future date
-} | Export-Excel -NoNumberConversion IPAddress, StrLeadZero, StrAltPhone2 -WorkSheetname MixedTypes -Path $path2
Describe "Copy-Worksheet" {
+ $path1 = "TestDrive:\Test1.xlsx"
+ $path2 = "TestDrive:\Test2.xlsx"
+ Remove-Item -Path $path1, $path2 -ErrorAction SilentlyContinue
+
+ $ProcRange = Get-Process | Export-Excel $path1 -DisplayPropertySet -WorkSheetname Processes -ReturnRange
+
+ if ((Get-Culture).NumberFormat.CurrencySymbol -eq "£") { $OtherCurrencySymbol = "$" }
+ else { $OtherCurrencySymbol = "£" }
+ [PSCustOmobject][Ordered]@{
+ Date = Get-Date
+ Formula1 = '=SUM(F2:G2)'
+ String1 = 'My String'
+ Float = [math]::pi
+ IPAddress = '10.10.25.5'
+ StrLeadZero = '07670'
+ StrComma = '0,26'
+ StrEngThousand = '1,234.56'
+ StrEuroThousand = '1.555,83'
+ StrDot = '1.2'
+ StrNegInt = '-31'
+ StrTrailingNeg = '31-'
+ StrParens = '(123)'
+ strLocalCurrency = ('{0}123.45' -f (Get-Culture).NumberFormat.CurrencySymbol )
+ strOtherCurrency = ('{0}123.45' -f $OtherCurrencySymbol )
+ StrE164Phone = '+32 (444) 444 4444'
+ StrAltPhone1 = '+32 4 4444 444'
+ StrAltPhone2 = '+3244444444'
+ StrLeadSpace = ' 123'
+ StrTrailSpace = '123 '
+ Link1 = [uri]"https://github.com/dfinke/ImportExcel"
+ Link2 = "https://github.com/dfinke/ImportExcel" # Links are not copied correctly, hopefully this will be fixed at some future date
+ } | Export-Excel -NoNumberConversion IPAddress, StrLeadZero, StrAltPhone2 -WorkSheetname MixedTypes -Path $path2
Context "Simplest copy" {
BeforeAll {
Copy-ExcelWorkSheet -SourceWorkbook $path1 -DestinationWorkbook $path2
diff --git a/__tests__/Export-Excel.Tests.ps1 b/__tests__/Export-Excel.Tests.ps1
index 43fd806..622dbda 100644
--- a/__tests__/Export-Excel.Tests.ps1
+++ b/__tests__/Export-Excel.Tests.ps1
@@ -386,19 +386,19 @@ Describe ExportExcel {
}
}
- Context "#Example 6 # Adding multiple conditional formats using short form syntax. " {
- if ($notwindows) {Write-warning "Test only runs on Windows" ; return}
- #Test adding mutliple conditional blocks and using the minimal syntax for new-ConditionalText
- $path = "TestDrive:\Test.xlsx"
- Remove-item -Path $path -ErrorAction SilentlyContinue
+ #Test adding mutliple conditional blocks and using the minimal syntax for new-ConditionalText
+ $path = "TestDrive:\Test.xlsx"
+ Remove-item -Path $path -ErrorAction SilentlyContinue
- #Testing -Passthrough
- $Excel = Get-Service | Select-Object Name, Status, DisplayName, ServiceName |
- Export-Excel $path -PassThru -ConditionalText $(
- New-ConditionalText Stop ([System.Drawing.Color]::DarkRed) ([System.Drawing.Color]::LightPink)
- New-ConditionalText Running ([System.Drawing.Color]::Blue) ([System.Drawing.Color]::Cyan)
- )
- $ws = $Excel.Workbook.Worksheets[1]
+ #Testing -Passthrough
+ $Excel = Get-Service | Select-Object Name, Status, DisplayName, ServiceName |
+ Export-Excel $path -PassThru -ConditionalText $(
+ New-ConditionalText Stop ([System.Drawing.Color]::DarkRed) ([System.Drawing.Color]::LightPink)
+ New-ConditionalText Running ([System.Drawing.Color]::Blue) ([System.Drawing.Color]::Cyan)
+ )
+ $ws = $Excel.Workbook.Worksheets[1]
+
+ Context "#Example 6 # Adding multiple conditional formats using short form syntax. " {
it "Added two blocks of conditional formating for the data range " {
$ws.ConditionalFormatting.Count | Should be 2
$ws.ConditionalFormatting[0].Address | Should be ($ws.Dimension.Address)
@@ -411,8 +411,8 @@ Describe ExportExcel {
$ws.ConditionalFormatting[1].Type | Should be "ContainsText"
#Add RGB Comparison
}
- Close-ExcelPackage -ExcelPackage $Excel
}
+ Close-ExcelPackage -ExcelPackage $Excel
Context "#Example 7 # Update-FirstObjectProperties works " {
$Array = @()
@@ -991,7 +991,7 @@ Describe ExportExcel {
}
Context " # Parameters and ParameterSets" {
- $Path = "TestDrive:\test.xlsx"
+ $Path = Join-Path (Resolve-Path 'TestDrive:').ProviderPath "test.xlsx"
Remove-Item -Path $Path -ErrorAction SilentlyContinue
$Processes = Get-Process | Select-Object -first 10 -Property Name, cpu, pm, handles, company
diff --git a/__tests__/ExtraLongCmd.tests.ps1 b/__tests__/ExtraLongCmd.tests.ps1
index 026043a..8559a0d 100644
--- a/__tests__/ExtraLongCmd.tests.ps1
+++ b/__tests__/ExtraLongCmd.tests.ps1
@@ -1,9 +1,10 @@
if (-not $env:TEMP) {$env:TEMP = [IO.Path]::GetTempPath() -replace "/$","" }
-$path = "TestDrive:\test.xlsx"
-remove-item -path $path -ErrorAction SilentlyContinue
-ConvertFrom-Csv @"
+Describe "Creating workbook with a single line" {
+ $path = "TestDrive:\test.xlsx"
+ remove-item -path $path -ErrorAction SilentlyContinue
+ ConvertFrom-Csv @"
Product, City, Gross, Net
Apple, London , 300, 250
Orange, London , 400, 350
@@ -17,10 +18,9 @@ Apple, New York, 1200,700
PivotChartDefinition=@{Title="Gross and net by city and product"; ChartType="ColumnClustered"; Column=6; Width=600; Height=360; YMajorUnit=500; YMinorUnit=100; YAxisNumberformat="$#,##0"; LegendPosition="Bottom"}}}
-$excel = Open-ExcelPackage $path
-$ws1 = $excel.Workbook.Worksheets[1]
-$ws2 = $excel.Workbook.Worksheets[2]
-Describe "Creating workbook with a single line" {
+ $excel = Open-ExcelPackage $path
+ $ws1 = $excel.Workbook.Worksheets[1]
+ $ws2 = $excel.Workbook.Worksheets[2]
Context "Data Page" {
It "Inserted the data and created the table " {
$ws1.Tables[0] | Should not beNullOrEmpty
diff --git a/__tests__/ProtectWorksheet.tests.ps1 b/__tests__/ProtectWorksheet.tests.ps1
index f763535..28c65b7 100644
--- a/__tests__/ProtectWorksheet.tests.ps1
+++ b/__tests__/ProtectWorksheet.tests.ps1
@@ -1,6 +1,8 @@
-$path = "TestDrive:\test.xlsx"
-Remove-Item -path $path -ErrorAction SilentlyContinue
-$excel = ConvertFrom-Csv @"
+Describe "Setting worksheet protection " {
+ BeforeAll {
+ $path = "TestDrive:\test.xlsx"
+ Remove-Item -path $path -ErrorAction SilentlyContinue
+ $excel = ConvertFrom-Csv @"
Product, City, Gross, Net
Apple, London , 300, 250
Orange, London , 400, 350
@@ -11,14 +13,11 @@ Apple, New York, 1200,700
"@ | Export-Excel -Path $path -WorksheetName Sheet1 -PassThru
-$ws = $excel.sheet1
+ $ws = $excel.sheet1
-Set-WorkSheetProtection -WorkSheet $ws -IsProtected -BlockEditObject -AllowFormatRows -UnLockAddress "1:1"
+ Set-WorkSheetProtection -WorkSheet $ws -IsProtected -BlockEditObject -AllowFormatRows -UnLockAddress "1:1"
-Close-ExcelPackage -ExcelPackage $excel
-
-Describe "Setting worksheet protection " {
- BeforeAll {
+ Close-ExcelPackage -ExcelPackage $excel
$excel = Open-ExcelPackage -Path $path
$ws = $ws = $excel.sheet1
}
diff --git a/__tests__/Set-Row_Set-Column-SetFormat.tests.ps1 b/__tests__/Set-Row_Set-Column-SetFormat.tests.ps1
index aa2798d..2b6bac0 100644
--- a/__tests__/Set-Row_Set-Column-SetFormat.tests.ps1
+++ b/__tests__/Set-Row_Set-Column-SetFormat.tests.ps1
@@ -282,7 +282,7 @@ Describe "Set-ExcelColumn, Set-ExcelRow and Set-ExcelRange" {
Describe "Conditional Formatting" {
BeforeAll {
- Remove-Item $path
+ #Remove-Item $path
$data = Get-Process | Where-Object company | Select-Object company, name, pm, handles, *mem*
$cfmt = New-ConditionalFormattingIconSet -Range "c:c" -ConditionalFormat ThreeIconSet -IconType Arrows
$data | Export-Excel -path $Path -AutoSize -ConditionalFormat $cfmt
@@ -357,7 +357,7 @@ Sold,ID
Describe "Table Formatting" {
BeforeAll {
- Remove-Item $path
+ #Remove-Item $path
$excel = $data2 | Export-excel -path $path -WorksheetName Hardware -AutoNameRange -AutoSize -BoldTopRow -FreezeTopRow -PassThru
$ws = $excel.Workbook.Worksheets[1]
#test showfilter & TotalSettings
From 9458a29a6bc1a691962f999a305bf071aeedfd1c Mon Sep 17 00:00:00 2001
From: ili101
Date: Mon, 26 Aug 2019 21:00:06 +0300
Subject: [PATCH 05/14] Readme
---
README.md | 10 +++++-----
appveyor.yml | 2 +-
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/README.md b/README.md
index a3d0b1e..3aa3ed2 100644
--- a/README.md
+++ b/README.md
@@ -17,11 +17,11 @@ If this project helped you reduce the time to get your job done, let me know.
| CI System | Environment | Status |
|--------------|-------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| AppVeyor | Windows, Core preview, Ubuntu | [](https://ci.appveyor.com/project/ili101/Module-Template) |
-| Azure DevOps | Windows | [](https://dev.azure.com/ili101/ImportExcel/_build/latest?definitionId=1&branchName=master) |
-| Azure DevOps | Windows (Core) | [](https://dev.azure.com/ili101/ImportExcel/_build/latest?definitionId=1&branchName=master) |
-| Azure DevOps | Ubuntu | [](https://dev.azure.com/ili101/ImportExcel/_build/latest?definitionId=1&branchName=master) |
-| Azure DevOps | macOS | [](https://dev.azure.com/ili101/ImportExcel/_build/latest?definitionId=1&branchName=master) |
+| AppVeyor | Windows, Core preview, Ubuntu | [](https://ci.appveyor.com/project/ili101/Module-Template) |
+| Azure DevOps | Windows | [](https://dev.azure.com/ili101/ImportExcel/_build/latest?definitionId=1&branchName=Tests) |
+| Azure DevOps | Windows (Core) | [](https://dev.azure.com/ili101/ImportExcel/_build/latest?definitionId=1&branchName=Tests) |
+| Azure DevOps | Ubuntu | [](https://dev.azure.com/ili101/ImportExcel/_build/latest?definitionId=1&branchName=Tests) |
+| Azure DevOps | macOS | [](https://dev.azure.com/ili101/ImportExcel/_build/latest?definitionId=1&branchName=Tests) |
diff --git a/appveyor.yml b/appveyor.yml
index 7c24f2b..47012cc 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -41,7 +41,7 @@ test_script:
# Deploy
deploy_script:
- ps: '& .\__tests__\CI.ps1 -Artifact'
- - ps: '$null = Install-PackageProvider -Name NuGet -Force ; & .\__tests__\Publish.ps1'
+ #- ps: '$null = Install-PackageProvider -Name NuGet -Force ; & .\__tests__\Publish.ps1'
# Linux setup
for:
From 8047631014e44b459600bfdef912bf0e5e4947f8 Mon Sep 17 00:00:00 2001
From: ili101
Date: Mon, 26 Aug 2019 22:23:12 +0300
Subject: [PATCH 06/14] Linux Tests rm and macOS mono-libgdiplus
---
azure-pipelines.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index c8ff6c8..c125bce 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -79,6 +79,8 @@ jobs:
vmImage: 'macOS-latest'
steps:
+ - script: brew install mono-libgdiplus
+ displayName: 'Install mono-libgdiplus'
- powershell: 'Install-Module -Name Pester -Force'
displayName: 'Update Pester'
- powershell: './__tests__/CI.ps1 -Test'
From 89a59b1eba7edb8e254de1cf3145ae1f0f26188e Mon Sep 17 00:00:00 2001
From: ili101
Date: Tue, 27 Aug 2019 03:05:56 +0300
Subject: [PATCH 07/14] Samples tests workaround for Linux
---
__tests__/Compare-WorkSheet.tests.ps1 | 1 +
__tests__/Export-Excel.Tests.ps1 | 5 +-
__tests__/Join-Worksheet.tests.ps1 | 1 +
__tests__/Samples/Get-CimInstanceDisk.xml | Bin 0 -> 2232 bytes
.../Samples/Get-CimInstanceNetAdapter.xml | Bin 0 -> 2838 bytes
__tests__/Samples/Get-Process.xml | 29880 ++++++++++++++++
__tests__/Samples/Get-Service.xml | Bin 0 -> 148546 bytes
__tests__/Samples/Samples.ps1 | 38 +
8 files changed, 29922 insertions(+), 3 deletions(-)
create mode 100644 __tests__/Samples/Get-CimInstanceDisk.xml
create mode 100644 __tests__/Samples/Get-CimInstanceNetAdapter.xml
create mode 100644 __tests__/Samples/Get-Process.xml
create mode 100644 __tests__/Samples/Get-Service.xml
create mode 100644 __tests__/Samples/Samples.ps1
diff --git a/__tests__/Compare-WorkSheet.tests.ps1 b/__tests__/Compare-WorkSheet.tests.ps1
index d3d87d2..94e1112 100644
--- a/__tests__/Compare-WorkSheet.tests.ps1
+++ b/__tests__/Compare-WorkSheet.tests.ps1
@@ -1,5 +1,6 @@
#Requires -Modules Pester
#Import-Module $PSScriptRoot\..\ImportExcel.psd1 -Force
+. "$PSScriptRoot\Samples\Samples.ps1"
if ($PSVersionTable.PSVersion.Major -gt 5) { Write-Warning "Can't test grid view on V6 and later" }
else {Add-Type -AssemblyName System.Windows.Forms }
Describe "Compare Worksheet" {
diff --git a/__tests__/Export-Excel.Tests.ps1 b/__tests__/Export-Excel.Tests.ps1
index 622dbda..70b362f 100644
--- a/__tests__/Export-Excel.Tests.ps1
+++ b/__tests__/Export-Excel.Tests.ps1
@@ -1,8 +1,7 @@
#Requires -Modules Pester
-Import-Module $PSScriptRoot\..\ImportExcel.psd1 -Force
-if (-not $env:TEMP) {$env:TEMP = [IO.Path]::GetTempPath() -replace "/$","" }
-$notWindows = ($PSVersionTable.os -and $PSVersionTable.os -notMatch 'Windows' )
+#Import-Module $PSScriptRoot\..\ImportExcel.psd1 -Force
+. "$PSScriptRoot\Samples\Samples.ps1"
if (Get-process -Name Excel,xlim -ErrorAction SilentlyContinue) { Write-Warning -Message "You need to close Excel before running the tests." ; return}
Describe ExportExcel {
diff --git a/__tests__/Join-Worksheet.tests.ps1 b/__tests__/Join-Worksheet.tests.ps1
index 4adb952..35d029c 100644
--- a/__tests__/Join-Worksheet.tests.ps1
+++ b/__tests__/Join-Worksheet.tests.ps1
@@ -24,6 +24,7 @@ ID,Product,Quantity,Price,Total
12010,Drill,11,8,88
12012,Pliers,3,14.99,44.97
"@
+. "$PSScriptRoot\Samples\Samples.ps1"
Describe "Join Worksheet part 1" {
BeforeAll {
diff --git a/__tests__/Samples/Get-CimInstanceDisk.xml b/__tests__/Samples/Get-CimInstanceDisk.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9c9d578610a03eba0c728a40a10df71e5a73b8a6
GIT binary patch
literal 2232
zcmc(f+fLg+5QhJ2q`rfd2T1IknpP||EV&@g+8mn
zNOh!BFs3?WUq_yCatT_>9HUw1d(L?So4I~H_%oXcqoJlkMw^|jHLdG|*6^xTdD1$z+jvk%)tVU!PJGO>o|I^hraSR&618$EYuChHKrwQ3v?PIE9
z((J2kzpKkFTKFE}_x8c2r%#NoI;0@&ri{Rp6~O#4PVLIkgD06_!s_s
zp9rb0vG@`8jKdD|^$bQ}8iO76SX*HC7}l4nuD4=4N
zd-+=~zMtjy=&d6V+Hlx|(Jmak1)E*iY%}eiMBp|Zm;Z;!);lu!^;srkdf((vCoJ!z
cPdkI}4n^CXwU_Cab;+let6xz5qEhl}|VX-I|vkSrg`Ra3KAVRt9qHV}z
zcjt2ET;B7}nf?7(){XA;U9keS6)K`P&_rW>R7OSR+*5Gh3^Kno(va2It>0@(`>7Ag
z(_(dXkB*T#^mBX%%tUC5dHP7^7*CkbvuC3D!k+CJ((*b{fp$vI-WgT&TCcDgXz6F5
zFG%-QSI>D+Sd;RSw`#B>Np2}yQOns6@oh@4hnFoq;IoZJjIN1i%=68SL;4m;RWrU8
zO^2_?ET<-WYpmFATl468-DTpsU5Uv&*yqLd7W}sRQpcx0NE_}`zB3ogj9!SRHS~-?
z%(6Chv2>YF^5z%_tlCUM&imhZf@hg*wVup*j9XycaGYs?!3YG5Uv1>)j14JU4?$>7
z<|6%IT!jrCxN1y@7@PFi$rK%aNtO(AzqgMbL;Zrs&Pha0Ot0t7rYCJyBGzZ@8)Eqr
zeLE-7!v3ajedqPzJ{qICF47*_&AZqkV<$1Iw~O}~{UR;P*yaoLEdxmiToK0@EL%hy
z(t1vJ(P;@l^N#s=t0vRFo=cnYtVpg4#T|9QSA}iWAwc_Iy`D4c_WfzKTC|-@H!j98
zENQ}|H0T_{k6Uuo1o^KH(H_~JgWM($+IpYL_WrzI>JnR3Dsq;`-ZeLKN?lG9*{-|?
z`ut)!KRH6q|FwR+ONHVg{8;zoIqF9`ANTWUwSJUTf=A2xkxu(A9+{SxtRJN#aOsNk
z_WX6jDxTdTb`RN|*5oAD>Dx&>=Uxdo*LEKcka=KKqq5koW&dsVSLScNH`IVM=YAI(
jis-c)
+
+
+ System.Diagnostics.Process
+ System.ComponentModel.Component
+ System.MarshalByRefObject
+ System.Object
+
+ System.Diagnostics.Process (ApCent)
+
+ 8
+ false
+ 2019-08-15T19:34:28.9085966+03:00
+ 10780
+ .
+ 45560
+ 45560
+ 54538240
+ 54538240
+ 679376
+ 679376
+ 60116992
+ 60116992
+ 78831616
+ 78831616
+ 627404800
+ 627404800
+ 54538240
+ 54538240
+ ApCent
+ 1
+
+
+ System.Diagnostics.ProcessThreadCollection
+ System.Collections.ReadOnlyCollectionBase
+ System.Object
+
+
+
+
+ System.Diagnostics.ProcessThread
+ System.ComponentModel.Component
+ System.MarshalByRefObject
+ System.Object
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 10784
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 10880
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 10
+ 11
+ 10884
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 11160
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 12336
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 12496
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 11356
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 6
+ 13204
+ 140719955419728
+ Wait
+ ExecutionDelay
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 6
+ 12584
+ 140719955419728
+ Wait
+ ExecutionDelay
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 13440
+ 140719955419728
+ Wait
+ EventPairLow
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 19048
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 13
+ 15
+ 10692
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 23032
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 8896
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 26264
+ 140719955419728
+ Wait
+ EventPairLow
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 1416
+ 140719955419728
+ Wait
+ EventPairLow
+
+
+
+
+
+
+ 16
+
+
+ System.Collections.ArrayList
+ System.Object
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 732
+ 606478336
+ 606478336
+ false
+ 26746880
+ 26746880
+
+ PT3.546875S
+ PT7.328125S
+ PT3.78125S
+
+
+ System.IntPtr
+ System.ValueType
+ System.Object
+
+ 0
+
+
+ true
+
+
+
+
+ ApCent
+ 1
+ 732
+ 606478336
+ 26746880
+ 54538240
+ 45560
+
+
+
+ 7.328125
+
+
+
+
+ Process
+
+
+
+
+ System.Diagnostics.Process (ApplicationFrameHost)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
+ System.Runtime.InteropServices.SafeHandle
+ System.Runtime.ConstrainedExecution.CriticalFinalizerObject
+ System.Object
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 4304
+
+ 8
+ false
+ 2019-08-15T19:35:18.4407991+03:00
+ 21284
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+ System.Diagnostics.ProcessModuleCollection
+ System.Collections.ReadOnlyCollectionBase
+ System.Object
+
+
+
+
+ System.Diagnostics.ProcessModule
+ System.ComponentModel.Component
+ System.MarshalByRefObject
+ System.Object
+
+ System.Diagnostics.ProcessModule (ApplicationFrameHost.exe)
+
+ ApplicationFrameHost.exe
+ C:\Windows\system32\ApplicationFrameHost.exe
+ 140695356768256
+ 81920
+ 140695356775552
+ File: C:\Windows\system32\ApplicationFrameHost.exe_x000D__x000A_InternalName: Application Frame Host_x000D__x000A_OriginalFilename: ApplicationFrameHost.exe_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Application Frame Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 80
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Application Frame Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dxgi.dll)
+
+ dxgi.dll
+ C:\Windows\system32\dxgi.dll
+ 140719868149760
+ 794624
+ 140719868291472
+ File: C:\Windows\system32\dxgi.dll_x000D__x000A_InternalName: dxgi.dll_x000D__x000A_OriginalFilename: dxgi.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DirectX Graphics Infrastructure_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 776
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DirectX Graphics Infrastructure
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32.dll)
+
+ gdi32.dll
+ C:\Windows\System32\gdi32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\gdi32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USER32.dll)
+
+ USER32.dll
+ C:\Windows\System32\USER32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\USER32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+
+ clbcatq.dll
+ C:\Windows\System32\clbcatq.dll
+ 140719916908544
+ 663552
+ 140719916925344
+ File: C:\Windows\System32\clbcatq.dll_x000D__x000A_InternalName: CLBCATQ.DLL_x000D__x000A_OriginalFilename: CLBCATQ.DLL_x000D__x000A_FileVersion: 2001.12.10941.16384 (WinBuild.160101.0800)_x000D__x000A_FileDescription: COM+ Configuration Catalog_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 648
+ Microsoft Corporation
+ 2001.12.10941.16384 (WinBuild.160101.0800)
+ 10.0.17763.1
+ COM+ Configuration Catalog
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ApplicationFrame.dll)
+
+ ApplicationFrame.dll
+ C:\Windows\System32\ApplicationFrame.dll
+ 140719235465216
+ 692224
+ 140719235652272
+ File: C:\Windows\System32\ApplicationFrame.dll_x000D__x000A_InternalName: Application Frame_x000D__x000A_OriginalFilename: ApplicationFrame.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Application Frame_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 676
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Application Frame
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SHCORE.dll)
+
+ SHCORE.dll
+ C:\Windows\System32\SHCORE.dll
+ 140719907143680
+ 688128
+ 140719907388560
+ File: C:\Windows\System32\SHCORE.dll_x000D__x000A_InternalName: SHCORE_x000D__x000A_OriginalFilename: SHCORE.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: SHCORE_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 672
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ SHCORE
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SHLWAPI.dll)
+
+ SHLWAPI.dll
+ C:\Windows\System32\SHLWAPI.dll
+ 140719945547776
+ 335872
+ 140719945588304
+ File: C:\Windows\System32\SHLWAPI.dll_x000D__x000A_InternalName: SHLWAPI_x000D__x000A_OriginalFilename: SHLWAPI.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Shell Light-weight Utility Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 328
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Shell Light-weight Utility Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+
+ OLEAUT32.dll
+ C:\Windows\System32\OLEAUT32.dll
+ 140719946465280
+ 802816
+ 140719946574624
+ File: C:\Windows\System32\OLEAUT32.dll_x000D__x000A_InternalName: OLEAUT32.DLL_x000D__x000A_OriginalFilename: OLEAUT32.DLL_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OLEAUT32.DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 784
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ OLEAUT32.DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+
+ PROPSYS.dll
+ C:\Windows\System32\PROPSYS.dll
+ 140719831187456
+ 1736704
+ 140719831447408
+ File: C:\Windows\System32\PROPSYS.dll_x000D__x000A_InternalName: propsys.dll_x000D__x000A_OriginalFilename: propsys.dll.mui_x000D__x000A_FileVersion: 7.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Property System_x000D__x000A_Product: Windows® Search_x000D__x000A_ProductVersion: 7.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1696
+ Microsoft Corporation
+ 7.0.17763.1 (WinBuild.160101.0800)
+ 7.0.17763.1
+ Microsoft Property System
+ Windows® Search
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+
+ twinapi.appcore.dll
+ C:\Windows\System32\twinapi.appcore.dll
+ 140719861596160
+ 2150400
+ 140719862039776
+ File: C:\Windows\System32\twinapi.appcore.dll_x000D__x000A_InternalName: twinapi.appcore_x000D__x000A_OriginalFilename: twinapi.appcore.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: twinapi.appcore_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2100
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ twinapi.appcore
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (UxTheme.dll)
+
+ UxTheme.dll
+ C:\Windows\System32\UxTheme.dll
+ 140719860547584
+ 638976
+ 140719860712368
+ File: C:\Windows\System32\UxTheme.dll_x000D__x000A_InternalName: UxTheme.dll_x000D__x000A_OriginalFilename: UxTheme.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft UxTheme Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 624
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft UxTheme Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+
+ DEVOBJ.dll
+ C:\Windows\System32\DEVOBJ.dll
+ 140719885844480
+ 167936
+ 140719885874112
+ File: C:\Windows\System32\DEVOBJ.dll_x000D__x000A_InternalName: devinfoset.dll_x000D__x000A_OriginalFilename: devinfoset.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Device Information Set DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Device Information Set DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+
+ cfgmgr32.dll
+ C:\Windows\System32\cfgmgr32.dll
+ 140719889252352
+ 303104
+ 140719889325904
+ File: C:\Windows\System32\cfgmgr32.dll_x000D__x000A_InternalName: cfgmgr32.dll_x000D__x000A_OriginalFilename: CFGMGR32.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Configuration Manager DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 296
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Configuration Manager DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (TWINAPI.dll)
+
+ TWINAPI.dll
+ C:\Windows\System32\TWINAPI.dll
+ 140719346810880
+ 643072
+ 140719346851504
+ File: C:\Windows\System32\TWINAPI.dll_x000D__x000A_InternalName: twinapi_x000D__x000A_OriginalFilename: twinapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: twinapi_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ twinapi
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (d2d1.dll)
+
+ d2d1.dll
+ C:\Windows\System32\d2d1.dll
+ 140719843311616
+ 6021120
+ 140719844430608
+ File: C:\Windows\System32\d2d1.dll_x000D__x000A_InternalName: d2d1_x000D__x000A_OriginalFilename: d2d1_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft D2D Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 5880
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft D2D Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcp47mrm.dll)
+
+ bcp47mrm.dll
+ C:\Windows\System32\bcp47mrm.dll
+ 140719398584320
+ 172032
+ 140719398614560
+ File: C:\Windows\System32\bcp47mrm.dll_x000D__x000A_InternalName: BCP47mrm.dll_x000D__x000A_OriginalFilename: BCP47mrm.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: BCP47 Language Classes for Resource Management_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 168
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ BCP47 Language Classes for Resource Management
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (d3d11.dll)
+
+ d3d11.dll
+ C:\Windows\System32\d3d11.dll
+ 140719840690176
+ 2613248
+ 140719841252320
+ File: C:\Windows\System32\d3d11.dll_x000D__x000A_InternalName: D3D11.dll_x000D__x000A_OriginalFilename: D3D11.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Direct3D 11 Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2552
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Direct3D 11 Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+
+ dwmapi.dll
+ C:\Windows\System32\dwmapi.dll
+ 140719861399552
+ 188416
+ 140719861412880
+ File: C:\Windows\System32\dwmapi.dll_x000D__x000A_InternalName: dwmapi.dll_x000D__x000A_OriginalFilename: dwmapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Desktop Window Manager API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft Desktop Window Manager API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+
+ RMCLIENT.dll
+ C:\Windows\System32\RMCLIENT.dll
+ 140719864479744
+ 163840
+ 140719864516304
+ File: C:\Windows\System32\RMCLIENT.dll_x000D__x000A_InternalName: rmclient.dll_x000D__x000A_OriginalFilename: rmclient.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Resource Manager Client_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 160
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Resource Manager Client
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+
+ CRYPT32.dll
+ C:\Windows\System32\CRYPT32.dll
+ 140719891480576
+ 1945600
+ 140719891804832
+ File: C:\Windows\System32\CRYPT32.dll_x000D__x000A_InternalName: CRYPT32.DLL_x000D__x000A_OriginalFilename: CRYPT32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto API32_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1900
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto API32
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+
+ MSASN1.dll
+ C:\Windows\System32\MSASN1.dll
+ 140719887876096
+ 73728
+ 140719887898576
+ File: C:\Windows\System32\MSASN1.dll_x000D__x000A_InternalName: msasn1.dll_x000D__x000A_OriginalFilename: msasn1.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ASN.1 Runtime APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 72
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ASN.1 Runtime APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTSP.dll)
+
+ CRYPTSP.dll
+ C:\Windows\System32\CRYPTSP.dll
+ 140719889121280
+ 94208
+ 140719889138512
+ File: C:\Windows\System32\CRYPTSP.dll_x000D__x000A_InternalName: cryptsp.dll_x000D__x000A_OriginalFilename: cryptsp.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Cryptographic Service Provider API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 92
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Cryptographic Service Provider API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+
+ OneCoreUAPCommonProxyStub.dll
+ C:\Windows\System32\OneCoreUAPCommonProxyStub.dll
+ 140719791996928
+ 7585792
+ 140719792085488
+ File: C:\Windows\System32\OneCoreUAPCommonProxyStub.dll_x000D__x000A_InternalName: OneCoreUAPCommonProxyStub.dll_x000D__x000A_OriginalFilename: OneCoreUAPCommonProxyStub.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OneCoreUAP Common Proxy Stub_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 7408
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ OneCoreUAP Common Proxy Stub
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+
+ MSCTF.dll
+ C:\Windows\System32\MSCTF.dll
+ 140719947317248
+ 1486848
+ 140719947597184
+ File: C:\Windows\System32\MSCTF.dll_x000D__x000A_InternalName: MSCTF_x000D__x000A_OriginalFilename: MSCTF.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MSCTF Server DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1452
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MSCTF Server DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (D3D10Warp.dll)
+
+ D3D10Warp.dll
+ C:\Windows\system32\D3D10Warp.dll
+ 140718043889664
+ 7581696
+ 140718049668720
+ File: C:\Windows\system32\D3D10Warp.dll_x000D__x000A_InternalName: D3D10Warp.dll_x000D__x000A_OriginalFilename: D3D10Warp.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Direct3D Rasterizer_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 7404
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Direct3D Rasterizer
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (advapi32.dll)
+
+ advapi32.dll
+ C:\Windows\System32\advapi32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\advapi32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dcomp.dll)
+
+ dcomp.dll
+ C:\Windows\System32\dcomp.dll
+ 140719849340928
+ 1847296
+ 140719849715008
+ File: C:\Windows\System32\dcomp.dll_x000D__x000A_InternalName: dcomp.dll_x000D__x000A_OriginalFilename: dcomp.dll_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft DirectComposition Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1804
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Microsoft DirectComposition Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+
+ CoreMessaging.dll
+ C:\Windows\System32\CoreMessaging.dll
+ 140719854845952
+ 925696
+ 140719855185296
+ File: C:\Windows\System32\CoreMessaging.dll_x000D__x000A_InternalName: CoreMessaging.dll_x000D__x000A_OriginalFilename: CoreMessaging.dll_x000D__x000A_FileVersion: 10.0.17763.194_x000D__x000A_FileDescription: Microsoft CoreMessaging Dll_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.194_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 904
+ Microsoft Corporation
+ 10.0.17763.194
+ 10.0.17763.194
+ Microsoft CoreMessaging Dll
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (UIAutomationCore.DLL)
+
+ UIAutomationCore.DLL
+ C:\Windows\system32\UIAutomationCore.DLL
+ 140719367651328
+ 2469888
+ 140719368013472
+ File: C:\Windows\system32\UIAutomationCore.DLL_x000D__x000A_InternalName: UIAutomationCore.dll_x000D__x000A_OriginalFilename: UIAutomationCore.dll.mui_x000D__x000A_FileVersion: 7.2.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft UI Automation Core_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2412
+ Microsoft Corporation
+ 7.2.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft UI Automation Core
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Bcp47Langs.dll)
+
+ Bcp47Langs.dll
+ C:\Windows\system32\Bcp47Langs.dll
+ 140719366537216
+ 376832
+ 140719366617696
+ File: C:\Windows\system32\Bcp47Langs.dll_x000D__x000A_InternalName: BCP47Lang.dll_x000D__x000A_OriginalFilename: BCP47Lang.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: BCP47 Language Classes_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 368
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ BCP47 Language Classes
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+
+ SHELL32.dll
+ C:\Windows\System32\SHELL32.dll
+ 140719923593216
+ 21954560
+ 140719924695456
+ File: C:\Windows\System32\SHELL32.dll_x000D__x000A_InternalName: SHELL32_x000D__x000A_OriginalFilename: SHELL32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Shell Common Dll_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 21440
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Shell Common Dll
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+
+ windows.storage.dll
+ C:\Windows\System32\windows.storage.dll
+ 140719897444352
+ 7643136
+ 140719899226624
+ File: C:\Windows\System32\windows.storage.dll_x000D__x000A_InternalName: Windows.Storage_x000D__x000A_OriginalFilename: Windows.Storage.dll.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft WinRT Storage API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 7464
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft WinRT Storage API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (profapi.dll)
+
+ profapi.dll
+ C:\Windows\System32\profapi.dll
+ 140719888531456
+ 147456
+ 140719888564400
+ File: C:\Windows\System32\profapi.dll_x000D__x000A_InternalName: PROFAPI.DLL_x000D__x000A_OriginalFilename: PROFAPI.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: User Profile Basic API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ User Profile Basic API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (powrprof.dll)
+
+ powrprof.dll
+ C:\Windows\System32\powrprof.dll
+ 140719888007168
+ 380928
+ 140719888020992
+ File: C:\Windows\System32\powrprof.dll_x000D__x000A_InternalName: POWRPROF_x000D__x000A_OriginalFilename: POWRPROF.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Power Profile Helper DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 372
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Power Profile Helper DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Windows.StateRepositoryPS.dll)
+
+ Windows.StateRepositoryPS.dll
+ C:\Windows\System32\Windows.StateRepositoryPS.dll
+ 140719444393984
+ 1216512
+ 140719444420016
+ File: C:\Windows\System32\Windows.StateRepositoryPS.dll_x000D__x000A_InternalName: Windows StateRepository Proxy/Stub Server_x000D__x000A_OriginalFilename: Windows.StateRepositoryPS.dll_x000D__x000A_FileVersion: 10.0.17763.557 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows StateRepository Proxy/Stub Server_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.557_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1188
+ Microsoft Corporation
+ 10.0.17763.557 (WinBuild.160101.0800)
+ 10.0.17763.557
+ Windows StateRepository Proxy/Stub Server
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (windowscodecs.dll)
+
+ windowscodecs.dll
+ C:\Windows\system32\windowscodecs.dll
+ 140719807528960
+ 1802240
+ 140719808100048
+ File: C:\Windows\system32\windowscodecs.dll_x000D__x000A_InternalName: WindowsCodecs_x000D__x000A_OriginalFilename: WindowsCodecs_x000D__x000A_FileVersion: 10.0.17763.55 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Windows Codecs Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.55_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1760
+ Microsoft Corporation
+ 10.0.17763.55 (WinBuild.160101.0800)
+ 10.0.17763.55
+ Microsoft Windows Codecs Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (mrmcorer.dll)
+
+ mrmcorer.dll
+ C:\Windows\SYSTEM32\mrmcorer.dll
+ 140719527231488
+ 1077248
+ 140719527499040
+ File: C:\Windows\SYSTEM32\mrmcorer.dll_x000D__x000A_InternalName: MrmCore_x000D__x000A_OriginalFilename: MrmCore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Windows MRM_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1052
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft Windows MRM
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (iertutil.dll)
+
+ iertutil.dll
+ C:\Windows\SYSTEM32\iertutil.dll
+ 140719686811648
+ 2785280
+ 140719687033936
+ File: C:\Windows\SYSTEM32\iertutil.dll_x000D__x000A_InternalName: IeRtUtil.dll_x000D__x000A_OriginalFilename: IeRtUtil.dll.mui_x000D__x000A_FileVersion: 11.00.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Run time utility for Internet Explorer_x000D__x000A_Product: Internet Explorer_x000D__x000A_ProductVersion: 11.00.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2720
+ Microsoft Corporation
+ 11.00.17763.1 (WinBuild.160101.0800)
+ 11.00.17763.1
+ Run time utility for Internet Explorer
+ Internet Explorer
+
+
+
+
+ System.Diagnostics.ProcessModule (Bcrypt.dll)
+
+ Bcrypt.dll
+ C:\Windows\System32\Bcrypt.dll
+ 140719897247744
+ 155648
+ 140719897281296
+ File: C:\Windows\System32\Bcrypt.dll_x000D__x000A_InternalName: bcrypt.dll_x000D__x000A_OriginalFilename: bcrypt.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 152
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+
+ Windows.UI.dll
+ C:\Windows\System32\Windows.UI.dll
+ 140719393931264
+ 1286144
+ 140719394124800
+ File: C:\Windows\System32\Windows.UI.dll_x000D__x000A_InternalName: Windows Runtime UI Foundation DLL_x000D__x000A_OriginalFilename: Windows.UI.dll.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Runtime UI Foundation DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1256
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Runtime UI Foundation DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (InputHost.dll)
+
+ InputHost.dll
+ C:\Windows\System32\InputHost.dll
+ 140719452192768
+ 835584
+ 140719452738880
+ File: C:\Windows\System32\InputHost.dll_x000D__x000A_InternalName: _x000D__x000A_OriginalFilename: _x000D__x000A_FileVersion: _x000D__x000A_FileDescription: _x000D__x000A_Product: _x000D__x000A_ProductVersion: _x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: _x000D__x000A_
+
+
+
+
+ 816
+
+
+
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+
+ TextInputFramework.dll
+ C:\Windows\System32\TextInputFramework.dll
+ 140719392555008
+ 610304
+ 140719392710816
+ File: C:\Windows\System32\TextInputFramework.dll_x000D__x000A_InternalName: "TextInputFramework.DYNLINK"_x000D__x000A_OriginalFilename: "TextInputFramework.DYNLINK"_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: "TextInputFramework.DYNLINK"_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 596
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ "TextInputFramework.DYNLINK"
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+
+ CoreUIComponents.dll
+ C:\Windows\System32\CoreUIComponents.dll
+ 140719821684736
+ 3284992
+ 140719822198848
+ File: C:\Windows\System32\CoreUIComponents.dll_x000D__x000A_InternalName: CoreUIComponents.dll_x000D__x000A_OriginalFilename: CoreUIComponents.dll_x000D__x000A_FileVersion: 10.0.17763.1_x000D__x000A_FileDescription: Microsoft Core UI Components Dll_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3208
+ Microsoft Corporation
+ 10.0.17763.1
+ 10.0.17763.1
+ Microsoft Core UI Components Dll
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+
+ ntmarta.dll
+ C:\Windows\SYSTEM32\ntmarta.dll
+ 140719871557632
+ 200704
+ 140719871586448
+ File: C:\Windows\SYSTEM32\ntmarta.dll_x000D__x000A_InternalName: ntmarta.dll_x000D__x000A_OriginalFilename: ntmarta.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT MARTA provider_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 196
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows NT MARTA provider
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (wintypes.dll)
+
+ wintypes.dll
+ C:\Windows\SYSTEM32\wintypes.dll
+ 140719817687040
+ 1388544
+ 140719817864912
+ File: C:\Windows\SYSTEM32\wintypes.dll_x000D__x000A_InternalName: Windows Base Types DLL_x000D__x000A_OriginalFilename: WinTypes.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Base Types DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1356
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Base Types DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (UIAnimation.dll)
+
+ UIAnimation.dll
+ C:\Windows\System32\UIAnimation.dll
+ 140719805956096
+ 294912
+ 140719806033856
+ File: C:\Windows\System32\UIAnimation.dll_x000D__x000A_InternalName: UIAnimation_x000D__x000A_OriginalFilename: UIAnimation.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Animation Manager_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 288
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Animation Manager
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (rometadata.dll)
+
+ rometadata.dll
+ C:\Windows\SYSTEM32\rometadata.dll
+ 140719140175872
+ 241664
+ 140719140323392
+ File: C:\Windows\SYSTEM32\rometadata.dll_x000D__x000A_InternalName: RoMetadata.dll_x000D__x000A_OriginalFilename: RoMetadata.dll_x000D__x000A_FileVersion: 4.7.3190.0 built by: NET472REL1LAST_C_x000D__x000A_FileDescription: Microsoft MetaData Library_x000D__x000A_Product: Microsoft® .NET Framework_x000D__x000A_ProductVersion: 4.7.3190.0_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: True_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 236
+ Microsoft Corporation
+ 4.7.3190.0 built by: NET472REL1LAST_C
+ 4.7.3190.0
+ Microsoft MetaData Library
+ Microsoft® .NET Framework
+
+
+
+
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+
+ OneCoreCommonProxyStub.dll
+ C:\Windows\System32\OneCoreCommonProxyStub.dll
+ 140719407628288
+ 487424
+ 140719407642784
+ File: C:\Windows\System32\OneCoreCommonProxyStub.dll_x000D__x000A_InternalName: OneCoreCommonProxyStub.dll_x000D__x000A_OriginalFilename: OneCoreCommonProxyStub.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OneCore Common Proxy Stub_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 476
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ OneCore Common Proxy Stub
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ActXPrxy.dll)
+
+ ActXPrxy.dll
+ C:\Windows\System32\ActXPrxy.dll
+ 140719371845632
+ 630784
+ 140719371862624
+ File: C:\Windows\System32\ActXPrxy.dll_x000D__x000A_InternalName: ActXPrxy.dll_x000D__x000A_OriginalFilename: ActXPrxy.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ActiveX Interface Marshaling Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 616
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ActiveX Interface Marshaling Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Oleacc.dll)
+
+ Oleacc.dll
+ C:\Windows\system32\Oleacc.dll
+ 140719711649792
+ 442368
+ 140719711744976
+ File: C:\Windows\system32\Oleacc.dll_x000D__x000A_InternalName: OLEACC_x000D__x000A_OriginalFilename: OLEACC.DLL_x000D__x000A_FileVersion: 7.2.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Active Accessibility Core Component_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: Language Neutral_x000D__x000A_
+
+
+
+
+ 432
+ Microsoft Corporation
+ 7.2.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Active Accessibility Core Component
+ Microsoft® Windows® Operating System
+
+
+
+
+ 65
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 30728
+ 30728
+ 33636352
+ 33636352
+ 434664
+ 434664
+ 39424000
+ 39424000
+ 39313408
+ 39313408
+ 2203649400832
+ 331177984
+ true
+
+
+ System.Diagnostics.ProcessPriorityClass
+ System.Enum
+ System.ValueType
+ System.Object
+
+ Normal
+ 32
+
+ 33636352
+ 33636352
+ ApplicationFrameHost
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 15060
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.015625S
+ 2019-08-15T19:35:18.4408013+03:00
+ PT0.015625S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 20008
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.078125S
+ 2019-08-15T21:12:04.2208823+03:00
+ PT0.140625S
+ PT0.0625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 15900
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.109375S
+ 2019-08-20T03:19:37.6326221+03:00
+ PT0.109375S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 17672
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.546875S
+ 2019-08-27T00:11:19.2064498+03:00
+ PT0.71875S
+ PT0.171875S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 22544
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-27T01:29:26.5083829+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 7132
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-27T02:27:39.526744+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 25096
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-27T02:27:39.534197+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 6452
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-27T02:27:39.5379888+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 22960
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-27T02:27:39.5381311+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 16428
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-27T02:27:39.5382616+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 23400
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-27T02:27:39.5384874+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 20696
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-27T02:27:39.5601223+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 24152
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-27T02:28:08.8587677+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ 13
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 522
+ 2203626831872
+ 308609024
+ false
+ 26087424
+ 26087424
+
+
+
+ System.Diagnostics.ProcessModule (ApplicationFrameHost.exe)
+
+ ApplicationFrameHost.exe
+ C:\Windows\system32\ApplicationFrameHost.exe
+ 140695356768256
+ 81920
+ 140695356775552
+ File: C:\Windows\system32\ApplicationFrameHost.exe_x000D__x000A_InternalName: Application Frame Host_x000D__x000A_OriginalFilename: ApplicationFrameHost.exe_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Application Frame Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 80
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Application Frame Host
+ Microsoft® Windows® Operating System
+
+
+ PT8.484375S
+ PT12.578125S
+ PT4.09375S
+
+
+ 2098158
+
+ Inbox - Gmail - Mail
+ true
+
+
+
+
+ ApplicationFrameHost
+ 1
+ 522
+ 2203626831872
+ 26087424
+ 33636352
+ 30728
+ C:\Windows\system32\ApplicationFrameHost.exe
+
+ Microsoft Corporation
+ 12.578125
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Application Frame Host
+ Microsoft® Windows® Operating System
+ Process
+
+
+
+
+ System.Diagnostics.Process (AppVShNotify)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 7908
+
+ 8
+ false
+ 2019-08-16T21:32:17.0236684+03:00
+ 5928
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (AppVShNotify.exe)
+
+ AppVShNotify.exe
+ C:\Program Files\Common Files\Microsoft Shared\ClickToRun\AppVShNotify.exe
+ 140700876079104
+ 294912
+ 140700876169016
+ File: C:\Program Files\Common Files\Microsoft Shared\ClickToRun\AppVShNotify.exe_x000D__x000A_InternalName: AppVShNotify_x000D__x000A_OriginalFilename: AppVShNotify.exe_x000D__x000A_FileVersion: 5.1.145.0_x000D__x000A_FileDescription: AppVShNotify_x000D__x000A_Product: Microsoft Application Virtualization (App-V)_x000D__x000A_ProductVersion: 5.1.145.0_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 288
+ Microsoft Corporation
+ 5.1.145.0
+ 5.1.145.0
+ AppVShNotify
+ Microsoft Application Virtualization (App-V)
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USER32.dll)
+
+ USER32.dll
+ C:\Windows\System32\USER32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\USER32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (GDI32.dll)
+
+ GDI32.dll
+ C:\Windows\System32\GDI32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\GDI32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+
+ ADVAPI32.dll
+ C:\Windows\System32\ADVAPI32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\ADVAPI32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ole32.dll)
+
+ ole32.dll
+ C:\Windows\System32\ole32.dll
+ 140719907864576
+ 1396736
+ 140719908019504
+ File: C:\Windows\System32\ole32.dll_x000D__x000A_InternalName: OLE32.DLL_x000D__x000A_OriginalFilename: OLE32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft OLE for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1364
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft OLE for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+
+ SHELL32.dll
+ C:\Windows\System32\SHELL32.dll
+ 140719923593216
+ 21954560
+ 140719924695456
+ File: C:\Windows\System32\SHELL32.dll_x000D__x000A_InternalName: SHELL32_x000D__x000A_OriginalFilename: SHELL32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Shell Common Dll_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 21440
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Shell Common Dll
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+
+ cfgmgr32.dll
+ C:\Windows\System32\cfgmgr32.dll
+ 140719889252352
+ 303104
+ 140719889325904
+ File: C:\Windows\System32\cfgmgr32.dll_x000D__x000A_InternalName: cfgmgr32.dll_x000D__x000A_OriginalFilename: CFGMGR32.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Configuration Manager DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 296
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Configuration Manager DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (shcore.dll)
+
+ shcore.dll
+ C:\Windows\System32\shcore.dll
+ 140719907143680
+ 688128
+ 140719907388560
+ File: C:\Windows\System32\shcore.dll_x000D__x000A_InternalName: SHCORE_x000D__x000A_OriginalFilename: SHCORE.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: SHCORE_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 672
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ SHCORE
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+
+ windows.storage.dll
+ C:\Windows\System32\windows.storage.dll
+ 140719897444352
+ 7643136
+ 140719899226624
+ File: C:\Windows\System32\windows.storage.dll_x000D__x000A_InternalName: Windows.Storage_x000D__x000A_OriginalFilename: Windows.Storage.dll.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft WinRT Storage API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 7464
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft WinRT Storage API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSVCP120.dll)
+
+ MSVCP120.dll
+ C:\Program Files\Common Files\Microsoft Shared\ClickToRun\MSVCP120.dll
+ 140719534964736
+ 679936
+ 140719535288300
+ File: C:\Program Files\Common Files\Microsoft Shared\ClickToRun\MSVCP120.dll_x000D__x000A_InternalName: msvcp120.dll_x000D__x000A_OriginalFilename: msvcp120.dll_x000D__x000A_FileVersion: 12.00.30501.0 built by: REL_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Visual Studio® 2013_x000D__x000A_ProductVersion: 12.00.30501.0_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 664
+ Microsoft Corporation
+ 12.00.30501.0 built by: REL
+ 12.00.30501.0
+ Microsoft® C Runtime Library
+ Microsoft® Visual Studio® 2013
+
+
+
+
+ System.Diagnostics.ProcessModule (MSVCR120.dll)
+
+ MSVCR120.dll
+ C:\Program Files\Common Files\Microsoft Shared\ClickToRun\MSVCR120.dll
+ 140719535685632
+ 978944
+ 140719535827404
+ File: C:\Program Files\Common Files\Microsoft Shared\ClickToRun\MSVCR120.dll_x000D__x000A_InternalName: msvcr120.dll_x000D__x000A_OriginalFilename: msvcr120.dll_x000D__x000A_FileVersion: 12.00.30501.0 built by: REL_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Visual Studio® 2013_x000D__x000A_ProductVersion: 12.00.30501.0_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 956
+ Microsoft Corporation
+ 12.00.30501.0 built by: REL
+ 12.00.30501.0
+ Microsoft® C Runtime Library
+ Microsoft® Visual Studio® 2013
+
+
+
+
+ System.Diagnostics.ProcessModule (profapi.dll)
+
+ profapi.dll
+ C:\Windows\System32\profapi.dll
+ 140719888531456
+ 147456
+ 140719888564400
+ File: C:\Windows\System32\profapi.dll_x000D__x000A_InternalName: PROFAPI.DLL_x000D__x000A_OriginalFilename: PROFAPI.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: User Profile Basic API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ User Profile Basic API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (powrprof.dll)
+
+ powrprof.dll
+ C:\Windows\System32\powrprof.dll
+ 140719888007168
+ 380928
+ 140719888020992
+ File: C:\Windows\System32\powrprof.dll_x000D__x000A_InternalName: POWRPROF_x000D__x000A_OriginalFilename: POWRPROF.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Power Profile Helper DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 372
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Power Profile Helper DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+
+ shlwapi.dll
+ C:\Windows\System32\shlwapi.dll
+ 140719945547776
+ 335872
+ 140719945588304
+ File: C:\Windows\System32\shlwapi.dll_x000D__x000A_InternalName: SHLWAPI_x000D__x000A_OriginalFilename: SHLWAPI.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Shell Light-weight Utility Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 328
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Shell Light-weight Utility Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+
+ cryptsp.dll
+ C:\Windows\System32\cryptsp.dll
+ 140719889121280
+ 94208
+ 140719889138512
+ File: C:\Windows\System32\cryptsp.dll_x000D__x000A_InternalName: cryptsp.dll_x000D__x000A_OriginalFilename: cryptsp.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Cryptographic Service Provider API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 92
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Cryptographic Service Provider API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USERENV.dll)
+
+ USERENV.dll
+ C:\Windows\SYSTEM32\USERENV.dll
+ 140719887024128
+ 163840
+ 140719887043280
+ File: C:\Windows\SYSTEM32\USERENV.dll_x000D__x000A_InternalName: userenv_x000D__x000A_OriginalFilename: userenv.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Userenv_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Userenv
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sspicli.dll)
+
+ sspicli.dll
+ C:\Windows\SYSTEM32\sspicli.dll
+ 140719886827520
+ 192512
+ 140719886881776
+ File: C:\Windows\SYSTEM32\sspicli.dll_x000D__x000A_InternalName: sspicli.dll_x000D__x000A_OriginalFilename: sspicli.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 188
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msv1_0.DLL)
+
+ msv1_0.DLL
+ C:\Windows\system32\msv1_0.DLL
+ 140719879421952
+ 487424
+ 140719879520000
+ File: C:\Windows\system32\msv1_0.DLL_x000D__x000A_InternalName: MSV1_0.DLL_x000D__x000A_OriginalFilename: MSV1_0.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Authentication Package v1.0_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 476
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft Authentication Package v1.0
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+
+ bcrypt.dll
+ C:\Windows\System32\bcrypt.dll
+ 140719897247744
+ 155648
+ 140719897281296
+ File: C:\Windows\System32\bcrypt.dll_x000D__x000A_InternalName: bcrypt.dll_x000D__x000A_OriginalFilename: bcrypt.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 152
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (NtlmShared.dll)
+
+ NtlmShared.dll
+ C:\Windows\SYSTEM32\NtlmShared.dll
+ 140719879356416
+ 53248
+ 140719879374528
+ File: C:\Windows\SYSTEM32\NtlmShared.dll_x000D__x000A_InternalName: NtlmShared.dll_x000D__x000A_OriginalFilename: NtlmShared.dll_x000D__x000A_FileVersion: 10.0.17763.316 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NTLM Shared Functionality_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.316_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 52
+ Microsoft Corporation
+ 10.0.17763.316 (WinBuild.160101.0800)
+ 10.0.17763.316
+ NTLM Shared Functionality
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cryptdll.dll)
+
+ cryptdll.dll
+ C:\Windows\SYSTEM32\cryptdll.dll
+ 140719880404992
+ 86016
+ 140719880438240
+ File: C:\Windows\SYSTEM32\cryptdll.dll_x000D__x000A_InternalName: cryptdll.dll_x000D__x000A_OriginalFilename: cryptdll.dll_x000D__x000A_FileVersion: 10.0.17763.503 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Cryptography Manager_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.503_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 84
+ Microsoft Corporation
+ 10.0.17763.503 (WinBuild.160101.0800)
+ 10.0.17763.503
+ Cryptography Manager
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+
+ uxtheme.dll
+ C:\Windows\system32\uxtheme.dll
+ 140719860547584
+ 638976
+ 140719860712368
+ File: C:\Windows\system32\uxtheme.dll_x000D__x000A_InternalName: UxTheme.dll_x000D__x000A_OriginalFilename: UxTheme.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft UxTheme Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 624
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft UxTheme Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ 36
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 9072
+ 9072
+ 2039808
+ 2039808
+ 172488
+ 172488
+ 2269184
+ 2269184
+ 8658944
+ 8658944
+ 4423241728
+ 128274432
+ true
+
+
+ Normal
+ 32
+
+ 2039808
+ 2039808
+ AppVShNotify
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 15324
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-16T21:32:17.0236695+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ 1
+
+
+
+
+
+
+ false
+
+
+ 167
+ 4415381504
+ 120414208
+ false
+ 991232
+ 991232
+
+
+
+ System.Diagnostics.ProcessModule (AppVShNotify.exe)
+
+ AppVShNotify.exe
+ C:\Program Files\Common Files\Microsoft Shared\ClickToRun\AppVShNotify.exe
+ 140700876079104
+ 294912
+ 140700876169016
+ File: C:\Program Files\Common Files\Microsoft Shared\ClickToRun\AppVShNotify.exe_x000D__x000A_InternalName: AppVShNotify_x000D__x000A_OriginalFilename: AppVShNotify.exe_x000D__x000A_FileVersion: 5.1.145.0_x000D__x000A_FileDescription: AppVShNotify_x000D__x000A_Product: Microsoft Application Virtualization (App-V)_x000D__x000A_ProductVersion: 5.1.145.0_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 288
+ Microsoft Corporation
+ 5.1.145.0
+ 5.1.145.0
+ AppVShNotify
+ Microsoft Application Virtualization (App-V)
+
+
+ PT0.0625S
+ PT0.09375S
+ PT0.03125S
+
+
+ 0
+
+
+ true
+
+
+
+
+ AppVShNotify
+ 1
+ 167
+ 4415381504
+ 991232
+ 2039808
+ 9072
+ C:\Program Files\Common Files\Microsoft Shared\ClickToRun\AppVShNotify.exe
+
+ Microsoft Corporation
+ 0.09375
+ 5.1.145.0
+ 5.1.145.0
+ AppVShNotify
+ Microsoft Application Virtualization (App-V)
+ Process
+
+
+
+
+ System.Diagnostics.Process (audiodg)
+
+ 8
+ 2019-08-26T20:52:20.9249882+03:00
+ 22436
+ .
+ 15072
+ 15072
+ 22097920
+ 22097920
+ 127312
+ 127312
+ 25055232
+ 25055232
+ 29364224
+ 29364224
+ 2203439460352
+ 121237504
+ 22097920
+ 22097920
+ audiodg
+ 0
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 9720
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 16756
+ 0
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 25904
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 5200
+ 0
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 27380
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 16
+ 16
+ 25336
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 26312
+ 140719955419728
+ Wait
+ EventPairLow
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 19660
+ 0
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 18684
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 26620
+ 140719955419728
+ Wait
+ EventPairLow
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 22224
+ 0
+ Wait
+ UserRequest
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 12360
+ 140719955419728
+ Wait
+ UserRequest
+
+
+
+
+
+
+ 12
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 671
+ 2203435687936
+ 117465088
+ false
+ 19423232
+ 19423232
+
+ PT33.921875S
+ PT3M30.578125S
+ PT2M56.65625S
+
+
+ 0
+
+
+ true
+
+
+
+
+ audiodg
+ 0
+ 671
+ 2203435687936
+ 19423232
+ 22097920
+ 15072
+
+
+
+ 210.578125
+
+
+
+
+ Process
+
+
+
+
+ System.Diagnostics.Process (AutoHotkey)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 5384
+
+ 8
+ false
+ 2019-08-15T19:34:55.1958182+03:00
+ 18988
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (AutoHotkey.exe)
+
+ AutoHotkey.exe
+ C:\Program Files\AutoHotkey\AutoHotkey.exe
+ 5368709120
+ 1236992
+ 5369433848
+ File: C:\Program Files\AutoHotkey\AutoHotkey.exe_x000D__x000A_InternalName: AutoHotkey_x000D__x000A_OriginalFilename: AutoHotkey.exe_x000D__x000A_FileVersion: 1.1.30.00_x000D__x000A_FileDescription: AutoHotkey Unicode 64-bit_x000D__x000A_Product: AutoHotkey_x000D__x000A_ProductVersion: 1.1.30.00_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1208
+
+ 1.1.30.00
+ 1.1.30.00
+ AutoHotkey Unicode 64-bit
+ AutoHotkey
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (PSAPI.DLL)
+
+ PSAPI.DLL
+ C:\Windows\System32\PSAPI.DLL
+ 140719945940992
+ 32768
+ 140719945945216
+ File: C:\Windows\System32\PSAPI.DLL_x000D__x000A_InternalName: PSAPI_x000D__x000A_OriginalFilename: PSAPI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Process Status Helper_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 32
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Process Status Helper
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USER32.dll)
+
+ USER32.dll
+ C:\Windows\System32\USER32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\USER32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (GDI32.dll)
+
+ GDI32.dll
+ C:\Windows\System32\GDI32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\GDI32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (COMDLG32.dll)
+
+ COMDLG32.dll
+ C:\Windows\System32\COMDLG32.dll
+ 140719914090496
+ 1208320
+ 140719914272592
+ File: C:\Windows\System32\COMDLG32.dll_x000D__x000A_InternalName: comdlg32_x000D__x000A_OriginalFilename: comdlg32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Common Dialogs DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1180
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Common Dialogs DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (shcore.dll)
+
+ shcore.dll
+ C:\Windows\System32\shcore.dll
+ 140719907143680
+ 688128
+ 140719907388560
+ File: C:\Windows\System32\shcore.dll_x000D__x000A_InternalName: SHCORE_x000D__x000A_OriginalFilename: SHCORE.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: SHCORE_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 672
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ SHCORE
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SHLWAPI.dll)
+
+ SHLWAPI.dll
+ C:\Windows\System32\SHLWAPI.dll
+ 140719945547776
+ 335872
+ 140719945588304
+ File: C:\Windows\System32\SHLWAPI.dll_x000D__x000A_InternalName: SHLWAPI_x000D__x000A_OriginalFilename: SHLWAPI.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Shell Light-weight Utility Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 328
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Shell Light-weight Utility Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+
+ SHELL32.dll
+ C:\Windows\System32\SHELL32.dll
+ 140719923593216
+ 21954560
+ 140719924695456
+ File: C:\Windows\System32\SHELL32.dll_x000D__x000A_InternalName: SHELL32_x000D__x000A_OriginalFilename: SHELL32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Shell Common Dll_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 21440
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Shell Common Dll
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+
+ cfgmgr32.dll
+ C:\Windows\System32\cfgmgr32.dll
+ 140719889252352
+ 303104
+ 140719889325904
+ File: C:\Windows\System32\cfgmgr32.dll_x000D__x000A_InternalName: cfgmgr32.dll_x000D__x000A_OriginalFilename: CFGMGR32.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Configuration Manager DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 296
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Configuration Manager DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (VERSION.dll)
+
+ VERSION.dll
+ C:\Windows\SYSTEM32\VERSION.dll
+ 140719800254464
+ 40960
+ 140719800259344
+ File: C:\Windows\SYSTEM32\VERSION.dll_x000D__x000A_InternalName: version_x000D__x000A_OriginalFilename: VERSION.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Version Checking and File Installation Libraries_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Version Checking and File Installation Libraries
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WSOCK32.dll)
+
+ WSOCK32.dll
+ C:\Windows\SYSTEM32\WSOCK32.dll
+ 140719277277184
+ 36864
+ 140719277282048
+ File: C:\Windows\SYSTEM32\WSOCK32.dll_x000D__x000A_InternalName: wsock32.dll_x000D__x000A_OriginalFilename: wsock32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Socket 32-Bit DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 36
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Socket 32-Bit DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMM.dll)
+
+ WINMM.dll
+ C:\Windows\SYSTEM32\WINMM.dll
+ 140719835054080
+ 147456
+ 140719835066368
+ File: C:\Windows\SYSTEM32\WINMM.dll_x000D__x000A_InternalName: winmm.dll_x000D__x000A_OriginalFilename: WINMM.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MCI API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MCI API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+
+ windows.storage.dll
+ C:\Windows\System32\windows.storage.dll
+ 140719897444352
+ 7643136
+ 140719899226624
+ File: C:\Windows\System32\windows.storage.dll_x000D__x000A_InternalName: Windows.Storage_x000D__x000A_OriginalFilename: Windows.Storage.dll.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft WinRT Storage API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 7464
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft WinRT Storage API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+
+ WS2_32.dll
+ C:\Windows\System32\WS2_32.dll
+ 140719954198528
+ 446464
+ 140719954286384
+ File: C:\Windows\System32\WS2_32.dll_x000D__x000A_InternalName: ws2_32.dll_x000D__x000A_OriginalFilename: ws2_32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Socket 2.0 32-Bit DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 436
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Socket 2.0 32-Bit DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (advapi32.dll)
+
+ advapi32.dll
+ C:\Windows\System32\advapi32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\advapi32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (profapi.dll)
+
+ profapi.dll
+ C:\Windows\System32\profapi.dll
+ 140719888531456
+ 147456
+ 140719888564400
+ File: C:\Windows\System32\profapi.dll_x000D__x000A_InternalName: PROFAPI.DLL_x000D__x000A_OriginalFilename: PROFAPI.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: User Profile Basic API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ User Profile Basic API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (powrprof.dll)
+
+ powrprof.dll
+ C:\Windows\System32\powrprof.dll
+ 140719888007168
+ 380928
+ 140719888020992
+ File: C:\Windows\System32\powrprof.dll_x000D__x000A_InternalName: POWRPROF_x000D__x000A_OriginalFilename: POWRPROF.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Power Profile Helper DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 372
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Power Profile Helper DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+
+ cryptsp.dll
+ C:\Windows\System32\cryptsp.dll
+ 140719889121280
+ 94208
+ 140719889138512
+ File: C:\Windows\System32\cryptsp.dll_x000D__x000A_InternalName: cryptsp.dll_x000D__x000A_OriginalFilename: cryptsp.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Cryptographic Service Provider API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 92
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Cryptographic Service Provider API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ole32.dll)
+
+ ole32.dll
+ C:\Windows\System32\ole32.dll
+ 140719907864576
+ 1396736
+ 140719908019504
+ File: C:\Windows\System32\ole32.dll_x000D__x000A_InternalName: OLE32.DLL_x000D__x000A_OriginalFilename: OLE32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft OLE for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1364
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft OLE for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+
+ OLEAUT32.dll
+ C:\Windows\System32\OLEAUT32.dll
+ 140719946465280
+ 802816
+ 140719946574624
+ File: C:\Windows\System32\OLEAUT32.dll_x000D__x000A_InternalName: OLEAUT32.DLL_x000D__x000A_OriginalFilename: OLEAUT32.DLL_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OLEAUT32.DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 784
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ OLEAUT32.DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+
+ WINMMBASE.dll
+ C:\Windows\SYSTEM32\WINMMBASE.dll
+ 140719834857472
+ 184320
+ 140719834890448
+ File: C:\Windows\SYSTEM32\WINMMBASE.dll_x000D__x000A_InternalName: winmmbase.dll_x000D__x000A_OriginalFilename: WINMMbase.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base Multimedia Extension API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 180
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base Multimedia Extension API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (COMCTL32.dll)
+
+ COMCTL32.dll
+ C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.17763.678_none_05b74150071d72bf\COMCTL32.dll
+ 140719697690624
+ 2592768
+ 140719698120976
+ File: C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.17763.678_none_05b74150071d72bf\COMCTL32.dll_x000D__x000A_InternalName: COMCTL32_x000D__x000A_OriginalFilename: COMCTL32.DLL.MUI_x000D__x000A_FileVersion: 5.82 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Common Controls Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2532
+ Microsoft Corporation
+ 5.82 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Common Controls Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+
+ uxtheme.dll
+ C:\Windows\system32\uxtheme.dll
+ 140719860547584
+ 638976
+ 140719860712368
+ File: C:\Windows\system32\uxtheme.dll_x000D__x000A_InternalName: UxTheme.dll_x000D__x000A_OriginalFilename: UxTheme.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft UxTheme Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 624
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft UxTheme Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+
+ MSCTF.dll
+ C:\Windows\System32\MSCTF.dll
+ 140719947317248
+ 1486848
+ 140719947597184
+ File: C:\Windows\System32\MSCTF.dll_x000D__x000A_InternalName: MSCTF_x000D__x000A_OriginalFilename: MSCTF.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MSCTF Server DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1452
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MSCTF Server DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+
+ dwmapi.dll
+ C:\Windows\system32\dwmapi.dll
+ 140719861399552
+ 188416
+ 140719861412880
+ File: C:\Windows\system32\dwmapi.dll_x000D__x000A_InternalName: dwmapi.dll_x000D__x000A_OriginalFilename: dwmapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Desktop Window Manager API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft Desktop Window Manager API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+
+ CRYPT32.dll
+ C:\Windows\System32\CRYPT32.dll
+ 140719891480576
+ 1945600
+ 140719891804832
+ File: C:\Windows\System32\CRYPT32.dll_x000D__x000A_InternalName: CRYPT32.DLL_x000D__x000A_OriginalFilename: CRYPT32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto API32_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1900
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto API32
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+
+ MSASN1.dll
+ C:\Windows\System32\MSASN1.dll
+ 140719887876096
+ 73728
+ 140719887898576
+ File: C:\Windows\System32\MSASN1.dll_x000D__x000A_InternalName: msasn1.dll_x000D__x000A_OriginalFilename: msasn1.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ASN.1 Runtime APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 72
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ASN.1 Runtime APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ 41
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 10600
+ 10600
+ 2682880
+ 2682880
+ 228648
+ 228648
+ 2781184
+ 2781184
+ 9916416
+ 9916416
+ 4475940864
+ 180973568
+ true
+
+
+ Normal
+ 32
+
+ 2682880
+ 2682880
+ AutoHotkey
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 18992
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.078125S
+ 2019-08-15T19:34:55.1958197+03:00
+ PT0.109375S
+ PT0.03125S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 15
+ 15
+ 19020
+ true
+ TimeCritical
+ 140719955419728
+ Wait
+ UserRequest
+ PT2.015625S
+ 2019-08-15T19:34:55.304947+03:00
+ PT2.203125S
+ PT0.1875S
+
+
+
+
+
+
+ 2
+
+
+
+
+
+
+
+ false
+
+
+ 144
+ 4454965248
+ 159997952
+ false
+ 2682880
+ 2682880
+
+
+
+ System.Diagnostics.ProcessModule (AutoHotkey.exe)
+
+ AutoHotkey.exe
+ C:\Program Files\AutoHotkey\AutoHotkey.exe
+ 5368709120
+ 1236992
+ 5369433848
+ File: C:\Program Files\AutoHotkey\AutoHotkey.exe_x000D__x000A_InternalName: AutoHotkey_x000D__x000A_OriginalFilename: AutoHotkey.exe_x000D__x000A_FileVersion: 1.1.30.00_x000D__x000A_FileDescription: AutoHotkey Unicode 64-bit_x000D__x000A_Product: AutoHotkey_x000D__x000A_ProductVersion: 1.1.30.00_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1208
+
+ 1.1.30.00
+ 1.1.30.00
+ AutoHotkey Unicode 64-bit
+ AutoHotkey
+
+
+ PT2.1875S
+ PT2.40625S
+ PT0.21875S
+
+
+ 0
+
+
+ true
+
+
+
+
+ AutoHotkey
+ 1
+ 144
+ 4454965248
+ 2682880
+ 2682880
+ 10600
+ C:\Program Files\AutoHotkey\AutoHotkey.exe
+
+
+ System.Diagnostics.Process (explorer)
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ 6820
+ 8
+ false
+ 2019-08-15T19:34:27.5692786+03:00
+ 9120
+ .
+ 1413120
+ 204800
+
+
+
+ System.Diagnostics.ProcessModule (Explorer.EXE)
+ System.Diagnostics.ProcessModule (ntdll.dll)
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+ System.Diagnostics.ProcessModule (combase.dll)
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+ System.Diagnostics.ProcessModule (shcore.dll)
+ System.Diagnostics.ProcessModule (advapi32.dll)
+ System.Diagnostics.ProcessModule (sechost.dll)
+ System.Diagnostics.ProcessModule (powrprof.dll)
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+ System.Diagnostics.ProcessModule (GDI32.dll)
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+ System.Diagnostics.ProcessModule (USER32.dll)
+ System.Diagnostics.ProcessModule (win32u.dll)
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+ System.Diagnostics.ProcessModule (profapi.dll)
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+ System.Diagnostics.ProcessModule (dxgi.dll)
+ System.Diagnostics.ProcessModule (winmm.dll)
+ System.Diagnostics.ProcessModule (WININET.dll)
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+ System.Diagnostics.ProcessModule (TWINAPI.dll)
+ System.Diagnostics.ProcessModule (UxTheme.dll)
+ System.Diagnostics.ProcessModule (settingsynccore.dll)
+ System.Diagnostics.ProcessModule (SspiCli.dll)
+ System.Diagnostics.ProcessModule (USERENV.dll)
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+ System.Diagnostics.ProcessModule (WTSAPI32.dll)
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+ System.Diagnostics.ProcessModule (NInput.dll)
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+ System.Diagnostics.ProcessModule (ole32.dll)
+ System.Diagnostics.ProcessModule (comctl32.dll)
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+ System.Diagnostics.ProcessModule (appresolver.dll)
+ System.Diagnostics.ProcessModule (Bcp47Langs.dll)
+ System.Diagnostics.ProcessModule (SLC.dll)
+ System.Diagnostics.ProcessModule (sppc.dll)
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (StartTileData.dll)
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+ System.Diagnostics.ProcessModule (IDStore.dll)
+ System.Diagnostics.ProcessModule (SAMLIB.dll)
+ System.Diagnostics.ProcessModule (Windows.StateRepositoryPS.dll)
+ System.Diagnostics.ProcessModule (Windows.ApplicationModel.dll)
+ System.Diagnostics.ProcessModule (AppXDeploymentClient.dll)
+ System.Diagnostics.ProcessModule (StateRepository.Core.dll)
+ System.Diagnostics.ProcessModule (policymanager.dll)
+ System.Diagnostics.ProcessModule (msvcp110_win.dll)
+ System.Diagnostics.ProcessModule (Windows.StateRepositoryClient.dll)
+ System.Diagnostics.ProcessModule (WinTypes.dll)
+ System.Diagnostics.ProcessModule (winsta.dll)
+ System.Diagnostics.ProcessModule (SndVolSSO.DLL)
+ System.Diagnostics.ProcessModule (MMDevAPI.DLL)
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+ System.Diagnostics.ProcessModule (OLEACC.dll)
+ System.Diagnostics.ProcessModule (windowscodecs.dll)
+ System.Diagnostics.ProcessModule (dataexchange.dll)
+ System.Diagnostics.ProcessModule (dcomp.dll)
+ System.Diagnostics.ProcessModule (d3d11.dll)
+ System.Diagnostics.ProcessModule (apphelp.dll)
+ System.Diagnostics.ProcessModule (explorerframe.dll)
+ System.Diagnostics.ProcessModule (TileDataRepository.dll)
+ System.Diagnostics.ProcessModule (Windows.StateRepository.dll)
+ System.Diagnostics.ProcessModule (MrmCoreR.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+ System.Diagnostics.ProcessModule (InputHost.dll)
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+ System.Diagnostics.ProcessModule (d2d1.dll)
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+ System.Diagnostics.ProcessModule (languageoverlayutil.dll)
+ System.Diagnostics.ProcessModule (bcp47mrm.dll)
+ System.Diagnostics.ProcessModule (coml2.dll)
+ System.Diagnostics.ProcessModule (iertutil.dll)
+ System.Diagnostics.ProcessModule (thumbcache.dll)
+ System.Diagnostics.ProcessModule (twinui.pcshell.dll)
+ System.Diagnostics.ProcessModule (DWrite.dll)
+ System.Diagnostics.ProcessModule (wincorlib.DLL)
+ System.Diagnostics.ProcessModule (cdp.dll)
+ System.Diagnostics.ProcessModule (dsreg.dll)
+ System.Diagnostics.ProcessModule (edputil.dll)
+ System.Diagnostics.ProcessModule (windows.immersiveshell.serviceprovider.dll)
+ System.Diagnostics.ProcessModule (peopleband.dll)
+ System.Diagnostics.ProcessModule (WLDP.DLL)
+ System.Diagnostics.ProcessModule (WINTRUST.dll)
+ System.Diagnostics.ProcessModule (CLDAPI.dll)
+ System.Diagnostics.ProcessModule (FLTLIB.DLL)
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (twinui.appcore.dll)
+ System.Diagnostics.ProcessModule (twinui.dll)
+ System.Diagnostics.ProcessModule (pdh.dll)
+ System.Diagnostics.ProcessModule (PhotoMetadataHandler.dll)
+ System.Diagnostics.ProcessModule (ApplicationFrame.dll)
+ System.Diagnostics.ProcessModule (ntshrui.dll)
+ System.Diagnostics.ProcessModule (srvcli.dll)
+ System.Diagnostics.ProcessModule (cscapi.dll)
+ System.Diagnostics.ProcessModule (netutils.dll)
+ System.Diagnostics.ProcessModule (HolographicExtensions.dll)
+ System.Diagnostics.ProcessModule (ResourcePolicyClient.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.Immersive.dll)
+ System.Diagnostics.ProcessModule (AboveLockAppHost.dll)
+ System.Diagnostics.ProcessModule (Secur32.dll)
+ System.Diagnostics.ProcessModule (npsm.dll)
+ System.Diagnostics.ProcessModule (Windows.Shell.BlueLightReduction.dll)
+ System.Diagnostics.ProcessModule (tishell64.dll)
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+ System.Diagnostics.ProcessModule (dbghelp.dll)
+ System.Diagnostics.ProcessModule (MPR.dll)
+ System.Diagnostics.ProcessModule (dbgcore.DLL)
+ System.Diagnostics.ProcessModule (IconCodecService.dll)
+ System.Diagnostics.ProcessModule (Windows.Internal.Signals.dll)
+ System.Diagnostics.ProcessModule (mscms.dll)
+ System.Diagnostics.ProcessModule (ColorAdapterClient.dll)
+ System.Diagnostics.ProcessModule (Windows.CloudStore.dll)
+ System.Diagnostics.ProcessModule (urlmon.dll)
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+ System.Diagnostics.ProcessModule (usermgrcli.dll)
+ System.Diagnostics.ProcessModule (Windows.CloudStore.Schema.Shell.dll)
+ System.Diagnostics.ProcessModule (shfolder.DLL)
+ System.Diagnostics.ProcessModule (FileSyncShell64.dll)
+ System.Diagnostics.ProcessModule (PSAPI.DLL)
+ System.Diagnostics.ProcessModule (VERSION.dll)
+ System.Diagnostics.ProcessModule (TaskFlowDataEngine.dll)
+ System.Diagnostics.ProcessModule (StructuredQuery.dll)
+ System.Diagnostics.ProcessModule (EhStorShell.dll)
+ System.Diagnostics.ProcessModule (SETUPAPI.dll)
+ System.Diagnostics.ProcessModule (cscui.dll)
+ System.Diagnostics.ProcessModule (Windows.Data.Activities.dll)
+ System.Diagnostics.ProcessModule (Windows.Security.Authentication.Web.Core.dll)
+ System.Diagnostics.ProcessModule (NotificationControllerPS.dll)
+ System.Diagnostics.ProcessModule (vaultcli.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Enumeration.dll)
+ System.Diagnostics.ProcessModule (NaturalLanguage6.dll)
+ System.Diagnostics.ProcessModule (NLSData000d.dll)
+ System.Diagnostics.ProcessModule (MLS7.dll)
+ System.Diagnostics.ProcessModule (MSWB7.dll)
+ System.Diagnostics.ProcessModule (DevDispItemProvider.dll)
+ System.Diagnostics.ProcessModule (ActXPrxy.dll)
+ System.Diagnostics.ProcessModule (wlidprov.dll)
+ System.Diagnostics.ProcessModule (samcli.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.Connectivity.dll)
+ System.Diagnostics.ProcessModule (lockcontroller.dll)
+ System.Diagnostics.ProcessModule (nvldumdx.dll)
+ System.Diagnostics.ProcessModule (imagehlp.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.Core.TextInput.dll)
+ System.Diagnostics.ProcessModule (sxs.dll)
+ System.Diagnostics.ProcessModule (familysafetyext.dll)
+ System.Diagnostics.ProcessModule (rsaenh.dll)
+ System.Diagnostics.ProcessModule (nvwgf2umx_cfg.dll)
+ System.Diagnostics.ProcessModule (ShellCommonCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (UIAnimation.dll)
+ System.Diagnostics.ProcessModule (cryptngc.dll)
+ System.Diagnostics.ProcessModule (ncrypt.dll)
+ System.Diagnostics.ProcessModule (NTASN1.dll)
+ System.Diagnostics.ProcessModule (cflapi.dll)
+ System.Diagnostics.ProcessModule (npmproxy.dll)
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+ System.Diagnostics.ProcessModule (NSI.dll)
+ System.Diagnostics.ProcessModule (dusmapi.dll)
+ System.Diagnostics.ProcessModule (gdiplus.dll)
+ System.Diagnostics.ProcessModule (MFPlat.DLL)
+ System.Diagnostics.ProcessModule (RTWorkQ.DLL)
+ System.Diagnostics.ProcessModule (settingsyncpolicy.dll)
+ System.Diagnostics.ProcessModule (stobject.dll)
+ System.Diagnostics.ProcessModule (WMICLNT.dll)
+ System.Diagnostics.ProcessModule (BatMeter.dll)
+ System.Diagnostics.ProcessModule (OneDriveSettingSyncProvider.dll)
+ System.Diagnostics.ProcessModule (InputSwitch.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.Shell.dll)
+ System.Diagnostics.ProcessModule (es.dll)
+ System.Diagnostics.ProcessModule (Actioncenter.dll)
+ System.Diagnostics.ProcessModule (wevtapi.dll)
+ System.Diagnostics.ProcessModule (DeviceSetupManagerAPI.dll)
+ System.Diagnostics.ProcessModule (atlthunk.dll)
+ System.Diagnostics.ProcessModule (dxp.dll)
+ System.Diagnostics.ProcessModule (SHDOCVW.dll)
+ System.Diagnostics.ProcessModule (Syncreg.dll)
+ System.Diagnostics.ProcessModule (AUDIOSES.DLL)
+ System.Diagnostics.ProcessModule (AVRT.dll)
+ System.Diagnostics.ProcessModule (CompPkgSup.DLL)
+ System.Diagnostics.ProcessModule (pnidui.dll)
+ System.Diagnostics.ProcessModule (MobileNetworking.dll)
+ System.Diagnostics.ProcessModule (wpdshserviceobj.dll)
+ System.Diagnostics.ProcessModule (netprofm.dll)
+ System.Diagnostics.ProcessModule (PortableDeviceTypes.dll)
+ System.Diagnostics.ProcessModule (NetworkUXBroker.dll)
+ System.Diagnostics.ProcessModule (PortableDeviceApi.dll)
+ System.Diagnostics.ProcessModule (EthernetMediaManager.dll)
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+ System.Diagnostics.ProcessModule (wlanapi.dll)
+ System.Diagnostics.ProcessModule (SettingMonitor.dll)
+ System.Diagnostics.ProcessModule (bthprops.cpl)
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+ System.Diagnostics.ProcessModule (PackageStateRoaming.dll)
+ System.Diagnostics.ProcessModule (ieframe.dll)
+ System.Diagnostics.ProcessModule (NETAPI32.dll)
+ System.Diagnostics.ProcessModule (WKSCLI.DLL)
+ System.Diagnostics.ProcessModule (msIso.dll)
+ System.Diagnostics.ProcessModule (Windows.Internal.Shell.Broker.dll)
+ System.Diagnostics.ProcessModule (LINKINFO.dll)
+ System.Diagnostics.ProcessModule (cscobj.dll)
+ System.Diagnostics.ProcessModule (wpnclient.dll)
+ System.Diagnostics.ProcessModule (srchadmin.dll)
+ System.Diagnostics.ProcessModule (msxml6.dll)
+ System.Diagnostics.ProcessModule (windows.storage.search.dll)
+ System.Diagnostics.ProcessModule (SyncCenter.dll)
+ System.Diagnostics.ProcessModule (imapi2.dll)
+ System.Diagnostics.ProcessModule (mssprxy.dll)
+ System.Diagnostics.ProcessModule (dlnashext.dll)
+ System.Diagnostics.ProcessModule (msi.dll)
+ System.Diagnostics.ProcessModule (wdmaud.drv)
+ System.Diagnostics.ProcessModule (ksuser.dll)
+ System.Diagnostics.ProcessModule (msacm32.drv)
+ System.Diagnostics.ProcessModule (MSACM32.dll)
+ System.Diagnostics.ProcessModule (midimap.dll)
+ System.Diagnostics.ProcessModule (pcacli.dll)
+ System.Diagnostics.ProcessModule (sfc_os.dll)
+ System.Diagnostics.ProcessModule (MLANG.dll)
+ System.Diagnostics.ProcessModule (daxexec.dll)
+ System.Diagnostics.ProcessModule (container.dll)
+ System.Diagnostics.ProcessModule (licensemanagerapi.dll)
+ System.Diagnostics.ProcessModule (capauthz.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.Xaml.dll)
+ System.Diagnostics.ProcessModule (WindowsInternal.ComposableShell.Experiences.Switcher.dll)
+ System.Diagnostics.ProcessModule (TileControl.dll)
+ System.Diagnostics.ProcessModule (TaskFlowUI.dll)
+ System.Diagnostics.ProcessModule (UiaManager.dll)
+ System.Diagnostics.ProcessModule (usermgrproxy.dll)
+ System.Diagnostics.ProcessModule (NPSMDesktopProvider.dll)
+ System.Diagnostics.ProcessModule (BthAvctpSvc.dll)
+ System.Diagnostics.ProcessModule (BthTelemetry.dll)
+ System.Diagnostics.ProcessModule (netshell.dll)
+ System.Diagnostics.ProcessModule (nlaapi.dll)
+ System.Diagnostics.ProcessModule (DUI70.dll)
+ System.Diagnostics.ProcessModule (DUser.dll)
+ System.Diagnostics.ProcessModule (RASDLG.dll)
+ System.Diagnostics.ProcessModule (rtutils.dll)
+ System.Diagnostics.ProcessModule (RASAPI32.dll)
+ System.Diagnostics.ProcessModule (MPRAPI.dll)
+ System.Diagnostics.ProcessModule (rasman.dll)
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+ System.Diagnostics.ProcessModule (uiautomationcore.dll)
+ System.Diagnostics.ProcessModule (hnetcfg.dll)
+ System.Diagnostics.ProcessModule (ATL.DLL)
+ System.Diagnostics.ProcessModule (GPAPI.dll)
+ System.Diagnostics.ProcessModule (rasadhlp.dll)
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+ System.Diagnostics.ProcessModule (shutdownux.dll)
+ System.Diagnostics.ProcessModule (WINBRAND.dll)
+ System.Diagnostics.ProcessModule (D3D10Warp.dll)
+ System.Diagnostics.ProcessModule (wscinterop.dll)
+ System.Diagnostics.ProcessModule (WSCAPI.dll)
+ System.Diagnostics.ProcessModule (wscui.cpl)
+ System.Diagnostics.ProcessModule (werconcpl.dll)
+ System.Diagnostics.ProcessModule (wer.dll)
+ System.Diagnostics.ProcessModule (framedynos.dll)
+ System.Diagnostics.ProcessModule (hcproviders.dll)
+ System.Diagnostics.ProcessModule (ieproxy.dll)
+ System.Diagnostics.ProcessModule (wpnapps.dll)
+ System.Diagnostics.ProcessModule (XmlLite.dll)
+ System.Diagnostics.ProcessModule (twext.dll)
+ System.Diagnostics.ProcessModule (WorkfoldersShell.dll)
+ System.Diagnostics.ProcessModule (rarext.dll)
+ System.Diagnostics.ProcessModule (MSIMG32.dll)
+ System.Diagnostics.ProcessModule (SnagitShellExt64.dll)
+ System.Diagnostics.ProcessModule (WINSPOOL.DRV)
+ System.Diagnostics.ProcessModule (SnagItShellExtRes.dll)
+ System.Diagnostics.ProcessModule (shellext.dll)
+ System.Diagnostics.ProcessModule (mpclient.dll)
+ System.Diagnostics.ProcessModule (BCShellEx64.dll)
+ System.Diagnostics.ProcessModule (BabylonDocTranslation64PI.dll)
+ System.Diagnostics.ProcessModule (NppShell_06.dll)
+ System.Diagnostics.ProcessModule (MSVCR90.dll)
+ System.Diagnostics.ProcessModule (7-zip.dll)
+ System.Diagnostics.ProcessModule (nv3dappshext.dll)
+ System.Diagnostics.ProcessModule (acppage.dll)
+ System.Diagnostics.ProcessModule (AEPIC.dll)
+ System.Diagnostics.ProcessModule (sfc.dll)
+ System.Diagnostics.ProcessModule (smartscreenps.dll)
+ System.Diagnostics.ProcessModule (drprov.dll)
+ System.Diagnostics.ProcessModule (ntlanman.dll)
+ System.Diagnostics.ProcessModule (davclnt.dll)
+ System.Diagnostics.ProcessModule (DAVHLPR.dll)
+ System.Diagnostics.ProcessModule (storageusage.dll)
+ System.Diagnostics.ProcessModule (directmanipulation.dll)
+ System.Diagnostics.ProcessModule (HID.DLL)
+ System.Diagnostics.ProcessModule (Windows.Web.dll)
+ System.Diagnostics.ProcessModule (UserDataTimeUtil.dll)
+ System.Diagnostics.ProcessModule (tabbtn.dll)
+ System.Diagnostics.ProcessModule (TabBtnEx.dll)
+ System.Diagnostics.ProcessModule (CHARTV.dll)
+ System.Diagnostics.ProcessModule (NetworkExplorer.dll)
+ System.Diagnostics.ProcessModule (tiptsf.dll)
+ System.Diagnostics.ProcessModule (UIRibbon.dll)
+ System.Diagnostics.ProcessModule (rstrtmgr.dll)
+ System.Diagnostics.ProcessModule (nlmproxy.dll)
+ System.Diagnostics.ProcessModule (provsvc.dll)
+ System.Diagnostics.ProcessModule (castingshellext.dll)
+ System.Diagnostics.ProcessModule (windowscodecsext.dll)
+ System.Diagnostics.ProcessModule (TOKENBINDING.dll)
+ System.Diagnostics.ProcessModule (ondemandconnroutehelper.dll)
+ System.Diagnostics.ProcessModule (mswsock.dll)
+ System.Diagnostics.ProcessModule (WINNSI.DLL)
+ System.Diagnostics.ProcessModule (fwpuclnt.dll)
+ System.Diagnostics.ProcessModule (schannel.DLL)
+ System.Diagnostics.ProcessModule (mskeyprotect.dll)
+ System.Diagnostics.ProcessModule (ncryptsslp.dll)
+ System.Diagnostics.ProcessModule (cryptnet.dll)
+ System.Diagnostics.ProcessModule (VirtDisk.dll)
+ System.Diagnostics.ProcessModule (profext.dll)
+ System.Diagnostics.ProcessModule (comsvcs.dll)
+ System.Diagnostics.ProcessModule (AppContracts.dll)
+ System.Diagnostics.ProcessModule (OnDemandBrokerClient.dll)
+ System.Diagnostics.ProcessModule (themeui.dll)
+ System.Diagnostics.ProcessModule (webio.dll)
+ System.Diagnostics.ProcessModule (MsftEdit.dll)
+ System.Diagnostics.ProcessModule (nvshext.dll)
+ System.Diagnostics.ProcessModule (atiacm64.dll)
+ System.Diagnostics.ProcessModule (zipfldr.dll)
+ System.Diagnostics.ProcessModule (PlayToDevice.dll)
+ System.Diagnostics.ProcessModule (cdprt.dll)
+ System.Diagnostics.ProcessModule (EhStorAPI.dll)
+ System.Diagnostics.ProcessModule (Windows.Globalization.dll)
+
+
+ 232504
+ 232504
+ 280805376
+ 280805376
+ 1898208
+ 1898208
+ 291442688
+ 291442688
+ 569737216
+ 569737216
+ 2208799674368
+ 1186484224
+ true
+ Normal
+ 280805376
+ 280805376
+ explorer
+ 65535
+ 1
+
+
+
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+
+
+ 4934
+ 2204607348736
+ 1289125888
+ false
+ 281395200
+ 281395200
+
+ System.Diagnostics.ProcessModule (Explorer.EXE)
+ PT12M36.90625S
+ PT17M57.3125S
+ PT5M20.40625S
+ 65808
+
+ true
+
+
+
+
+ explorer
+ 1
+ 4934
+ 2204607348736
+ 281395200
+ 280805376
+ 232504
+ C:\Windows\Explorer.EXE
+
+ Microsoft Corporation
+ 1077.3125
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Explorer
+ Microsoft® Windows® Operating System
+ Process
+
+
+
+ 2.40625
+ 1.1.30.00
+ 1.1.30.00
+ AutoHotkey Unicode 64-bit
+ AutoHotkey
+ Process
+
+
+
+
+ System.Diagnostics.Process (BCClipboard)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 1932
+
+ 8
+ false
+ 2019-08-15T19:34:51.6508555+03:00
+ 16564
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (BCClipboard.exe)
+
+ BCClipboard.exe
+ C:\Program Files\Beyond Compare 4\BCClipboard.exe
+ 4194304
+ 1392640
+ 5104868
+ File: C:\Program Files\Beyond Compare 4\BCClipboard.exe_x000D__x000A_InternalName: _x000D__x000A_OriginalFilename: BCClipboard.exe_x000D__x000A_FileVersion: 4.2.6.23150_x000D__x000A_FileDescription: Beyond Compare Clipboard Compare_x000D__x000A_Product: Beyond Compare_x000D__x000A_ProductVersion: 4.2_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1360
+ Scooter Software
+ 4.2.6.23150
+ 4.2
+ Beyond Compare Clipboard Compare
+ Beyond Compare
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (wow64.dll)
+
+ wow64.dll
+ C:\Windows\System32\wow64.dll
+ 140719916449792
+ 339968
+ 140719916544144
+ File: C:\Windows\System32\wow64.dll_x000D__x000A_InternalName: wow64_x000D__x000A_OriginalFilename: wow64.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32 Emulation on NT64_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 332
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32 Emulation on NT64
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (wow64win.dll)
+
+ wow64win.dll
+ C:\Windows\System32\wow64win.dll
+ 140719949479936
+ 507904
+ 140719949541312
+ File: C:\Windows\System32\wow64win.dll_x000D__x000A_InternalName: wow64lg2_x000D__x000A_OriginalFilename: wow64lg2.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Wow64 Console and Win32 API Logging_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 496
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Wow64 Console and Win32 API Logging
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (wow64cpu.dll)
+
+ wow64cpu.dll
+ C:\Windows\System32\wow64cpu.dll
+ 1999175680
+ 36864
+ 1999180448
+ File: C:\Windows\System32\wow64cpu.dll_x000D__x000A_InternalName: wow64cpu_x000D__x000A_OriginalFilename: wow64cpu.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AMD64 Wow64 CPU _x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 36
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AMD64 Wow64 CPU
+ Microsoft® Windows® Operating System
+
+
+
+
+ 5
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 12840
+ 12840
+ 4497408
+ 4497408
+ 192688
+ 192688
+ 4579328
+ 4579328
+ 9891840
+ 9891840
+ 121106432
+ 121106432
+ true
+
+
+ Normal
+ 32
+
+ 4497408
+ 4497408
+ BCClipboard
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 14732
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.59375S
+ 2019-08-15T19:34:51.6508569+03:00
+ PT0.6875S
+ PT0.09375S
+
+
+
+
+
+
+ 1
+
+
+
+
+
+
+ false
+
+
+ 181
+ 100130816
+ 100130816
+ false
+ 4435968
+ 4435968
+
+
+
+ System.Diagnostics.ProcessModule (BCClipboard.exe)
+
+ BCClipboard.exe
+ C:\Program Files\Beyond Compare 4\BCClipboard.exe
+ 4194304
+ 1392640
+ 5104868
+ File: C:\Program Files\Beyond Compare 4\BCClipboard.exe_x000D__x000A_InternalName: _x000D__x000A_OriginalFilename: BCClipboard.exe_x000D__x000A_FileVersion: 4.2.6.23150_x000D__x000A_FileDescription: Beyond Compare Clipboard Compare_x000D__x000A_Product: Beyond Compare_x000D__x000A_ProductVersion: 4.2_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1360
+ Scooter Software
+ 4.2.6.23150
+ 4.2
+ Beyond Compare Clipboard Compare
+ Beyond Compare
+
+
+ PT0.625S
+ PT0.71875S
+ PT0.09375S
+
+
+ 0
+
+
+ true
+
+
+
+
+ BCClipboard
+ 1
+ 181
+ 100130816
+ 4435968
+ 4497408
+ 12840
+ C:\Program Files\Beyond Compare 4\BCClipboard.exe
+
+
+ System.Diagnostics.Process (explorer)
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ 3692
+ 8
+ false
+ 2019-08-15T19:34:27.5692786+03:00
+ 9120
+ .
+ 1413120
+ 204800
+
+
+
+ System.Diagnostics.ProcessModule (Explorer.EXE)
+ System.Diagnostics.ProcessModule (ntdll.dll)
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+ System.Diagnostics.ProcessModule (combase.dll)
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+ System.Diagnostics.ProcessModule (shcore.dll)
+ System.Diagnostics.ProcessModule (advapi32.dll)
+ System.Diagnostics.ProcessModule (sechost.dll)
+ System.Diagnostics.ProcessModule (powrprof.dll)
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+ System.Diagnostics.ProcessModule (GDI32.dll)
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+ System.Diagnostics.ProcessModule (USER32.dll)
+ System.Diagnostics.ProcessModule (win32u.dll)
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+ System.Diagnostics.ProcessModule (profapi.dll)
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+ System.Diagnostics.ProcessModule (dxgi.dll)
+ System.Diagnostics.ProcessModule (winmm.dll)
+ System.Diagnostics.ProcessModule (WININET.dll)
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+ System.Diagnostics.ProcessModule (TWINAPI.dll)
+ System.Diagnostics.ProcessModule (UxTheme.dll)
+ System.Diagnostics.ProcessModule (settingsynccore.dll)
+ System.Diagnostics.ProcessModule (SspiCli.dll)
+ System.Diagnostics.ProcessModule (USERENV.dll)
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+ System.Diagnostics.ProcessModule (WTSAPI32.dll)
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+ System.Diagnostics.ProcessModule (NInput.dll)
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+ System.Diagnostics.ProcessModule (ole32.dll)
+ System.Diagnostics.ProcessModule (comctl32.dll)
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+ System.Diagnostics.ProcessModule (appresolver.dll)
+ System.Diagnostics.ProcessModule (Bcp47Langs.dll)
+ System.Diagnostics.ProcessModule (SLC.dll)
+ System.Diagnostics.ProcessModule (sppc.dll)
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (StartTileData.dll)
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+ System.Diagnostics.ProcessModule (IDStore.dll)
+ System.Diagnostics.ProcessModule (SAMLIB.dll)
+ System.Diagnostics.ProcessModule (Windows.StateRepositoryPS.dll)
+ System.Diagnostics.ProcessModule (Windows.ApplicationModel.dll)
+ System.Diagnostics.ProcessModule (AppXDeploymentClient.dll)
+ System.Diagnostics.ProcessModule (StateRepository.Core.dll)
+ System.Diagnostics.ProcessModule (policymanager.dll)
+ System.Diagnostics.ProcessModule (msvcp110_win.dll)
+ System.Diagnostics.ProcessModule (Windows.StateRepositoryClient.dll)
+ System.Diagnostics.ProcessModule (WinTypes.dll)
+ System.Diagnostics.ProcessModule (winsta.dll)
+ System.Diagnostics.ProcessModule (SndVolSSO.DLL)
+ System.Diagnostics.ProcessModule (MMDevAPI.DLL)
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+ System.Diagnostics.ProcessModule (OLEACC.dll)
+ System.Diagnostics.ProcessModule (windowscodecs.dll)
+ System.Diagnostics.ProcessModule (dataexchange.dll)
+ System.Diagnostics.ProcessModule (dcomp.dll)
+ System.Diagnostics.ProcessModule (d3d11.dll)
+ System.Diagnostics.ProcessModule (apphelp.dll)
+ System.Diagnostics.ProcessModule (explorerframe.dll)
+ System.Diagnostics.ProcessModule (TileDataRepository.dll)
+ System.Diagnostics.ProcessModule (Windows.StateRepository.dll)
+ System.Diagnostics.ProcessModule (MrmCoreR.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+ System.Diagnostics.ProcessModule (InputHost.dll)
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+ System.Diagnostics.ProcessModule (d2d1.dll)
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+ System.Diagnostics.ProcessModule (languageoverlayutil.dll)
+ System.Diagnostics.ProcessModule (bcp47mrm.dll)
+ System.Diagnostics.ProcessModule (coml2.dll)
+ System.Diagnostics.ProcessModule (iertutil.dll)
+ System.Diagnostics.ProcessModule (thumbcache.dll)
+ System.Diagnostics.ProcessModule (twinui.pcshell.dll)
+ System.Diagnostics.ProcessModule (DWrite.dll)
+ System.Diagnostics.ProcessModule (wincorlib.DLL)
+ System.Diagnostics.ProcessModule (cdp.dll)
+ System.Diagnostics.ProcessModule (dsreg.dll)
+ System.Diagnostics.ProcessModule (edputil.dll)
+ System.Diagnostics.ProcessModule (windows.immersiveshell.serviceprovider.dll)
+ System.Diagnostics.ProcessModule (peopleband.dll)
+ System.Diagnostics.ProcessModule (WLDP.DLL)
+ System.Diagnostics.ProcessModule (WINTRUST.dll)
+ System.Diagnostics.ProcessModule (CLDAPI.dll)
+ System.Diagnostics.ProcessModule (FLTLIB.DLL)
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (twinui.appcore.dll)
+ System.Diagnostics.ProcessModule (twinui.dll)
+ System.Diagnostics.ProcessModule (pdh.dll)
+ System.Diagnostics.ProcessModule (PhotoMetadataHandler.dll)
+ System.Diagnostics.ProcessModule (ApplicationFrame.dll)
+ System.Diagnostics.ProcessModule (ntshrui.dll)
+ System.Diagnostics.ProcessModule (srvcli.dll)
+ System.Diagnostics.ProcessModule (cscapi.dll)
+ System.Diagnostics.ProcessModule (netutils.dll)
+ System.Diagnostics.ProcessModule (HolographicExtensions.dll)
+ System.Diagnostics.ProcessModule (ResourcePolicyClient.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.Immersive.dll)
+ System.Diagnostics.ProcessModule (AboveLockAppHost.dll)
+ System.Diagnostics.ProcessModule (Secur32.dll)
+ System.Diagnostics.ProcessModule (npsm.dll)
+ System.Diagnostics.ProcessModule (Windows.Shell.BlueLightReduction.dll)
+ System.Diagnostics.ProcessModule (tishell64.dll)
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+ System.Diagnostics.ProcessModule (dbghelp.dll)
+ System.Diagnostics.ProcessModule (MPR.dll)
+ System.Diagnostics.ProcessModule (dbgcore.DLL)
+ System.Diagnostics.ProcessModule (IconCodecService.dll)
+ System.Diagnostics.ProcessModule (Windows.Internal.Signals.dll)
+ System.Diagnostics.ProcessModule (mscms.dll)
+ System.Diagnostics.ProcessModule (ColorAdapterClient.dll)
+ System.Diagnostics.ProcessModule (Windows.CloudStore.dll)
+ System.Diagnostics.ProcessModule (urlmon.dll)
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+ System.Diagnostics.ProcessModule (usermgrcli.dll)
+ System.Diagnostics.ProcessModule (Windows.CloudStore.Schema.Shell.dll)
+ System.Diagnostics.ProcessModule (shfolder.DLL)
+ System.Diagnostics.ProcessModule (FileSyncShell64.dll)
+ System.Diagnostics.ProcessModule (PSAPI.DLL)
+ System.Diagnostics.ProcessModule (VERSION.dll)
+ System.Diagnostics.ProcessModule (TaskFlowDataEngine.dll)
+ System.Diagnostics.ProcessModule (StructuredQuery.dll)
+ System.Diagnostics.ProcessModule (EhStorShell.dll)
+ System.Diagnostics.ProcessModule (SETUPAPI.dll)
+ System.Diagnostics.ProcessModule (cscui.dll)
+ System.Diagnostics.ProcessModule (Windows.Data.Activities.dll)
+ System.Diagnostics.ProcessModule (Windows.Security.Authentication.Web.Core.dll)
+ System.Diagnostics.ProcessModule (NotificationControllerPS.dll)
+ System.Diagnostics.ProcessModule (vaultcli.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Enumeration.dll)
+ System.Diagnostics.ProcessModule (NaturalLanguage6.dll)
+ System.Diagnostics.ProcessModule (NLSData000d.dll)
+ System.Diagnostics.ProcessModule (MLS7.dll)
+ System.Diagnostics.ProcessModule (MSWB7.dll)
+ System.Diagnostics.ProcessModule (DevDispItemProvider.dll)
+ System.Diagnostics.ProcessModule (ActXPrxy.dll)
+ System.Diagnostics.ProcessModule (wlidprov.dll)
+ System.Diagnostics.ProcessModule (samcli.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.Connectivity.dll)
+ System.Diagnostics.ProcessModule (lockcontroller.dll)
+ System.Diagnostics.ProcessModule (nvldumdx.dll)
+ System.Diagnostics.ProcessModule (imagehlp.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.Core.TextInput.dll)
+ System.Diagnostics.ProcessModule (sxs.dll)
+ System.Diagnostics.ProcessModule (familysafetyext.dll)
+ System.Diagnostics.ProcessModule (rsaenh.dll)
+ System.Diagnostics.ProcessModule (nvwgf2umx_cfg.dll)
+ System.Diagnostics.ProcessModule (ShellCommonCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (UIAnimation.dll)
+ System.Diagnostics.ProcessModule (cryptngc.dll)
+ System.Diagnostics.ProcessModule (ncrypt.dll)
+ System.Diagnostics.ProcessModule (NTASN1.dll)
+ System.Diagnostics.ProcessModule (cflapi.dll)
+ System.Diagnostics.ProcessModule (npmproxy.dll)
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+ System.Diagnostics.ProcessModule (NSI.dll)
+ System.Diagnostics.ProcessModule (dusmapi.dll)
+ System.Diagnostics.ProcessModule (gdiplus.dll)
+ System.Diagnostics.ProcessModule (MFPlat.DLL)
+ System.Diagnostics.ProcessModule (RTWorkQ.DLL)
+ System.Diagnostics.ProcessModule (settingsyncpolicy.dll)
+ System.Diagnostics.ProcessModule (stobject.dll)
+ System.Diagnostics.ProcessModule (WMICLNT.dll)
+ System.Diagnostics.ProcessModule (BatMeter.dll)
+ System.Diagnostics.ProcessModule (OneDriveSettingSyncProvider.dll)
+ System.Diagnostics.ProcessModule (InputSwitch.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.Shell.dll)
+ System.Diagnostics.ProcessModule (es.dll)
+ System.Diagnostics.ProcessModule (Actioncenter.dll)
+ System.Diagnostics.ProcessModule (wevtapi.dll)
+ System.Diagnostics.ProcessModule (DeviceSetupManagerAPI.dll)
+ System.Diagnostics.ProcessModule (atlthunk.dll)
+ System.Diagnostics.ProcessModule (dxp.dll)
+ System.Diagnostics.ProcessModule (SHDOCVW.dll)
+ System.Diagnostics.ProcessModule (Syncreg.dll)
+ System.Diagnostics.ProcessModule (AUDIOSES.DLL)
+ System.Diagnostics.ProcessModule (AVRT.dll)
+ System.Diagnostics.ProcessModule (CompPkgSup.DLL)
+ System.Diagnostics.ProcessModule (pnidui.dll)
+ System.Diagnostics.ProcessModule (MobileNetworking.dll)
+ System.Diagnostics.ProcessModule (wpdshserviceobj.dll)
+ System.Diagnostics.ProcessModule (netprofm.dll)
+ System.Diagnostics.ProcessModule (PortableDeviceTypes.dll)
+ System.Diagnostics.ProcessModule (NetworkUXBroker.dll)
+ System.Diagnostics.ProcessModule (PortableDeviceApi.dll)
+ System.Diagnostics.ProcessModule (EthernetMediaManager.dll)
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+ System.Diagnostics.ProcessModule (wlanapi.dll)
+ System.Diagnostics.ProcessModule (SettingMonitor.dll)
+ System.Diagnostics.ProcessModule (bthprops.cpl)
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+ System.Diagnostics.ProcessModule (PackageStateRoaming.dll)
+ System.Diagnostics.ProcessModule (ieframe.dll)
+ System.Diagnostics.ProcessModule (NETAPI32.dll)
+ System.Diagnostics.ProcessModule (WKSCLI.DLL)
+ System.Diagnostics.ProcessModule (msIso.dll)
+ System.Diagnostics.ProcessModule (Windows.Internal.Shell.Broker.dll)
+ System.Diagnostics.ProcessModule (LINKINFO.dll)
+ System.Diagnostics.ProcessModule (cscobj.dll)
+ System.Diagnostics.ProcessModule (wpnclient.dll)
+ System.Diagnostics.ProcessModule (srchadmin.dll)
+ System.Diagnostics.ProcessModule (msxml6.dll)
+ System.Diagnostics.ProcessModule (windows.storage.search.dll)
+ System.Diagnostics.ProcessModule (SyncCenter.dll)
+ System.Diagnostics.ProcessModule (imapi2.dll)
+ System.Diagnostics.ProcessModule (mssprxy.dll)
+ System.Diagnostics.ProcessModule (dlnashext.dll)
+ System.Diagnostics.ProcessModule (msi.dll)
+ System.Diagnostics.ProcessModule (wdmaud.drv)
+ System.Diagnostics.ProcessModule (ksuser.dll)
+ System.Diagnostics.ProcessModule (msacm32.drv)
+ System.Diagnostics.ProcessModule (MSACM32.dll)
+ System.Diagnostics.ProcessModule (midimap.dll)
+ System.Diagnostics.ProcessModule (pcacli.dll)
+ System.Diagnostics.ProcessModule (sfc_os.dll)
+ System.Diagnostics.ProcessModule (MLANG.dll)
+ System.Diagnostics.ProcessModule (daxexec.dll)
+ System.Diagnostics.ProcessModule (container.dll)
+ System.Diagnostics.ProcessModule (licensemanagerapi.dll)
+ System.Diagnostics.ProcessModule (capauthz.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.Xaml.dll)
+ System.Diagnostics.ProcessModule (WindowsInternal.ComposableShell.Experiences.Switcher.dll)
+ System.Diagnostics.ProcessModule (TileControl.dll)
+ System.Diagnostics.ProcessModule (TaskFlowUI.dll)
+ System.Diagnostics.ProcessModule (UiaManager.dll)
+ System.Diagnostics.ProcessModule (usermgrproxy.dll)
+ System.Diagnostics.ProcessModule (NPSMDesktopProvider.dll)
+ System.Diagnostics.ProcessModule (BthAvctpSvc.dll)
+ System.Diagnostics.ProcessModule (BthTelemetry.dll)
+ System.Diagnostics.ProcessModule (netshell.dll)
+ System.Diagnostics.ProcessModule (nlaapi.dll)
+ System.Diagnostics.ProcessModule (DUI70.dll)
+ System.Diagnostics.ProcessModule (DUser.dll)
+ System.Diagnostics.ProcessModule (RASDLG.dll)
+ System.Diagnostics.ProcessModule (rtutils.dll)
+ System.Diagnostics.ProcessModule (RASAPI32.dll)
+ System.Diagnostics.ProcessModule (MPRAPI.dll)
+ System.Diagnostics.ProcessModule (rasman.dll)
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+ System.Diagnostics.ProcessModule (uiautomationcore.dll)
+ System.Diagnostics.ProcessModule (hnetcfg.dll)
+ System.Diagnostics.ProcessModule (ATL.DLL)
+ System.Diagnostics.ProcessModule (GPAPI.dll)
+ System.Diagnostics.ProcessModule (rasadhlp.dll)
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+ System.Diagnostics.ProcessModule (shutdownux.dll)
+ System.Diagnostics.ProcessModule (WINBRAND.dll)
+ System.Diagnostics.ProcessModule (D3D10Warp.dll)
+ System.Diagnostics.ProcessModule (wscinterop.dll)
+ System.Diagnostics.ProcessModule (WSCAPI.dll)
+ System.Diagnostics.ProcessModule (wscui.cpl)
+ System.Diagnostics.ProcessModule (werconcpl.dll)
+ System.Diagnostics.ProcessModule (wer.dll)
+ System.Diagnostics.ProcessModule (framedynos.dll)
+ System.Diagnostics.ProcessModule (hcproviders.dll)
+ System.Diagnostics.ProcessModule (ieproxy.dll)
+ System.Diagnostics.ProcessModule (wpnapps.dll)
+ System.Diagnostics.ProcessModule (XmlLite.dll)
+ System.Diagnostics.ProcessModule (twext.dll)
+ System.Diagnostics.ProcessModule (WorkfoldersShell.dll)
+ System.Diagnostics.ProcessModule (rarext.dll)
+ System.Diagnostics.ProcessModule (MSIMG32.dll)
+ System.Diagnostics.ProcessModule (SnagitShellExt64.dll)
+ System.Diagnostics.ProcessModule (WINSPOOL.DRV)
+ System.Diagnostics.ProcessModule (SnagItShellExtRes.dll)
+ System.Diagnostics.ProcessModule (shellext.dll)
+ System.Diagnostics.ProcessModule (mpclient.dll)
+ System.Diagnostics.ProcessModule (BCShellEx64.dll)
+ System.Diagnostics.ProcessModule (BabylonDocTranslation64PI.dll)
+ System.Diagnostics.ProcessModule (NppShell_06.dll)
+ System.Diagnostics.ProcessModule (MSVCR90.dll)
+ System.Diagnostics.ProcessModule (7-zip.dll)
+ System.Diagnostics.ProcessModule (nv3dappshext.dll)
+ System.Diagnostics.ProcessModule (acppage.dll)
+ System.Diagnostics.ProcessModule (AEPIC.dll)
+ System.Diagnostics.ProcessModule (sfc.dll)
+ System.Diagnostics.ProcessModule (smartscreenps.dll)
+ System.Diagnostics.ProcessModule (drprov.dll)
+ System.Diagnostics.ProcessModule (ntlanman.dll)
+ System.Diagnostics.ProcessModule (davclnt.dll)
+ System.Diagnostics.ProcessModule (DAVHLPR.dll)
+ System.Diagnostics.ProcessModule (storageusage.dll)
+ System.Diagnostics.ProcessModule (directmanipulation.dll)
+ System.Diagnostics.ProcessModule (HID.DLL)
+ System.Diagnostics.ProcessModule (Windows.Web.dll)
+ System.Diagnostics.ProcessModule (UserDataTimeUtil.dll)
+ System.Diagnostics.ProcessModule (tabbtn.dll)
+ System.Diagnostics.ProcessModule (TabBtnEx.dll)
+ System.Diagnostics.ProcessModule (CHARTV.dll)
+ System.Diagnostics.ProcessModule (NetworkExplorer.dll)
+ System.Diagnostics.ProcessModule (tiptsf.dll)
+ System.Diagnostics.ProcessModule (UIRibbon.dll)
+ System.Diagnostics.ProcessModule (rstrtmgr.dll)
+ System.Diagnostics.ProcessModule (nlmproxy.dll)
+ System.Diagnostics.ProcessModule (provsvc.dll)
+ System.Diagnostics.ProcessModule (castingshellext.dll)
+ System.Diagnostics.ProcessModule (windowscodecsext.dll)
+ System.Diagnostics.ProcessModule (TOKENBINDING.dll)
+ System.Diagnostics.ProcessModule (ondemandconnroutehelper.dll)
+ System.Diagnostics.ProcessModule (mswsock.dll)
+ System.Diagnostics.ProcessModule (WINNSI.DLL)
+ System.Diagnostics.ProcessModule (fwpuclnt.dll)
+ System.Diagnostics.ProcessModule (schannel.DLL)
+ System.Diagnostics.ProcessModule (mskeyprotect.dll)
+ System.Diagnostics.ProcessModule (ncryptsslp.dll)
+ System.Diagnostics.ProcessModule (cryptnet.dll)
+ System.Diagnostics.ProcessModule (VirtDisk.dll)
+ System.Diagnostics.ProcessModule (profext.dll)
+ System.Diagnostics.ProcessModule (comsvcs.dll)
+ System.Diagnostics.ProcessModule (AppContracts.dll)
+ System.Diagnostics.ProcessModule (OnDemandBrokerClient.dll)
+ System.Diagnostics.ProcessModule (themeui.dll)
+ System.Diagnostics.ProcessModule (webio.dll)
+ System.Diagnostics.ProcessModule (MsftEdit.dll)
+ System.Diagnostics.ProcessModule (nvshext.dll)
+ System.Diagnostics.ProcessModule (atiacm64.dll)
+ System.Diagnostics.ProcessModule (zipfldr.dll)
+ System.Diagnostics.ProcessModule (PlayToDevice.dll)
+ System.Diagnostics.ProcessModule (cdprt.dll)
+ System.Diagnostics.ProcessModule (EhStorAPI.dll)
+ System.Diagnostics.ProcessModule (Windows.Globalization.dll)
+
+
+ 232504
+ 232504
+ 280805376
+ 280805376
+ 1898208
+ 1898208
+ 291442688
+ 291442688
+ 569737216
+ 569737216
+ 2208799674368
+ 1186484224
+ true
+ Normal
+ 280805376
+ 280805376
+ explorer
+ 65535
+ 1
+
+
+
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+
+
+ 4934
+ 2204607348736
+ 1289125888
+ false
+ 281395200
+ 281395200
+
+ System.Diagnostics.ProcessModule (Explorer.EXE)
+ PT12M36.90625S
+ PT17M57.3125S
+ PT5M20.40625S
+ 65808
+
+ true
+
+
+
+
+ explorer
+ 1
+ 4934
+ 2204607348736
+ 281395200
+ 280805376
+ 232504
+ C:\Windows\Explorer.EXE
+
+ Microsoft Corporation
+ 1077.3125
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Explorer
+ Microsoft® Windows® Operating System
+ Process
+
+
+ Scooter Software
+ 0.71875
+ 4.2.6.23150
+ 4.2
+ Beyond Compare Clipboard Compare
+ Beyond Compare
+ Process
+
+
+
+
+ System.Diagnostics.Process (chrome)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 4164
+
+ 8
+ false
+ 2019-08-27T02:00:52.3073978+03:00
+ 2596
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+
+ chrome_elf.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll
+ 140719325642752
+ 925696
+ 140719326148464
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll_x000D__x000A_InternalName: chrome_elf_dll_x000D__x000A_OriginalFilename: chrome_elf.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 904
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (VERSION.dll)
+
+ VERSION.dll
+ C:\Windows\SYSTEM32\VERSION.dll
+ 140719800254464
+ 40960
+ 140719800259344
+ File: C:\Windows\SYSTEM32\VERSION.dll_x000D__x000A_InternalName: version_x000D__x000A_OriginalFilename: VERSION.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Version Checking and File Installation Libraries_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Version Checking and File Installation Libraries
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+
+ ADVAPI32.dll
+ C:\Windows\System32\ADVAPI32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\ADVAPI32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_child.dll)
+
+ chrome_child.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll
+ 140717177962496
+ 87977984
+ 140717247440176
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll_x000D__x000A_InternalName: chrome_dll_x000D__x000A_OriginalFilename: chrome.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 85916
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+
+ OLEAUT32.dll
+ C:\Windows\System32\OLEAUT32.dll
+ 140719946465280
+ 802816
+ 140719946574624
+ File: C:\Windows\System32\OLEAUT32.dll_x000D__x000A_InternalName: OLEAUT32.DLL_x000D__x000A_OriginalFilename: OLEAUT32.DLL_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OLEAUT32.DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 784
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ OLEAUT32.DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+
+ WS2_32.dll
+ C:\Windows\System32\WS2_32.dll
+ 140719954198528
+ 446464
+ 140719954286384
+ File: C:\Windows\System32\WS2_32.dll_x000D__x000A_InternalName: ws2_32.dll_x000D__x000A_OriginalFilename: ws2_32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Socket 2.0 32-Bit DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 436
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Socket 2.0 32-Bit DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (GDI32.dll)
+
+ GDI32.dll
+ C:\Windows\System32\GDI32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\GDI32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USER32.dll)
+
+ USER32.dll
+ C:\Windows\System32\USER32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\USER32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINTRUST.dll)
+
+ WINTRUST.dll
+ C:\Windows\System32\WINTRUST.dll
+ 140719888728064
+ 364544
+ 140719888791376
+ File: C:\Windows\System32\WINTRUST.dll_x000D__x000A_InternalName: WINTRUST.DLL_x000D__x000A_OriginalFilename: WINTRUST.DLL_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Trust Verification APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 356
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft Trust Verification APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+
+ MSASN1.dll
+ C:\Windows\System32\MSASN1.dll
+ 140719887876096
+ 73728
+ 140719887898576
+ File: C:\Windows\System32\MSASN1.dll_x000D__x000A_InternalName: msasn1.dll_x000D__x000A_OriginalFilename: msasn1.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ASN.1 Runtime APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 72
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ASN.1 Runtime APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+
+ CRYPT32.dll
+ C:\Windows\System32\CRYPT32.dll
+ 140719891480576
+ 1945600
+ 140719891804832
+ File: C:\Windows\System32\CRYPT32.dll_x000D__x000A_InternalName: CRYPT32.DLL_x000D__x000A_OriginalFilename: CRYPT32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto API32_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1900
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto API32
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+
+ IPHLPAPI.DLL
+ C:\Windows\SYSTEM32\IPHLPAPI.DLL
+ 140719876931584
+ 249856
+ 140719876989024
+ File: C:\Windows\SYSTEM32\IPHLPAPI.DLL_x000D__x000A_InternalName: iphlpapi.dll_x000D__x000A_OriginalFilename: iphlpapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: IP Helper API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 244
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ IP Helper API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMM.dll)
+
+ WINMM.dll
+ C:\Windows\SYSTEM32\WINMM.dll
+ 140719835054080
+ 147456
+ 140719835066368
+ File: C:\Windows\SYSTEM32\WINMM.dll_x000D__x000A_InternalName: winmm.dll_x000D__x000A_OriginalFilename: WINMM.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MCI API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MCI API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USERENV.dll)
+
+ USERENV.dll
+ C:\Windows\SYSTEM32\USERENV.dll
+ 140719887024128
+ 163840
+ 140719887043280
+ File: C:\Windows\SYSTEM32\USERENV.dll_x000D__x000A_InternalName: userenv_x000D__x000A_OriginalFilename: userenv.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Userenv_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Userenv
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (profapi.dll)
+
+ profapi.dll
+ C:\Windows\System32\profapi.dll
+ 140719888531456
+ 147456
+ 140719888564400
+ File: C:\Windows\System32\profapi.dll_x000D__x000A_InternalName: PROFAPI.DLL_x000D__x000A_OriginalFilename: PROFAPI.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: User Profile Basic API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ User Profile Basic API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (DWrite.dll)
+
+ DWrite.dll
+ C:\Windows\SYSTEM32\DWrite.dll
+ 140719303819264
+ 3129344
+ 140719304509728
+ File: C:\Windows\SYSTEM32\DWrite.dll_x000D__x000A_InternalName: DWrite_x000D__x000A_OriginalFilename: DWrite_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft DirectX Typography Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3056
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft DirectX Typography Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINSPOOL.DRV)
+
+ WINSPOOL.DRV
+ C:\Windows\SYSTEM32\WINSPOOL.DRV
+ 140719787606016
+ 561152
+ 140719787676448
+ File: C:\Windows\SYSTEM32\WINSPOOL.DRV_x000D__x000A_InternalName: winspool.drv_x000D__x000A_OriginalFilename: winspool.drv.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Spooler Driver_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 548
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Spooler Driver
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+
+ bcrypt.dll
+ C:\Windows\System32\bcrypt.dll
+ 140719897247744
+ 155648
+ 140719897281296
+ File: C:\Windows\System32\bcrypt.dll_x000D__x000A_InternalName: bcrypt.dll_x000D__x000A_OriginalFilename: bcrypt.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 152
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dbghelp.dll)
+
+ dbghelp.dll
+ C:\Windows\SYSTEM32\dbghelp.dll
+ 140719552397312
+ 2019328
+ 140719552479168
+ File: C:\Windows\SYSTEM32\dbghelp.dll_x000D__x000A_InternalName: DBGHELP.DLL_x000D__x000A_OriginalFilename: DBGHELP.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Image Helper_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Image Helper
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+
+ WINHTTP.dll
+ C:\Windows\SYSTEM32\WINHTTP.dll
+ 140719810019328
+ 991232
+ 140719810293024
+ File: C:\Windows\SYSTEM32\WINHTTP.dll_x000D__x000A_InternalName: winhttp.dll_x000D__x000A_OriginalFilename: winhttp.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows HTTP Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 968
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows HTTP Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Secur32.dll)
+
+ Secur32.dll
+ C:\Windows\SYSTEM32\Secur32.dll
+ 140719559147520
+ 49152
+ 140719559156816
+ File: C:\Windows\SYSTEM32\Secur32.dll_x000D__x000A_InternalName: secur32.dll_x000D__x000A_OriginalFilename: secur32.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+
+ dhcpcsvc.DLL
+ C:\Windows\SYSTEM32\dhcpcsvc.DLL
+ 140719782494208
+ 114688
+ 140719782503840
+ File: C:\Windows\SYSTEM32\dhcpcsvc.DLL_x000D__x000A_InternalName: dhcpcsvc.dll_x000D__x000A_OriginalFilename: dhcpcsvc.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DHCP Client Service_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 112
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DHCP Client Service
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (NSI.dll)
+
+ NSI.dll
+ C:\Windows\System32\NSI.dll
+ 140719916843008
+ 32768
+ 140719916851008
+ File: C:\Windows\System32\NSI.dll_x000D__x000A_InternalName: nsi.dll_x000D__x000A_OriginalFilename: nsi.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NSI User-mode interface DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 32
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NSI User-mode interface DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+
+ WINMMBASE.dll
+ C:\Windows\SYSTEM32\WINMMBASE.dll
+ 140719834857472
+ 184320
+ 140719834890448
+ File: C:\Windows\SYSTEM32\WINMMBASE.dll_x000D__x000A_InternalName: winmmbase.dll_x000D__x000A_OriginalFilename: WINMMbase.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base Multimedia Extension API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 180
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base Multimedia Extension API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+
+ cfgmgr32.dll
+ C:\Windows\System32\cfgmgr32.dll
+ 140719889252352
+ 303104
+ 140719889325904
+ File: C:\Windows\System32\cfgmgr32.dll_x000D__x000A_InternalName: cfgmgr32.dll_x000D__x000A_OriginalFilename: CFGMGR32.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Configuration Manager DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 296
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Configuration Manager DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+
+ PROPSYS.dll
+ C:\Windows\SYSTEM32\PROPSYS.dll
+ 140719831187456
+ 1736704
+ 140719831447408
+ File: C:\Windows\SYSTEM32\PROPSYS.dll_x000D__x000A_InternalName: propsys.dll_x000D__x000A_OriginalFilename: propsys.dll.mui_x000D__x000A_FileVersion: 7.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Property System_x000D__x000A_Product: Windows® Search_x000D__x000A_ProductVersion: 7.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1696
+ Microsoft Corporation
+ 7.0.17763.1 (WinBuild.160101.0800)
+ 7.0.17763.1
+ Microsoft Property System
+ Windows® Search
+
+
+
+
+ System.Diagnostics.ProcessModule (shcore.dll)
+
+ shcore.dll
+ C:\Windows\System32\shcore.dll
+ 140719907143680
+ 688128
+ 140719907388560
+ File: C:\Windows\System32\shcore.dll_x000D__x000A_InternalName: SHCORE_x000D__x000A_OriginalFilename: SHCORE.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: SHCORE_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 672
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ SHCORE
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+
+ SSPICLI.DLL
+ C:\Windows\SYSTEM32\SSPICLI.DLL
+ 140719886827520
+ 192512
+ 140719886881776
+ File: C:\Windows\SYSTEM32\SSPICLI.DLL_x000D__x000A_InternalName: sspicli.dll_x000D__x000A_OriginalFilename: sspicli.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 188
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+
+ CRYPTBASE.DLL
+ C:\Windows\SYSTEM32\CRYPTBASE.DLL
+ 140719881846784
+ 49152
+ 140719881855488
+ File: C:\Windows\SYSTEM32\CRYPTBASE.DLL_x000D__x000A_InternalName: cryptbase.dll_x000D__x000A_OriginalFilename: cryptbase.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base cryptographic API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base cryptographic API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ 44
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 81184
+ 81184
+ 138997760
+ 138997760
+ 340400
+ 340400
+ 239808512
+ 239808512
+ 230625280
+ 230625280
+ 2205045006336
+ 1726783488
+ true
+
+
+ Normal
+ 32
+
+ 138997760
+ 138997760
+ chrome
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 22204
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.3125S
+ 2019-08-27T02:00:52.3073998+03:00
+ PT1.921875S
+ PT1.609375S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 23584
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-27T02:00:52.3662233+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 6
+ 27580
+ true
+ Lowest
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-27T02:00:52.3673446+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 14644
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0.09375S
+ 2019-08-27T02:00:52.368027+03:00
+ PT0.140625S
+ PT0.046875S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 22264
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-27T02:00:52.3685937+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 19392
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-27T02:00:52.3694148+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 17056
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-27T02:00:52.3755099+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 26912
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-27T02:00:52.3766204+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 12192
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-27T02:00:52.3770034+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 19156
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-27T02:00:52.3775859+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 22748
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-27T02:00:52.3780011+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 6
+ 25144
+ true
+ Lowest
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-27T02:00:52.3783612+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 15984
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-27T02:45:53.3398653+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ 13
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 242
+ 2204968783872
+ 1650561024
+ false
+ 38588416
+ 38588416
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+ PT0.5625S
+ PT4.25S
+ PT3.6875S
+
+
+ 0
+
+
+ true
+
+
+
+
+ chrome
+ 1
+ 242
+ 2204968783872
+ 38588416
+ 138997760
+ 81184
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+
+
+ System.Diagnostics.Process (chrome)
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ 7936
+ 8
+ false
+ 2019-08-24T14:18:00.3253674+03:00
+ 23804
+ .
+ 1413120
+ 204800
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ System.Diagnostics.ProcessModule (ntdll.dll)
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+ System.Diagnostics.ProcessModule (VERSION.dll)
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+ System.Diagnostics.ProcessModule (sechost.dll)
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+ System.Diagnostics.ProcessModule (user32.dll)
+ System.Diagnostics.ProcessModule (win32u.dll)
+ System.Diagnostics.ProcessModule (GDI32.dll)
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+ System.Diagnostics.ProcessModule (shcore.dll)
+ System.Diagnostics.ProcessModule (combase.dll)
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+ System.Diagnostics.ProcessModule (profapi.dll)
+ System.Diagnostics.ProcessModule (powrprof.dll)
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+ System.Diagnostics.ProcessModule (chrome.dll)
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+ System.Diagnostics.ProcessModule (USERENV.dll)
+ System.Diagnostics.ProcessModule (gpapi.dll)
+ System.Diagnostics.ProcessModule (wkscli.dll)
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+ System.Diagnostics.ProcessModule (netutils.dll)
+ System.Diagnostics.ProcessModule (ole32.dll)
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+ System.Diagnostics.ProcessModule (Secur32.dll)
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+ System.Diagnostics.ProcessModule (DWrite.dll)
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+ System.Diagnostics.ProcessModule (COMCTL32.dll)
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+ System.Diagnostics.ProcessModule (twinapi.dll)
+ System.Diagnostics.ProcessModule (NLAapi.dll)
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+ System.Diagnostics.ProcessModule (NSI.dll)
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+ System.Diagnostics.ProcessModule (mscms.dll)
+ System.Diagnostics.ProcessModule (ColorAdapterClient.dll)
+ System.Diagnostics.ProcessModule (icm32.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+ System.Diagnostics.ProcessModule (InputHost.dll)
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+ System.Diagnostics.ProcessModule (d2d1.dll)
+ System.Diagnostics.ProcessModule (d3d11.dll)
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+ System.Diagnostics.ProcessModule (wintypes.dll)
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+ System.Diagnostics.ProcessModule (dxgi.dll)
+ System.Diagnostics.ProcessModule (WTSAPI32.dll)
+ System.Diagnostics.ProcessModule (wlanapi.dll)
+ System.Diagnostics.ProcessModule (WINSTA.dll)
+ System.Diagnostics.ProcessModule (wbemprox.dll)
+ System.Diagnostics.ProcessModule (wbemcomn.dll)
+ System.Diagnostics.ProcessModule (MMDevApi.dll)
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+ System.Diagnostics.ProcessModule (wbemsvc.dll)
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+ System.Diagnostics.ProcessModule (fastprox.dll)
+ System.Diagnostics.ProcessModule (wmiutils.dll)
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+ System.Diagnostics.ProcessModule (FirewallAPI.dll)
+ System.Diagnostics.ProcessModule (fwbase.dll)
+ System.Diagnostics.ProcessModule (LINKINFO.dll)
+ System.Diagnostics.ProcessModule (FWPolicyIOMgr.dll)
+ System.Diagnostics.ProcessModule (dataexchange.dll)
+ System.Diagnostics.ProcessModule (dcomp.dll)
+ System.Diagnostics.ProcessModule (atlthunk.dll)
+ System.Diagnostics.ProcessModule (OLEACC.dll)
+ System.Diagnostics.ProcessModule (directmanipulation.dll)
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (explorerframe.dll)
+ System.Diagnostics.ProcessModule (wpnapps.dll)
+ System.Diagnostics.ProcessModule (XmlLite.dll)
+ System.Diagnostics.ProcessModule (usermgrcli.dll)
+ System.Diagnostics.ProcessModule (mswsock.dll)
+ System.Diagnostics.ProcessModule (WINMM.dll)
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (WmiPerfInst.dll)
+ System.Diagnostics.ProcessModule (pdh.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Bluetooth.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.HostName.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.dll)
+ System.Diagnostics.ProcessModule (BiWinrt.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.Connectivity.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Enumeration.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Radios.dll)
+ System.Diagnostics.ProcessModule (NETAPI32.dll)
+ System.Diagnostics.ProcessModule (SAMCLI.DLL)
+ System.Diagnostics.ProcessModule (SAMLIB.dll)
+ System.Diagnostics.ProcessModule (wdmaud.drv)
+ System.Diagnostics.ProcessModule (ksuser.dll)
+ System.Diagnostics.ProcessModule (AVRT.dll)
+ System.Diagnostics.ProcessModule (AUDIOSES.DLL)
+ System.Diagnostics.ProcessModule (msacm32.drv)
+ System.Diagnostics.ProcessModule (MSACM32.dll)
+ System.Diagnostics.ProcessModule (midimap.dll)
+ System.Diagnostics.ProcessModule (resourcepolicyclient.dll)
+ System.Diagnostics.ProcessModule (BitsProxy.dll)
+
+
+ 61568
+ 61568
+ 316080128
+ 316080128
+ 857648
+ 857648
+ 455720960
+ 455720960
+ 398323712
+ 398323712
+ 2204288917504
+ 970694656
+ true
+ Normal
+ 316080128
+ 316080128
+ chrome
+ 65535
+ 1
+
+
+
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+
+
+ 1747
+ 2204143845376
+ 825622528
+ false
+ 112414720
+ 112414720
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ PT11M7.53125S
+ PT21M46.28125S
+ PT10M38.75S
+ 1770664
+ The Living Tombstone Radio - Now Playing on Pandora - Google Chrome
+ true
+
+
+
+
+ chrome
+ 1
+ 1747
+ 2204143845376
+ 112414720
+ 316080128
+ 61568
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ System.Diagnostics.Process (explorer)
+ Google LLC
+ 1306.28125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+ Google LLC
+ 4.25
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+
+
+ System.Diagnostics.Process (chrome)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 4556
+
+ 4
+ false
+ 2019-08-24T14:18:43.414544+03:00
+ 2848
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+
+ chrome_elf.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll
+ 140719325642752
+ 925696
+ 140719326148464
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll_x000D__x000A_InternalName: chrome_elf_dll_x000D__x000A_OriginalFilename: chrome_elf.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 904
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (VERSION.dll)
+
+ VERSION.dll
+ C:\Windows\SYSTEM32\VERSION.dll
+ 140719800254464
+ 40960
+ 140719800259344
+ File: C:\Windows\SYSTEM32\VERSION.dll_x000D__x000A_InternalName: version_x000D__x000A_OriginalFilename: VERSION.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Version Checking and File Installation Libraries_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Version Checking and File Installation Libraries
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+
+ ADVAPI32.dll
+ C:\Windows\System32\ADVAPI32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\ADVAPI32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_child.dll)
+
+ chrome_child.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll
+ 140717177962496
+ 87977984
+ 140717247440176
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll_x000D__x000A_InternalName: chrome_dll_x000D__x000A_OriginalFilename: chrome.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 85916
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+
+ OLEAUT32.dll
+ C:\Windows\System32\OLEAUT32.dll
+ 140719946465280
+ 802816
+ 140719946574624
+ File: C:\Windows\System32\OLEAUT32.dll_x000D__x000A_InternalName: OLEAUT32.DLL_x000D__x000A_OriginalFilename: OLEAUT32.DLL_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OLEAUT32.DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 784
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ OLEAUT32.DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+
+ WS2_32.dll
+ C:\Windows\System32\WS2_32.dll
+ 140719954198528
+ 446464
+ 140719954286384
+ File: C:\Windows\System32\WS2_32.dll_x000D__x000A_InternalName: ws2_32.dll_x000D__x000A_OriginalFilename: ws2_32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Socket 2.0 32-Bit DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 436
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Socket 2.0 32-Bit DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (GDI32.dll)
+
+ GDI32.dll
+ C:\Windows\System32\GDI32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\GDI32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USER32.dll)
+
+ USER32.dll
+ C:\Windows\System32\USER32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\USER32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINTRUST.dll)
+
+ WINTRUST.dll
+ C:\Windows\System32\WINTRUST.dll
+ 140719888728064
+ 364544
+ 140719888791376
+ File: C:\Windows\System32\WINTRUST.dll_x000D__x000A_InternalName: WINTRUST.DLL_x000D__x000A_OriginalFilename: WINTRUST.DLL_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Trust Verification APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 356
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft Trust Verification APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+
+ MSASN1.dll
+ C:\Windows\System32\MSASN1.dll
+ 140719887876096
+ 73728
+ 140719887898576
+ File: C:\Windows\System32\MSASN1.dll_x000D__x000A_InternalName: msasn1.dll_x000D__x000A_OriginalFilename: msasn1.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ASN.1 Runtime APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 72
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ASN.1 Runtime APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+
+ CRYPT32.dll
+ C:\Windows\System32\CRYPT32.dll
+ 140719891480576
+ 1945600
+ 140719891804832
+ File: C:\Windows\System32\CRYPT32.dll_x000D__x000A_InternalName: CRYPT32.DLL_x000D__x000A_OriginalFilename: CRYPT32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto API32_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1900
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto API32
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+
+ IPHLPAPI.DLL
+ C:\Windows\SYSTEM32\IPHLPAPI.DLL
+ 140719876931584
+ 249856
+ 140719876989024
+ File: C:\Windows\SYSTEM32\IPHLPAPI.DLL_x000D__x000A_InternalName: iphlpapi.dll_x000D__x000A_OriginalFilename: iphlpapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: IP Helper API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 244
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ IP Helper API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMM.dll)
+
+ WINMM.dll
+ C:\Windows\SYSTEM32\WINMM.dll
+ 140719835054080
+ 147456
+ 140719835066368
+ File: C:\Windows\SYSTEM32\WINMM.dll_x000D__x000A_InternalName: winmm.dll_x000D__x000A_OriginalFilename: WINMM.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MCI API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MCI API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USERENV.dll)
+
+ USERENV.dll
+ C:\Windows\SYSTEM32\USERENV.dll
+ 140719887024128
+ 163840
+ 140719887043280
+ File: C:\Windows\SYSTEM32\USERENV.dll_x000D__x000A_InternalName: userenv_x000D__x000A_OriginalFilename: userenv.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Userenv_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Userenv
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (profapi.dll)
+
+ profapi.dll
+ C:\Windows\System32\profapi.dll
+ 140719888531456
+ 147456
+ 140719888564400
+ File: C:\Windows\System32\profapi.dll_x000D__x000A_InternalName: PROFAPI.DLL_x000D__x000A_OriginalFilename: PROFAPI.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: User Profile Basic API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ User Profile Basic API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (DWrite.dll)
+
+ DWrite.dll
+ C:\Windows\SYSTEM32\DWrite.dll
+ 140719303819264
+ 3129344
+ 140719304509728
+ File: C:\Windows\SYSTEM32\DWrite.dll_x000D__x000A_InternalName: DWrite_x000D__x000A_OriginalFilename: DWrite_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft DirectX Typography Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3056
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft DirectX Typography Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINSPOOL.DRV)
+
+ WINSPOOL.DRV
+ C:\Windows\SYSTEM32\WINSPOOL.DRV
+ 140719787606016
+ 561152
+ 140719787676448
+ File: C:\Windows\SYSTEM32\WINSPOOL.DRV_x000D__x000A_InternalName: winspool.drv_x000D__x000A_OriginalFilename: winspool.drv.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Spooler Driver_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 548
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Spooler Driver
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+
+ bcrypt.dll
+ C:\Windows\System32\bcrypt.dll
+ 140719897247744
+ 155648
+ 140719897281296
+ File: C:\Windows\System32\bcrypt.dll_x000D__x000A_InternalName: bcrypt.dll_x000D__x000A_OriginalFilename: bcrypt.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 152
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dbghelp.dll)
+
+ dbghelp.dll
+ C:\Windows\SYSTEM32\dbghelp.dll
+ 140719552397312
+ 2019328
+ 140719552479168
+ File: C:\Windows\SYSTEM32\dbghelp.dll_x000D__x000A_InternalName: DBGHELP.DLL_x000D__x000A_OriginalFilename: DBGHELP.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Image Helper_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Image Helper
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+
+ WINHTTP.dll
+ C:\Windows\SYSTEM32\WINHTTP.dll
+ 140719810019328
+ 991232
+ 140719810293024
+ File: C:\Windows\SYSTEM32\WINHTTP.dll_x000D__x000A_InternalName: winhttp.dll_x000D__x000A_OriginalFilename: winhttp.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows HTTP Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 968
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows HTTP Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Secur32.dll)
+
+ Secur32.dll
+ C:\Windows\SYSTEM32\Secur32.dll
+ 140719559147520
+ 49152
+ 140719559156816
+ File: C:\Windows\SYSTEM32\Secur32.dll_x000D__x000A_InternalName: secur32.dll_x000D__x000A_OriginalFilename: secur32.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+
+ dhcpcsvc.DLL
+ C:\Windows\SYSTEM32\dhcpcsvc.DLL
+ 140719782494208
+ 114688
+ 140719782503840
+ File: C:\Windows\SYSTEM32\dhcpcsvc.DLL_x000D__x000A_InternalName: dhcpcsvc.dll_x000D__x000A_OriginalFilename: dhcpcsvc.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DHCP Client Service_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 112
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DHCP Client Service
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (NSI.dll)
+
+ NSI.dll
+ C:\Windows\System32\NSI.dll
+ 140719916843008
+ 32768
+ 140719916851008
+ File: C:\Windows\System32\NSI.dll_x000D__x000A_InternalName: nsi.dll_x000D__x000A_OriginalFilename: nsi.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NSI User-mode interface DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 32
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NSI User-mode interface DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+
+ WINMMBASE.dll
+ C:\Windows\SYSTEM32\WINMMBASE.dll
+ 140719834857472
+ 184320
+ 140719834890448
+ File: C:\Windows\SYSTEM32\WINMMBASE.dll_x000D__x000A_InternalName: winmmbase.dll_x000D__x000A_OriginalFilename: WINMMbase.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base Multimedia Extension API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 180
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base Multimedia Extension API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+
+ cfgmgr32.dll
+ C:\Windows\System32\cfgmgr32.dll
+ 140719889252352
+ 303104
+ 140719889325904
+ File: C:\Windows\System32\cfgmgr32.dll_x000D__x000A_InternalName: cfgmgr32.dll_x000D__x000A_OriginalFilename: CFGMGR32.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Configuration Manager DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 296
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Configuration Manager DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+
+ PROPSYS.dll
+ C:\Windows\SYSTEM32\PROPSYS.dll
+ 140719831187456
+ 1736704
+ 140719831447408
+ File: C:\Windows\SYSTEM32\PROPSYS.dll_x000D__x000A_InternalName: propsys.dll_x000D__x000A_OriginalFilename: propsys.dll.mui_x000D__x000A_FileVersion: 7.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Property System_x000D__x000A_Product: Windows® Search_x000D__x000A_ProductVersion: 7.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1696
+ Microsoft Corporation
+ 7.0.17763.1 (WinBuild.160101.0800)
+ 7.0.17763.1
+ Microsoft Property System
+ Windows® Search
+
+
+
+
+ System.Diagnostics.ProcessModule (shcore.dll)
+
+ shcore.dll
+ C:\Windows\System32\shcore.dll
+ 140719907143680
+ 688128
+ 140719907388560
+ File: C:\Windows\System32\shcore.dll_x000D__x000A_InternalName: SHCORE_x000D__x000A_OriginalFilename: SHCORE.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: SHCORE_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 672
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ SHCORE
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+
+ SSPICLI.DLL
+ C:\Windows\SYSTEM32\SSPICLI.DLL
+ 140719886827520
+ 192512
+ 140719886881776
+ File: C:\Windows\SYSTEM32\SSPICLI.DLL_x000D__x000A_InternalName: sspicli.dll_x000D__x000A_OriginalFilename: sspicli.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 188
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+
+ CRYPTBASE.DLL
+ C:\Windows\SYSTEM32\CRYPTBASE.DLL
+ 140719881846784
+ 49152
+ 140719881855488
+ File: C:\Windows\SYSTEM32\CRYPTBASE.DLL_x000D__x000A_InternalName: cryptbase.dll_x000D__x000A_OriginalFilename: cryptbase.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base cryptographic API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base cryptographic API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ 44
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 28144
+ 28144
+ 41238528
+ 41238528
+ 345584
+ 345584
+ 47251456
+ 47251456
+ 51593216
+ 51593216
+ 2203769114624
+ 450891776
+ true
+
+
+ Idle
+ 64
+
+ 41238528
+ 41238528
+ chrome
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 5
+ 19712
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.515625S
+ 2019-08-24T14:18:43.4145459+03:00
+ PT5.03125S
+ PT4.515625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 9476
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:43.4709619+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 2
+ 2
+ 3680
+ true
+ Lowest
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:43.4720883+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 6
+ 1744
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0.90625S
+ 2019-08-24T14:18:43.4727947+03:00
+ PT4.671875S
+ PT3.765625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 12432
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-24T14:18:43.4734126+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 14860
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:43.4742712+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 5
+ 4540
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:43.4810346+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 18264
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:43.4822668+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 5
+ 18120
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:43.4828147+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 11936
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:43.4831871+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 6440
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:43.4837534+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 2
+ 2
+ 15148
+ true
+ Lowest
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:43.4841852+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 2940
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-27T02:48:22.4698995+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ 13
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 243
+ 2203746963456
+ 428740608
+ false
+ 30584832
+ 30584832
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+ PT2.03125S
+ PT11.359375S
+ PT9.328125S
+
+
+ 0
+
+
+ true
+
+
+
+
+ chrome
+ 1
+ 243
+ 2203746963456
+ 30584832
+ 41238528
+ 28144
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+
+
+ System.Diagnostics.Process (chrome)
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ 7720
+ 8
+ false
+ 2019-08-24T14:18:00.3253674+03:00
+ 23804
+ .
+ 1413120
+ 204800
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ System.Diagnostics.ProcessModule (ntdll.dll)
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+ System.Diagnostics.ProcessModule (VERSION.dll)
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+ System.Diagnostics.ProcessModule (sechost.dll)
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+ System.Diagnostics.ProcessModule (user32.dll)
+ System.Diagnostics.ProcessModule (win32u.dll)
+ System.Diagnostics.ProcessModule (GDI32.dll)
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+ System.Diagnostics.ProcessModule (shcore.dll)
+ System.Diagnostics.ProcessModule (combase.dll)
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+ System.Diagnostics.ProcessModule (profapi.dll)
+ System.Diagnostics.ProcessModule (powrprof.dll)
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+ System.Diagnostics.ProcessModule (chrome.dll)
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+ System.Diagnostics.ProcessModule (USERENV.dll)
+ System.Diagnostics.ProcessModule (gpapi.dll)
+ System.Diagnostics.ProcessModule (wkscli.dll)
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+ System.Diagnostics.ProcessModule (netutils.dll)
+ System.Diagnostics.ProcessModule (ole32.dll)
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+ System.Diagnostics.ProcessModule (Secur32.dll)
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+ System.Diagnostics.ProcessModule (DWrite.dll)
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+ System.Diagnostics.ProcessModule (COMCTL32.dll)
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+ System.Diagnostics.ProcessModule (twinapi.dll)
+ System.Diagnostics.ProcessModule (NLAapi.dll)
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+ System.Diagnostics.ProcessModule (NSI.dll)
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+ System.Diagnostics.ProcessModule (mscms.dll)
+ System.Diagnostics.ProcessModule (ColorAdapterClient.dll)
+ System.Diagnostics.ProcessModule (icm32.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+ System.Diagnostics.ProcessModule (InputHost.dll)
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+ System.Diagnostics.ProcessModule (d2d1.dll)
+ System.Diagnostics.ProcessModule (d3d11.dll)
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+ System.Diagnostics.ProcessModule (wintypes.dll)
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+ System.Diagnostics.ProcessModule (dxgi.dll)
+ System.Diagnostics.ProcessModule (WTSAPI32.dll)
+ System.Diagnostics.ProcessModule (wlanapi.dll)
+ System.Diagnostics.ProcessModule (WINSTA.dll)
+ System.Diagnostics.ProcessModule (wbemprox.dll)
+ System.Diagnostics.ProcessModule (wbemcomn.dll)
+ System.Diagnostics.ProcessModule (MMDevApi.dll)
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+ System.Diagnostics.ProcessModule (wbemsvc.dll)
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+ System.Diagnostics.ProcessModule (fastprox.dll)
+ System.Diagnostics.ProcessModule (wmiutils.dll)
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+ System.Diagnostics.ProcessModule (FirewallAPI.dll)
+ System.Diagnostics.ProcessModule (fwbase.dll)
+ System.Diagnostics.ProcessModule (LINKINFO.dll)
+ System.Diagnostics.ProcessModule (FWPolicyIOMgr.dll)
+ System.Diagnostics.ProcessModule (dataexchange.dll)
+ System.Diagnostics.ProcessModule (dcomp.dll)
+ System.Diagnostics.ProcessModule (atlthunk.dll)
+ System.Diagnostics.ProcessModule (OLEACC.dll)
+ System.Diagnostics.ProcessModule (directmanipulation.dll)
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (explorerframe.dll)
+ System.Diagnostics.ProcessModule (wpnapps.dll)
+ System.Diagnostics.ProcessModule (XmlLite.dll)
+ System.Diagnostics.ProcessModule (usermgrcli.dll)
+ System.Diagnostics.ProcessModule (mswsock.dll)
+ System.Diagnostics.ProcessModule (WINMM.dll)
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (WmiPerfInst.dll)
+ System.Diagnostics.ProcessModule (pdh.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Bluetooth.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.HostName.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.dll)
+ System.Diagnostics.ProcessModule (BiWinrt.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.Connectivity.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Enumeration.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Radios.dll)
+ System.Diagnostics.ProcessModule (NETAPI32.dll)
+ System.Diagnostics.ProcessModule (SAMCLI.DLL)
+ System.Diagnostics.ProcessModule (SAMLIB.dll)
+ System.Diagnostics.ProcessModule (wdmaud.drv)
+ System.Diagnostics.ProcessModule (ksuser.dll)
+ System.Diagnostics.ProcessModule (AVRT.dll)
+ System.Diagnostics.ProcessModule (AUDIOSES.DLL)
+ System.Diagnostics.ProcessModule (msacm32.drv)
+ System.Diagnostics.ProcessModule (MSACM32.dll)
+ System.Diagnostics.ProcessModule (midimap.dll)
+ System.Diagnostics.ProcessModule (resourcepolicyclient.dll)
+ System.Diagnostics.ProcessModule (BitsProxy.dll)
+
+
+ 61568
+ 61568
+ 316080128
+ 316080128
+ 857648
+ 857648
+ 455720960
+ 455720960
+ 398323712
+ 398323712
+ 2204288917504
+ 970694656
+ true
+ Normal
+ 316080128
+ 316080128
+ chrome
+ 65535
+ 1
+
+
+
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+
+
+ 1747
+ 2204143845376
+ 825622528
+ false
+ 112414720
+ 112414720
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ PT11M7.53125S
+ PT21M46.28125S
+ PT10M38.75S
+ 1770664
+ The Living Tombstone Radio - Now Playing on Pandora - Google Chrome
+ true
+
+
+
+
+ chrome
+ 1
+ 1747
+ 2204143845376
+ 112414720
+ 316080128
+ 61568
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ System.Diagnostics.Process (explorer)
+ Google LLC
+ 1306.28125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+ Google LLC
+ 11.359375
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+
+
+ System.Diagnostics.Process (chrome)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 4408
+
+ 8
+ false
+ 2019-08-24T14:18:00.9594983+03:00
+ 5196
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+
+ chrome_elf.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll
+ 140719325642752
+ 925696
+ 140719326148464
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll_x000D__x000A_InternalName: chrome_elf_dll_x000D__x000A_OriginalFilename: chrome_elf.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 904
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (VERSION.dll)
+
+ VERSION.dll
+ C:\Windows\SYSTEM32\VERSION.dll
+ 140719800254464
+ 40960
+ 140719800259344
+ File: C:\Windows\SYSTEM32\VERSION.dll_x000D__x000A_InternalName: version_x000D__x000A_OriginalFilename: VERSION.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Version Checking and File Installation Libraries_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Version Checking and File Installation Libraries
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+
+ ADVAPI32.dll
+ C:\Windows\System32\ADVAPI32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\ADVAPI32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_child.dll)
+
+ chrome_child.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll
+ 140717177962496
+ 87977984
+ 140717247440176
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll_x000D__x000A_InternalName: chrome_dll_x000D__x000A_OriginalFilename: chrome.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 85916
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+
+ OLEAUT32.dll
+ C:\Windows\System32\OLEAUT32.dll
+ 140719946465280
+ 802816
+ 140719946574624
+ File: C:\Windows\System32\OLEAUT32.dll_x000D__x000A_InternalName: OLEAUT32.DLL_x000D__x000A_OriginalFilename: OLEAUT32.DLL_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OLEAUT32.DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 784
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ OLEAUT32.DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+
+ WS2_32.dll
+ C:\Windows\System32\WS2_32.dll
+ 140719954198528
+ 446464
+ 140719954286384
+ File: C:\Windows\System32\WS2_32.dll_x000D__x000A_InternalName: ws2_32.dll_x000D__x000A_OriginalFilename: ws2_32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Socket 2.0 32-Bit DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 436
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Socket 2.0 32-Bit DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (GDI32.dll)
+
+ GDI32.dll
+ C:\Windows\System32\GDI32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\GDI32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USER32.dll)
+
+ USER32.dll
+ C:\Windows\System32\USER32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\USER32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINTRUST.dll)
+
+ WINTRUST.dll
+ C:\Windows\System32\WINTRUST.dll
+ 140719888728064
+ 364544
+ 140719888791376
+ File: C:\Windows\System32\WINTRUST.dll_x000D__x000A_InternalName: WINTRUST.DLL_x000D__x000A_OriginalFilename: WINTRUST.DLL_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Trust Verification APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 356
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft Trust Verification APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+
+ MSASN1.dll
+ C:\Windows\System32\MSASN1.dll
+ 140719887876096
+ 73728
+ 140719887898576
+ File: C:\Windows\System32\MSASN1.dll_x000D__x000A_InternalName: msasn1.dll_x000D__x000A_OriginalFilename: msasn1.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ASN.1 Runtime APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 72
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ASN.1 Runtime APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+
+ CRYPT32.dll
+ C:\Windows\System32\CRYPT32.dll
+ 140719891480576
+ 1945600
+ 140719891804832
+ File: C:\Windows\System32\CRYPT32.dll_x000D__x000A_InternalName: CRYPT32.DLL_x000D__x000A_OriginalFilename: CRYPT32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto API32_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1900
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto API32
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+
+ IPHLPAPI.DLL
+ C:\Windows\SYSTEM32\IPHLPAPI.DLL
+ 140719876931584
+ 249856
+ 140719876989024
+ File: C:\Windows\SYSTEM32\IPHLPAPI.DLL_x000D__x000A_InternalName: iphlpapi.dll_x000D__x000A_OriginalFilename: iphlpapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: IP Helper API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 244
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ IP Helper API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMM.dll)
+
+ WINMM.dll
+ C:\Windows\SYSTEM32\WINMM.dll
+ 140719835054080
+ 147456
+ 140719835066368
+ File: C:\Windows\SYSTEM32\WINMM.dll_x000D__x000A_InternalName: winmm.dll_x000D__x000A_OriginalFilename: WINMM.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MCI API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MCI API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USERENV.dll)
+
+ USERENV.dll
+ C:\Windows\SYSTEM32\USERENV.dll
+ 140719887024128
+ 163840
+ 140719887043280
+ File: C:\Windows\SYSTEM32\USERENV.dll_x000D__x000A_InternalName: userenv_x000D__x000A_OriginalFilename: userenv.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Userenv_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Userenv
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (profapi.dll)
+
+ profapi.dll
+ C:\Windows\System32\profapi.dll
+ 140719888531456
+ 147456
+ 140719888564400
+ File: C:\Windows\System32\profapi.dll_x000D__x000A_InternalName: PROFAPI.DLL_x000D__x000A_OriginalFilename: PROFAPI.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: User Profile Basic API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ User Profile Basic API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (DWrite.dll)
+
+ DWrite.dll
+ C:\Windows\SYSTEM32\DWrite.dll
+ 140719303819264
+ 3129344
+ 140719304509728
+ File: C:\Windows\SYSTEM32\DWrite.dll_x000D__x000A_InternalName: DWrite_x000D__x000A_OriginalFilename: DWrite_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft DirectX Typography Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3056
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft DirectX Typography Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINSPOOL.DRV)
+
+ WINSPOOL.DRV
+ C:\Windows\SYSTEM32\WINSPOOL.DRV
+ 140719787606016
+ 561152
+ 140719787676448
+ File: C:\Windows\SYSTEM32\WINSPOOL.DRV_x000D__x000A_InternalName: winspool.drv_x000D__x000A_OriginalFilename: winspool.drv.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Spooler Driver_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 548
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Spooler Driver
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+
+ bcrypt.dll
+ C:\Windows\System32\bcrypt.dll
+ 140719897247744
+ 155648
+ 140719897281296
+ File: C:\Windows\System32\bcrypt.dll_x000D__x000A_InternalName: bcrypt.dll_x000D__x000A_OriginalFilename: bcrypt.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 152
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dbghelp.dll)
+
+ dbghelp.dll
+ C:\Windows\SYSTEM32\dbghelp.dll
+ 140719552397312
+ 2019328
+ 140719552479168
+ File: C:\Windows\SYSTEM32\dbghelp.dll_x000D__x000A_InternalName: DBGHELP.DLL_x000D__x000A_OriginalFilename: DBGHELP.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Image Helper_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Image Helper
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+
+ WINHTTP.dll
+ C:\Windows\SYSTEM32\WINHTTP.dll
+ 140719810019328
+ 991232
+ 140719810293024
+ File: C:\Windows\SYSTEM32\WINHTTP.dll_x000D__x000A_InternalName: winhttp.dll_x000D__x000A_OriginalFilename: winhttp.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows HTTP Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 968
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows HTTP Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Secur32.dll)
+
+ Secur32.dll
+ C:\Windows\SYSTEM32\Secur32.dll
+ 140719559147520
+ 49152
+ 140719559156816
+ File: C:\Windows\SYSTEM32\Secur32.dll_x000D__x000A_InternalName: secur32.dll_x000D__x000A_OriginalFilename: secur32.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+
+ dhcpcsvc.DLL
+ C:\Windows\SYSTEM32\dhcpcsvc.DLL
+ 140719782494208
+ 114688
+ 140719782503840
+ File: C:\Windows\SYSTEM32\dhcpcsvc.DLL_x000D__x000A_InternalName: dhcpcsvc.dll_x000D__x000A_OriginalFilename: dhcpcsvc.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DHCP Client Service_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 112
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DHCP Client Service
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (NSI.dll)
+
+ NSI.dll
+ C:\Windows\System32\NSI.dll
+ 140719916843008
+ 32768
+ 140719916851008
+ File: C:\Windows\System32\NSI.dll_x000D__x000A_InternalName: nsi.dll_x000D__x000A_OriginalFilename: nsi.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NSI User-mode interface DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 32
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NSI User-mode interface DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+
+ WINMMBASE.dll
+ C:\Windows\SYSTEM32\WINMMBASE.dll
+ 140719834857472
+ 184320
+ 140719834890448
+ File: C:\Windows\SYSTEM32\WINMMBASE.dll_x000D__x000A_InternalName: winmmbase.dll_x000D__x000A_OriginalFilename: WINMMbase.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base Multimedia Extension API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 180
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base Multimedia Extension API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+
+ cfgmgr32.dll
+ C:\Windows\System32\cfgmgr32.dll
+ 140719889252352
+ 303104
+ 140719889325904
+ File: C:\Windows\System32\cfgmgr32.dll_x000D__x000A_InternalName: cfgmgr32.dll_x000D__x000A_OriginalFilename: CFGMGR32.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Configuration Manager DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 296
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Configuration Manager DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+
+ PROPSYS.dll
+ C:\Windows\SYSTEM32\PROPSYS.dll
+ 140719831187456
+ 1736704
+ 140719831447408
+ File: C:\Windows\SYSTEM32\PROPSYS.dll_x000D__x000A_InternalName: propsys.dll_x000D__x000A_OriginalFilename: propsys.dll.mui_x000D__x000A_FileVersion: 7.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Property System_x000D__x000A_Product: Windows® Search_x000D__x000A_ProductVersion: 7.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1696
+ Microsoft Corporation
+ 7.0.17763.1 (WinBuild.160101.0800)
+ 7.0.17763.1
+ Microsoft Property System
+ Windows® Search
+
+
+
+
+ System.Diagnostics.ProcessModule (shcore.dll)
+
+ shcore.dll
+ C:\Windows\System32\shcore.dll
+ 140719907143680
+ 688128
+ 140719907388560
+ File: C:\Windows\System32\shcore.dll_x000D__x000A_InternalName: SHCORE_x000D__x000A_OriginalFilename: SHCORE.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: SHCORE_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 672
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ SHCORE
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+
+ SSPICLI.DLL
+ C:\Windows\SYSTEM32\SSPICLI.DLL
+ 140719886827520
+ 192512
+ 140719886881776
+ File: C:\Windows\SYSTEM32\SSPICLI.DLL_x000D__x000A_InternalName: sspicli.dll_x000D__x000A_OriginalFilename: sspicli.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 188
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+
+ CRYPTBASE.DLL
+ C:\Windows\SYSTEM32\CRYPTBASE.DLL
+ 140719881846784
+ 49152
+ 140719881855488
+ File: C:\Windows\SYSTEM32\CRYPTBASE.DLL_x000D__x000A_InternalName: cryptbase.dll_x000D__x000A_OriginalFilename: cryptbase.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base cryptographic API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base cryptographic API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ 44
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 25152
+ 25152
+ 32710656
+ 32710656
+ 350648
+ 350648
+ 43442176
+ 43442176
+ 43405312
+ 43405312
+ 2203784564736
+ 466341888
+ true
+
+
+ Normal
+ 32
+
+ 32710656
+ 32710656
+ chrome
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 17952
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.421875S
+ 2019-08-24T14:18:00.9595002+03:00
+ PT7.84375S
+ PT7.421875S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 12744
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.0621287+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 6
+ 9280
+ true
+ Lowest
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.0643991+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 6708
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0.59375S
+ 2019-08-24T14:18:01.0654768+03:00
+ PT2.140625S
+ PT1.546875S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 1660
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-24T14:18:01.0663254+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 18704
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.0674549+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 21836
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.0785829+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 3644
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.0820887+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 8800
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.0827336+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 17776
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.0833734+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 20228
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.0839275+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 7
+ 17364
+ true
+ Lowest
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.0845327+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 22480
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-27T02:50:47.5351816+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ 13
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 242
+ 2203745755136
+ 427532288
+ false
+ 34971648
+ 34971648
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+ PT1.59375S
+ PT11.203125S
+ PT9.609375S
+
+
+ 0
+
+
+ true
+
+
+
+
+ chrome
+ 1
+ 242
+ 2203745755136
+ 34971648
+ 32710656
+ 25152
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+
+
+ System.Diagnostics.Process (chrome)
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ 4520
+ 8
+ false
+ 2019-08-24T14:18:00.3253674+03:00
+ 23804
+ .
+ 1413120
+ 204800
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ System.Diagnostics.ProcessModule (ntdll.dll)
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+ System.Diagnostics.ProcessModule (VERSION.dll)
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+ System.Diagnostics.ProcessModule (sechost.dll)
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+ System.Diagnostics.ProcessModule (user32.dll)
+ System.Diagnostics.ProcessModule (win32u.dll)
+ System.Diagnostics.ProcessModule (GDI32.dll)
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+ System.Diagnostics.ProcessModule (shcore.dll)
+ System.Diagnostics.ProcessModule (combase.dll)
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+ System.Diagnostics.ProcessModule (profapi.dll)
+ System.Diagnostics.ProcessModule (powrprof.dll)
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+ System.Diagnostics.ProcessModule (chrome.dll)
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+ System.Diagnostics.ProcessModule (USERENV.dll)
+ System.Diagnostics.ProcessModule (gpapi.dll)
+ System.Diagnostics.ProcessModule (wkscli.dll)
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+ System.Diagnostics.ProcessModule (netutils.dll)
+ System.Diagnostics.ProcessModule (ole32.dll)
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+ System.Diagnostics.ProcessModule (Secur32.dll)
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+ System.Diagnostics.ProcessModule (DWrite.dll)
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+ System.Diagnostics.ProcessModule (COMCTL32.dll)
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+ System.Diagnostics.ProcessModule (twinapi.dll)
+ System.Diagnostics.ProcessModule (NLAapi.dll)
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+ System.Diagnostics.ProcessModule (NSI.dll)
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+ System.Diagnostics.ProcessModule (mscms.dll)
+ System.Diagnostics.ProcessModule (ColorAdapterClient.dll)
+ System.Diagnostics.ProcessModule (icm32.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+ System.Diagnostics.ProcessModule (InputHost.dll)
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+ System.Diagnostics.ProcessModule (d2d1.dll)
+ System.Diagnostics.ProcessModule (d3d11.dll)
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+ System.Diagnostics.ProcessModule (wintypes.dll)
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+ System.Diagnostics.ProcessModule (dxgi.dll)
+ System.Diagnostics.ProcessModule (WTSAPI32.dll)
+ System.Diagnostics.ProcessModule (wlanapi.dll)
+ System.Diagnostics.ProcessModule (WINSTA.dll)
+ System.Diagnostics.ProcessModule (wbemprox.dll)
+ System.Diagnostics.ProcessModule (wbemcomn.dll)
+ System.Diagnostics.ProcessModule (MMDevApi.dll)
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+ System.Diagnostics.ProcessModule (wbemsvc.dll)
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+ System.Diagnostics.ProcessModule (fastprox.dll)
+ System.Diagnostics.ProcessModule (wmiutils.dll)
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+ System.Diagnostics.ProcessModule (FirewallAPI.dll)
+ System.Diagnostics.ProcessModule (fwbase.dll)
+ System.Diagnostics.ProcessModule (LINKINFO.dll)
+ System.Diagnostics.ProcessModule (FWPolicyIOMgr.dll)
+ System.Diagnostics.ProcessModule (dataexchange.dll)
+ System.Diagnostics.ProcessModule (dcomp.dll)
+ System.Diagnostics.ProcessModule (atlthunk.dll)
+ System.Diagnostics.ProcessModule (OLEACC.dll)
+ System.Diagnostics.ProcessModule (directmanipulation.dll)
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (explorerframe.dll)
+ System.Diagnostics.ProcessModule (wpnapps.dll)
+ System.Diagnostics.ProcessModule (XmlLite.dll)
+ System.Diagnostics.ProcessModule (usermgrcli.dll)
+ System.Diagnostics.ProcessModule (mswsock.dll)
+ System.Diagnostics.ProcessModule (WINMM.dll)
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (WmiPerfInst.dll)
+ System.Diagnostics.ProcessModule (pdh.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Bluetooth.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.HostName.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.dll)
+ System.Diagnostics.ProcessModule (BiWinrt.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.Connectivity.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Enumeration.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Radios.dll)
+ System.Diagnostics.ProcessModule (NETAPI32.dll)
+ System.Diagnostics.ProcessModule (SAMCLI.DLL)
+ System.Diagnostics.ProcessModule (SAMLIB.dll)
+ System.Diagnostics.ProcessModule (wdmaud.drv)
+ System.Diagnostics.ProcessModule (ksuser.dll)
+ System.Diagnostics.ProcessModule (AVRT.dll)
+ System.Diagnostics.ProcessModule (AUDIOSES.DLL)
+ System.Diagnostics.ProcessModule (msacm32.drv)
+ System.Diagnostics.ProcessModule (MSACM32.dll)
+ System.Diagnostics.ProcessModule (midimap.dll)
+ System.Diagnostics.ProcessModule (resourcepolicyclient.dll)
+ System.Diagnostics.ProcessModule (BitsProxy.dll)
+
+
+ 61568
+ 61568
+ 316080128
+ 316080128
+ 857648
+ 857648
+ 455720960
+ 455720960
+ 398323712
+ 398323712
+ 2204288917504
+ 970694656
+ true
+ Normal
+ 316080128
+ 316080128
+ chrome
+ 65535
+ 1
+
+
+
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+
+
+ 1747
+ 2204143845376
+ 825622528
+ false
+ 112414720
+ 112414720
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ PT11M7.53125S
+ PT21M46.28125S
+ PT10M38.75S
+ 1770664
+ The Living Tombstone Radio - Now Playing on Pandora - Google Chrome
+ true
+
+
+
+
+ chrome
+ 1
+ 1747
+ 2204143845376
+ 112414720
+ 316080128
+ 61568
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ System.Diagnostics.Process (explorer)
+ Google LLC
+ 1306.28125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+ Google LLC
+ 11.203125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+
+
+ System.Diagnostics.Process (chrome)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 7512
+
+ 4
+ false
+ 2019-08-24T14:18:25.2320391+03:00
+ 15872
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+
+ chrome_elf.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll
+ 140719325642752
+ 925696
+ 140719326148464
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll_x000D__x000A_InternalName: chrome_elf_dll_x000D__x000A_OriginalFilename: chrome_elf.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 904
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (VERSION.dll)
+
+ VERSION.dll
+ C:\Windows\SYSTEM32\VERSION.dll
+ 140719800254464
+ 40960
+ 140719800259344
+ File: C:\Windows\SYSTEM32\VERSION.dll_x000D__x000A_InternalName: version_x000D__x000A_OriginalFilename: VERSION.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Version Checking and File Installation Libraries_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Version Checking and File Installation Libraries
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+
+ ADVAPI32.dll
+ C:\Windows\System32\ADVAPI32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\ADVAPI32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_child.dll)
+
+ chrome_child.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll
+ 140717177962496
+ 87977984
+ 140717247440176
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll_x000D__x000A_InternalName: chrome_dll_x000D__x000A_OriginalFilename: chrome.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 85916
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+
+ OLEAUT32.dll
+ C:\Windows\System32\OLEAUT32.dll
+ 140719946465280
+ 802816
+ 140719946574624
+ File: C:\Windows\System32\OLEAUT32.dll_x000D__x000A_InternalName: OLEAUT32.DLL_x000D__x000A_OriginalFilename: OLEAUT32.DLL_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OLEAUT32.DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 784
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ OLEAUT32.DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+
+ WS2_32.dll
+ C:\Windows\System32\WS2_32.dll
+ 140719954198528
+ 446464
+ 140719954286384
+ File: C:\Windows\System32\WS2_32.dll_x000D__x000A_InternalName: ws2_32.dll_x000D__x000A_OriginalFilename: ws2_32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Socket 2.0 32-Bit DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 436
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Socket 2.0 32-Bit DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (GDI32.dll)
+
+ GDI32.dll
+ C:\Windows\System32\GDI32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\GDI32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USER32.dll)
+
+ USER32.dll
+ C:\Windows\System32\USER32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\USER32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINTRUST.dll)
+
+ WINTRUST.dll
+ C:\Windows\System32\WINTRUST.dll
+ 140719888728064
+ 364544
+ 140719888791376
+ File: C:\Windows\System32\WINTRUST.dll_x000D__x000A_InternalName: WINTRUST.DLL_x000D__x000A_OriginalFilename: WINTRUST.DLL_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Trust Verification APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 356
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft Trust Verification APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+
+ MSASN1.dll
+ C:\Windows\System32\MSASN1.dll
+ 140719887876096
+ 73728
+ 140719887898576
+ File: C:\Windows\System32\MSASN1.dll_x000D__x000A_InternalName: msasn1.dll_x000D__x000A_OriginalFilename: msasn1.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ASN.1 Runtime APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 72
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ASN.1 Runtime APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+
+ CRYPT32.dll
+ C:\Windows\System32\CRYPT32.dll
+ 140719891480576
+ 1945600
+ 140719891804832
+ File: C:\Windows\System32\CRYPT32.dll_x000D__x000A_InternalName: CRYPT32.DLL_x000D__x000A_OriginalFilename: CRYPT32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto API32_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1900
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto API32
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+
+ IPHLPAPI.DLL
+ C:\Windows\SYSTEM32\IPHLPAPI.DLL
+ 140719876931584
+ 249856
+ 140719876989024
+ File: C:\Windows\SYSTEM32\IPHLPAPI.DLL_x000D__x000A_InternalName: iphlpapi.dll_x000D__x000A_OriginalFilename: iphlpapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: IP Helper API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 244
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ IP Helper API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMM.dll)
+
+ WINMM.dll
+ C:\Windows\SYSTEM32\WINMM.dll
+ 140719835054080
+ 147456
+ 140719835066368
+ File: C:\Windows\SYSTEM32\WINMM.dll_x000D__x000A_InternalName: winmm.dll_x000D__x000A_OriginalFilename: WINMM.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MCI API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MCI API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USERENV.dll)
+
+ USERENV.dll
+ C:\Windows\SYSTEM32\USERENV.dll
+ 140719887024128
+ 163840
+ 140719887043280
+ File: C:\Windows\SYSTEM32\USERENV.dll_x000D__x000A_InternalName: userenv_x000D__x000A_OriginalFilename: userenv.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Userenv_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Userenv
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (profapi.dll)
+
+ profapi.dll
+ C:\Windows\System32\profapi.dll
+ 140719888531456
+ 147456
+ 140719888564400
+ File: C:\Windows\System32\profapi.dll_x000D__x000A_InternalName: PROFAPI.DLL_x000D__x000A_OriginalFilename: PROFAPI.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: User Profile Basic API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ User Profile Basic API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (DWrite.dll)
+
+ DWrite.dll
+ C:\Windows\SYSTEM32\DWrite.dll
+ 140719303819264
+ 3129344
+ 140719304509728
+ File: C:\Windows\SYSTEM32\DWrite.dll_x000D__x000A_InternalName: DWrite_x000D__x000A_OriginalFilename: DWrite_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft DirectX Typography Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3056
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft DirectX Typography Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINSPOOL.DRV)
+
+ WINSPOOL.DRV
+ C:\Windows\SYSTEM32\WINSPOOL.DRV
+ 140719787606016
+ 561152
+ 140719787676448
+ File: C:\Windows\SYSTEM32\WINSPOOL.DRV_x000D__x000A_InternalName: winspool.drv_x000D__x000A_OriginalFilename: winspool.drv.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Spooler Driver_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 548
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Spooler Driver
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+
+ bcrypt.dll
+ C:\Windows\System32\bcrypt.dll
+ 140719897247744
+ 155648
+ 140719897281296
+ File: C:\Windows\System32\bcrypt.dll_x000D__x000A_InternalName: bcrypt.dll_x000D__x000A_OriginalFilename: bcrypt.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 152
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dbghelp.dll)
+
+ dbghelp.dll
+ C:\Windows\SYSTEM32\dbghelp.dll
+ 140719552397312
+ 2019328
+ 140719552479168
+ File: C:\Windows\SYSTEM32\dbghelp.dll_x000D__x000A_InternalName: DBGHELP.DLL_x000D__x000A_OriginalFilename: DBGHELP.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Image Helper_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Image Helper
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+
+ WINHTTP.dll
+ C:\Windows\SYSTEM32\WINHTTP.dll
+ 140719810019328
+ 991232
+ 140719810293024
+ File: C:\Windows\SYSTEM32\WINHTTP.dll_x000D__x000A_InternalName: winhttp.dll_x000D__x000A_OriginalFilename: winhttp.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows HTTP Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 968
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows HTTP Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Secur32.dll)
+
+ Secur32.dll
+ C:\Windows\SYSTEM32\Secur32.dll
+ 140719559147520
+ 49152
+ 140719559156816
+ File: C:\Windows\SYSTEM32\Secur32.dll_x000D__x000A_InternalName: secur32.dll_x000D__x000A_OriginalFilename: secur32.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+
+ dhcpcsvc.DLL
+ C:\Windows\SYSTEM32\dhcpcsvc.DLL
+ 140719782494208
+ 114688
+ 140719782503840
+ File: C:\Windows\SYSTEM32\dhcpcsvc.DLL_x000D__x000A_InternalName: dhcpcsvc.dll_x000D__x000A_OriginalFilename: dhcpcsvc.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DHCP Client Service_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 112
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DHCP Client Service
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (NSI.dll)
+
+ NSI.dll
+ C:\Windows\System32\NSI.dll
+ 140719916843008
+ 32768
+ 140719916851008
+ File: C:\Windows\System32\NSI.dll_x000D__x000A_InternalName: nsi.dll_x000D__x000A_OriginalFilename: nsi.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NSI User-mode interface DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 32
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NSI User-mode interface DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+
+ WINMMBASE.dll
+ C:\Windows\SYSTEM32\WINMMBASE.dll
+ 140719834857472
+ 184320
+ 140719834890448
+ File: C:\Windows\SYSTEM32\WINMMBASE.dll_x000D__x000A_InternalName: winmmbase.dll_x000D__x000A_OriginalFilename: WINMMbase.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base Multimedia Extension API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 180
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base Multimedia Extension API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+
+ cfgmgr32.dll
+ C:\Windows\System32\cfgmgr32.dll
+ 140719889252352
+ 303104
+ 140719889325904
+ File: C:\Windows\System32\cfgmgr32.dll_x000D__x000A_InternalName: cfgmgr32.dll_x000D__x000A_OriginalFilename: CFGMGR32.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Configuration Manager DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 296
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Configuration Manager DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+
+ PROPSYS.dll
+ C:\Windows\SYSTEM32\PROPSYS.dll
+ 140719831187456
+ 1736704
+ 140719831447408
+ File: C:\Windows\SYSTEM32\PROPSYS.dll_x000D__x000A_InternalName: propsys.dll_x000D__x000A_OriginalFilename: propsys.dll.mui_x000D__x000A_FileVersion: 7.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Property System_x000D__x000A_Product: Windows® Search_x000D__x000A_ProductVersion: 7.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1696
+ Microsoft Corporation
+ 7.0.17763.1 (WinBuild.160101.0800)
+ 7.0.17763.1
+ Microsoft Property System
+ Windows® Search
+
+
+
+
+ System.Diagnostics.ProcessModule (shcore.dll)
+
+ shcore.dll
+ C:\Windows\System32\shcore.dll
+ 140719907143680
+ 688128
+ 140719907388560
+ File: C:\Windows\System32\shcore.dll_x000D__x000A_InternalName: SHCORE_x000D__x000A_OriginalFilename: SHCORE.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: SHCORE_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 672
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ SHCORE
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+
+ SSPICLI.DLL
+ C:\Windows\SYSTEM32\SSPICLI.DLL
+ 140719886827520
+ 192512
+ 140719886881776
+ File: C:\Windows\SYSTEM32\SSPICLI.DLL_x000D__x000A_InternalName: sspicli.dll_x000D__x000A_OriginalFilename: sspicli.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 188
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+
+ CRYPTBASE.DLL
+ C:\Windows\SYSTEM32\CRYPTBASE.DLL
+ 140719881846784
+ 49152
+ 140719881855488
+ File: C:\Windows\SYSTEM32\CRYPTBASE.DLL_x000D__x000A_InternalName: cryptbase.dll_x000D__x000A_OriginalFilename: cryptbase.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base cryptographic API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base cryptographic API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ 44
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 30864
+ 30864
+ 54034432
+ 54034432
+ 345592
+ 345592
+ 57327616
+ 57327616
+ 62857216
+ 62857216
+ 2203778174976
+ 459952128
+ true
+
+
+ Idle
+ 64
+
+ 54034432
+ 54034432
+ chrome
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 5
+ 19404
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.703125S
+ 2019-08-24T14:18:25.2320411+03:00
+ PT13.359375S
+ PT12.65625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 23468
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:25.2871957+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 2
+ 2
+ 11960
+ true
+ Lowest
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.015625S
+ 2019-08-24T14:18:25.2884299+03:00
+ PT0.015625S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 6
+ 15104
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT2.0625S
+ 2019-08-24T14:18:25.2892063+03:00
+ PT9.515625S
+ PT7.453125S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 16732
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-24T14:18:25.2897506+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 21176
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:25.2905892+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 5
+ 21136
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:25.2967609+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 3172
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:25.2979255+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 5
+ 14200
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:25.2985009+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 22588
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:25.2989314+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 13100
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:25.2992883+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 2
+ 2
+ 11312
+ true
+ Lowest
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:25.2996254+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 23864
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-27T02:54:54.3150646+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ 13
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 252
+ 2203757715456
+ 439492608
+ false
+ 50520064
+ 50520064
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+ PT3.984375S
+ PT30.328125S
+ PT26.34375S
+
+
+ 0
+
+
+ true
+
+
+
+
+ chrome
+ 1
+ 252
+ 2203757715456
+ 50520064
+ 54034432
+ 30864
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+
+
+ System.Diagnostics.Process (chrome)
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ 7716
+ 8
+ false
+ 2019-08-24T14:18:00.3253674+03:00
+ 23804
+ .
+ 1413120
+ 204800
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ System.Diagnostics.ProcessModule (ntdll.dll)
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+ System.Diagnostics.ProcessModule (VERSION.dll)
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+ System.Diagnostics.ProcessModule (sechost.dll)
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+ System.Diagnostics.ProcessModule (user32.dll)
+ System.Diagnostics.ProcessModule (win32u.dll)
+ System.Diagnostics.ProcessModule (GDI32.dll)
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+ System.Diagnostics.ProcessModule (shcore.dll)
+ System.Diagnostics.ProcessModule (combase.dll)
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+ System.Diagnostics.ProcessModule (profapi.dll)
+ System.Diagnostics.ProcessModule (powrprof.dll)
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+ System.Diagnostics.ProcessModule (chrome.dll)
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+ System.Diagnostics.ProcessModule (USERENV.dll)
+ System.Diagnostics.ProcessModule (gpapi.dll)
+ System.Diagnostics.ProcessModule (wkscli.dll)
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+ System.Diagnostics.ProcessModule (netutils.dll)
+ System.Diagnostics.ProcessModule (ole32.dll)
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+ System.Diagnostics.ProcessModule (Secur32.dll)
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+ System.Diagnostics.ProcessModule (DWrite.dll)
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+ System.Diagnostics.ProcessModule (COMCTL32.dll)
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+ System.Diagnostics.ProcessModule (twinapi.dll)
+ System.Diagnostics.ProcessModule (NLAapi.dll)
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+ System.Diagnostics.ProcessModule (NSI.dll)
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+ System.Diagnostics.ProcessModule (mscms.dll)
+ System.Diagnostics.ProcessModule (ColorAdapterClient.dll)
+ System.Diagnostics.ProcessModule (icm32.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+ System.Diagnostics.ProcessModule (InputHost.dll)
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+ System.Diagnostics.ProcessModule (d2d1.dll)
+ System.Diagnostics.ProcessModule (d3d11.dll)
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+ System.Diagnostics.ProcessModule (wintypes.dll)
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+ System.Diagnostics.ProcessModule (dxgi.dll)
+ System.Diagnostics.ProcessModule (WTSAPI32.dll)
+ System.Diagnostics.ProcessModule (wlanapi.dll)
+ System.Diagnostics.ProcessModule (WINSTA.dll)
+ System.Diagnostics.ProcessModule (wbemprox.dll)
+ System.Diagnostics.ProcessModule (wbemcomn.dll)
+ System.Diagnostics.ProcessModule (MMDevApi.dll)
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+ System.Diagnostics.ProcessModule (wbemsvc.dll)
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+ System.Diagnostics.ProcessModule (fastprox.dll)
+ System.Diagnostics.ProcessModule (wmiutils.dll)
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+ System.Diagnostics.ProcessModule (FirewallAPI.dll)
+ System.Diagnostics.ProcessModule (fwbase.dll)
+ System.Diagnostics.ProcessModule (LINKINFO.dll)
+ System.Diagnostics.ProcessModule (FWPolicyIOMgr.dll)
+ System.Diagnostics.ProcessModule (dataexchange.dll)
+ System.Diagnostics.ProcessModule (dcomp.dll)
+ System.Diagnostics.ProcessModule (atlthunk.dll)
+ System.Diagnostics.ProcessModule (OLEACC.dll)
+ System.Diagnostics.ProcessModule (directmanipulation.dll)
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (explorerframe.dll)
+ System.Diagnostics.ProcessModule (wpnapps.dll)
+ System.Diagnostics.ProcessModule (XmlLite.dll)
+ System.Diagnostics.ProcessModule (usermgrcli.dll)
+ System.Diagnostics.ProcessModule (mswsock.dll)
+ System.Diagnostics.ProcessModule (WINMM.dll)
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (WmiPerfInst.dll)
+ System.Diagnostics.ProcessModule (pdh.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Bluetooth.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.HostName.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.dll)
+ System.Diagnostics.ProcessModule (BiWinrt.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.Connectivity.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Enumeration.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Radios.dll)
+ System.Diagnostics.ProcessModule (NETAPI32.dll)
+ System.Diagnostics.ProcessModule (SAMCLI.DLL)
+ System.Diagnostics.ProcessModule (SAMLIB.dll)
+ System.Diagnostics.ProcessModule (wdmaud.drv)
+ System.Diagnostics.ProcessModule (ksuser.dll)
+ System.Diagnostics.ProcessModule (AVRT.dll)
+ System.Diagnostics.ProcessModule (AUDIOSES.DLL)
+ System.Diagnostics.ProcessModule (msacm32.drv)
+ System.Diagnostics.ProcessModule (MSACM32.dll)
+ System.Diagnostics.ProcessModule (midimap.dll)
+ System.Diagnostics.ProcessModule (resourcepolicyclient.dll)
+ System.Diagnostics.ProcessModule (BitsProxy.dll)
+
+
+ 61568
+ 61568
+ 316080128
+ 316080128
+ 857648
+ 857648
+ 455720960
+ 455720960
+ 398323712
+ 398323712
+ 2204288917504
+ 970694656
+ true
+ Normal
+ 316080128
+ 316080128
+ chrome
+ 65535
+ 1
+
+
+
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+
+
+ 1747
+ 2204143845376
+ 825622528
+ false
+ 112414720
+ 112414720
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ PT11M7.53125S
+ PT21M46.28125S
+ PT10M38.75S
+ 1770664
+ The Living Tombstone Radio - Now Playing on Pandora - Google Chrome
+ true
+
+
+
+
+ chrome
+ 1
+ 1747
+ 2204143845376
+ 112414720
+ 316080128
+ 61568
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ System.Diagnostics.Process (explorer)
+ Google LLC
+ 1306.28125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+ Google LLC
+ 30.328125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+
+
+ System.Diagnostics.Process (chrome)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 7080
+
+ 8
+ false
+ 2019-08-24T14:18:01.0269646+03:00
+ 16452
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+
+ chrome_elf.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll
+ 140719325642752
+ 925696
+ 140719326148464
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll_x000D__x000A_InternalName: chrome_elf_dll_x000D__x000A_OriginalFilename: chrome_elf.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 904
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (VERSION.dll)
+
+ VERSION.dll
+ C:\Windows\SYSTEM32\VERSION.dll
+ 140719800254464
+ 40960
+ 140719800259344
+ File: C:\Windows\SYSTEM32\VERSION.dll_x000D__x000A_InternalName: version_x000D__x000A_OriginalFilename: VERSION.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Version Checking and File Installation Libraries_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Version Checking and File Installation Libraries
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+
+ ADVAPI32.dll
+ C:\Windows\System32\ADVAPI32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\ADVAPI32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_child.dll)
+
+ chrome_child.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll
+ 140717177962496
+ 87977984
+ 140717247440176
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll_x000D__x000A_InternalName: chrome_dll_x000D__x000A_OriginalFilename: chrome.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 85916
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+
+ OLEAUT32.dll
+ C:\Windows\System32\OLEAUT32.dll
+ 140719946465280
+ 802816
+ 140719946574624
+ File: C:\Windows\System32\OLEAUT32.dll_x000D__x000A_InternalName: OLEAUT32.DLL_x000D__x000A_OriginalFilename: OLEAUT32.DLL_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OLEAUT32.DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 784
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ OLEAUT32.DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+
+ WS2_32.dll
+ C:\Windows\System32\WS2_32.dll
+ 140719954198528
+ 446464
+ 140719954286384
+ File: C:\Windows\System32\WS2_32.dll_x000D__x000A_InternalName: ws2_32.dll_x000D__x000A_OriginalFilename: ws2_32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Socket 2.0 32-Bit DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 436
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Socket 2.0 32-Bit DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (GDI32.dll)
+
+ GDI32.dll
+ C:\Windows\System32\GDI32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\GDI32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USER32.dll)
+
+ USER32.dll
+ C:\Windows\System32\USER32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\USER32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINTRUST.dll)
+
+ WINTRUST.dll
+ C:\Windows\System32\WINTRUST.dll
+ 140719888728064
+ 364544
+ 140719888791376
+ File: C:\Windows\System32\WINTRUST.dll_x000D__x000A_InternalName: WINTRUST.DLL_x000D__x000A_OriginalFilename: WINTRUST.DLL_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Trust Verification APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 356
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft Trust Verification APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+
+ MSASN1.dll
+ C:\Windows\System32\MSASN1.dll
+ 140719887876096
+ 73728
+ 140719887898576
+ File: C:\Windows\System32\MSASN1.dll_x000D__x000A_InternalName: msasn1.dll_x000D__x000A_OriginalFilename: msasn1.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ASN.1 Runtime APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 72
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ASN.1 Runtime APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+
+ CRYPT32.dll
+ C:\Windows\System32\CRYPT32.dll
+ 140719891480576
+ 1945600
+ 140719891804832
+ File: C:\Windows\System32\CRYPT32.dll_x000D__x000A_InternalName: CRYPT32.DLL_x000D__x000A_OriginalFilename: CRYPT32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto API32_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1900
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto API32
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+
+ IPHLPAPI.DLL
+ C:\Windows\SYSTEM32\IPHLPAPI.DLL
+ 140719876931584
+ 249856
+ 140719876989024
+ File: C:\Windows\SYSTEM32\IPHLPAPI.DLL_x000D__x000A_InternalName: iphlpapi.dll_x000D__x000A_OriginalFilename: iphlpapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: IP Helper API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 244
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ IP Helper API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMM.dll)
+
+ WINMM.dll
+ C:\Windows\SYSTEM32\WINMM.dll
+ 140719835054080
+ 147456
+ 140719835066368
+ File: C:\Windows\SYSTEM32\WINMM.dll_x000D__x000A_InternalName: winmm.dll_x000D__x000A_OriginalFilename: WINMM.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MCI API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MCI API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USERENV.dll)
+
+ USERENV.dll
+ C:\Windows\SYSTEM32\USERENV.dll
+ 140719887024128
+ 163840
+ 140719887043280
+ File: C:\Windows\SYSTEM32\USERENV.dll_x000D__x000A_InternalName: userenv_x000D__x000A_OriginalFilename: userenv.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Userenv_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Userenv
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (profapi.dll)
+
+ profapi.dll
+ C:\Windows\System32\profapi.dll
+ 140719888531456
+ 147456
+ 140719888564400
+ File: C:\Windows\System32\profapi.dll_x000D__x000A_InternalName: PROFAPI.DLL_x000D__x000A_OriginalFilename: PROFAPI.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: User Profile Basic API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ User Profile Basic API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (DWrite.dll)
+
+ DWrite.dll
+ C:\Windows\SYSTEM32\DWrite.dll
+ 140719303819264
+ 3129344
+ 140719304509728
+ File: C:\Windows\SYSTEM32\DWrite.dll_x000D__x000A_InternalName: DWrite_x000D__x000A_OriginalFilename: DWrite_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft DirectX Typography Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3056
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft DirectX Typography Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINSPOOL.DRV)
+
+ WINSPOOL.DRV
+ C:\Windows\SYSTEM32\WINSPOOL.DRV
+ 140719787606016
+ 561152
+ 140719787676448
+ File: C:\Windows\SYSTEM32\WINSPOOL.DRV_x000D__x000A_InternalName: winspool.drv_x000D__x000A_OriginalFilename: winspool.drv.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Spooler Driver_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 548
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Spooler Driver
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+
+ bcrypt.dll
+ C:\Windows\System32\bcrypt.dll
+ 140719897247744
+ 155648
+ 140719897281296
+ File: C:\Windows\System32\bcrypt.dll_x000D__x000A_InternalName: bcrypt.dll_x000D__x000A_OriginalFilename: bcrypt.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 152
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dbghelp.dll)
+
+ dbghelp.dll
+ C:\Windows\SYSTEM32\dbghelp.dll
+ 140719552397312
+ 2019328
+ 140719552479168
+ File: C:\Windows\SYSTEM32\dbghelp.dll_x000D__x000A_InternalName: DBGHELP.DLL_x000D__x000A_OriginalFilename: DBGHELP.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Image Helper_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Image Helper
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+
+ WINHTTP.dll
+ C:\Windows\SYSTEM32\WINHTTP.dll
+ 140719810019328
+ 991232
+ 140719810293024
+ File: C:\Windows\SYSTEM32\WINHTTP.dll_x000D__x000A_InternalName: winhttp.dll_x000D__x000A_OriginalFilename: winhttp.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows HTTP Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 968
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows HTTP Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Secur32.dll)
+
+ Secur32.dll
+ C:\Windows\SYSTEM32\Secur32.dll
+ 140719559147520
+ 49152
+ 140719559156816
+ File: C:\Windows\SYSTEM32\Secur32.dll_x000D__x000A_InternalName: secur32.dll_x000D__x000A_OriginalFilename: secur32.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+
+ dhcpcsvc.DLL
+ C:\Windows\SYSTEM32\dhcpcsvc.DLL
+ 140719782494208
+ 114688
+ 140719782503840
+ File: C:\Windows\SYSTEM32\dhcpcsvc.DLL_x000D__x000A_InternalName: dhcpcsvc.dll_x000D__x000A_OriginalFilename: dhcpcsvc.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DHCP Client Service_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 112
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DHCP Client Service
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (NSI.dll)
+
+ NSI.dll
+ C:\Windows\System32\NSI.dll
+ 140719916843008
+ 32768
+ 140719916851008
+ File: C:\Windows\System32\NSI.dll_x000D__x000A_InternalName: nsi.dll_x000D__x000A_OriginalFilename: nsi.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NSI User-mode interface DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 32
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NSI User-mode interface DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+
+ WINMMBASE.dll
+ C:\Windows\SYSTEM32\WINMMBASE.dll
+ 140719834857472
+ 184320
+ 140719834890448
+ File: C:\Windows\SYSTEM32\WINMMBASE.dll_x000D__x000A_InternalName: winmmbase.dll_x000D__x000A_OriginalFilename: WINMMbase.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base Multimedia Extension API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 180
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base Multimedia Extension API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+
+ cfgmgr32.dll
+ C:\Windows\System32\cfgmgr32.dll
+ 140719889252352
+ 303104
+ 140719889325904
+ File: C:\Windows\System32\cfgmgr32.dll_x000D__x000A_InternalName: cfgmgr32.dll_x000D__x000A_OriginalFilename: CFGMGR32.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Configuration Manager DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 296
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Configuration Manager DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+
+ PROPSYS.dll
+ C:\Windows\SYSTEM32\PROPSYS.dll
+ 140719831187456
+ 1736704
+ 140719831447408
+ File: C:\Windows\SYSTEM32\PROPSYS.dll_x000D__x000A_InternalName: propsys.dll_x000D__x000A_OriginalFilename: propsys.dll.mui_x000D__x000A_FileVersion: 7.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Property System_x000D__x000A_Product: Windows® Search_x000D__x000A_ProductVersion: 7.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1696
+ Microsoft Corporation
+ 7.0.17763.1 (WinBuild.160101.0800)
+ 7.0.17763.1
+ Microsoft Property System
+ Windows® Search
+
+
+
+
+ System.Diagnostics.ProcessModule (shcore.dll)
+
+ shcore.dll
+ C:\Windows\System32\shcore.dll
+ 140719907143680
+ 688128
+ 140719907388560
+ File: C:\Windows\System32\shcore.dll_x000D__x000A_InternalName: SHCORE_x000D__x000A_OriginalFilename: SHCORE.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: SHCORE_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 672
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ SHCORE
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+
+ SSPICLI.DLL
+ C:\Windows\SYSTEM32\SSPICLI.DLL
+ 140719886827520
+ 192512
+ 140719886881776
+ File: C:\Windows\SYSTEM32\SSPICLI.DLL_x000D__x000A_InternalName: sspicli.dll_x000D__x000A_OriginalFilename: sspicli.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 188
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+
+ CRYPTBASE.DLL
+ C:\Windows\SYSTEM32\CRYPTBASE.DLL
+ 140719881846784
+ 49152
+ 140719881855488
+ File: C:\Windows\SYSTEM32\CRYPTBASE.DLL_x000D__x000A_InternalName: cryptbase.dll_x000D__x000A_OriginalFilename: cryptbase.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base cryptographic API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base cryptographic API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ 44
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 40248
+ 40248
+ 57729024
+ 57729024
+ 364304
+ 364304
+ 65871872
+ 65871872
+ 81608704
+ 81608704
+ 2203830345728
+ 512122880
+ true
+
+
+ Normal
+ 32
+
+ 57729024
+ 57729024
+ chrome
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 9092
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT1.734375S
+ 2019-08-24T14:18:01.0269665+03:00
+ PT25.390625S
+ PT23.65625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 23060
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.1098393+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 6
+ 23920
+ true
+ Lowest
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.1121281+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 14128
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT3.234375S
+ 2019-08-24T14:18:01.1133499+03:00
+ PT10.640625S
+ PT7.40625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 14168
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-24T14:18:01.1143636+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 8156
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.1155671+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 11068
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.015625S
+ 2019-08-24T14:18:01.1252164+03:00
+ PT0.03125S
+ PT0.015625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 24048
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.1274934+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 6264
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.1287853+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 13592
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.1304862+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 18268
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.1316548+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 6
+ 5552
+ true
+ Lowest
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.1324836+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 19428
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-27T02:54:52.9737724+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 18148
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-27T02:56:43.10665+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 23088
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-27T02:56:43.1078534+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ 15
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 288
+ 2203804323840
+ 486100992
+ false
+ 60903424
+ 60903424
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+ PT8.828125S
+ PT52.671875S
+ PT43.84375S
+
+
+ 0
+
+
+ true
+
+
+
+
+ chrome
+ 1
+ 288
+ 2203804323840
+ 60903424
+ 57729024
+ 40248
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+
+
+ System.Diagnostics.Process (chrome)
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ 7152
+ 8
+ false
+ 2019-08-24T14:18:00.3253674+03:00
+ 23804
+ .
+ 1413120
+ 204800
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ System.Diagnostics.ProcessModule (ntdll.dll)
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+ System.Diagnostics.ProcessModule (VERSION.dll)
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+ System.Diagnostics.ProcessModule (sechost.dll)
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+ System.Diagnostics.ProcessModule (user32.dll)
+ System.Diagnostics.ProcessModule (win32u.dll)
+ System.Diagnostics.ProcessModule (GDI32.dll)
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+ System.Diagnostics.ProcessModule (shcore.dll)
+ System.Diagnostics.ProcessModule (combase.dll)
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+ System.Diagnostics.ProcessModule (profapi.dll)
+ System.Diagnostics.ProcessModule (powrprof.dll)
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+ System.Diagnostics.ProcessModule (chrome.dll)
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+ System.Diagnostics.ProcessModule (USERENV.dll)
+ System.Diagnostics.ProcessModule (gpapi.dll)
+ System.Diagnostics.ProcessModule (wkscli.dll)
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+ System.Diagnostics.ProcessModule (netutils.dll)
+ System.Diagnostics.ProcessModule (ole32.dll)
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+ System.Diagnostics.ProcessModule (Secur32.dll)
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+ System.Diagnostics.ProcessModule (DWrite.dll)
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+ System.Diagnostics.ProcessModule (COMCTL32.dll)
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+ System.Diagnostics.ProcessModule (twinapi.dll)
+ System.Diagnostics.ProcessModule (NLAapi.dll)
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+ System.Diagnostics.ProcessModule (NSI.dll)
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+ System.Diagnostics.ProcessModule (mscms.dll)
+ System.Diagnostics.ProcessModule (ColorAdapterClient.dll)
+ System.Diagnostics.ProcessModule (icm32.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+ System.Diagnostics.ProcessModule (InputHost.dll)
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+ System.Diagnostics.ProcessModule (d2d1.dll)
+ System.Diagnostics.ProcessModule (d3d11.dll)
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+ System.Diagnostics.ProcessModule (wintypes.dll)
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+ System.Diagnostics.ProcessModule (dxgi.dll)
+ System.Diagnostics.ProcessModule (WTSAPI32.dll)
+ System.Diagnostics.ProcessModule (wlanapi.dll)
+ System.Diagnostics.ProcessModule (WINSTA.dll)
+ System.Diagnostics.ProcessModule (wbemprox.dll)
+ System.Diagnostics.ProcessModule (wbemcomn.dll)
+ System.Diagnostics.ProcessModule (MMDevApi.dll)
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+ System.Diagnostics.ProcessModule (wbemsvc.dll)
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+ System.Diagnostics.ProcessModule (fastprox.dll)
+ System.Diagnostics.ProcessModule (wmiutils.dll)
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+ System.Diagnostics.ProcessModule (FirewallAPI.dll)
+ System.Diagnostics.ProcessModule (fwbase.dll)
+ System.Diagnostics.ProcessModule (LINKINFO.dll)
+ System.Diagnostics.ProcessModule (FWPolicyIOMgr.dll)
+ System.Diagnostics.ProcessModule (dataexchange.dll)
+ System.Diagnostics.ProcessModule (dcomp.dll)
+ System.Diagnostics.ProcessModule (atlthunk.dll)
+ System.Diagnostics.ProcessModule (OLEACC.dll)
+ System.Diagnostics.ProcessModule (directmanipulation.dll)
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (explorerframe.dll)
+ System.Diagnostics.ProcessModule (wpnapps.dll)
+ System.Diagnostics.ProcessModule (XmlLite.dll)
+ System.Diagnostics.ProcessModule (usermgrcli.dll)
+ System.Diagnostics.ProcessModule (mswsock.dll)
+ System.Diagnostics.ProcessModule (WINMM.dll)
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (WmiPerfInst.dll)
+ System.Diagnostics.ProcessModule (pdh.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Bluetooth.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.HostName.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.dll)
+ System.Diagnostics.ProcessModule (BiWinrt.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.Connectivity.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Enumeration.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Radios.dll)
+ System.Diagnostics.ProcessModule (NETAPI32.dll)
+ System.Diagnostics.ProcessModule (SAMCLI.DLL)
+ System.Diagnostics.ProcessModule (SAMLIB.dll)
+ System.Diagnostics.ProcessModule (wdmaud.drv)
+ System.Diagnostics.ProcessModule (ksuser.dll)
+ System.Diagnostics.ProcessModule (AVRT.dll)
+ System.Diagnostics.ProcessModule (AUDIOSES.DLL)
+ System.Diagnostics.ProcessModule (msacm32.drv)
+ System.Diagnostics.ProcessModule (MSACM32.dll)
+ System.Diagnostics.ProcessModule (midimap.dll)
+ System.Diagnostics.ProcessModule (resourcepolicyclient.dll)
+ System.Diagnostics.ProcessModule (BitsProxy.dll)
+
+
+ 61568
+ 61568
+ 316080128
+ 316080128
+ 857648
+ 857648
+ 455720960
+ 455720960
+ 398323712
+ 398323712
+ 2204288917504
+ 970694656
+ true
+ Normal
+ 316080128
+ 316080128
+ chrome
+ 65535
+ 1
+
+
+
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+
+
+ 1747
+ 2204143845376
+ 825622528
+ false
+ 112414720
+ 112414720
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ PT11M7.53125S
+ PT21M46.28125S
+ PT10M38.75S
+ 1770664
+ The Living Tombstone Radio - Now Playing on Pandora - Google Chrome
+ true
+
+
+
+
+ chrome
+ 1
+ 1747
+ 2204143845376
+ 112414720
+ 316080128
+ 61568
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ System.Diagnostics.Process (explorer)
+ Google LLC
+ 1306.28125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+ Google LLC
+ 52.671875
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+
+
+ System.Diagnostics.Process (chrome)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 6676
+
+ 8
+ false
+ 2019-08-24T14:18:00.6284219+03:00
+ 16692
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+
+ chrome_elf.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll
+ 140719325642752
+ 925696
+ 140719326148464
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll_x000D__x000A_InternalName: chrome_elf_dll_x000D__x000A_OriginalFilename: chrome_elf.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 904
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (VERSION.dll)
+
+ VERSION.dll
+ C:\Windows\SYSTEM32\VERSION.dll
+ 140719800254464
+ 40960
+ 140719800259344
+ File: C:\Windows\SYSTEM32\VERSION.dll_x000D__x000A_InternalName: version_x000D__x000A_OriginalFilename: VERSION.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Version Checking and File Installation Libraries_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Version Checking and File Installation Libraries
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+
+ ADVAPI32.dll
+ C:\Windows\System32\ADVAPI32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\ADVAPI32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (user32.dll)
+
+ user32.dll
+ C:\Windows\System32\user32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\user32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (GDI32.dll)
+
+ GDI32.dll
+ C:\Windows\System32\GDI32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\GDI32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_child.dll)
+
+ chrome_child.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll
+ 140717177962496
+ 87977984
+ 140717247440176
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll_x000D__x000A_InternalName: chrome_dll_x000D__x000A_OriginalFilename: chrome.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 85916
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+
+ OLEAUT32.dll
+ C:\Windows\System32\OLEAUT32.dll
+ 140719946465280
+ 802816
+ 140719946574624
+ File: C:\Windows\System32\OLEAUT32.dll_x000D__x000A_InternalName: OLEAUT32.DLL_x000D__x000A_OriginalFilename: OLEAUT32.DLL_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OLEAUT32.DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 784
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ OLEAUT32.DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+
+ WS2_32.dll
+ C:\Windows\System32\WS2_32.dll
+ 140719954198528
+ 446464
+ 140719954286384
+ File: C:\Windows\System32\WS2_32.dll_x000D__x000A_InternalName: ws2_32.dll_x000D__x000A_OriginalFilename: ws2_32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Socket 2.0 32-Bit DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 436
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Socket 2.0 32-Bit DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINTRUST.dll)
+
+ WINTRUST.dll
+ C:\Windows\System32\WINTRUST.dll
+ 140719888728064
+ 364544
+ 140719888791376
+ File: C:\Windows\System32\WINTRUST.dll_x000D__x000A_InternalName: WINTRUST.DLL_x000D__x000A_OriginalFilename: WINTRUST.DLL_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Trust Verification APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 356
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft Trust Verification APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+
+ MSASN1.dll
+ C:\Windows\System32\MSASN1.dll
+ 140719887876096
+ 73728
+ 140719887898576
+ File: C:\Windows\System32\MSASN1.dll_x000D__x000A_InternalName: msasn1.dll_x000D__x000A_OriginalFilename: msasn1.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ASN.1 Runtime APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 72
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ASN.1 Runtime APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+
+ CRYPT32.dll
+ C:\Windows\System32\CRYPT32.dll
+ 140719891480576
+ 1945600
+ 140719891804832
+ File: C:\Windows\System32\CRYPT32.dll_x000D__x000A_InternalName: CRYPT32.DLL_x000D__x000A_OriginalFilename: CRYPT32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto API32_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1900
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto API32
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+
+ IPHLPAPI.DLL
+ C:\Windows\SYSTEM32\IPHLPAPI.DLL
+ 140719876931584
+ 249856
+ 140719876989024
+ File: C:\Windows\SYSTEM32\IPHLPAPI.DLL_x000D__x000A_InternalName: iphlpapi.dll_x000D__x000A_OriginalFilename: iphlpapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: IP Helper API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 244
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ IP Helper API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMM.dll)
+
+ WINMM.dll
+ C:\Windows\SYSTEM32\WINMM.dll
+ 140719835054080
+ 147456
+ 140719835066368
+ File: C:\Windows\SYSTEM32\WINMM.dll_x000D__x000A_InternalName: winmm.dll_x000D__x000A_OriginalFilename: WINMM.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MCI API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MCI API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USERENV.dll)
+
+ USERENV.dll
+ C:\Windows\SYSTEM32\USERENV.dll
+ 140719887024128
+ 163840
+ 140719887043280
+ File: C:\Windows\SYSTEM32\USERENV.dll_x000D__x000A_InternalName: userenv_x000D__x000A_OriginalFilename: userenv.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Userenv_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Userenv
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (profapi.dll)
+
+ profapi.dll
+ C:\Windows\System32\profapi.dll
+ 140719888531456
+ 147456
+ 140719888564400
+ File: C:\Windows\System32\profapi.dll_x000D__x000A_InternalName: PROFAPI.DLL_x000D__x000A_OriginalFilename: PROFAPI.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: User Profile Basic API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ User Profile Basic API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (DWrite.dll)
+
+ DWrite.dll
+ C:\Windows\SYSTEM32\DWrite.dll
+ 140719303819264
+ 3129344
+ 140719304509728
+ File: C:\Windows\SYSTEM32\DWrite.dll_x000D__x000A_InternalName: DWrite_x000D__x000A_OriginalFilename: DWrite_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft DirectX Typography Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3056
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft DirectX Typography Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINSPOOL.DRV)
+
+ WINSPOOL.DRV
+ C:\Windows\SYSTEM32\WINSPOOL.DRV
+ 140719787606016
+ 561152
+ 140719787676448
+ File: C:\Windows\SYSTEM32\WINSPOOL.DRV_x000D__x000A_InternalName: winspool.drv_x000D__x000A_OriginalFilename: winspool.drv.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Spooler Driver_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 548
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Spooler Driver
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+
+ bcrypt.dll
+ C:\Windows\System32\bcrypt.dll
+ 140719897247744
+ 155648
+ 140719897281296
+ File: C:\Windows\System32\bcrypt.dll_x000D__x000A_InternalName: bcrypt.dll_x000D__x000A_OriginalFilename: bcrypt.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 152
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dbghelp.dll)
+
+ dbghelp.dll
+ C:\Windows\SYSTEM32\dbghelp.dll
+ 140719552397312
+ 2019328
+ 140719552479168
+ File: C:\Windows\SYSTEM32\dbghelp.dll_x000D__x000A_InternalName: DBGHELP.DLL_x000D__x000A_OriginalFilename: DBGHELP.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Image Helper_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Image Helper
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+
+ WINHTTP.dll
+ C:\Windows\SYSTEM32\WINHTTP.dll
+ 140719810019328
+ 991232
+ 140719810293024
+ File: C:\Windows\SYSTEM32\WINHTTP.dll_x000D__x000A_InternalName: winhttp.dll_x000D__x000A_OriginalFilename: winhttp.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows HTTP Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 968
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows HTTP Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Secur32.dll)
+
+ Secur32.dll
+ C:\Windows\SYSTEM32\Secur32.dll
+ 140719559147520
+ 49152
+ 140719559156816
+ File: C:\Windows\SYSTEM32\Secur32.dll_x000D__x000A_InternalName: secur32.dll_x000D__x000A_OriginalFilename: secur32.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+
+ dhcpcsvc.DLL
+ C:\Windows\SYSTEM32\dhcpcsvc.DLL
+ 140719782494208
+ 114688
+ 140719782503840
+ File: C:\Windows\SYSTEM32\dhcpcsvc.DLL_x000D__x000A_InternalName: dhcpcsvc.dll_x000D__x000A_OriginalFilename: dhcpcsvc.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DHCP Client Service_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 112
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DHCP Client Service
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (NSI.dll)
+
+ NSI.dll
+ C:\Windows\System32\NSI.dll
+ 140719916843008
+ 32768
+ 140719916851008
+ File: C:\Windows\System32\NSI.dll_x000D__x000A_InternalName: nsi.dll_x000D__x000A_OriginalFilename: nsi.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NSI User-mode interface DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 32
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NSI User-mode interface DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+
+ WINMMBASE.dll
+ C:\Windows\SYSTEM32\WINMMBASE.dll
+ 140719834857472
+ 184320
+ 140719834890448
+ File: C:\Windows\SYSTEM32\WINMMBASE.dll_x000D__x000A_InternalName: winmmbase.dll_x000D__x000A_OriginalFilename: WINMMbase.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base Multimedia Extension API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 180
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base Multimedia Extension API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+
+ cfgmgr32.dll
+ C:\Windows\System32\cfgmgr32.dll
+ 140719889252352
+ 303104
+ 140719889325904
+ File: C:\Windows\System32\cfgmgr32.dll_x000D__x000A_InternalName: cfgmgr32.dll_x000D__x000A_OriginalFilename: CFGMGR32.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Configuration Manager DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 296
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Configuration Manager DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+
+ PROPSYS.dll
+ C:\Windows\SYSTEM32\PROPSYS.dll
+ 140719831187456
+ 1736704
+ 140719831447408
+ File: C:\Windows\SYSTEM32\PROPSYS.dll_x000D__x000A_InternalName: propsys.dll_x000D__x000A_OriginalFilename: propsys.dll.mui_x000D__x000A_FileVersion: 7.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Property System_x000D__x000A_Product: Windows® Search_x000D__x000A_ProductVersion: 7.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1696
+ Microsoft Corporation
+ 7.0.17763.1 (WinBuild.160101.0800)
+ 7.0.17763.1
+ Microsoft Property System
+ Windows® Search
+
+
+
+
+ System.Diagnostics.ProcessModule (shcore.dll)
+
+ shcore.dll
+ C:\Windows\System32\shcore.dll
+ 140719907143680
+ 688128
+ 140719907388560
+ File: C:\Windows\System32\shcore.dll_x000D__x000A_InternalName: SHCORE_x000D__x000A_OriginalFilename: SHCORE.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: SHCORE_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 672
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ SHCORE
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+
+ SSPICLI.DLL
+ C:\Windows\SYSTEM32\SSPICLI.DLL
+ 140719886827520
+ 192512
+ 140719886881776
+ File: C:\Windows\SYSTEM32\SSPICLI.DLL_x000D__x000A_InternalName: sspicli.dll_x000D__x000A_OriginalFilename: sspicli.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 188
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+
+ CRYPTBASE.DLL
+ C:\Windows\SYSTEM32\CRYPTBASE.DLL
+ 140719881846784
+ 49152
+ 140719881855488
+ File: C:\Windows\SYSTEM32\CRYPTBASE.DLL_x000D__x000A_InternalName: cryptbase.dll_x000D__x000A_OriginalFilename: cryptbase.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base cryptographic API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base cryptographic API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (NLAapi.dll)
+
+ NLAapi.dll
+ C:\Windows\system32\NLAapi.dll
+ 140719828631552
+ 110592
+ 140719828656896
+ File: C:\Windows\system32\NLAapi.dll_x000D__x000A_InternalName: nlaapi.dll_x000D__x000A_OriginalFilename: nlaapi.dll_x000D__x000A_FileVersion: 10.0.17763.134 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Network Location Awareness 2_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.134_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 108
+ Microsoft Corporation
+ 10.0.17763.134 (WinBuild.160101.0800)
+ 10.0.17763.134
+ Network Location Awareness 2
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+
+ dhcpcsvc6.DLL
+ C:\Windows\SYSTEM32\dhcpcsvc6.DLL
+ 140719782232064
+ 90112
+ 140719782238752
+ File: C:\Windows\SYSTEM32\dhcpcsvc6.DLL_x000D__x000A_InternalName: dhcpcsvc6.dll_x000D__x000A_OriginalFilename: dhcpcsvc6.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DHCPv6 Client_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 88
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DHCPv6 Client
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+
+ DNSAPI.dll
+ C:\Windows\SYSTEM32\DNSAPI.dll
+ 140719877193728
+ 811008
+ 140719877369872
+ File: C:\Windows\SYSTEM32\DNSAPI.dll_x000D__x000A_InternalName: dnsapi_x000D__x000A_OriginalFilename: dnsapi_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DNS Client API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 792
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DNS Client API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+
+ DPAPI.dll
+ C:\Windows\System32\DPAPI.dll
+ 140719875096576
+ 40960
+ 140719875102688
+ File: C:\Windows\System32\DPAPI.dll_x000D__x000A_InternalName: dpapi.dll_x000D__x000A_OriginalFilename: dpapi.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Data Protection API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Data Protection API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (mswsock.dll)
+
+ mswsock.dll
+ C:\Windows\system32\mswsock.dll
+ 140719879946240
+ 421888
+ 140719880017168
+ File: C:\Windows\system32\mswsock.dll_x000D__x000A_InternalName: mswsock.dll_x000D__x000A_OriginalFilename: mswsock.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Windows Sockets 2.0 Service Provider_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 412
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft Windows Sockets 2.0 Service Provider
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (rasadhlp.dll)
+
+ rasadhlp.dll
+ C:\Windows\System32\rasadhlp.dll
+ 140719719251968
+ 40960
+ 140719719257232
+ File: C:\Windows\System32\rasadhlp.dll_x000D__x000A_InternalName: rasadhlp.dll_x000D__x000A_OriginalFilename: rasadhlp.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Access AutoDial Helper_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Access AutoDial Helper
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (fwpuclnt.dll)
+
+ fwpuclnt.dll
+ C:\Windows\System32\fwpuclnt.dll
+ 140719712108544
+ 495616
+ 140719712131680
+ File: C:\Windows\System32\fwpuclnt.dll_x000D__x000A_InternalName: fwpuclnt.dll_x000D__x000A_OriginalFilename: fwpuclnt.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: FWP/IPsec User-Mode API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 484
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ FWP/IPsec User-Mode API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTSP.dll)
+
+ CRYPTSP.dll
+ C:\Windows\System32\CRYPTSP.dll
+ 140719889121280
+ 94208
+ 140719889138512
+ File: C:\Windows\System32\CRYPTSP.dll_x000D__x000A_InternalName: cryptsp.dll_x000D__x000A_OriginalFilename: cryptsp.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Cryptographic Service Provider API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 92
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Cryptographic Service Provider API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (rsaenh.dll)
+
+ rsaenh.dll
+ C:\Windows\system32\rsaenh.dll
+ 140719874834432
+ 208896
+ 140719874861552
+ File: C:\Windows\system32\rsaenh.dll_x000D__x000A_InternalName: rsaenh.dll_x000D__x000A_OriginalFilename: rsaenh.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Enhanced Cryptographic Provider_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 204
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft Enhanced Cryptographic Provider
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gpapi.dll)
+
+ gpapi.dll
+ C:\Windows\SYSTEM32\gpapi.dll
+ 140719867625472
+ 139264
+ 140719867637568
+ File: C:\Windows\SYSTEM32\gpapi.dll_x000D__x000A_InternalName: gpapi.dll_x000D__x000A_OriginalFilename: gpapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Group Policy Client API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 136
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Group Policy Client API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cryptnet.dll)
+
+ cryptnet.dll
+ C:\Windows\System32\cryptnet.dll
+ 140719710535680
+ 192512
+ 140719710590816
+ File: C:\Windows\System32\cryptnet.dll_x000D__x000A_InternalName: CRYPTNET.DLL_x000D__x000A_OriginalFilename: CRYPTNET.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto Network Related API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 188
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto Network Related API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINNSI.DLL)
+
+ WINNSI.DLL
+ C:\Windows\SYSTEM32\WINNSI.DLL
+ 140719785443328
+ 45056
+ 140719785450976
+ File: C:\Windows\SYSTEM32\WINNSI.DLL_x000D__x000A_InternalName: winnsi.dll_x000D__x000A_OriginalFilename: winnsi.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Network Store Information RPC interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 44
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Network Store Information RPC interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (webio.dll)
+
+ webio.dll
+ C:\Windows\SYSTEM32\webio.dll
+ 140719648210944
+ 618496
+ 140719648411376
+ File: C:\Windows\SYSTEM32\webio.dll_x000D__x000A_InternalName: webio.dll_x000D__x000A_OriginalFilename: webio.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Web Transfer Protocols API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 604
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Web Transfer Protocols API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+
+ ntmarta.dll
+ C:\Windows\SYSTEM32\ntmarta.dll
+ 140719871557632
+ 200704
+ 140719871586448
+ File: C:\Windows\SYSTEM32\ntmarta.dll_x000D__x000A_InternalName: ntmarta.dll_x000D__x000A_OriginalFilename: ntmarta.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT MARTA provider_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 196
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows NT MARTA provider
+ Microsoft® Windows® Operating System
+
+
+
+
+ 58
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 21832
+ 21832
+ 19230720
+ 19230720
+ 400912
+ 400912
+ 20287488
+ 20287488
+ 36925440
+ 36925440
+ 2203612741632
+ 294518784
+ true
+
+
+ Normal
+ 32
+
+ 19230720
+ 19230720
+ chrome
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 18052
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.046875S
+ 2019-08-24T14:18:00.6284233+03:00
+ PT0.046875S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 9052
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-24T14:18:00.712493+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 20416
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:00.7153672+03:00
+ PT0.015625S
+ PT0.015625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 12108
+ true
+ Normal
+ 0
+ Wait
+ EventPairLow
+ PT13.0625S
+ 2019-08-24T14:18:00.7210044+03:00
+ PT52.546875S
+ PT39.484375S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 12532
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0.578125S
+ 2019-08-24T14:18:00.7213994+03:00
+ PT1.03125S
+ PT0.453125S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 6
+ 4884
+ true
+ Lowest
+ 140719955419728
+ Wait
+ UserRequest
+ PT9.140625S
+ 2019-08-24T14:18:00.7515381+03:00
+ PT9.359375S
+ PT0.21875S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 22456
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT1.734375S
+ 2019-08-24T14:18:00.8723273+03:00
+ PT2.328125S
+ PT0.59375S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 9
+ 9
+ 6416
+ true
+ AboveNormal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0.03125S
+ 2019-08-24T14:18:01.1201511+03:00
+ PT0.03125S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 16320
+ true
+ Normal
+ 0
+ Wait
+ UserRequest
+ PT0.5625S
+ 2019-08-26T23:57:28.7558393+03:00
+ PT0.609375S
+ PT0.046875S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 7316
+ true
+ Normal
+ 0
+ Wait
+ UserRequest
+ PT0.40625S
+ 2019-08-27T01:30:25.4929337+03:00
+ PT0.40625S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 20892
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-27T02:28:14.3175541+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 19600
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-27T02:48:14.3176602+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ 12
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 420
+ 2203588632576
+ 270409728
+ false
+ 28524544
+ 28524544
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+ PT50.09375S
+ PT1M33.15625S
+ PT43.0625S
+
+
+ 0
+
+
+ true
+
+
+
+
+ chrome
+ 1
+ 420
+ 2203588632576
+ 28524544
+ 19230720
+ 21832
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+
+
+ System.Diagnostics.Process (chrome)
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ 804
+ 8
+ false
+ 2019-08-24T14:18:00.3253674+03:00
+ 23804
+ .
+ 1413120
+ 204800
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ System.Diagnostics.ProcessModule (ntdll.dll)
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+ System.Diagnostics.ProcessModule (VERSION.dll)
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+ System.Diagnostics.ProcessModule (sechost.dll)
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+ System.Diagnostics.ProcessModule (user32.dll)
+ System.Diagnostics.ProcessModule (win32u.dll)
+ System.Diagnostics.ProcessModule (GDI32.dll)
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+ System.Diagnostics.ProcessModule (shcore.dll)
+ System.Diagnostics.ProcessModule (combase.dll)
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+ System.Diagnostics.ProcessModule (profapi.dll)
+ System.Diagnostics.ProcessModule (powrprof.dll)
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+ System.Diagnostics.ProcessModule (chrome.dll)
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+ System.Diagnostics.ProcessModule (USERENV.dll)
+ System.Diagnostics.ProcessModule (gpapi.dll)
+ System.Diagnostics.ProcessModule (wkscli.dll)
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+ System.Diagnostics.ProcessModule (netutils.dll)
+ System.Diagnostics.ProcessModule (ole32.dll)
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+ System.Diagnostics.ProcessModule (Secur32.dll)
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+ System.Diagnostics.ProcessModule (DWrite.dll)
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+ System.Diagnostics.ProcessModule (COMCTL32.dll)
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+ System.Diagnostics.ProcessModule (twinapi.dll)
+ System.Diagnostics.ProcessModule (NLAapi.dll)
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+ System.Diagnostics.ProcessModule (NSI.dll)
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+ System.Diagnostics.ProcessModule (mscms.dll)
+ System.Diagnostics.ProcessModule (ColorAdapterClient.dll)
+ System.Diagnostics.ProcessModule (icm32.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+ System.Diagnostics.ProcessModule (InputHost.dll)
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+ System.Diagnostics.ProcessModule (d2d1.dll)
+ System.Diagnostics.ProcessModule (d3d11.dll)
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+ System.Diagnostics.ProcessModule (wintypes.dll)
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+ System.Diagnostics.ProcessModule (dxgi.dll)
+ System.Diagnostics.ProcessModule (WTSAPI32.dll)
+ System.Diagnostics.ProcessModule (wlanapi.dll)
+ System.Diagnostics.ProcessModule (WINSTA.dll)
+ System.Diagnostics.ProcessModule (wbemprox.dll)
+ System.Diagnostics.ProcessModule (wbemcomn.dll)
+ System.Diagnostics.ProcessModule (MMDevApi.dll)
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+ System.Diagnostics.ProcessModule (wbemsvc.dll)
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+ System.Diagnostics.ProcessModule (fastprox.dll)
+ System.Diagnostics.ProcessModule (wmiutils.dll)
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+ System.Diagnostics.ProcessModule (FirewallAPI.dll)
+ System.Diagnostics.ProcessModule (fwbase.dll)
+ System.Diagnostics.ProcessModule (LINKINFO.dll)
+ System.Diagnostics.ProcessModule (FWPolicyIOMgr.dll)
+ System.Diagnostics.ProcessModule (dataexchange.dll)
+ System.Diagnostics.ProcessModule (dcomp.dll)
+ System.Diagnostics.ProcessModule (atlthunk.dll)
+ System.Diagnostics.ProcessModule (OLEACC.dll)
+ System.Diagnostics.ProcessModule (directmanipulation.dll)
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (explorerframe.dll)
+ System.Diagnostics.ProcessModule (wpnapps.dll)
+ System.Diagnostics.ProcessModule (XmlLite.dll)
+ System.Diagnostics.ProcessModule (usermgrcli.dll)
+ System.Diagnostics.ProcessModule (mswsock.dll)
+ System.Diagnostics.ProcessModule (WINMM.dll)
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (WmiPerfInst.dll)
+ System.Diagnostics.ProcessModule (pdh.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Bluetooth.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.HostName.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.dll)
+ System.Diagnostics.ProcessModule (BiWinrt.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.Connectivity.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Enumeration.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Radios.dll)
+ System.Diagnostics.ProcessModule (NETAPI32.dll)
+ System.Diagnostics.ProcessModule (SAMCLI.DLL)
+ System.Diagnostics.ProcessModule (SAMLIB.dll)
+ System.Diagnostics.ProcessModule (wdmaud.drv)
+ System.Diagnostics.ProcessModule (ksuser.dll)
+ System.Diagnostics.ProcessModule (AVRT.dll)
+ System.Diagnostics.ProcessModule (AUDIOSES.DLL)
+ System.Diagnostics.ProcessModule (msacm32.drv)
+ System.Diagnostics.ProcessModule (MSACM32.dll)
+ System.Diagnostics.ProcessModule (midimap.dll)
+ System.Diagnostics.ProcessModule (resourcepolicyclient.dll)
+ System.Diagnostics.ProcessModule (BitsProxy.dll)
+
+
+ 61568
+ 61568
+ 316080128
+ 316080128
+ 857648
+ 857648
+ 455720960
+ 455720960
+ 398323712
+ 398323712
+ 2204288917504
+ 970694656
+ true
+ Normal
+ 316080128
+ 316080128
+ chrome
+ 65535
+ 1
+
+
+
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+
+
+ 1747
+ 2204143845376
+ 825622528
+ false
+ 112414720
+ 112414720
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ PT11M7.53125S
+ PT21M46.28125S
+ PT10M38.75S
+ 1770664
+ The Living Tombstone Radio - Now Playing on Pandora - Google Chrome
+ true
+
+
+
+
+ chrome
+ 1
+ 1747
+ 2204143845376
+ 112414720
+ 316080128
+ 61568
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ System.Diagnostics.Process (explorer)
+ Google LLC
+ 1306.28125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+ Google LLC
+ 93.15625
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+
+
+ System.Diagnostics.Process (chrome)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 3692
+
+ 8
+ false
+ 2019-08-24T14:18:00.891714+03:00
+ 17336
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+
+ chrome_elf.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll
+ 140719325642752
+ 925696
+ 140719326148464
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll_x000D__x000A_InternalName: chrome_elf_dll_x000D__x000A_OriginalFilename: chrome_elf.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 904
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (VERSION.dll)
+
+ VERSION.dll
+ C:\Windows\SYSTEM32\VERSION.dll
+ 140719800254464
+ 40960
+ 140719800259344
+ File: C:\Windows\SYSTEM32\VERSION.dll_x000D__x000A_InternalName: version_x000D__x000A_OriginalFilename: VERSION.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Version Checking and File Installation Libraries_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Version Checking and File Installation Libraries
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+
+ ADVAPI32.dll
+ C:\Windows\System32\ADVAPI32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\ADVAPI32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_child.dll)
+
+ chrome_child.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll
+ 140717177962496
+ 87977984
+ 140717247440176
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll_x000D__x000A_InternalName: chrome_dll_x000D__x000A_OriginalFilename: chrome.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 85916
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+
+ OLEAUT32.dll
+ C:\Windows\System32\OLEAUT32.dll
+ 140719946465280
+ 802816
+ 140719946574624
+ File: C:\Windows\System32\OLEAUT32.dll_x000D__x000A_InternalName: OLEAUT32.DLL_x000D__x000A_OriginalFilename: OLEAUT32.DLL_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OLEAUT32.DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 784
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ OLEAUT32.DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+
+ WS2_32.dll
+ C:\Windows\System32\WS2_32.dll
+ 140719954198528
+ 446464
+ 140719954286384
+ File: C:\Windows\System32\WS2_32.dll_x000D__x000A_InternalName: ws2_32.dll_x000D__x000A_OriginalFilename: ws2_32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Socket 2.0 32-Bit DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 436
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Socket 2.0 32-Bit DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (GDI32.dll)
+
+ GDI32.dll
+ C:\Windows\System32\GDI32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\GDI32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USER32.dll)
+
+ USER32.dll
+ C:\Windows\System32\USER32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\USER32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINTRUST.dll)
+
+ WINTRUST.dll
+ C:\Windows\System32\WINTRUST.dll
+ 140719888728064
+ 364544
+ 140719888791376
+ File: C:\Windows\System32\WINTRUST.dll_x000D__x000A_InternalName: WINTRUST.DLL_x000D__x000A_OriginalFilename: WINTRUST.DLL_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Trust Verification APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 356
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft Trust Verification APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+
+ MSASN1.dll
+ C:\Windows\System32\MSASN1.dll
+ 140719887876096
+ 73728
+ 140719887898576
+ File: C:\Windows\System32\MSASN1.dll_x000D__x000A_InternalName: msasn1.dll_x000D__x000A_OriginalFilename: msasn1.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ASN.1 Runtime APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 72
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ASN.1 Runtime APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+
+ CRYPT32.dll
+ C:\Windows\System32\CRYPT32.dll
+ 140719891480576
+ 1945600
+ 140719891804832
+ File: C:\Windows\System32\CRYPT32.dll_x000D__x000A_InternalName: CRYPT32.DLL_x000D__x000A_OriginalFilename: CRYPT32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto API32_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1900
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto API32
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+
+ IPHLPAPI.DLL
+ C:\Windows\SYSTEM32\IPHLPAPI.DLL
+ 140719876931584
+ 249856
+ 140719876989024
+ File: C:\Windows\SYSTEM32\IPHLPAPI.DLL_x000D__x000A_InternalName: iphlpapi.dll_x000D__x000A_OriginalFilename: iphlpapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: IP Helper API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 244
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ IP Helper API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMM.dll)
+
+ WINMM.dll
+ C:\Windows\SYSTEM32\WINMM.dll
+ 140719835054080
+ 147456
+ 140719835066368
+ File: C:\Windows\SYSTEM32\WINMM.dll_x000D__x000A_InternalName: winmm.dll_x000D__x000A_OriginalFilename: WINMM.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MCI API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MCI API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USERENV.dll)
+
+ USERENV.dll
+ C:\Windows\SYSTEM32\USERENV.dll
+ 140719887024128
+ 163840
+ 140719887043280
+ File: C:\Windows\SYSTEM32\USERENV.dll_x000D__x000A_InternalName: userenv_x000D__x000A_OriginalFilename: userenv.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Userenv_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Userenv
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (profapi.dll)
+
+ profapi.dll
+ C:\Windows\System32\profapi.dll
+ 140719888531456
+ 147456
+ 140719888564400
+ File: C:\Windows\System32\profapi.dll_x000D__x000A_InternalName: PROFAPI.DLL_x000D__x000A_OriginalFilename: PROFAPI.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: User Profile Basic API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ User Profile Basic API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (DWrite.dll)
+
+ DWrite.dll
+ C:\Windows\SYSTEM32\DWrite.dll
+ 140719303819264
+ 3129344
+ 140719304509728
+ File: C:\Windows\SYSTEM32\DWrite.dll_x000D__x000A_InternalName: DWrite_x000D__x000A_OriginalFilename: DWrite_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft DirectX Typography Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3056
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft DirectX Typography Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINSPOOL.DRV)
+
+ WINSPOOL.DRV
+ C:\Windows\SYSTEM32\WINSPOOL.DRV
+ 140719787606016
+ 561152
+ 140719787676448
+ File: C:\Windows\SYSTEM32\WINSPOOL.DRV_x000D__x000A_InternalName: winspool.drv_x000D__x000A_OriginalFilename: winspool.drv.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Spooler Driver_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 548
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Spooler Driver
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+
+ bcrypt.dll
+ C:\Windows\System32\bcrypt.dll
+ 140719897247744
+ 155648
+ 140719897281296
+ File: C:\Windows\System32\bcrypt.dll_x000D__x000A_InternalName: bcrypt.dll_x000D__x000A_OriginalFilename: bcrypt.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 152
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dbghelp.dll)
+
+ dbghelp.dll
+ C:\Windows\SYSTEM32\dbghelp.dll
+ 140719552397312
+ 2019328
+ 140719552479168
+ File: C:\Windows\SYSTEM32\dbghelp.dll_x000D__x000A_InternalName: DBGHELP.DLL_x000D__x000A_OriginalFilename: DBGHELP.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Image Helper_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Image Helper
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+
+ WINHTTP.dll
+ C:\Windows\SYSTEM32\WINHTTP.dll
+ 140719810019328
+ 991232
+ 140719810293024
+ File: C:\Windows\SYSTEM32\WINHTTP.dll_x000D__x000A_InternalName: winhttp.dll_x000D__x000A_OriginalFilename: winhttp.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows HTTP Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 968
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows HTTP Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Secur32.dll)
+
+ Secur32.dll
+ C:\Windows\SYSTEM32\Secur32.dll
+ 140719559147520
+ 49152
+ 140719559156816
+ File: C:\Windows\SYSTEM32\Secur32.dll_x000D__x000A_InternalName: secur32.dll_x000D__x000A_OriginalFilename: secur32.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+
+ dhcpcsvc.DLL
+ C:\Windows\SYSTEM32\dhcpcsvc.DLL
+ 140719782494208
+ 114688
+ 140719782503840
+ File: C:\Windows\SYSTEM32\dhcpcsvc.DLL_x000D__x000A_InternalName: dhcpcsvc.dll_x000D__x000A_OriginalFilename: dhcpcsvc.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DHCP Client Service_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 112
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DHCP Client Service
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (NSI.dll)
+
+ NSI.dll
+ C:\Windows\System32\NSI.dll
+ 140719916843008
+ 32768
+ 140719916851008
+ File: C:\Windows\System32\NSI.dll_x000D__x000A_InternalName: nsi.dll_x000D__x000A_OriginalFilename: nsi.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NSI User-mode interface DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 32
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NSI User-mode interface DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+
+ WINMMBASE.dll
+ C:\Windows\SYSTEM32\WINMMBASE.dll
+ 140719834857472
+ 184320
+ 140719834890448
+ File: C:\Windows\SYSTEM32\WINMMBASE.dll_x000D__x000A_InternalName: winmmbase.dll_x000D__x000A_OriginalFilename: WINMMbase.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base Multimedia Extension API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 180
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base Multimedia Extension API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+
+ cfgmgr32.dll
+ C:\Windows\System32\cfgmgr32.dll
+ 140719889252352
+ 303104
+ 140719889325904
+ File: C:\Windows\System32\cfgmgr32.dll_x000D__x000A_InternalName: cfgmgr32.dll_x000D__x000A_OriginalFilename: CFGMGR32.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Configuration Manager DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 296
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Configuration Manager DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+
+ PROPSYS.dll
+ C:\Windows\SYSTEM32\PROPSYS.dll
+ 140719831187456
+ 1736704
+ 140719831447408
+ File: C:\Windows\SYSTEM32\PROPSYS.dll_x000D__x000A_InternalName: propsys.dll_x000D__x000A_OriginalFilename: propsys.dll.mui_x000D__x000A_FileVersion: 7.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Property System_x000D__x000A_Product: Windows® Search_x000D__x000A_ProductVersion: 7.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1696
+ Microsoft Corporation
+ 7.0.17763.1 (WinBuild.160101.0800)
+ 7.0.17763.1
+ Microsoft Property System
+ Windows® Search
+
+
+
+
+ System.Diagnostics.ProcessModule (shcore.dll)
+
+ shcore.dll
+ C:\Windows\System32\shcore.dll
+ 140719907143680
+ 688128
+ 140719907388560
+ File: C:\Windows\System32\shcore.dll_x000D__x000A_InternalName: SHCORE_x000D__x000A_OriginalFilename: SHCORE.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: SHCORE_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 672
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ SHCORE
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+
+ SSPICLI.DLL
+ C:\Windows\SYSTEM32\SSPICLI.DLL
+ 140719886827520
+ 192512
+ 140719886881776
+ File: C:\Windows\SYSTEM32\SSPICLI.DLL_x000D__x000A_InternalName: sspicli.dll_x000D__x000A_OriginalFilename: sspicli.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 188
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+
+ CRYPTBASE.DLL
+ C:\Windows\SYSTEM32\CRYPTBASE.DLL
+ 140719881846784
+ 49152
+ 140719881855488
+ File: C:\Windows\SYSTEM32\CRYPTBASE.DLL_x000D__x000A_InternalName: cryptbase.dll_x000D__x000A_OriginalFilename: cryptbase.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base cryptographic API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base cryptographic API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ 44
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 20528
+ 20528
+ 21176320
+ 21176320
+ 332072
+ 332072
+ 22097920
+ 22097920
+ 33763328
+ 33763328
+ 2203738079232
+ 419856384
+ true
+
+
+ Normal
+ 32
+
+ 21176320
+ 21176320
+ chrome
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 17172
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.046875S
+ 2019-08-24T14:18:00.8917162+03:00
+ PT0.234375S
+ PT0.1875S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 10476
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:00.9728349+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 6
+ 14688
+ true
+ Lowest
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.046875S
+ 2019-08-24T14:18:00.9744074+03:00
+ PT0.046875S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 12600
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-24T14:18:00.9753449+03:00
+ PT0.03125S
+ PT0.03125S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 11992
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-24T14:18:00.9761278+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 9032
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:00.97722+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 6492
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:00.9872469+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 15476
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:00.9907187+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 18840
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:00.9913832+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 7796
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:00.9919132+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 10608
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:00.9923393+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 7
+ 2164
+ true
+ Lowest
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:00.9929578+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 13136
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.03125S
+ 2019-08-24T14:18:09.0915195+03:00
+ PT0.03125S
+ PT0S
+
+
+
+
+
+
+ 13
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 237
+ 2203721302016
+ 403079168
+ false
+ 17076224
+ 17076224
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+ PT0.1875S
+ PT0.40625S
+ PT0.21875S
+
+
+ 0
+
+
+ true
+
+
+
+
+ chrome
+ 1
+ 237
+ 2203721302016
+ 17076224
+ 21176320
+ 20528
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+
+
+ System.Diagnostics.Process (chrome)
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ 6716
+ 8
+ false
+ 2019-08-24T14:18:00.3253674+03:00
+ 23804
+ .
+ 1413120
+ 204800
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ System.Diagnostics.ProcessModule (ntdll.dll)
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+ System.Diagnostics.ProcessModule (VERSION.dll)
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+ System.Diagnostics.ProcessModule (sechost.dll)
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+ System.Diagnostics.ProcessModule (user32.dll)
+ System.Diagnostics.ProcessModule (win32u.dll)
+ System.Diagnostics.ProcessModule (GDI32.dll)
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+ System.Diagnostics.ProcessModule (shcore.dll)
+ System.Diagnostics.ProcessModule (combase.dll)
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+ System.Diagnostics.ProcessModule (profapi.dll)
+ System.Diagnostics.ProcessModule (powrprof.dll)
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+ System.Diagnostics.ProcessModule (chrome.dll)
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+ System.Diagnostics.ProcessModule (USERENV.dll)
+ System.Diagnostics.ProcessModule (gpapi.dll)
+ System.Diagnostics.ProcessModule (wkscli.dll)
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+ System.Diagnostics.ProcessModule (netutils.dll)
+ System.Diagnostics.ProcessModule (ole32.dll)
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+ System.Diagnostics.ProcessModule (Secur32.dll)
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+ System.Diagnostics.ProcessModule (DWrite.dll)
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+ System.Diagnostics.ProcessModule (COMCTL32.dll)
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+ System.Diagnostics.ProcessModule (twinapi.dll)
+ System.Diagnostics.ProcessModule (NLAapi.dll)
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+ System.Diagnostics.ProcessModule (NSI.dll)
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+ System.Diagnostics.ProcessModule (mscms.dll)
+ System.Diagnostics.ProcessModule (ColorAdapterClient.dll)
+ System.Diagnostics.ProcessModule (icm32.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+ System.Diagnostics.ProcessModule (InputHost.dll)
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+ System.Diagnostics.ProcessModule (d2d1.dll)
+ System.Diagnostics.ProcessModule (d3d11.dll)
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+ System.Diagnostics.ProcessModule (wintypes.dll)
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+ System.Diagnostics.ProcessModule (dxgi.dll)
+ System.Diagnostics.ProcessModule (WTSAPI32.dll)
+ System.Diagnostics.ProcessModule (wlanapi.dll)
+ System.Diagnostics.ProcessModule (WINSTA.dll)
+ System.Diagnostics.ProcessModule (wbemprox.dll)
+ System.Diagnostics.ProcessModule (wbemcomn.dll)
+ System.Diagnostics.ProcessModule (MMDevApi.dll)
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+ System.Diagnostics.ProcessModule (wbemsvc.dll)
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+ System.Diagnostics.ProcessModule (fastprox.dll)
+ System.Diagnostics.ProcessModule (wmiutils.dll)
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+ System.Diagnostics.ProcessModule (FirewallAPI.dll)
+ System.Diagnostics.ProcessModule (fwbase.dll)
+ System.Diagnostics.ProcessModule (LINKINFO.dll)
+ System.Diagnostics.ProcessModule (FWPolicyIOMgr.dll)
+ System.Diagnostics.ProcessModule (dataexchange.dll)
+ System.Diagnostics.ProcessModule (dcomp.dll)
+ System.Diagnostics.ProcessModule (atlthunk.dll)
+ System.Diagnostics.ProcessModule (OLEACC.dll)
+ System.Diagnostics.ProcessModule (directmanipulation.dll)
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (explorerframe.dll)
+ System.Diagnostics.ProcessModule (wpnapps.dll)
+ System.Diagnostics.ProcessModule (XmlLite.dll)
+ System.Diagnostics.ProcessModule (usermgrcli.dll)
+ System.Diagnostics.ProcessModule (mswsock.dll)
+ System.Diagnostics.ProcessModule (WINMM.dll)
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (WmiPerfInst.dll)
+ System.Diagnostics.ProcessModule (pdh.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Bluetooth.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.HostName.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.dll)
+ System.Diagnostics.ProcessModule (BiWinrt.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.Connectivity.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Enumeration.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Radios.dll)
+ System.Diagnostics.ProcessModule (NETAPI32.dll)
+ System.Diagnostics.ProcessModule (SAMCLI.DLL)
+ System.Diagnostics.ProcessModule (SAMLIB.dll)
+ System.Diagnostics.ProcessModule (wdmaud.drv)
+ System.Diagnostics.ProcessModule (ksuser.dll)
+ System.Diagnostics.ProcessModule (AVRT.dll)
+ System.Diagnostics.ProcessModule (AUDIOSES.DLL)
+ System.Diagnostics.ProcessModule (msacm32.drv)
+ System.Diagnostics.ProcessModule (MSACM32.dll)
+ System.Diagnostics.ProcessModule (midimap.dll)
+ System.Diagnostics.ProcessModule (resourcepolicyclient.dll)
+ System.Diagnostics.ProcessModule (BitsProxy.dll)
+
+
+ 61568
+ 61568
+ 316080128
+ 316080128
+ 857648
+ 857648
+ 455720960
+ 455720960
+ 398323712
+ 398323712
+ 2204288917504
+ 970694656
+ true
+ Normal
+ 316080128
+ 316080128
+ chrome
+ 65535
+ 1
+
+
+
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+
+
+ 1747
+ 2204143845376
+ 825622528
+ false
+ 112414720
+ 112414720
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ PT11M7.53125S
+ PT21M46.28125S
+ PT10M38.75S
+ 1770664
+ The Living Tombstone Radio - Now Playing on Pandora - Google Chrome
+ true
+
+
+
+
+ chrome
+ 1
+ 1747
+ 2204143845376
+ 112414720
+ 316080128
+ 61568
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ System.Diagnostics.Process (explorer)
+ Google LLC
+ 1306.28125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+ Google LLC
+ 0.40625
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+
+
+ System.Diagnostics.Process (chrome)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 7324
+
+ 8
+ false
+ 2019-08-24T14:18:00.9750682+03:00
+ 19216
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+
+ chrome_elf.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll
+ 140719325642752
+ 925696
+ 140719326148464
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll_x000D__x000A_InternalName: chrome_elf_dll_x000D__x000A_OriginalFilename: chrome_elf.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 904
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (VERSION.dll)
+
+ VERSION.dll
+ C:\Windows\SYSTEM32\VERSION.dll
+ 140719800254464
+ 40960
+ 140719800259344
+ File: C:\Windows\SYSTEM32\VERSION.dll_x000D__x000A_InternalName: version_x000D__x000A_OriginalFilename: VERSION.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Version Checking and File Installation Libraries_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Version Checking and File Installation Libraries
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+
+ ADVAPI32.dll
+ C:\Windows\System32\ADVAPI32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\ADVAPI32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_child.dll)
+
+ chrome_child.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll
+ 140717177962496
+ 87977984
+ 140717247440176
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll_x000D__x000A_InternalName: chrome_dll_x000D__x000A_OriginalFilename: chrome.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 85916
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+
+ OLEAUT32.dll
+ C:\Windows\System32\OLEAUT32.dll
+ 140719946465280
+ 802816
+ 140719946574624
+ File: C:\Windows\System32\OLEAUT32.dll_x000D__x000A_InternalName: OLEAUT32.DLL_x000D__x000A_OriginalFilename: OLEAUT32.DLL_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OLEAUT32.DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 784
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ OLEAUT32.DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+
+ WS2_32.dll
+ C:\Windows\System32\WS2_32.dll
+ 140719954198528
+ 446464
+ 140719954286384
+ File: C:\Windows\System32\WS2_32.dll_x000D__x000A_InternalName: ws2_32.dll_x000D__x000A_OriginalFilename: ws2_32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Socket 2.0 32-Bit DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 436
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Socket 2.0 32-Bit DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (GDI32.dll)
+
+ GDI32.dll
+ C:\Windows\System32\GDI32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\GDI32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USER32.dll)
+
+ USER32.dll
+ C:\Windows\System32\USER32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\USER32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINTRUST.dll)
+
+ WINTRUST.dll
+ C:\Windows\System32\WINTRUST.dll
+ 140719888728064
+ 364544
+ 140719888791376
+ File: C:\Windows\System32\WINTRUST.dll_x000D__x000A_InternalName: WINTRUST.DLL_x000D__x000A_OriginalFilename: WINTRUST.DLL_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Trust Verification APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 356
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft Trust Verification APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+
+ MSASN1.dll
+ C:\Windows\System32\MSASN1.dll
+ 140719887876096
+ 73728
+ 140719887898576
+ File: C:\Windows\System32\MSASN1.dll_x000D__x000A_InternalName: msasn1.dll_x000D__x000A_OriginalFilename: msasn1.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ASN.1 Runtime APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 72
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ASN.1 Runtime APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+
+ CRYPT32.dll
+ C:\Windows\System32\CRYPT32.dll
+ 140719891480576
+ 1945600
+ 140719891804832
+ File: C:\Windows\System32\CRYPT32.dll_x000D__x000A_InternalName: CRYPT32.DLL_x000D__x000A_OriginalFilename: CRYPT32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto API32_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1900
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto API32
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+
+ IPHLPAPI.DLL
+ C:\Windows\SYSTEM32\IPHLPAPI.DLL
+ 140719876931584
+ 249856
+ 140719876989024
+ File: C:\Windows\SYSTEM32\IPHLPAPI.DLL_x000D__x000A_InternalName: iphlpapi.dll_x000D__x000A_OriginalFilename: iphlpapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: IP Helper API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 244
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ IP Helper API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMM.dll)
+
+ WINMM.dll
+ C:\Windows\SYSTEM32\WINMM.dll
+ 140719835054080
+ 147456
+ 140719835066368
+ File: C:\Windows\SYSTEM32\WINMM.dll_x000D__x000A_InternalName: winmm.dll_x000D__x000A_OriginalFilename: WINMM.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MCI API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MCI API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USERENV.dll)
+
+ USERENV.dll
+ C:\Windows\SYSTEM32\USERENV.dll
+ 140719887024128
+ 163840
+ 140719887043280
+ File: C:\Windows\SYSTEM32\USERENV.dll_x000D__x000A_InternalName: userenv_x000D__x000A_OriginalFilename: userenv.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Userenv_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Userenv
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (profapi.dll)
+
+ profapi.dll
+ C:\Windows\System32\profapi.dll
+ 140719888531456
+ 147456
+ 140719888564400
+ File: C:\Windows\System32\profapi.dll_x000D__x000A_InternalName: PROFAPI.DLL_x000D__x000A_OriginalFilename: PROFAPI.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: User Profile Basic API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ User Profile Basic API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (DWrite.dll)
+
+ DWrite.dll
+ C:\Windows\SYSTEM32\DWrite.dll
+ 140719303819264
+ 3129344
+ 140719304509728
+ File: C:\Windows\SYSTEM32\DWrite.dll_x000D__x000A_InternalName: DWrite_x000D__x000A_OriginalFilename: DWrite_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft DirectX Typography Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3056
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft DirectX Typography Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINSPOOL.DRV)
+
+ WINSPOOL.DRV
+ C:\Windows\SYSTEM32\WINSPOOL.DRV
+ 140719787606016
+ 561152
+ 140719787676448
+ File: C:\Windows\SYSTEM32\WINSPOOL.DRV_x000D__x000A_InternalName: winspool.drv_x000D__x000A_OriginalFilename: winspool.drv.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Spooler Driver_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 548
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Spooler Driver
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+
+ bcrypt.dll
+ C:\Windows\System32\bcrypt.dll
+ 140719897247744
+ 155648
+ 140719897281296
+ File: C:\Windows\System32\bcrypt.dll_x000D__x000A_InternalName: bcrypt.dll_x000D__x000A_OriginalFilename: bcrypt.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 152
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dbghelp.dll)
+
+ dbghelp.dll
+ C:\Windows\SYSTEM32\dbghelp.dll
+ 140719552397312
+ 2019328
+ 140719552479168
+ File: C:\Windows\SYSTEM32\dbghelp.dll_x000D__x000A_InternalName: DBGHELP.DLL_x000D__x000A_OriginalFilename: DBGHELP.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Image Helper_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Image Helper
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+
+ WINHTTP.dll
+ C:\Windows\SYSTEM32\WINHTTP.dll
+ 140719810019328
+ 991232
+ 140719810293024
+ File: C:\Windows\SYSTEM32\WINHTTP.dll_x000D__x000A_InternalName: winhttp.dll_x000D__x000A_OriginalFilename: winhttp.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows HTTP Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 968
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows HTTP Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Secur32.dll)
+
+ Secur32.dll
+ C:\Windows\SYSTEM32\Secur32.dll
+ 140719559147520
+ 49152
+ 140719559156816
+ File: C:\Windows\SYSTEM32\Secur32.dll_x000D__x000A_InternalName: secur32.dll_x000D__x000A_OriginalFilename: secur32.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+
+ dhcpcsvc.DLL
+ C:\Windows\SYSTEM32\dhcpcsvc.DLL
+ 140719782494208
+ 114688
+ 140719782503840
+ File: C:\Windows\SYSTEM32\dhcpcsvc.DLL_x000D__x000A_InternalName: dhcpcsvc.dll_x000D__x000A_OriginalFilename: dhcpcsvc.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DHCP Client Service_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 112
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DHCP Client Service
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (NSI.dll)
+
+ NSI.dll
+ C:\Windows\System32\NSI.dll
+ 140719916843008
+ 32768
+ 140719916851008
+ File: C:\Windows\System32\NSI.dll_x000D__x000A_InternalName: nsi.dll_x000D__x000A_OriginalFilename: nsi.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NSI User-mode interface DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 32
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NSI User-mode interface DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+
+ WINMMBASE.dll
+ C:\Windows\SYSTEM32\WINMMBASE.dll
+ 140719834857472
+ 184320
+ 140719834890448
+ File: C:\Windows\SYSTEM32\WINMMBASE.dll_x000D__x000A_InternalName: winmmbase.dll_x000D__x000A_OriginalFilename: WINMMbase.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base Multimedia Extension API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 180
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base Multimedia Extension API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+
+ cfgmgr32.dll
+ C:\Windows\System32\cfgmgr32.dll
+ 140719889252352
+ 303104
+ 140719889325904
+ File: C:\Windows\System32\cfgmgr32.dll_x000D__x000A_InternalName: cfgmgr32.dll_x000D__x000A_OriginalFilename: CFGMGR32.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Configuration Manager DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 296
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Configuration Manager DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+
+ PROPSYS.dll
+ C:\Windows\SYSTEM32\PROPSYS.dll
+ 140719831187456
+ 1736704
+ 140719831447408
+ File: C:\Windows\SYSTEM32\PROPSYS.dll_x000D__x000A_InternalName: propsys.dll_x000D__x000A_OriginalFilename: propsys.dll.mui_x000D__x000A_FileVersion: 7.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Property System_x000D__x000A_Product: Windows® Search_x000D__x000A_ProductVersion: 7.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1696
+ Microsoft Corporation
+ 7.0.17763.1 (WinBuild.160101.0800)
+ 7.0.17763.1
+ Microsoft Property System
+ Windows® Search
+
+
+
+
+ System.Diagnostics.ProcessModule (shcore.dll)
+
+ shcore.dll
+ C:\Windows\System32\shcore.dll
+ 140719907143680
+ 688128
+ 140719907388560
+ File: C:\Windows\System32\shcore.dll_x000D__x000A_InternalName: SHCORE_x000D__x000A_OriginalFilename: SHCORE.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: SHCORE_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 672
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ SHCORE
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+
+ SSPICLI.DLL
+ C:\Windows\SYSTEM32\SSPICLI.DLL
+ 140719886827520
+ 192512
+ 140719886881776
+ File: C:\Windows\SYSTEM32\SSPICLI.DLL_x000D__x000A_InternalName: sspicli.dll_x000D__x000A_OriginalFilename: sspicli.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 188
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+
+ CRYPTBASE.DLL
+ C:\Windows\SYSTEM32\CRYPTBASE.DLL
+ 140719881846784
+ 49152
+ 140719881855488
+ File: C:\Windows\SYSTEM32\CRYPTBASE.DLL_x000D__x000A_InternalName: cryptbase.dll_x000D__x000A_OriginalFilename: cryptbase.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base cryptographic API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base cryptographic API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ 44
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 29640
+ 29640
+ 63090688
+ 63090688
+ 340264
+ 340264
+ 75571200
+ 75571200
+ 72970240
+ 72970240
+ 2203804340224
+ 486117376
+ true
+
+
+ Normal
+ 32
+
+ 63090688
+ 63090688
+ chrome
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 9724
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT1.8125S
+ 2019-08-24T14:18:00.97507+03:00
+ PT12.453125S
+ PT10.640625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 7440
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.0706884+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 6
+ 23216
+ true
+ Lowest
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.015625S
+ 2019-08-24T14:18:01.0725577+03:00
+ PT0.015625S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 20024
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT5.125S
+ 2019-08-24T14:18:01.0748313+03:00
+ PT12S
+ PT6.875S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 23700
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-24T14:18:01.075694+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 5736
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.0791088+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 20820
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.0888845+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 3340
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.0909397+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 18184
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.0915003+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 19060
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.091958+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 20792
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.0924597+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 7
+ 11268
+ true
+ Lowest
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.092959+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 21936
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-27T02:36:39.1963672+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ 13
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 237
+ 2203782578176
+ 464355328
+ false
+ 33050624
+ 33050624
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+ PT7.21875S
+ PT24.796875S
+ PT17.578125S
+
+
+ 0
+
+
+ true
+
+
+
+
+ chrome
+ 1
+ 237
+ 2203782578176
+ 33050624
+ 63090688
+ 29640
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+
+
+ System.Diagnostics.Process (chrome)
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ 5292
+ 8
+ false
+ 2019-08-24T14:18:00.3253674+03:00
+ 23804
+ .
+ 1413120
+ 204800
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ System.Diagnostics.ProcessModule (ntdll.dll)
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+ System.Diagnostics.ProcessModule (VERSION.dll)
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+ System.Diagnostics.ProcessModule (sechost.dll)
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+ System.Diagnostics.ProcessModule (user32.dll)
+ System.Diagnostics.ProcessModule (win32u.dll)
+ System.Diagnostics.ProcessModule (GDI32.dll)
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+ System.Diagnostics.ProcessModule (shcore.dll)
+ System.Diagnostics.ProcessModule (combase.dll)
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+ System.Diagnostics.ProcessModule (profapi.dll)
+ System.Diagnostics.ProcessModule (powrprof.dll)
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+ System.Diagnostics.ProcessModule (chrome.dll)
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+ System.Diagnostics.ProcessModule (USERENV.dll)
+ System.Diagnostics.ProcessModule (gpapi.dll)
+ System.Diagnostics.ProcessModule (wkscli.dll)
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+ System.Diagnostics.ProcessModule (netutils.dll)
+ System.Diagnostics.ProcessModule (ole32.dll)
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+ System.Diagnostics.ProcessModule (Secur32.dll)
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+ System.Diagnostics.ProcessModule (DWrite.dll)
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+ System.Diagnostics.ProcessModule (COMCTL32.dll)
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+ System.Diagnostics.ProcessModule (twinapi.dll)
+ System.Diagnostics.ProcessModule (NLAapi.dll)
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+ System.Diagnostics.ProcessModule (NSI.dll)
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+ System.Diagnostics.ProcessModule (mscms.dll)
+ System.Diagnostics.ProcessModule (ColorAdapterClient.dll)
+ System.Diagnostics.ProcessModule (icm32.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+ System.Diagnostics.ProcessModule (InputHost.dll)
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+ System.Diagnostics.ProcessModule (d2d1.dll)
+ System.Diagnostics.ProcessModule (d3d11.dll)
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+ System.Diagnostics.ProcessModule (wintypes.dll)
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+ System.Diagnostics.ProcessModule (dxgi.dll)
+ System.Diagnostics.ProcessModule (WTSAPI32.dll)
+ System.Diagnostics.ProcessModule (wlanapi.dll)
+ System.Diagnostics.ProcessModule (WINSTA.dll)
+ System.Diagnostics.ProcessModule (wbemprox.dll)
+ System.Diagnostics.ProcessModule (wbemcomn.dll)
+ System.Diagnostics.ProcessModule (MMDevApi.dll)
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+ System.Diagnostics.ProcessModule (wbemsvc.dll)
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+ System.Diagnostics.ProcessModule (fastprox.dll)
+ System.Diagnostics.ProcessModule (wmiutils.dll)
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+ System.Diagnostics.ProcessModule (FirewallAPI.dll)
+ System.Diagnostics.ProcessModule (fwbase.dll)
+ System.Diagnostics.ProcessModule (LINKINFO.dll)
+ System.Diagnostics.ProcessModule (FWPolicyIOMgr.dll)
+ System.Diagnostics.ProcessModule (dataexchange.dll)
+ System.Diagnostics.ProcessModule (dcomp.dll)
+ System.Diagnostics.ProcessModule (atlthunk.dll)
+ System.Diagnostics.ProcessModule (OLEACC.dll)
+ System.Diagnostics.ProcessModule (directmanipulation.dll)
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (explorerframe.dll)
+ System.Diagnostics.ProcessModule (wpnapps.dll)
+ System.Diagnostics.ProcessModule (XmlLite.dll)
+ System.Diagnostics.ProcessModule (usermgrcli.dll)
+ System.Diagnostics.ProcessModule (mswsock.dll)
+ System.Diagnostics.ProcessModule (WINMM.dll)
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (WmiPerfInst.dll)
+ System.Diagnostics.ProcessModule (pdh.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Bluetooth.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.HostName.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.dll)
+ System.Diagnostics.ProcessModule (BiWinrt.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.Connectivity.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Enumeration.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Radios.dll)
+ System.Diagnostics.ProcessModule (NETAPI32.dll)
+ System.Diagnostics.ProcessModule (SAMCLI.DLL)
+ System.Diagnostics.ProcessModule (SAMLIB.dll)
+ System.Diagnostics.ProcessModule (wdmaud.drv)
+ System.Diagnostics.ProcessModule (ksuser.dll)
+ System.Diagnostics.ProcessModule (AVRT.dll)
+ System.Diagnostics.ProcessModule (AUDIOSES.DLL)
+ System.Diagnostics.ProcessModule (msacm32.drv)
+ System.Diagnostics.ProcessModule (MSACM32.dll)
+ System.Diagnostics.ProcessModule (midimap.dll)
+ System.Diagnostics.ProcessModule (resourcepolicyclient.dll)
+ System.Diagnostics.ProcessModule (BitsProxy.dll)
+
+
+ 61568
+ 61568
+ 316080128
+ 316080128
+ 857648
+ 857648
+ 455720960
+ 455720960
+ 398323712
+ 398323712
+ 2204288917504
+ 970694656
+ true
+ Normal
+ 316080128
+ 316080128
+ chrome
+ 65535
+ 1
+
+
+
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+
+
+ 1747
+ 2204143845376
+ 825622528
+ false
+ 112414720
+ 112414720
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ PT11M7.53125S
+ PT21M46.28125S
+ PT10M38.75S
+ 1770664
+ The Living Tombstone Radio - Now Playing on Pandora - Google Chrome
+ true
+
+
+
+
+ chrome
+ 1
+ 1747
+ 2204143845376
+ 112414720
+ 316080128
+ 61568
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ System.Diagnostics.Process (explorer)
+ Google LLC
+ 1306.28125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+ Google LLC
+ 24.796875
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+
+
+ System.Diagnostics.Process (chrome)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 5440
+
+ 4
+ false
+ 2019-08-24T14:18:42.7422991+03:00
+ 19408
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+
+ chrome_elf.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll
+ 140719325642752
+ 925696
+ 140719326148464
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll_x000D__x000A_InternalName: chrome_elf_dll_x000D__x000A_OriginalFilename: chrome_elf.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 904
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (VERSION.dll)
+
+ VERSION.dll
+ C:\Windows\SYSTEM32\VERSION.dll
+ 140719800254464
+ 40960
+ 140719800259344
+ File: C:\Windows\SYSTEM32\VERSION.dll_x000D__x000A_InternalName: version_x000D__x000A_OriginalFilename: VERSION.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Version Checking and File Installation Libraries_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Version Checking and File Installation Libraries
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+
+ ADVAPI32.dll
+ C:\Windows\System32\ADVAPI32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\ADVAPI32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_child.dll)
+
+ chrome_child.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll
+ 140717177962496
+ 87977984
+ 140717247440176
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll_x000D__x000A_InternalName: chrome_dll_x000D__x000A_OriginalFilename: chrome.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 85916
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+
+ OLEAUT32.dll
+ C:\Windows\System32\OLEAUT32.dll
+ 140719946465280
+ 802816
+ 140719946574624
+ File: C:\Windows\System32\OLEAUT32.dll_x000D__x000A_InternalName: OLEAUT32.DLL_x000D__x000A_OriginalFilename: OLEAUT32.DLL_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OLEAUT32.DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 784
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ OLEAUT32.DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+
+ WS2_32.dll
+ C:\Windows\System32\WS2_32.dll
+ 140719954198528
+ 446464
+ 140719954286384
+ File: C:\Windows\System32\WS2_32.dll_x000D__x000A_InternalName: ws2_32.dll_x000D__x000A_OriginalFilename: ws2_32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Socket 2.0 32-Bit DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 436
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Socket 2.0 32-Bit DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (GDI32.dll)
+
+ GDI32.dll
+ C:\Windows\System32\GDI32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\GDI32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USER32.dll)
+
+ USER32.dll
+ C:\Windows\System32\USER32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\USER32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINTRUST.dll)
+
+ WINTRUST.dll
+ C:\Windows\System32\WINTRUST.dll
+ 140719888728064
+ 364544
+ 140719888791376
+ File: C:\Windows\System32\WINTRUST.dll_x000D__x000A_InternalName: WINTRUST.DLL_x000D__x000A_OriginalFilename: WINTRUST.DLL_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Trust Verification APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 356
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft Trust Verification APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+
+ MSASN1.dll
+ C:\Windows\System32\MSASN1.dll
+ 140719887876096
+ 73728
+ 140719887898576
+ File: C:\Windows\System32\MSASN1.dll_x000D__x000A_InternalName: msasn1.dll_x000D__x000A_OriginalFilename: msasn1.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ASN.1 Runtime APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 72
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ASN.1 Runtime APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+
+ CRYPT32.dll
+ C:\Windows\System32\CRYPT32.dll
+ 140719891480576
+ 1945600
+ 140719891804832
+ File: C:\Windows\System32\CRYPT32.dll_x000D__x000A_InternalName: CRYPT32.DLL_x000D__x000A_OriginalFilename: CRYPT32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto API32_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1900
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto API32
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+
+ IPHLPAPI.DLL
+ C:\Windows\SYSTEM32\IPHLPAPI.DLL
+ 140719876931584
+ 249856
+ 140719876989024
+ File: C:\Windows\SYSTEM32\IPHLPAPI.DLL_x000D__x000A_InternalName: iphlpapi.dll_x000D__x000A_OriginalFilename: iphlpapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: IP Helper API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 244
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ IP Helper API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMM.dll)
+
+ WINMM.dll
+ C:\Windows\SYSTEM32\WINMM.dll
+ 140719835054080
+ 147456
+ 140719835066368
+ File: C:\Windows\SYSTEM32\WINMM.dll_x000D__x000A_InternalName: winmm.dll_x000D__x000A_OriginalFilename: WINMM.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MCI API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MCI API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USERENV.dll)
+
+ USERENV.dll
+ C:\Windows\SYSTEM32\USERENV.dll
+ 140719887024128
+ 163840
+ 140719887043280
+ File: C:\Windows\SYSTEM32\USERENV.dll_x000D__x000A_InternalName: userenv_x000D__x000A_OriginalFilename: userenv.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Userenv_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Userenv
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (profapi.dll)
+
+ profapi.dll
+ C:\Windows\System32\profapi.dll
+ 140719888531456
+ 147456
+ 140719888564400
+ File: C:\Windows\System32\profapi.dll_x000D__x000A_InternalName: PROFAPI.DLL_x000D__x000A_OriginalFilename: PROFAPI.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: User Profile Basic API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ User Profile Basic API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (DWrite.dll)
+
+ DWrite.dll
+ C:\Windows\SYSTEM32\DWrite.dll
+ 140719303819264
+ 3129344
+ 140719304509728
+ File: C:\Windows\SYSTEM32\DWrite.dll_x000D__x000A_InternalName: DWrite_x000D__x000A_OriginalFilename: DWrite_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft DirectX Typography Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3056
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft DirectX Typography Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINSPOOL.DRV)
+
+ WINSPOOL.DRV
+ C:\Windows\SYSTEM32\WINSPOOL.DRV
+ 140719787606016
+ 561152
+ 140719787676448
+ File: C:\Windows\SYSTEM32\WINSPOOL.DRV_x000D__x000A_InternalName: winspool.drv_x000D__x000A_OriginalFilename: winspool.drv.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Spooler Driver_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 548
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Spooler Driver
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+
+ bcrypt.dll
+ C:\Windows\System32\bcrypt.dll
+ 140719897247744
+ 155648
+ 140719897281296
+ File: C:\Windows\System32\bcrypt.dll_x000D__x000A_InternalName: bcrypt.dll_x000D__x000A_OriginalFilename: bcrypt.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 152
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dbghelp.dll)
+
+ dbghelp.dll
+ C:\Windows\SYSTEM32\dbghelp.dll
+ 140719552397312
+ 2019328
+ 140719552479168
+ File: C:\Windows\SYSTEM32\dbghelp.dll_x000D__x000A_InternalName: DBGHELP.DLL_x000D__x000A_OriginalFilename: DBGHELP.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Image Helper_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Image Helper
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+
+ WINHTTP.dll
+ C:\Windows\SYSTEM32\WINHTTP.dll
+ 140719810019328
+ 991232
+ 140719810293024
+ File: C:\Windows\SYSTEM32\WINHTTP.dll_x000D__x000A_InternalName: winhttp.dll_x000D__x000A_OriginalFilename: winhttp.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows HTTP Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 968
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows HTTP Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Secur32.dll)
+
+ Secur32.dll
+ C:\Windows\SYSTEM32\Secur32.dll
+ 140719559147520
+ 49152
+ 140719559156816
+ File: C:\Windows\SYSTEM32\Secur32.dll_x000D__x000A_InternalName: secur32.dll_x000D__x000A_OriginalFilename: secur32.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+
+ dhcpcsvc.DLL
+ C:\Windows\SYSTEM32\dhcpcsvc.DLL
+ 140719782494208
+ 114688
+ 140719782503840
+ File: C:\Windows\SYSTEM32\dhcpcsvc.DLL_x000D__x000A_InternalName: dhcpcsvc.dll_x000D__x000A_OriginalFilename: dhcpcsvc.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DHCP Client Service_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 112
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DHCP Client Service
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (NSI.dll)
+
+ NSI.dll
+ C:\Windows\System32\NSI.dll
+ 140719916843008
+ 32768
+ 140719916851008
+ File: C:\Windows\System32\NSI.dll_x000D__x000A_InternalName: nsi.dll_x000D__x000A_OriginalFilename: nsi.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NSI User-mode interface DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 32
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NSI User-mode interface DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+
+ WINMMBASE.dll
+ C:\Windows\SYSTEM32\WINMMBASE.dll
+ 140719834857472
+ 184320
+ 140719834890448
+ File: C:\Windows\SYSTEM32\WINMMBASE.dll_x000D__x000A_InternalName: winmmbase.dll_x000D__x000A_OriginalFilename: WINMMbase.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base Multimedia Extension API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 180
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base Multimedia Extension API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+
+ cfgmgr32.dll
+ C:\Windows\System32\cfgmgr32.dll
+ 140719889252352
+ 303104
+ 140719889325904
+ File: C:\Windows\System32\cfgmgr32.dll_x000D__x000A_InternalName: cfgmgr32.dll_x000D__x000A_OriginalFilename: CFGMGR32.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Configuration Manager DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 296
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Configuration Manager DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+
+ PROPSYS.dll
+ C:\Windows\SYSTEM32\PROPSYS.dll
+ 140719831187456
+ 1736704
+ 140719831447408
+ File: C:\Windows\SYSTEM32\PROPSYS.dll_x000D__x000A_InternalName: propsys.dll_x000D__x000A_OriginalFilename: propsys.dll.mui_x000D__x000A_FileVersion: 7.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Property System_x000D__x000A_Product: Windows® Search_x000D__x000A_ProductVersion: 7.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1696
+ Microsoft Corporation
+ 7.0.17763.1 (WinBuild.160101.0800)
+ 7.0.17763.1
+ Microsoft Property System
+ Windows® Search
+
+
+
+
+ System.Diagnostics.ProcessModule (shcore.dll)
+
+ shcore.dll
+ C:\Windows\System32\shcore.dll
+ 140719907143680
+ 688128
+ 140719907388560
+ File: C:\Windows\System32\shcore.dll_x000D__x000A_InternalName: SHCORE_x000D__x000A_OriginalFilename: SHCORE.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: SHCORE_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 672
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ SHCORE
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+
+ SSPICLI.DLL
+ C:\Windows\SYSTEM32\SSPICLI.DLL
+ 140719886827520
+ 192512
+ 140719886881776
+ File: C:\Windows\SYSTEM32\SSPICLI.DLL_x000D__x000A_InternalName: sspicli.dll_x000D__x000A_OriginalFilename: sspicli.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 188
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+
+ CRYPTBASE.DLL
+ C:\Windows\SYSTEM32\CRYPTBASE.DLL
+ 140719881846784
+ 49152
+ 140719881855488
+ File: C:\Windows\SYSTEM32\CRYPTBASE.DLL_x000D__x000A_InternalName: cryptbase.dll_x000D__x000A_OriginalFilename: cryptbase.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base cryptographic API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base cryptographic API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ 44
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 27872
+ 27872
+ 40718336
+ 40718336
+ 349664
+ 349664
+ 47194112
+ 47194112
+ 50327552
+ 50327552
+ 2203768713216
+ 450490368
+ true
+
+
+ Idle
+ 64
+
+ 40718336
+ 40718336
+ chrome
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 5
+ 23128
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.6875S
+ 2019-08-24T14:18:42.7423016+03:00
+ PT9.640625S
+ PT8.953125S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 564
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:42.7985453+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 2
+ 2
+ 13700
+ true
+ Lowest
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:42.7998575+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 6
+ 23576
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT1.34375S
+ 2019-08-24T14:18:42.8006891+03:00
+ PT6.890625S
+ PT5.546875S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 23680
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-24T14:18:42.8012881+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 19328
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:42.8021576+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 5
+ 17648
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:42.8084287+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 21252
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:42.8096096+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 23924
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:42.8103373+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 14676
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:42.8109084+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 1888
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:42.8113991+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 2
+ 2
+ 16288
+ true
+ Lowest
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:42.8118186+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 4
+ 4
+ 22992
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-27T02:34:29.4502554+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ 13
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 240
+ 2203746955264
+ 428732416
+ false
+ 39317504
+ 39317504
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+ PT2.828125S
+ PT18.625S
+ PT15.796875S
+
+
+ 0
+
+
+ true
+
+
+
+
+ chrome
+ 1
+ 240
+ 2203746955264
+ 39317504
+ 40718336
+ 27872
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+
+
+ System.Diagnostics.Process (chrome)
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ 6252
+ 8
+ false
+ 2019-08-24T14:18:00.3253674+03:00
+ 23804
+ .
+ 1413120
+ 204800
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ System.Diagnostics.ProcessModule (ntdll.dll)
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+ System.Diagnostics.ProcessModule (VERSION.dll)
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+ System.Diagnostics.ProcessModule (sechost.dll)
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+ System.Diagnostics.ProcessModule (user32.dll)
+ System.Diagnostics.ProcessModule (win32u.dll)
+ System.Diagnostics.ProcessModule (GDI32.dll)
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+ System.Diagnostics.ProcessModule (shcore.dll)
+ System.Diagnostics.ProcessModule (combase.dll)
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+ System.Diagnostics.ProcessModule (profapi.dll)
+ System.Diagnostics.ProcessModule (powrprof.dll)
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+ System.Diagnostics.ProcessModule (chrome.dll)
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+ System.Diagnostics.ProcessModule (USERENV.dll)
+ System.Diagnostics.ProcessModule (gpapi.dll)
+ System.Diagnostics.ProcessModule (wkscli.dll)
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+ System.Diagnostics.ProcessModule (netutils.dll)
+ System.Diagnostics.ProcessModule (ole32.dll)
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+ System.Diagnostics.ProcessModule (Secur32.dll)
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+ System.Diagnostics.ProcessModule (DWrite.dll)
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+ System.Diagnostics.ProcessModule (COMCTL32.dll)
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+ System.Diagnostics.ProcessModule (twinapi.dll)
+ System.Diagnostics.ProcessModule (NLAapi.dll)
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+ System.Diagnostics.ProcessModule (NSI.dll)
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+ System.Diagnostics.ProcessModule (mscms.dll)
+ System.Diagnostics.ProcessModule (ColorAdapterClient.dll)
+ System.Diagnostics.ProcessModule (icm32.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+ System.Diagnostics.ProcessModule (InputHost.dll)
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+ System.Diagnostics.ProcessModule (d2d1.dll)
+ System.Diagnostics.ProcessModule (d3d11.dll)
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+ System.Diagnostics.ProcessModule (wintypes.dll)
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+ System.Diagnostics.ProcessModule (dxgi.dll)
+ System.Diagnostics.ProcessModule (WTSAPI32.dll)
+ System.Diagnostics.ProcessModule (wlanapi.dll)
+ System.Diagnostics.ProcessModule (WINSTA.dll)
+ System.Diagnostics.ProcessModule (wbemprox.dll)
+ System.Diagnostics.ProcessModule (wbemcomn.dll)
+ System.Diagnostics.ProcessModule (MMDevApi.dll)
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+ System.Diagnostics.ProcessModule (wbemsvc.dll)
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+ System.Diagnostics.ProcessModule (fastprox.dll)
+ System.Diagnostics.ProcessModule (wmiutils.dll)
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+ System.Diagnostics.ProcessModule (FirewallAPI.dll)
+ System.Diagnostics.ProcessModule (fwbase.dll)
+ System.Diagnostics.ProcessModule (LINKINFO.dll)
+ System.Diagnostics.ProcessModule (FWPolicyIOMgr.dll)
+ System.Diagnostics.ProcessModule (dataexchange.dll)
+ System.Diagnostics.ProcessModule (dcomp.dll)
+ System.Diagnostics.ProcessModule (atlthunk.dll)
+ System.Diagnostics.ProcessModule (OLEACC.dll)
+ System.Diagnostics.ProcessModule (directmanipulation.dll)
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (explorerframe.dll)
+ System.Diagnostics.ProcessModule (wpnapps.dll)
+ System.Diagnostics.ProcessModule (XmlLite.dll)
+ System.Diagnostics.ProcessModule (usermgrcli.dll)
+ System.Diagnostics.ProcessModule (mswsock.dll)
+ System.Diagnostics.ProcessModule (WINMM.dll)
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (WmiPerfInst.dll)
+ System.Diagnostics.ProcessModule (pdh.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Bluetooth.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.HostName.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.dll)
+ System.Diagnostics.ProcessModule (BiWinrt.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.Connectivity.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Enumeration.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Radios.dll)
+ System.Diagnostics.ProcessModule (NETAPI32.dll)
+ System.Diagnostics.ProcessModule (SAMCLI.DLL)
+ System.Diagnostics.ProcessModule (SAMLIB.dll)
+ System.Diagnostics.ProcessModule (wdmaud.drv)
+ System.Diagnostics.ProcessModule (ksuser.dll)
+ System.Diagnostics.ProcessModule (AVRT.dll)
+ System.Diagnostics.ProcessModule (AUDIOSES.DLL)
+ System.Diagnostics.ProcessModule (msacm32.drv)
+ System.Diagnostics.ProcessModule (MSACM32.dll)
+ System.Diagnostics.ProcessModule (midimap.dll)
+ System.Diagnostics.ProcessModule (resourcepolicyclient.dll)
+ System.Diagnostics.ProcessModule (BitsProxy.dll)
+
+
+ 61568
+ 61568
+ 316080128
+ 316080128
+ 857648
+ 857648
+ 455720960
+ 455720960
+ 398323712
+ 398323712
+ 2204288917504
+ 970694656
+ true
+ Normal
+ 316080128
+ 316080128
+ chrome
+ 65535
+ 1
+
+
+
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+
+
+ 1747
+ 2204143845376
+ 825622528
+ false
+ 112414720
+ 112414720
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ PT11M7.53125S
+ PT21M46.28125S
+ PT10M38.75S
+ 1770664
+ The Living Tombstone Radio - Now Playing on Pandora - Google Chrome
+ true
+
+
+
+
+ chrome
+ 1
+ 1747
+ 2204143845376
+ 112414720
+ 316080128
+ 61568
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ System.Diagnostics.Process (explorer)
+ Google LLC
+ 1306.28125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+ Google LLC
+ 18.625
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+
+
+ System.Diagnostics.Process (chrome)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 6688
+
+ 8
+ false
+ 2019-08-24T14:18:00.4967237+03:00
+ 19596
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+
+ chrome_elf.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll
+ 140719325642752
+ 925696
+ 140719326148464
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll_x000D__x000A_InternalName: chrome_elf_dll_x000D__x000A_OriginalFilename: chrome_elf.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 904
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (VERSION.dll)
+
+ VERSION.dll
+ C:\Windows\SYSTEM32\VERSION.dll
+ 140719800254464
+ 40960
+ 140719800259344
+ File: C:\Windows\SYSTEM32\VERSION.dll_x000D__x000A_InternalName: version_x000D__x000A_OriginalFilename: VERSION.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Version Checking and File Installation Libraries_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Version Checking and File Installation Libraries
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+
+ ADVAPI32.dll
+ C:\Windows\System32\ADVAPI32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\ADVAPI32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (user32.dll)
+
+ user32.dll
+ C:\Windows\System32\user32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\user32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (GDI32.dll)
+
+ GDI32.dll
+ C:\Windows\System32\GDI32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\GDI32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+
+ SHELL32.dll
+ C:\Windows\System32\SHELL32.dll
+ 140719923593216
+ 21954560
+ 140719924695456
+ File: C:\Windows\System32\SHELL32.dll_x000D__x000A_InternalName: SHELL32_x000D__x000A_OriginalFilename: SHELL32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Shell Common Dll_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 21440
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Shell Common Dll
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+
+ cfgmgr32.dll
+ C:\Windows\System32\cfgmgr32.dll
+ 140719889252352
+ 303104
+ 140719889325904
+ File: C:\Windows\System32\cfgmgr32.dll_x000D__x000A_InternalName: cfgmgr32.dll_x000D__x000A_OriginalFilename: CFGMGR32.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Configuration Manager DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 296
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Configuration Manager DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (shcore.dll)
+
+ shcore.dll
+ C:\Windows\System32\shcore.dll
+ 140719907143680
+ 688128
+ 140719907388560
+ File: C:\Windows\System32\shcore.dll_x000D__x000A_InternalName: SHCORE_x000D__x000A_OriginalFilename: SHCORE.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: SHCORE_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 672
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ SHCORE
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+
+ windows.storage.dll
+ C:\Windows\System32\windows.storage.dll
+ 140719897444352
+ 7643136
+ 140719899226624
+ File: C:\Windows\System32\windows.storage.dll_x000D__x000A_InternalName: Windows.Storage_x000D__x000A_OriginalFilename: Windows.Storage.dll.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft WinRT Storage API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 7464
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft WinRT Storage API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (profapi.dll)
+
+ profapi.dll
+ C:\Windows\System32\profapi.dll
+ 140719888531456
+ 147456
+ 140719888564400
+ File: C:\Windows\System32\profapi.dll_x000D__x000A_InternalName: PROFAPI.DLL_x000D__x000A_OriginalFilename: PROFAPI.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: User Profile Basic API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ User Profile Basic API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (powrprof.dll)
+
+ powrprof.dll
+ C:\Windows\System32\powrprof.dll
+ 140719888007168
+ 380928
+ 140719888020992
+ File: C:\Windows\System32\powrprof.dll_x000D__x000A_InternalName: POWRPROF_x000D__x000A_OriginalFilename: POWRPROF.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Power Profile Helper DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 372
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Power Profile Helper DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+
+ shlwapi.dll
+ C:\Windows\System32\shlwapi.dll
+ 140719945547776
+ 335872
+ 140719945588304
+ File: C:\Windows\System32\shlwapi.dll_x000D__x000A_InternalName: SHLWAPI_x000D__x000A_OriginalFilename: SHLWAPI.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Shell Light-weight Utility Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 328
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Shell Light-weight Utility Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+
+ cryptsp.dll
+ C:\Windows\System32\cryptsp.dll
+ 140719889121280
+ 94208
+ 140719889138512
+ File: C:\Windows\System32\cryptsp.dll_x000D__x000A_InternalName: cryptsp.dll_x000D__x000A_OriginalFilename: cryptsp.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Cryptographic Service Provider API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 92
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Cryptographic Service Provider API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_watcher.dll)
+
+ chrome_watcher.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_watcher.dll
+ 140719307489280
+ 950272
+ 140719308049024
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_watcher.dll_x000D__x000A_InternalName: chrome_watcher_dll_x000D__x000A_OriginalFilename: chrome_watcher.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 928
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (ole32.dll)
+
+ ole32.dll
+ C:\Windows\System32\ole32.dll
+ 140719907864576
+ 1396736
+ 140719908019504
+ File: C:\Windows\System32\ole32.dll_x000D__x000A_InternalName: OLE32.DLL_x000D__x000A_OriginalFilename: OLE32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft OLE for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1364
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft OLE for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMM.dll)
+
+ WINMM.dll
+ C:\Windows\SYSTEM32\WINMM.dll
+ 140719835054080
+ 147456
+ 140719835066368
+ File: C:\Windows\SYSTEM32\WINMM.dll_x000D__x000A_InternalName: winmm.dll_x000D__x000A_OriginalFilename: WINMM.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MCI API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MCI API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+
+ WINMMBASE.dll
+ C:\Windows\SYSTEM32\WINMMBASE.dll
+ 140719834857472
+ 184320
+ 140719834890448
+ File: C:\Windows\SYSTEM32\WINMMBASE.dll_x000D__x000A_InternalName: winmmbase.dll_x000D__x000A_OriginalFilename: WINMMbase.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base Multimedia Extension API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 180
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base Multimedia Extension API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+
+ CRYPTBASE.DLL
+ C:\Windows\SYSTEM32\CRYPTBASE.DLL
+ 140719881846784
+ 49152
+ 140719881855488
+ File: C:\Windows\SYSTEM32\CRYPTBASE.DLL_x000D__x000A_InternalName: cryptbase.dll_x000D__x000A_OriginalFilename: cryptbase.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base cryptographic API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base cryptographic API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+
+ uxtheme.dll
+ C:\Windows\system32\uxtheme.dll
+ 140719860547584
+ 638976
+ 140719860712368
+ File: C:\Windows\system32\uxtheme.dll_x000D__x000A_InternalName: UxTheme.dll_x000D__x000A_OriginalFilename: UxTheme.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft UxTheme Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 624
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft UxTheme Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+
+ dwmapi.dll
+ C:\Windows\system32\dwmapi.dll
+ 140719861399552
+ 188416
+ 140719861412880
+ File: C:\Windows\system32\dwmapi.dll_x000D__x000A_InternalName: dwmapi.dll_x000D__x000A_OriginalFilename: dwmapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Desktop Window Manager API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft Desktop Window Manager API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+
+ CRYPT32.dll
+ C:\Windows\System32\CRYPT32.dll
+ 140719891480576
+ 1945600
+ 140719891804832
+ File: C:\Windows\System32\CRYPT32.dll_x000D__x000A_InternalName: CRYPT32.DLL_x000D__x000A_OriginalFilename: CRYPT32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto API32_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1900
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto API32
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+
+ MSASN1.dll
+ C:\Windows\System32\MSASN1.dll
+ 140719887876096
+ 73728
+ 140719887898576
+ File: C:\Windows\System32\MSASN1.dll_x000D__x000A_InternalName: msasn1.dll_x000D__x000A_OriginalFilename: msasn1.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ASN.1 Runtime APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 72
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ASN.1 Runtime APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+
+ MSCTF.dll
+ C:\Windows\System32\MSCTF.dll
+ 140719947317248
+ 1486848
+ 140719947597184
+ File: C:\Windows\System32\MSCTF.dll_x000D__x000A_InternalName: MSCTF_x000D__x000A_OriginalFilename: MSCTF.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MSCTF Server DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1452
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MSCTF Server DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+
+ OLEAUT32.dll
+ C:\Windows\System32\OLEAUT32.dll
+ 140719946465280
+ 802816
+ 140719946574624
+ File: C:\Windows\System32\OLEAUT32.dll_x000D__x000A_InternalName: OLEAUT32.DLL_x000D__x000A_OriginalFilename: OLEAUT32.DLL_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OLEAUT32.DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 784
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ OLEAUT32.DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ 39
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 11080
+ 11080
+ 2084864
+ 2084864
+ 185848
+ 185848
+ 2134016
+ 2134016
+ 9211904
+ 9211904
+ 2203457196032
+ 138973184
+ true
+
+
+ Normal
+ 32
+
+ 2084864
+ 2084864
+ chrome
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 1004
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.03125S
+ 2019-08-24T14:18:00.496725+03:00
+ PT0.03125S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 18292
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:00.5228201+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ 2
+
+
+
+
+
+
+
+ false
+
+
+ 139
+ 2203455098880
+ 136876032
+ false
+ 6107136
+ 6107136
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+ PT0.03125S
+ PT0.03125S
+ PT0S
+
+
+ 0
+
+
+ true
+
+
+
+
+ chrome
+ 1
+ 139
+ 2203455098880
+ 6107136
+ 2084864
+ 11080
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+
+
+ System.Diagnostics.Process (chrome)
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ 5692
+ 8
+ false
+ 2019-08-24T14:18:00.3253674+03:00
+ 23804
+ .
+ 1413120
+ 204800
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ System.Diagnostics.ProcessModule (ntdll.dll)
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+ System.Diagnostics.ProcessModule (VERSION.dll)
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+ System.Diagnostics.ProcessModule (sechost.dll)
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+ System.Diagnostics.ProcessModule (user32.dll)
+ System.Diagnostics.ProcessModule (win32u.dll)
+ System.Diagnostics.ProcessModule (GDI32.dll)
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+ System.Diagnostics.ProcessModule (shcore.dll)
+ System.Diagnostics.ProcessModule (combase.dll)
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+ System.Diagnostics.ProcessModule (profapi.dll)
+ System.Diagnostics.ProcessModule (powrprof.dll)
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+ System.Diagnostics.ProcessModule (chrome.dll)
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+ System.Diagnostics.ProcessModule (USERENV.dll)
+ System.Diagnostics.ProcessModule (gpapi.dll)
+ System.Diagnostics.ProcessModule (wkscli.dll)
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+ System.Diagnostics.ProcessModule (netutils.dll)
+ System.Diagnostics.ProcessModule (ole32.dll)
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+ System.Diagnostics.ProcessModule (Secur32.dll)
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+ System.Diagnostics.ProcessModule (DWrite.dll)
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+ System.Diagnostics.ProcessModule (COMCTL32.dll)
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+ System.Diagnostics.ProcessModule (twinapi.dll)
+ System.Diagnostics.ProcessModule (NLAapi.dll)
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+ System.Diagnostics.ProcessModule (NSI.dll)
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+ System.Diagnostics.ProcessModule (mscms.dll)
+ System.Diagnostics.ProcessModule (ColorAdapterClient.dll)
+ System.Diagnostics.ProcessModule (icm32.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+ System.Diagnostics.ProcessModule (InputHost.dll)
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+ System.Diagnostics.ProcessModule (d2d1.dll)
+ System.Diagnostics.ProcessModule (d3d11.dll)
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+ System.Diagnostics.ProcessModule (wintypes.dll)
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+ System.Diagnostics.ProcessModule (dxgi.dll)
+ System.Diagnostics.ProcessModule (WTSAPI32.dll)
+ System.Diagnostics.ProcessModule (wlanapi.dll)
+ System.Diagnostics.ProcessModule (WINSTA.dll)
+ System.Diagnostics.ProcessModule (wbemprox.dll)
+ System.Diagnostics.ProcessModule (wbemcomn.dll)
+ System.Diagnostics.ProcessModule (MMDevApi.dll)
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+ System.Diagnostics.ProcessModule (wbemsvc.dll)
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+ System.Diagnostics.ProcessModule (fastprox.dll)
+ System.Diagnostics.ProcessModule (wmiutils.dll)
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+ System.Diagnostics.ProcessModule (FirewallAPI.dll)
+ System.Diagnostics.ProcessModule (fwbase.dll)
+ System.Diagnostics.ProcessModule (LINKINFO.dll)
+ System.Diagnostics.ProcessModule (FWPolicyIOMgr.dll)
+ System.Diagnostics.ProcessModule (dataexchange.dll)
+ System.Diagnostics.ProcessModule (dcomp.dll)
+ System.Diagnostics.ProcessModule (atlthunk.dll)
+ System.Diagnostics.ProcessModule (OLEACC.dll)
+ System.Diagnostics.ProcessModule (directmanipulation.dll)
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (explorerframe.dll)
+ System.Diagnostics.ProcessModule (wpnapps.dll)
+ System.Diagnostics.ProcessModule (XmlLite.dll)
+ System.Diagnostics.ProcessModule (usermgrcli.dll)
+ System.Diagnostics.ProcessModule (mswsock.dll)
+ System.Diagnostics.ProcessModule (WINMM.dll)
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (WmiPerfInst.dll)
+ System.Diagnostics.ProcessModule (pdh.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Bluetooth.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.HostName.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.dll)
+ System.Diagnostics.ProcessModule (BiWinrt.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.Connectivity.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Enumeration.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Radios.dll)
+ System.Diagnostics.ProcessModule (NETAPI32.dll)
+ System.Diagnostics.ProcessModule (SAMCLI.DLL)
+ System.Diagnostics.ProcessModule (SAMLIB.dll)
+ System.Diagnostics.ProcessModule (wdmaud.drv)
+ System.Diagnostics.ProcessModule (ksuser.dll)
+ System.Diagnostics.ProcessModule (AVRT.dll)
+ System.Diagnostics.ProcessModule (AUDIOSES.DLL)
+ System.Diagnostics.ProcessModule (msacm32.drv)
+ System.Diagnostics.ProcessModule (MSACM32.dll)
+ System.Diagnostics.ProcessModule (midimap.dll)
+ System.Diagnostics.ProcessModule (resourcepolicyclient.dll)
+ System.Diagnostics.ProcessModule (BitsProxy.dll)
+
+
+ 61568
+ 61568
+ 316080128
+ 316080128
+ 857648
+ 857648
+ 455720960
+ 455720960
+ 398323712
+ 398323712
+ 2204288917504
+ 970694656
+ true
+ Normal
+ 316080128
+ 316080128
+ chrome
+ 65535
+ 1
+
+
+
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+
+
+ 1747
+ 2204143845376
+ 825622528
+ false
+ 112414720
+ 112414720
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ PT11M7.53125S
+ PT21M46.28125S
+ PT10M38.75S
+ 1770664
+ The Living Tombstone Radio - Now Playing on Pandora - Google Chrome
+ true
+
+
+
+
+ chrome
+ 1
+ 1747
+ 2204143845376
+ 112414720
+ 316080128
+ 61568
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ System.Diagnostics.Process (explorer)
+ Google LLC
+ 1306.28125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+ Google LLC
+ 0.03125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+
+
+ System.Diagnostics.Process (chrome)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 1876
+
+ 8
+ false
+ 2019-08-24T14:18:44.9573029+03:00
+ 19776
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+
+ chrome_elf.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll
+ 140719325642752
+ 925696
+ 140719326148464
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll_x000D__x000A_InternalName: chrome_elf_dll_x000D__x000A_OriginalFilename: chrome_elf.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 904
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (VERSION.dll)
+
+ VERSION.dll
+ C:\Windows\SYSTEM32\VERSION.dll
+ 140719800254464
+ 40960
+ 140719800259344
+ File: C:\Windows\SYSTEM32\VERSION.dll_x000D__x000A_InternalName: version_x000D__x000A_OriginalFilename: VERSION.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Version Checking and File Installation Libraries_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Version Checking and File Installation Libraries
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+
+ ADVAPI32.dll
+ C:\Windows\System32\ADVAPI32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\ADVAPI32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_child.dll)
+
+ chrome_child.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll
+ 140717177962496
+ 87977984
+ 140717247440176
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll_x000D__x000A_InternalName: chrome_dll_x000D__x000A_OriginalFilename: chrome.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 85916
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+
+ OLEAUT32.dll
+ C:\Windows\System32\OLEAUT32.dll
+ 140719946465280
+ 802816
+ 140719946574624
+ File: C:\Windows\System32\OLEAUT32.dll_x000D__x000A_InternalName: OLEAUT32.DLL_x000D__x000A_OriginalFilename: OLEAUT32.DLL_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OLEAUT32.DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 784
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ OLEAUT32.DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+
+ WS2_32.dll
+ C:\Windows\System32\WS2_32.dll
+ 140719954198528
+ 446464
+ 140719954286384
+ File: C:\Windows\System32\WS2_32.dll_x000D__x000A_InternalName: ws2_32.dll_x000D__x000A_OriginalFilename: ws2_32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Socket 2.0 32-Bit DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 436
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Socket 2.0 32-Bit DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (GDI32.dll)
+
+ GDI32.dll
+ C:\Windows\System32\GDI32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\GDI32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USER32.dll)
+
+ USER32.dll
+ C:\Windows\System32\USER32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\USER32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINTRUST.dll)
+
+ WINTRUST.dll
+ C:\Windows\System32\WINTRUST.dll
+ 140719888728064
+ 364544
+ 140719888791376
+ File: C:\Windows\System32\WINTRUST.dll_x000D__x000A_InternalName: WINTRUST.DLL_x000D__x000A_OriginalFilename: WINTRUST.DLL_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Trust Verification APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 356
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft Trust Verification APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+
+ MSASN1.dll
+ C:\Windows\System32\MSASN1.dll
+ 140719887876096
+ 73728
+ 140719887898576
+ File: C:\Windows\System32\MSASN1.dll_x000D__x000A_InternalName: msasn1.dll_x000D__x000A_OriginalFilename: msasn1.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ASN.1 Runtime APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 72
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ASN.1 Runtime APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+
+ CRYPT32.dll
+ C:\Windows\System32\CRYPT32.dll
+ 140719891480576
+ 1945600
+ 140719891804832
+ File: C:\Windows\System32\CRYPT32.dll_x000D__x000A_InternalName: CRYPT32.DLL_x000D__x000A_OriginalFilename: CRYPT32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto API32_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1900
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto API32
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+
+ IPHLPAPI.DLL
+ C:\Windows\SYSTEM32\IPHLPAPI.DLL
+ 140719876931584
+ 249856
+ 140719876989024
+ File: C:\Windows\SYSTEM32\IPHLPAPI.DLL_x000D__x000A_InternalName: iphlpapi.dll_x000D__x000A_OriginalFilename: iphlpapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: IP Helper API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 244
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ IP Helper API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMM.dll)
+
+ WINMM.dll
+ C:\Windows\SYSTEM32\WINMM.dll
+ 140719835054080
+ 147456
+ 140719835066368
+ File: C:\Windows\SYSTEM32\WINMM.dll_x000D__x000A_InternalName: winmm.dll_x000D__x000A_OriginalFilename: WINMM.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MCI API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MCI API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USERENV.dll)
+
+ USERENV.dll
+ C:\Windows\SYSTEM32\USERENV.dll
+ 140719887024128
+ 163840
+ 140719887043280
+ File: C:\Windows\SYSTEM32\USERENV.dll_x000D__x000A_InternalName: userenv_x000D__x000A_OriginalFilename: userenv.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Userenv_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Userenv
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (profapi.dll)
+
+ profapi.dll
+ C:\Windows\System32\profapi.dll
+ 140719888531456
+ 147456
+ 140719888564400
+ File: C:\Windows\System32\profapi.dll_x000D__x000A_InternalName: PROFAPI.DLL_x000D__x000A_OriginalFilename: PROFAPI.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: User Profile Basic API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ User Profile Basic API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (DWrite.dll)
+
+ DWrite.dll
+ C:\Windows\SYSTEM32\DWrite.dll
+ 140719303819264
+ 3129344
+ 140719304509728
+ File: C:\Windows\SYSTEM32\DWrite.dll_x000D__x000A_InternalName: DWrite_x000D__x000A_OriginalFilename: DWrite_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft DirectX Typography Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3056
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft DirectX Typography Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINSPOOL.DRV)
+
+ WINSPOOL.DRV
+ C:\Windows\SYSTEM32\WINSPOOL.DRV
+ 140719787606016
+ 561152
+ 140719787676448
+ File: C:\Windows\SYSTEM32\WINSPOOL.DRV_x000D__x000A_InternalName: winspool.drv_x000D__x000A_OriginalFilename: winspool.drv.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Spooler Driver_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 548
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Spooler Driver
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+
+ bcrypt.dll
+ C:\Windows\System32\bcrypt.dll
+ 140719897247744
+ 155648
+ 140719897281296
+ File: C:\Windows\System32\bcrypt.dll_x000D__x000A_InternalName: bcrypt.dll_x000D__x000A_OriginalFilename: bcrypt.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 152
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dbghelp.dll)
+
+ dbghelp.dll
+ C:\Windows\SYSTEM32\dbghelp.dll
+ 140719552397312
+ 2019328
+ 140719552479168
+ File: C:\Windows\SYSTEM32\dbghelp.dll_x000D__x000A_InternalName: DBGHELP.DLL_x000D__x000A_OriginalFilename: DBGHELP.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Image Helper_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Image Helper
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+
+ WINHTTP.dll
+ C:\Windows\SYSTEM32\WINHTTP.dll
+ 140719810019328
+ 991232
+ 140719810293024
+ File: C:\Windows\SYSTEM32\WINHTTP.dll_x000D__x000A_InternalName: winhttp.dll_x000D__x000A_OriginalFilename: winhttp.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows HTTP Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 968
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows HTTP Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Secur32.dll)
+
+ Secur32.dll
+ C:\Windows\SYSTEM32\Secur32.dll
+ 140719559147520
+ 49152
+ 140719559156816
+ File: C:\Windows\SYSTEM32\Secur32.dll_x000D__x000A_InternalName: secur32.dll_x000D__x000A_OriginalFilename: secur32.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+
+ dhcpcsvc.DLL
+ C:\Windows\SYSTEM32\dhcpcsvc.DLL
+ 140719782494208
+ 114688
+ 140719782503840
+ File: C:\Windows\SYSTEM32\dhcpcsvc.DLL_x000D__x000A_InternalName: dhcpcsvc.dll_x000D__x000A_OriginalFilename: dhcpcsvc.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DHCP Client Service_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 112
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DHCP Client Service
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (NSI.dll)
+
+ NSI.dll
+ C:\Windows\System32\NSI.dll
+ 140719916843008
+ 32768
+ 140719916851008
+ File: C:\Windows\System32\NSI.dll_x000D__x000A_InternalName: nsi.dll_x000D__x000A_OriginalFilename: nsi.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NSI User-mode interface DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 32
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NSI User-mode interface DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+
+ WINMMBASE.dll
+ C:\Windows\SYSTEM32\WINMMBASE.dll
+ 140719834857472
+ 184320
+ 140719834890448
+ File: C:\Windows\SYSTEM32\WINMMBASE.dll_x000D__x000A_InternalName: winmmbase.dll_x000D__x000A_OriginalFilename: WINMMbase.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base Multimedia Extension API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 180
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base Multimedia Extension API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+
+ cfgmgr32.dll
+ C:\Windows\System32\cfgmgr32.dll
+ 140719889252352
+ 303104
+ 140719889325904
+ File: C:\Windows\System32\cfgmgr32.dll_x000D__x000A_InternalName: cfgmgr32.dll_x000D__x000A_OriginalFilename: CFGMGR32.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Configuration Manager DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 296
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Configuration Manager DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+
+ PROPSYS.dll
+ C:\Windows\SYSTEM32\PROPSYS.dll
+ 140719831187456
+ 1736704
+ 140719831447408
+ File: C:\Windows\SYSTEM32\PROPSYS.dll_x000D__x000A_InternalName: propsys.dll_x000D__x000A_OriginalFilename: propsys.dll.mui_x000D__x000A_FileVersion: 7.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Property System_x000D__x000A_Product: Windows® Search_x000D__x000A_ProductVersion: 7.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1696
+ Microsoft Corporation
+ 7.0.17763.1 (WinBuild.160101.0800)
+ 7.0.17763.1
+ Microsoft Property System
+ Windows® Search
+
+
+
+
+ System.Diagnostics.ProcessModule (shcore.dll)
+
+ shcore.dll
+ C:\Windows\System32\shcore.dll
+ 140719907143680
+ 688128
+ 140719907388560
+ File: C:\Windows\System32\shcore.dll_x000D__x000A_InternalName: SHCORE_x000D__x000A_OriginalFilename: SHCORE.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: SHCORE_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 672
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ SHCORE
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+
+ SSPICLI.DLL
+ C:\Windows\SYSTEM32\SSPICLI.DLL
+ 140719886827520
+ 192512
+ 140719886881776
+ File: C:\Windows\SYSTEM32\SSPICLI.DLL_x000D__x000A_InternalName: sspicli.dll_x000D__x000A_OriginalFilename: sspicli.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 188
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+
+ CRYPTBASE.DLL
+ C:\Windows\SYSTEM32\CRYPTBASE.DLL
+ 140719881846784
+ 49152
+ 140719881855488
+ File: C:\Windows\SYSTEM32\CRYPTBASE.DLL_x000D__x000A_InternalName: cryptbase.dll_x000D__x000A_OriginalFilename: cryptbase.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base cryptographic API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base cryptographic API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ 44
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 19576
+ 19576
+ 19427328
+ 19427328
+ 332072
+ 332072
+ 19427328
+ 19427328
+ 25186304
+ 25186304
+ 2203727597568
+ 409374720
+ true
+
+
+ Normal
+ 32
+
+ 19427328
+ 19427328
+ chrome
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 15116
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.03125S
+ 2019-08-24T14:18:44.9573044+03:00
+ PT0.15625S
+ PT0.125S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 24396
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:45.0066902+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 6
+ 19684
+ true
+ Lowest
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.046875S
+ 2019-08-24T14:18:45.007819+03:00
+ PT0.046875S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 11524
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0.03125S
+ 2019-08-24T14:18:45.0085315+03:00
+ PT0.09375S
+ PT0.0625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 24000
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-24T14:18:45.009294+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 7032
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:45.0102892+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 11756
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.015625S
+ 2019-08-24T14:18:45.016436+03:00
+ PT0.015625S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 4864
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:45.0176657+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 2340
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:45.0181709+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 22976
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:45.0186556+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 14836
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:45.0189918+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 6
+ 13628
+ true
+ Lowest
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:45.0193882+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 6312
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.03125S
+ 2019-08-24T14:18:53.1281298+03:00
+ PT0.03125S
+ PT0S
+
+
+
+
+
+
+ 13
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 340
+ 2203714748416
+ 396525568
+ false
+ 17444864
+ 17444864
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+ PT0.25S
+ PT0.4375S
+ PT0.1875S
+
+
+ 0
+
+
+ true
+
+
+
+
+ chrome
+ 1
+ 340
+ 2203714748416
+ 17444864
+ 19427328
+ 19576
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+
+
+ System.Diagnostics.Process (chrome)
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ 3424
+ 8
+ false
+ 2019-08-24T14:18:00.3253674+03:00
+ 23804
+ .
+ 1413120
+ 204800
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ System.Diagnostics.ProcessModule (ntdll.dll)
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+ System.Diagnostics.ProcessModule (VERSION.dll)
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+ System.Diagnostics.ProcessModule (sechost.dll)
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+ System.Diagnostics.ProcessModule (user32.dll)
+ System.Diagnostics.ProcessModule (win32u.dll)
+ System.Diagnostics.ProcessModule (GDI32.dll)
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+ System.Diagnostics.ProcessModule (shcore.dll)
+ System.Diagnostics.ProcessModule (combase.dll)
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+ System.Diagnostics.ProcessModule (profapi.dll)
+ System.Diagnostics.ProcessModule (powrprof.dll)
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+ System.Diagnostics.ProcessModule (chrome.dll)
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+ System.Diagnostics.ProcessModule (USERENV.dll)
+ System.Diagnostics.ProcessModule (gpapi.dll)
+ System.Diagnostics.ProcessModule (wkscli.dll)
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+ System.Diagnostics.ProcessModule (netutils.dll)
+ System.Diagnostics.ProcessModule (ole32.dll)
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+ System.Diagnostics.ProcessModule (Secur32.dll)
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+ System.Diagnostics.ProcessModule (DWrite.dll)
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+ System.Diagnostics.ProcessModule (COMCTL32.dll)
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+ System.Diagnostics.ProcessModule (twinapi.dll)
+ System.Diagnostics.ProcessModule (NLAapi.dll)
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+ System.Diagnostics.ProcessModule (NSI.dll)
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+ System.Diagnostics.ProcessModule (mscms.dll)
+ System.Diagnostics.ProcessModule (ColorAdapterClient.dll)
+ System.Diagnostics.ProcessModule (icm32.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+ System.Diagnostics.ProcessModule (InputHost.dll)
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+ System.Diagnostics.ProcessModule (d2d1.dll)
+ System.Diagnostics.ProcessModule (d3d11.dll)
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+ System.Diagnostics.ProcessModule (wintypes.dll)
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+ System.Diagnostics.ProcessModule (dxgi.dll)
+ System.Diagnostics.ProcessModule (WTSAPI32.dll)
+ System.Diagnostics.ProcessModule (wlanapi.dll)
+ System.Diagnostics.ProcessModule (WINSTA.dll)
+ System.Diagnostics.ProcessModule (wbemprox.dll)
+ System.Diagnostics.ProcessModule (wbemcomn.dll)
+ System.Diagnostics.ProcessModule (MMDevApi.dll)
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+ System.Diagnostics.ProcessModule (wbemsvc.dll)
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+ System.Diagnostics.ProcessModule (fastprox.dll)
+ System.Diagnostics.ProcessModule (wmiutils.dll)
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+ System.Diagnostics.ProcessModule (FirewallAPI.dll)
+ System.Diagnostics.ProcessModule (fwbase.dll)
+ System.Diagnostics.ProcessModule (LINKINFO.dll)
+ System.Diagnostics.ProcessModule (FWPolicyIOMgr.dll)
+ System.Diagnostics.ProcessModule (dataexchange.dll)
+ System.Diagnostics.ProcessModule (dcomp.dll)
+ System.Diagnostics.ProcessModule (atlthunk.dll)
+ System.Diagnostics.ProcessModule (OLEACC.dll)
+ System.Diagnostics.ProcessModule (directmanipulation.dll)
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (explorerframe.dll)
+ System.Diagnostics.ProcessModule (wpnapps.dll)
+ System.Diagnostics.ProcessModule (XmlLite.dll)
+ System.Diagnostics.ProcessModule (usermgrcli.dll)
+ System.Diagnostics.ProcessModule (mswsock.dll)
+ System.Diagnostics.ProcessModule (WINMM.dll)
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (WmiPerfInst.dll)
+ System.Diagnostics.ProcessModule (pdh.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Bluetooth.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.HostName.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.dll)
+ System.Diagnostics.ProcessModule (BiWinrt.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.Connectivity.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Enumeration.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Radios.dll)
+ System.Diagnostics.ProcessModule (NETAPI32.dll)
+ System.Diagnostics.ProcessModule (SAMCLI.DLL)
+ System.Diagnostics.ProcessModule (SAMLIB.dll)
+ System.Diagnostics.ProcessModule (wdmaud.drv)
+ System.Diagnostics.ProcessModule (ksuser.dll)
+ System.Diagnostics.ProcessModule (AVRT.dll)
+ System.Diagnostics.ProcessModule (AUDIOSES.DLL)
+ System.Diagnostics.ProcessModule (msacm32.drv)
+ System.Diagnostics.ProcessModule (MSACM32.dll)
+ System.Diagnostics.ProcessModule (midimap.dll)
+ System.Diagnostics.ProcessModule (resourcepolicyclient.dll)
+ System.Diagnostics.ProcessModule (BitsProxy.dll)
+
+
+ 61568
+ 61568
+ 316080128
+ 316080128
+ 857648
+ 857648
+ 455720960
+ 455720960
+ 398323712
+ 398323712
+ 2204288917504
+ 970694656
+ true
+ Normal
+ 316080128
+ 316080128
+ chrome
+ 65535
+ 1
+
+
+
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+
+
+ 1747
+ 2204143845376
+ 825622528
+ false
+ 112414720
+ 112414720
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ PT11M7.53125S
+ PT21M46.28125S
+ PT10M38.75S
+ 1770664
+ The Living Tombstone Radio - Now Playing on Pandora - Google Chrome
+ true
+
+
+
+
+ chrome
+ 1
+ 1747
+ 2204143845376
+ 112414720
+ 316080128
+ 61568
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ System.Diagnostics.Process (explorer)
+ Google LLC
+ 1306.28125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+ Google LLC
+ 0.4375
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+
+
+ System.Diagnostics.Process (chrome)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 6896
+
+ 8
+ false
+ 2019-08-24T14:18:00.6190822+03:00
+ 20652
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+
+ chrome_elf.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll
+ 140719325642752
+ 925696
+ 140719326148464
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll_x000D__x000A_InternalName: chrome_elf_dll_x000D__x000A_OriginalFilename: chrome_elf.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 904
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (VERSION.dll)
+
+ VERSION.dll
+ C:\Windows\SYSTEM32\VERSION.dll
+ 140719800254464
+ 40960
+ 140719800259344
+ File: C:\Windows\SYSTEM32\VERSION.dll_x000D__x000A_InternalName: version_x000D__x000A_OriginalFilename: VERSION.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Version Checking and File Installation Libraries_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Version Checking and File Installation Libraries
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+
+ ADVAPI32.dll
+ C:\Windows\System32\ADVAPI32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\ADVAPI32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (user32.dll)
+
+ user32.dll
+ C:\Windows\System32\user32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\user32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (GDI32.dll)
+
+ GDI32.dll
+ C:\Windows\System32\GDI32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\GDI32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_child.dll)
+
+ chrome_child.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll
+ 140717177962496
+ 87977984
+ 140717247440176
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll_x000D__x000A_InternalName: chrome_dll_x000D__x000A_OriginalFilename: chrome.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 85916
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+
+ OLEAUT32.dll
+ C:\Windows\System32\OLEAUT32.dll
+ 140719946465280
+ 802816
+ 140719946574624
+ File: C:\Windows\System32\OLEAUT32.dll_x000D__x000A_InternalName: OLEAUT32.DLL_x000D__x000A_OriginalFilename: OLEAUT32.DLL_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OLEAUT32.DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 784
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ OLEAUT32.DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+
+ WS2_32.dll
+ C:\Windows\System32\WS2_32.dll
+ 140719954198528
+ 446464
+ 140719954286384
+ File: C:\Windows\System32\WS2_32.dll_x000D__x000A_InternalName: ws2_32.dll_x000D__x000A_OriginalFilename: ws2_32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Socket 2.0 32-Bit DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 436
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Socket 2.0 32-Bit DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINTRUST.dll)
+
+ WINTRUST.dll
+ C:\Windows\System32\WINTRUST.dll
+ 140719888728064
+ 364544
+ 140719888791376
+ File: C:\Windows\System32\WINTRUST.dll_x000D__x000A_InternalName: WINTRUST.DLL_x000D__x000A_OriginalFilename: WINTRUST.DLL_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Trust Verification APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 356
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft Trust Verification APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+
+ MSASN1.dll
+ C:\Windows\System32\MSASN1.dll
+ 140719887876096
+ 73728
+ 140719887898576
+ File: C:\Windows\System32\MSASN1.dll_x000D__x000A_InternalName: msasn1.dll_x000D__x000A_OriginalFilename: msasn1.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ASN.1 Runtime APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 72
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ASN.1 Runtime APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+
+ CRYPT32.dll
+ C:\Windows\System32\CRYPT32.dll
+ 140719891480576
+ 1945600
+ 140719891804832
+ File: C:\Windows\System32\CRYPT32.dll_x000D__x000A_InternalName: CRYPT32.DLL_x000D__x000A_OriginalFilename: CRYPT32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto API32_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1900
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto API32
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+
+ IPHLPAPI.DLL
+ C:\Windows\SYSTEM32\IPHLPAPI.DLL
+ 140719876931584
+ 249856
+ 140719876989024
+ File: C:\Windows\SYSTEM32\IPHLPAPI.DLL_x000D__x000A_InternalName: iphlpapi.dll_x000D__x000A_OriginalFilename: iphlpapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: IP Helper API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 244
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ IP Helper API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMM.dll)
+
+ WINMM.dll
+ C:\Windows\SYSTEM32\WINMM.dll
+ 140719835054080
+ 147456
+ 140719835066368
+ File: C:\Windows\SYSTEM32\WINMM.dll_x000D__x000A_InternalName: winmm.dll_x000D__x000A_OriginalFilename: WINMM.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MCI API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MCI API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USERENV.dll)
+
+ USERENV.dll
+ C:\Windows\SYSTEM32\USERENV.dll
+ 140719887024128
+ 163840
+ 140719887043280
+ File: C:\Windows\SYSTEM32\USERENV.dll_x000D__x000A_InternalName: userenv_x000D__x000A_OriginalFilename: userenv.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Userenv_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Userenv
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (profapi.dll)
+
+ profapi.dll
+ C:\Windows\System32\profapi.dll
+ 140719888531456
+ 147456
+ 140719888564400
+ File: C:\Windows\System32\profapi.dll_x000D__x000A_InternalName: PROFAPI.DLL_x000D__x000A_OriginalFilename: PROFAPI.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: User Profile Basic API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ User Profile Basic API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (DWrite.dll)
+
+ DWrite.dll
+ C:\Windows\SYSTEM32\DWrite.dll
+ 140719303819264
+ 3129344
+ 140719304509728
+ File: C:\Windows\SYSTEM32\DWrite.dll_x000D__x000A_InternalName: DWrite_x000D__x000A_OriginalFilename: DWrite_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft DirectX Typography Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3056
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft DirectX Typography Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINSPOOL.DRV)
+
+ WINSPOOL.DRV
+ C:\Windows\SYSTEM32\WINSPOOL.DRV
+ 140719787606016
+ 561152
+ 140719787676448
+ File: C:\Windows\SYSTEM32\WINSPOOL.DRV_x000D__x000A_InternalName: winspool.drv_x000D__x000A_OriginalFilename: winspool.drv.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Spooler Driver_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 548
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Spooler Driver
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+
+ bcrypt.dll
+ C:\Windows\System32\bcrypt.dll
+ 140719897247744
+ 155648
+ 140719897281296
+ File: C:\Windows\System32\bcrypt.dll_x000D__x000A_InternalName: bcrypt.dll_x000D__x000A_OriginalFilename: bcrypt.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 152
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dbghelp.dll)
+
+ dbghelp.dll
+ C:\Windows\SYSTEM32\dbghelp.dll
+ 140719552397312
+ 2019328
+ 140719552479168
+ File: C:\Windows\SYSTEM32\dbghelp.dll_x000D__x000A_InternalName: DBGHELP.DLL_x000D__x000A_OriginalFilename: DBGHELP.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Image Helper_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Image Helper
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+
+ WINHTTP.dll
+ C:\Windows\SYSTEM32\WINHTTP.dll
+ 140719810019328
+ 991232
+ 140719810293024
+ File: C:\Windows\SYSTEM32\WINHTTP.dll_x000D__x000A_InternalName: winhttp.dll_x000D__x000A_OriginalFilename: winhttp.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows HTTP Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 968
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows HTTP Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Secur32.dll)
+
+ Secur32.dll
+ C:\Windows\SYSTEM32\Secur32.dll
+ 140719559147520
+ 49152
+ 140719559156816
+ File: C:\Windows\SYSTEM32\Secur32.dll_x000D__x000A_InternalName: secur32.dll_x000D__x000A_OriginalFilename: secur32.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+
+ dhcpcsvc.DLL
+ C:\Windows\SYSTEM32\dhcpcsvc.DLL
+ 140719782494208
+ 114688
+ 140719782503840
+ File: C:\Windows\SYSTEM32\dhcpcsvc.DLL_x000D__x000A_InternalName: dhcpcsvc.dll_x000D__x000A_OriginalFilename: dhcpcsvc.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DHCP Client Service_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 112
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DHCP Client Service
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (NSI.dll)
+
+ NSI.dll
+ C:\Windows\System32\NSI.dll
+ 140719916843008
+ 32768
+ 140719916851008
+ File: C:\Windows\System32\NSI.dll_x000D__x000A_InternalName: nsi.dll_x000D__x000A_OriginalFilename: nsi.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NSI User-mode interface DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 32
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NSI User-mode interface DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+
+ WINMMBASE.dll
+ C:\Windows\SYSTEM32\WINMMBASE.dll
+ 140719834857472
+ 184320
+ 140719834890448
+ File: C:\Windows\SYSTEM32\WINMMBASE.dll_x000D__x000A_InternalName: winmmbase.dll_x000D__x000A_OriginalFilename: WINMMbase.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base Multimedia Extension API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 180
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base Multimedia Extension API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+
+ cfgmgr32.dll
+ C:\Windows\System32\cfgmgr32.dll
+ 140719889252352
+ 303104
+ 140719889325904
+ File: C:\Windows\System32\cfgmgr32.dll_x000D__x000A_InternalName: cfgmgr32.dll_x000D__x000A_OriginalFilename: CFGMGR32.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Configuration Manager DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 296
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Configuration Manager DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+
+ PROPSYS.dll
+ C:\Windows\SYSTEM32\PROPSYS.dll
+ 140719831187456
+ 1736704
+ 140719831447408
+ File: C:\Windows\SYSTEM32\PROPSYS.dll_x000D__x000A_InternalName: propsys.dll_x000D__x000A_OriginalFilename: propsys.dll.mui_x000D__x000A_FileVersion: 7.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Property System_x000D__x000A_Product: Windows® Search_x000D__x000A_ProductVersion: 7.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1696
+ Microsoft Corporation
+ 7.0.17763.1 (WinBuild.160101.0800)
+ 7.0.17763.1
+ Microsoft Property System
+ Windows® Search
+
+
+
+
+ System.Diagnostics.ProcessModule (shcore.dll)
+
+ shcore.dll
+ C:\Windows\System32\shcore.dll
+ 140719907143680
+ 688128
+ 140719907388560
+ File: C:\Windows\System32\shcore.dll_x000D__x000A_InternalName: SHCORE_x000D__x000A_OriginalFilename: SHCORE.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: SHCORE_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 672
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ SHCORE
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+
+ SSPICLI.DLL
+ C:\Windows\SYSTEM32\SSPICLI.DLL
+ 140719886827520
+ 192512
+ 140719886881776
+ File: C:\Windows\SYSTEM32\SSPICLI.DLL_x000D__x000A_InternalName: sspicli.dll_x000D__x000A_OriginalFilename: sspicli.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 188
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ole32.dll)
+
+ ole32.dll
+ C:\Windows\System32\ole32.dll
+ 140719907864576
+ 1396736
+ 140719908019504
+ File: C:\Windows\System32\ole32.dll_x000D__x000A_InternalName: OLE32.DLL_x000D__x000A_OriginalFilename: OLE32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft OLE for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1364
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft OLE for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SETUPAPI.dll)
+
+ SETUPAPI.dll
+ C:\Windows\System32\SETUPAPI.dll
+ 140719918874624
+ 4677632
+ 140719919015360
+ File: C:\Windows\System32\SETUPAPI.dll_x000D__x000A_InternalName: SETUPAPI.DLL_x000D__x000A_OriginalFilename: SETUPAPI.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Setup API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 4568
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Setup API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+
+ DEVOBJ.dll
+ C:\Windows\SYSTEM32\DEVOBJ.dll
+ 140719885844480
+ 167936
+ 140719885874112
+ File: C:\Windows\SYSTEM32\DEVOBJ.dll_x000D__x000A_InternalName: devinfoset.dll_x000D__x000A_OriginalFilename: devinfoset.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Device Information Set DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Device Information Set DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+
+ SHELL32.dll
+ C:\Windows\System32\SHELL32.dll
+ 140719923593216
+ 21954560
+ 140719924695456
+ File: C:\Windows\System32\SHELL32.dll_x000D__x000A_InternalName: SHELL32_x000D__x000A_OriginalFilename: SHELL32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Shell Common Dll_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 21440
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Shell Common Dll
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+
+ windows.storage.dll
+ C:\Windows\System32\windows.storage.dll
+ 140719897444352
+ 7643136
+ 140719899226624
+ File: C:\Windows\System32\windows.storage.dll_x000D__x000A_InternalName: Windows.Storage_x000D__x000A_OriginalFilename: Windows.Storage.dll.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft WinRT Storage API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 7464
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft WinRT Storage API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (powrprof.dll)
+
+ powrprof.dll
+ C:\Windows\System32\powrprof.dll
+ 140719888007168
+ 380928
+ 140719888020992
+ File: C:\Windows\System32\powrprof.dll_x000D__x000A_InternalName: POWRPROF_x000D__x000A_OriginalFilename: POWRPROF.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Power Profile Helper DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 372
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Power Profile Helper DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+
+ shlwapi.dll
+ C:\Windows\System32\shlwapi.dll
+ 140719945547776
+ 335872
+ 140719945588304
+ File: C:\Windows\System32\shlwapi.dll_x000D__x000A_InternalName: SHLWAPI_x000D__x000A_OriginalFilename: SHLWAPI.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Shell Light-weight Utility Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 328
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Shell Light-weight Utility Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+
+ cryptsp.dll
+ C:\Windows\System32\cryptsp.dll
+ 140719889121280
+ 94208
+ 140719889138512
+ File: C:\Windows\System32\cryptsp.dll_x000D__x000A_InternalName: cryptsp.dll_x000D__x000A_OriginalFilename: cryptsp.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Cryptographic Service Provider API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 92
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Cryptographic Service Provider API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (nvml.dll)
+
+ nvml.dll
+ C:\Program Files\NVIDIA Corporation\NVSMI\nvml.dll
+ 140719101837312
+ 3960832
+ 140719102489260
+ File: C:\Program Files\NVIDIA Corporation\NVSMI\nvml.dll_x000D__x000A_InternalName: _x000D__x000A_OriginalFilename: _x000D__x000A_FileVersion: 8.17.14.3160_x000D__x000A_FileDescription: NVIDIA Management Library 431.60_x000D__x000A_Product: NVIDIA Management Library 431.60_x000D__x000A_ProductVersion: 8.17.14.3160_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: True_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3868
+ NVIDIA Corporation
+ 8.17.14.3160
+ 8.17.14.3160
+ NVIDIA Management Library 431.60
+ NVIDIA Management Library 431.60
+
+
+
+
+ System.Diagnostics.ProcessModule (PSAPI.DLL)
+
+ PSAPI.DLL
+ C:\Windows\System32\PSAPI.DLL
+ 140719945940992
+ 32768
+ 140719945945216
+ File: C:\Windows\System32\PSAPI.DLL_x000D__x000A_InternalName: PSAPI_x000D__x000A_OriginalFilename: PSAPI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Process Status Helper_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 32
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Process Status Helper
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+
+ CRYPTBASE.DLL
+ C:\Windows\SYSTEM32\CRYPTBASE.DLL
+ 140719881846784
+ 49152
+ 140719881855488
+ File: C:\Windows\SYSTEM32\CRYPTBASE.DLL_x000D__x000A_InternalName: cryptbase.dll_x000D__x000A_OriginalFilename: cryptbase.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base cryptographic API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base cryptographic API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (mf.dll)
+
+ mf.dll
+ C:\Windows\SYSTEM32\mf.dll
+ 140719261155328
+ 520192
+ 140719261200272
+ File: C:\Windows\SYSTEM32\mf.dll_x000D__x000A_InternalName: Media Foundation DLL_x000D__x000A_OriginalFilename: mf.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Media Foundation DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 508
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Media Foundation DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (mfplat.dll)
+
+ mfplat.dll
+ C:\Windows\SYSTEM32\mfplat.dll
+ 140719258402816
+ 2101248
+ 140719258613664
+ File: C:\Windows\SYSTEM32\mfplat.dll_x000D__x000A_InternalName: Media Foundation Platform DLL_x000D__x000A_OriginalFilename: mfplat.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Media Foundation Platform DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2052
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Media Foundation Platform DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RTWorkQ.DLL)
+
+ RTWorkQ.DLL
+ C:\Windows\SYSTEM32\RTWorkQ.DLL
+ 140719257092096
+ 192512
+ 140719257137776
+ File: C:\Windows\SYSTEM32\RTWorkQ.DLL_x000D__x000A_InternalName: Realtime WorkQueue DLL_x000D__x000A_OriginalFilename: RTWorkQ.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Realtime WorkQueue DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 188
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Realtime WorkQueue DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msmpeg2vdec.dll)
+
+ msmpeg2vdec.dll
+ C:\Windows\SYSTEM32\msmpeg2vdec.dll
+ 140719099281408
+ 2551808
+ 140719099476384
+ File: C:\Windows\SYSTEM32\msmpeg2vdec.dll_x000D__x000A_InternalName: MSMPEG2VDEC.dll_x000D__x000A_OriginalFilename: MSMPEG2VDEC.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft DTV-DVD Video Decoder_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2492
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Microsoft DTV-DVD Video Decoder
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (mfperfhelper.dll)
+
+ mfperfhelper.dll
+ C:\Windows\SYSTEM32\mfperfhelper.dll
+ 140719779086336
+ 1232896
+ 140719780219008
+ File: C:\Windows\SYSTEM32\mfperfhelper.dll_x000D__x000A_InternalName: MFPerf DLL_x000D__x000A_OriginalFilename: mfperfhelper.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MFPerf DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1204
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MFPerf DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dxva2.dll)
+
+ dxva2.dll
+ C:\Windows\SYSTEM32\dxva2.dll
+ 140719255977984
+ 139264
+ 140719255986176
+ File: C:\Windows\SYSTEM32\dxva2.dll_x000D__x000A_InternalName: DirectX Video Acceleration 2.0 DLL_x000D__x000A_OriginalFilename: dxva2.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DirectX Video Acceleration 2.0 DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 136
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DirectX Video Acceleration 2.0 DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvproc.dll)
+
+ msvproc.dll
+ C:\Windows\SYSTEM32\msvproc.dll
+ 140719097774080
+ 1462272
+ 140719097865456
+ File: C:\Windows\SYSTEM32\msvproc.dll_x000D__x000A_InternalName: Media Foundation Video Processor_x000D__x000A_OriginalFilename: msvproc.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Media Foundation Video Processor_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1428
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Media Foundation Video Processor
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CompPkgSup.DLL)
+
+ CompPkgSup.DLL
+ C:\Windows\SYSTEM32\CompPkgSup.DLL
+ 140719692578816
+ 126976
+ 140719692650528
+ File: C:\Windows\SYSTEM32\CompPkgSup.DLL_x000D__x000A_InternalName: Component Package Support DLL_x000D__x000A_OriginalFilename: CompPkgSup.dll_x000D__x000A_FileVersion: 10.0.17763.529 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Component Package Support DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.529_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 124
+ Microsoft Corporation
+ 10.0.17763.529 (WinBuild.160101.0800)
+ 10.0.17763.529
+ Component Package Support DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (D3DCompiler_47.dll)
+
+ D3DCompiler_47.dll
+ C:\Windows\SYSTEM32\D3DCompiler_47.dll
+ 140719836102656
+ 4530176
+ 140719838620976
+ File: C:\Windows\SYSTEM32\D3DCompiler_47.dll_x000D__x000A_InternalName: d3dcompiler_47.dll_x000D__x000A_OriginalFilename: d3dcompiler_47.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Direct3D HLSL Compiler_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 4424
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Direct3D HLSL Compiler
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (libglesv2.dll)
+
+ libglesv2.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\libglesv2.dll
+ 140718604877824
+ 13099008
+ 140718609347568
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\libglesv2.dll_x000D__x000A_InternalName: libGLESv2_x000D__x000A_OriginalFilename: libGLESv2.dll_x000D__x000A_FileVersion: 2.1.0.9379eed38531_x000D__x000A_FileDescription: ANGLE libGLESv2 Dynamic Link Library_x000D__x000A_Product: ANGLE libGLESv2 Dynamic Link Library_x000D__x000A_ProductVersion: 2.1.0.9379eed38531_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 12792
+
+ 2.1.0.9379eed38531
+ 2.1.0.9379eed38531
+ ANGLE libGLESv2 Dynamic Link Library
+ ANGLE libGLESv2 Dynamic Link Library
+
+
+
+
+ System.Diagnostics.ProcessModule (libegl.dll)
+
+ libegl.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\libegl.dll
+ 140719354150912
+ 405504
+ 140719354269296
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\libegl.dll_x000D__x000A_InternalName: libEGL_x000D__x000A_OriginalFilename: libEGL.dll_x000D__x000A_FileVersion: 2.1.0.9379eed38531_x000D__x000A_FileDescription: ANGLE libEGL Dynamic Link Library_x000D__x000A_Product: ANGLE libEGL Dynamic Link Library_x000D__x000A_ProductVersion: 2.1.0.9379eed38531_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 396
+
+ 2.1.0.9379eed38531
+ 2.1.0.9379eed38531
+ ANGLE libEGL Dynamic Link Library
+ ANGLE libEGL Dynamic Link Library
+
+
+
+
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+
+ dwmapi.dll
+ C:\Windows\SYSTEM32\dwmapi.dll
+ 140719861399552
+ 188416
+ 140719861412880
+ File: C:\Windows\SYSTEM32\dwmapi.dll_x000D__x000A_InternalName: dwmapi.dll_x000D__x000A_OriginalFilename: dwmapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Desktop Window Manager API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft Desktop Window Manager API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dxgi.dll)
+
+ dxgi.dll
+ C:\Windows\SYSTEM32\dxgi.dll
+ 140719868149760
+ 794624
+ 140719868291472
+ File: C:\Windows\SYSTEM32\dxgi.dll_x000D__x000A_InternalName: dxgi.dll_x000D__x000A_OriginalFilename: dxgi.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DirectX Graphics Infrastructure_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 776
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DirectX Graphics Infrastructure
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (d3d11.dll)
+
+ d3d11.dll
+ C:\Windows\SYSTEM32\d3d11.dll
+ 140719840690176
+ 2613248
+ 140719841252320
+ File: C:\Windows\SYSTEM32\d3d11.dll_x000D__x000A_InternalName: D3D11.dll_x000D__x000A_OriginalFilename: D3D11.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Direct3D 11 Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2552
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Direct3D 11 Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dcomp.dll)
+
+ dcomp.dll
+ C:\Windows\SYSTEM32\dcomp.dll
+ 140719849340928
+ 1847296
+ 140719849715008
+ File: C:\Windows\SYSTEM32\dcomp.dll_x000D__x000A_InternalName: dcomp.dll_x000D__x000A_OriginalFilename: dcomp.dll_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft DirectComposition Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1804
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Microsoft DirectComposition Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (nvldumdx.dll)
+
+ nvldumdx.dll
+ C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_547eeefb57db4499\nvldumdx.dll
+ 140719802286080
+ 974848
+ 140719802337632
+ File: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_547eeefb57db4499\nvldumdx.dll_x000D__x000A_InternalName: nvldumd_x000D__x000A_OriginalFilename: nvldumd.dll_x000D__x000A_FileVersion: 26.21.14.3160_x000D__x000A_FileDescription: NVIDIA Driver Loader, Version 431.60 _x000D__x000A_Product: NVIDIA driver loader_x000D__x000A_ProductVersion: 26.21.14.3160_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: True_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 952
+ NVIDIA Corporation
+ 26.21.14.3160
+ 26.21.14.3160
+ NVIDIA Driver Loader, Version 431.60
+ NVIDIA driver loader
+
+
+
+
+ System.Diagnostics.ProcessModule (imagehlp.dll)
+
+ imagehlp.dll
+ C:\Windows\System32\imagehlp.dll
+ 140719954657280
+ 118784
+ 140719954669248
+ File: C:\Windows\System32\imagehlp.dll_x000D__x000A_InternalName: IMAGEHLP.DLL_x000D__x000A_OriginalFilename: IMAGEHLP.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT Image Helper_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 116
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows NT Image Helper
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (rsaenh.dll)
+
+ rsaenh.dll
+ C:\Windows\system32\rsaenh.dll
+ 140719874834432
+ 208896
+ 140719874861552
+ File: C:\Windows\system32\rsaenh.dll_x000D__x000A_InternalName: rsaenh.dll_x000D__x000A_OriginalFilename: rsaenh.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Enhanced Cryptographic Provider_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 204
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft Enhanced Cryptographic Provider
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (nvwgf2umx_cfg.dll)
+
+ nvwgf2umx_cfg.dll
+ C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_547eeefb57db4499\nvwgf2umx_cfg.dll
+ 140719734063104
+ 40022016
+ 140719735659216
+ File: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_547eeefb57db4499\nvwgf2umx_cfg.dll_x000D__x000A_InternalName: nvwgf2um_x000D__x000A_OriginalFilename: nvwgf2um.dll_x000D__x000A_FileVersion: 26.21.14.3160_x000D__x000A_FileDescription: NVIDIA D3D10 Driver, Version 431.60 _x000D__x000A_Product: NVIDIA D3D10 drivers_x000D__x000A_ProductVersion: 26.21.14.3160_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: True_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 39084
+ NVIDIA Corporation
+ 26.21.14.3160
+ 26.21.14.3160
+ NVIDIA D3D10 Driver, Version 431.60
+ NVIDIA D3D10 drivers
+
+
+
+
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+
+ clbcatq.dll
+ C:\Windows\System32\clbcatq.dll
+ 140719916908544
+ 663552
+ 140719916925344
+ File: C:\Windows\System32\clbcatq.dll_x000D__x000A_InternalName: CLBCATQ.DLL_x000D__x000A_OriginalFilename: CLBCATQ.DLL_x000D__x000A_FileVersion: 2001.12.10941.16384 (WinBuild.160101.0800)_x000D__x000A_FileDescription: COM+ Configuration Catalog_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 648
+ Microsoft Corporation
+ 2001.12.10941.16384 (WinBuild.160101.0800)
+ 10.0.17763.1
+ COM+ Configuration Catalog
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WinTypes.dll)
+
+ WinTypes.dll
+ C:\Windows\System32\WinTypes.dll
+ 140719817687040
+ 1388544
+ 140719817864912
+ File: C:\Windows\System32\WinTypes.dll_x000D__x000A_InternalName: Windows Base Types DLL_x000D__x000A_OriginalFilename: WinTypes.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Base Types DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1356
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Base Types DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (mfh264enc.dll)
+
+ mfh264enc.dll
+ C:\Windows\System32\mfh264enc.dll
+ 140719083880448
+ 585728
+ 140719083922336
+ File: C:\Windows\System32\mfh264enc.dll_x000D__x000A_InternalName: Media Foundation H264 Encoder_x000D__x000A_OriginalFilename: mfH264Enc.dll_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Media Foundation H264 Encoder_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 572
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Media Foundation H264 Encoder
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Windows.Media.dll)
+
+ Windows.Media.dll
+ C:\Windows\System32\Windows.Media.dll
+ 140719084470272
+ 7675904
+ 140719084571616
+ File: C:\Windows\System32\Windows.Media.dll_x000D__x000A_InternalName: Windows Media Runtime DLL_x000D__x000A_OriginalFilename: Windows.Media.dll.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Media Runtime DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 7496
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Media Runtime DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+
+ ntmarta.dll
+ C:\Windows\SYSTEM32\ntmarta.dll
+ 140719871557632
+ 200704
+ 140719871586448
+ File: C:\Windows\SYSTEM32\ntmarta.dll_x000D__x000A_InternalName: ntmarta.dll_x000D__x000A_OriginalFilename: ntmarta.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT MARTA provider_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 196
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows NT MARTA provider
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+
+ uxtheme.dll
+ C:\Windows\system32\uxtheme.dll
+ 140719860547584
+ 638976
+ 140719860712368
+ File: C:\Windows\system32\uxtheme.dll_x000D__x000A_InternalName: UxTheme.dll_x000D__x000A_OriginalFilename: UxTheme.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft UxTheme Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 624
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft UxTheme Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+
+ MSCTF.dll
+ C:\Windows\System32\MSCTF.dll
+ 140719947317248
+ 1486848
+ 140719947597184
+ File: C:\Windows\System32\MSCTF.dll_x000D__x000A_InternalName: MSCTF_x000D__x000A_OriginalFilename: MSCTF.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MSCTF Server DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1452
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MSCTF Server DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ 80
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 40392
+ 40392
+ 210436096
+ 210436096
+ 648752
+ 648752
+ 950525952
+ 950525952
+ 307183616
+ 307183616
+ 2204958838784
+ 1640615936
+ true
+
+
+ Normal
+ 32
+
+ 210436096
+ 210436096
+ chrome
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 11548
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT1M56.109375S
+ 2019-08-24T14:18:00.6190839+03:00
+ PT2M17.453125S
+ PT21.34375S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 6980
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:00.7368817+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 9
+ 10
+ 11504
+ true
+ AboveNormal
+ 140719955419728
+ Wait
+ UserRequest
+ PT3.3125S
+ 2019-08-24T14:18:00.878744+03:00
+ PT16.78125S
+ PT13.46875S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 14120
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:00.9080066+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 22972
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.03125S
+ 2019-08-24T14:18:00.9086503+03:00
+ PT0.03125S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 6
+ 8584
+ true
+ Lowest
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.015625S
+ 2019-08-24T14:18:00.9099407+03:00
+ PT0.015625S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 21200
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT1.796875S
+ 2019-08-24T14:18:00.911373+03:00
+ PT4.34375S
+ PT2.546875S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 22420
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-24T14:18:00.9120465+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 22780
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT2.125S
+ 2019-08-24T14:18:00.9130161+03:00
+ PT18.625S
+ PT16.5S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 19748
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.015625S
+ 2019-08-24T14:18:01.11242+03:00
+ PT0.015625S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 1
+ 2
+ 21024
+ true
+ Idle
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.2196498+03:00
+ PT0.015625S
+ PT0.015625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 1
+ 2
+ 23868
+ true
+ Idle
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.2201268+03:00
+ PT0.015625S
+ PT0.015625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 1
+ 2
+ 24024
+ true
+ Idle
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.2204867+03:00
+ PT0.015625S
+ PT0.015625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 1
+ 2
+ 17144
+ true
+ Idle
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.2211154+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 1
+ 2
+ 18416
+ true
+ Idle
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.2216496+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 1
+ 2
+ 20452
+ true
+ Idle
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.015625S
+ 2019-08-24T14:18:01.2220167+03:00
+ PT0.03125S
+ PT0.015625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 1
+ 2
+ 10284
+ true
+ Idle
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.2224458+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 1
+ 2
+ 13764
+ true
+ Idle
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.2228834+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 10280
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.2473734+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 1
+ 2
+ 12236
+ true
+ Idle
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.0625S
+ 2019-08-24T14:18:01.2835698+03:00
+ PT0.140625S
+ PT0.078125S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 1
+ 2
+ 20772
+ true
+ Idle
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.015625S
+ 2019-08-24T14:18:01.2839176+03:00
+ PT0.046875S
+ PT0.03125S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 1
+ 2
+ 24444
+ true
+ Idle
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.046875S
+ 2019-08-24T14:18:01.29098+03:00
+ PT0.125S
+ PT0.078125S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 1
+ 2
+ 8816
+ true
+ Idle
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.046875S
+ 2019-08-24T14:18:01.2912455+03:00
+ PT0.09375S
+ PT0.046875S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 1
+ 2
+ 22404
+ true
+ Idle
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.0625S
+ 2019-08-24T14:18:01.2914743+03:00
+ PT0.109375S
+ PT0.046875S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 1
+ 2
+ 8548
+ true
+ Idle
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.03125S
+ 2019-08-24T14:18:01.291712+03:00
+ PT0.09375S
+ PT0.0625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 1
+ 2
+ 1960
+ true
+ Idle
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.046875S
+ 2019-08-24T14:18:01.294471+03:00
+ PT0.125S
+ PT0.078125S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 1
+ 2
+ 10604
+ true
+ Idle
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.046875S
+ 2019-08-24T14:18:01.2948051+03:00
+ PT0.171875S
+ PT0.125S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 3104
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.3125S
+ 2019-08-24T14:18:01.6786677+03:00
+ PT0.328125S
+ PT0.015625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 12740
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-27T00:13:45.1604446+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ 29
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 615
+ 2204253376512
+ 935153664
+ false
+ 33325056
+ 33325056
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+ PT2M4.546875S
+ PT3M0.375S
+ PT55.828125S
+
+
+ 0
+
+
+ true
+
+
+
+
+ chrome
+ 1
+ 615
+ 2204253376512
+ 33325056
+ 210436096
+ 40392
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+
+
+ System.Diagnostics.Process (chrome)
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ 6308
+ 8
+ false
+ 2019-08-24T14:18:00.3253674+03:00
+ 23804
+ .
+ 1413120
+ 204800
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ System.Diagnostics.ProcessModule (ntdll.dll)
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+ System.Diagnostics.ProcessModule (VERSION.dll)
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+ System.Diagnostics.ProcessModule (sechost.dll)
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+ System.Diagnostics.ProcessModule (user32.dll)
+ System.Diagnostics.ProcessModule (win32u.dll)
+ System.Diagnostics.ProcessModule (GDI32.dll)
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+ System.Diagnostics.ProcessModule (shcore.dll)
+ System.Diagnostics.ProcessModule (combase.dll)
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+ System.Diagnostics.ProcessModule (profapi.dll)
+ System.Diagnostics.ProcessModule (powrprof.dll)
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+ System.Diagnostics.ProcessModule (chrome.dll)
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+ System.Diagnostics.ProcessModule (USERENV.dll)
+ System.Diagnostics.ProcessModule (gpapi.dll)
+ System.Diagnostics.ProcessModule (wkscli.dll)
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+ System.Diagnostics.ProcessModule (netutils.dll)
+ System.Diagnostics.ProcessModule (ole32.dll)
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+ System.Diagnostics.ProcessModule (Secur32.dll)
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+ System.Diagnostics.ProcessModule (DWrite.dll)
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+ System.Diagnostics.ProcessModule (COMCTL32.dll)
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+ System.Diagnostics.ProcessModule (twinapi.dll)
+ System.Diagnostics.ProcessModule (NLAapi.dll)
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+ System.Diagnostics.ProcessModule (NSI.dll)
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+ System.Diagnostics.ProcessModule (mscms.dll)
+ System.Diagnostics.ProcessModule (ColorAdapterClient.dll)
+ System.Diagnostics.ProcessModule (icm32.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+ System.Diagnostics.ProcessModule (InputHost.dll)
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+ System.Diagnostics.ProcessModule (d2d1.dll)
+ System.Diagnostics.ProcessModule (d3d11.dll)
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+ System.Diagnostics.ProcessModule (wintypes.dll)
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+ System.Diagnostics.ProcessModule (dxgi.dll)
+ System.Diagnostics.ProcessModule (WTSAPI32.dll)
+ System.Diagnostics.ProcessModule (wlanapi.dll)
+ System.Diagnostics.ProcessModule (WINSTA.dll)
+ System.Diagnostics.ProcessModule (wbemprox.dll)
+ System.Diagnostics.ProcessModule (wbemcomn.dll)
+ System.Diagnostics.ProcessModule (MMDevApi.dll)
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+ System.Diagnostics.ProcessModule (wbemsvc.dll)
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+ System.Diagnostics.ProcessModule (fastprox.dll)
+ System.Diagnostics.ProcessModule (wmiutils.dll)
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+ System.Diagnostics.ProcessModule (FirewallAPI.dll)
+ System.Diagnostics.ProcessModule (fwbase.dll)
+ System.Diagnostics.ProcessModule (LINKINFO.dll)
+ System.Diagnostics.ProcessModule (FWPolicyIOMgr.dll)
+ System.Diagnostics.ProcessModule (dataexchange.dll)
+ System.Diagnostics.ProcessModule (dcomp.dll)
+ System.Diagnostics.ProcessModule (atlthunk.dll)
+ System.Diagnostics.ProcessModule (OLEACC.dll)
+ System.Diagnostics.ProcessModule (directmanipulation.dll)
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (explorerframe.dll)
+ System.Diagnostics.ProcessModule (wpnapps.dll)
+ System.Diagnostics.ProcessModule (XmlLite.dll)
+ System.Diagnostics.ProcessModule (usermgrcli.dll)
+ System.Diagnostics.ProcessModule (mswsock.dll)
+ System.Diagnostics.ProcessModule (WINMM.dll)
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (WmiPerfInst.dll)
+ System.Diagnostics.ProcessModule (pdh.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Bluetooth.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.HostName.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.dll)
+ System.Diagnostics.ProcessModule (BiWinrt.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.Connectivity.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Enumeration.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Radios.dll)
+ System.Diagnostics.ProcessModule (NETAPI32.dll)
+ System.Diagnostics.ProcessModule (SAMCLI.DLL)
+ System.Diagnostics.ProcessModule (SAMLIB.dll)
+ System.Diagnostics.ProcessModule (wdmaud.drv)
+ System.Diagnostics.ProcessModule (ksuser.dll)
+ System.Diagnostics.ProcessModule (AVRT.dll)
+ System.Diagnostics.ProcessModule (AUDIOSES.DLL)
+ System.Diagnostics.ProcessModule (msacm32.drv)
+ System.Diagnostics.ProcessModule (MSACM32.dll)
+ System.Diagnostics.ProcessModule (midimap.dll)
+ System.Diagnostics.ProcessModule (resourcepolicyclient.dll)
+ System.Diagnostics.ProcessModule (BitsProxy.dll)
+
+
+ 61568
+ 61568
+ 316080128
+ 316080128
+ 857648
+ 857648
+ 455720960
+ 455720960
+ 398323712
+ 398323712
+ 2204288917504
+ 970694656
+ true
+ Normal
+ 316080128
+ 316080128
+ chrome
+ 65535
+ 1
+
+
+
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+
+
+ 1747
+ 2204143845376
+ 825622528
+ false
+ 112414720
+ 112414720
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ PT11M7.53125S
+ PT21M46.28125S
+ PT10M38.75S
+ 1770664
+ The Living Tombstone Radio - Now Playing on Pandora - Google Chrome
+ true
+
+
+
+
+ chrome
+ 1
+ 1747
+ 2204143845376
+ 112414720
+ 316080128
+ 61568
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ System.Diagnostics.Process (explorer)
+ Google LLC
+ 1306.28125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+ Google LLC
+ 180.375
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+
+
+ System.Diagnostics.Process (chrome)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 7708
+
+ 8
+ false
+ 2019-08-24T14:18:00.4604945+03:00
+ 21256
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+
+ chrome_elf.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll
+ 140719325642752
+ 925696
+ 140719326148464
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll_x000D__x000A_InternalName: chrome_elf_dll_x000D__x000A_OriginalFilename: chrome_elf.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 904
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (VERSION.dll)
+
+ VERSION.dll
+ C:\Windows\SYSTEM32\VERSION.dll
+ 140719800254464
+ 40960
+ 140719800259344
+ File: C:\Windows\SYSTEM32\VERSION.dll_x000D__x000A_InternalName: version_x000D__x000A_OriginalFilename: VERSION.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Version Checking and File Installation Libraries_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Version Checking and File Installation Libraries
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USER32.dll)
+
+ USER32.dll
+ C:\Windows\System32\USER32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\USER32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (GDI32.dll)
+
+ GDI32.dll
+ C:\Windows\System32\GDI32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\GDI32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+
+ uxtheme.dll
+ C:\Windows\system32\uxtheme.dll
+ 140719860547584
+ 638976
+ 140719860712368
+ File: C:\Windows\system32\uxtheme.dll_x000D__x000A_InternalName: UxTheme.dll_x000D__x000A_OriginalFilename: UxTheme.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft UxTheme Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 624
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft UxTheme Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+
+ MSCTF.dll
+ C:\Windows\System32\MSCTF.dll
+ 140719947317248
+ 1486848
+ 140719947597184
+ File: C:\Windows\System32\MSCTF.dll_x000D__x000A_InternalName: MSCTF_x000D__x000A_OriginalFilename: MSCTF.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MSCTF Server DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1452
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MSCTF Server DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+
+ OLEAUT32.dll
+ C:\Windows\System32\OLEAUT32.dll
+ 140719946465280
+ 802816
+ 140719946574624
+ File: C:\Windows\System32\OLEAUT32.dll_x000D__x000A_InternalName: OLEAUT32.DLL_x000D__x000A_OriginalFilename: OLEAUT32.DLL_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OLEAUT32.DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 784
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ OLEAUT32.DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+
+ ADVAPI32.dll
+ C:\Windows\System32\ADVAPI32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\ADVAPI32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+
+ CRYPTBASE.DLL
+ C:\Windows\SYSTEM32\CRYPTBASE.DLL
+ 140719881846784
+ 49152
+ 140719881855488
+ File: C:\Windows\SYSTEM32\CRYPTBASE.DLL_x000D__x000A_InternalName: cryptbase.dll_x000D__x000A_OriginalFilename: cryptbase.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base cryptographic API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base cryptographic API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+
+ dwmapi.dll
+ C:\Windows\system32\dwmapi.dll
+ 140719861399552
+ 188416
+ 140719861412880
+ File: C:\Windows\system32\dwmapi.dll_x000D__x000A_InternalName: dwmapi.dll_x000D__x000A_OriginalFilename: dwmapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Desktop Window Manager API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft Desktop Window Manager API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+
+ CRYPT32.dll
+ C:\Windows\System32\CRYPT32.dll
+ 140719891480576
+ 1945600
+ 140719891804832
+ File: C:\Windows\System32\CRYPT32.dll_x000D__x000A_InternalName: CRYPT32.DLL_x000D__x000A_OriginalFilename: CRYPT32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto API32_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1900
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto API32
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+
+ MSASN1.dll
+ C:\Windows\System32\MSASN1.dll
+ 140719887876096
+ 73728
+ 140719887898576
+ File: C:\Windows\System32\MSASN1.dll_x000D__x000A_InternalName: msasn1.dll_x000D__x000A_OriginalFilename: msasn1.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ASN.1 Runtime APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 72
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ASN.1 Runtime APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTSP.dll)
+
+ CRYPTSP.dll
+ C:\Windows\System32\CRYPTSP.dll
+ 140719889121280
+ 94208
+ 140719889138512
+ File: C:\Windows\System32\CRYPTSP.dll_x000D__x000A_InternalName: cryptsp.dll_x000D__x000A_OriginalFilename: cryptsp.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Cryptographic Service Provider API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 92
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Cryptographic Service Provider API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ 28
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 9584
+ 9584
+ 1843200
+ 1843200
+ 115088
+ 115088
+ 1912832
+ 1912832
+ 7131136
+ 7131136
+ 2203429707776
+ 111484928
+ true
+
+
+ Normal
+ 32
+
+ 1843200
+ 1843200
+ chrome
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 5268
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-24T14:18:00.4604959+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 11568
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:00.47136+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 14856
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.1875S
+ 2019-08-24T14:18:00.4727013+03:00
+ PT0.21875S
+ PT0.03125S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 15880
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:00.4728353+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 7520
+ true
+ Normal
+ 140719955419728
+ Wait
+ Executive
+ PT0S
+ 2019-08-24T14:18:00.4779961+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 10
+ 18820
+ true
+ Normal
+ 140719955419728
+ Wait
+ Executive
+ PT0S
+ 2019-08-24T14:18:00.478148+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ 6
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 219
+ 2203425513472
+ 107290624
+ false
+ 5230592
+ 5230592
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+ PT0.1875S
+ PT0.21875S
+ PT0.03125S
+
+
+ 0
+
+
+ true
+
+
+
+
+ chrome
+ 1
+ 219
+ 2203425513472
+ 5230592
+ 1843200
+ 9584
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+
+
+ System.Diagnostics.Process (chrome)
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ 7604
+ 8
+ false
+ 2019-08-24T14:18:00.3253674+03:00
+ 23804
+ .
+ 1413120
+ 204800
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ System.Diagnostics.ProcessModule (ntdll.dll)
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+ System.Diagnostics.ProcessModule (VERSION.dll)
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+ System.Diagnostics.ProcessModule (sechost.dll)
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+ System.Diagnostics.ProcessModule (user32.dll)
+ System.Diagnostics.ProcessModule (win32u.dll)
+ System.Diagnostics.ProcessModule (GDI32.dll)
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+ System.Diagnostics.ProcessModule (shcore.dll)
+ System.Diagnostics.ProcessModule (combase.dll)
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+ System.Diagnostics.ProcessModule (profapi.dll)
+ System.Diagnostics.ProcessModule (powrprof.dll)
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+ System.Diagnostics.ProcessModule (chrome.dll)
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+ System.Diagnostics.ProcessModule (USERENV.dll)
+ System.Diagnostics.ProcessModule (gpapi.dll)
+ System.Diagnostics.ProcessModule (wkscli.dll)
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+ System.Diagnostics.ProcessModule (netutils.dll)
+ System.Diagnostics.ProcessModule (ole32.dll)
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+ System.Diagnostics.ProcessModule (Secur32.dll)
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+ System.Diagnostics.ProcessModule (DWrite.dll)
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+ System.Diagnostics.ProcessModule (COMCTL32.dll)
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+ System.Diagnostics.ProcessModule (twinapi.dll)
+ System.Diagnostics.ProcessModule (NLAapi.dll)
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+ System.Diagnostics.ProcessModule (NSI.dll)
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+ System.Diagnostics.ProcessModule (mscms.dll)
+ System.Diagnostics.ProcessModule (ColorAdapterClient.dll)
+ System.Diagnostics.ProcessModule (icm32.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+ System.Diagnostics.ProcessModule (InputHost.dll)
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+ System.Diagnostics.ProcessModule (d2d1.dll)
+ System.Diagnostics.ProcessModule (d3d11.dll)
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+ System.Diagnostics.ProcessModule (wintypes.dll)
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+ System.Diagnostics.ProcessModule (dxgi.dll)
+ System.Diagnostics.ProcessModule (WTSAPI32.dll)
+ System.Diagnostics.ProcessModule (wlanapi.dll)
+ System.Diagnostics.ProcessModule (WINSTA.dll)
+ System.Diagnostics.ProcessModule (wbemprox.dll)
+ System.Diagnostics.ProcessModule (wbemcomn.dll)
+ System.Diagnostics.ProcessModule (MMDevApi.dll)
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+ System.Diagnostics.ProcessModule (wbemsvc.dll)
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+ System.Diagnostics.ProcessModule (fastprox.dll)
+ System.Diagnostics.ProcessModule (wmiutils.dll)
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+ System.Diagnostics.ProcessModule (FirewallAPI.dll)
+ System.Diagnostics.ProcessModule (fwbase.dll)
+ System.Diagnostics.ProcessModule (LINKINFO.dll)
+ System.Diagnostics.ProcessModule (FWPolicyIOMgr.dll)
+ System.Diagnostics.ProcessModule (dataexchange.dll)
+ System.Diagnostics.ProcessModule (dcomp.dll)
+ System.Diagnostics.ProcessModule (atlthunk.dll)
+ System.Diagnostics.ProcessModule (OLEACC.dll)
+ System.Diagnostics.ProcessModule (directmanipulation.dll)
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (explorerframe.dll)
+ System.Diagnostics.ProcessModule (wpnapps.dll)
+ System.Diagnostics.ProcessModule (XmlLite.dll)
+ System.Diagnostics.ProcessModule (usermgrcli.dll)
+ System.Diagnostics.ProcessModule (mswsock.dll)
+ System.Diagnostics.ProcessModule (WINMM.dll)
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (WmiPerfInst.dll)
+ System.Diagnostics.ProcessModule (pdh.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Bluetooth.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.HostName.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.dll)
+ System.Diagnostics.ProcessModule (BiWinrt.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.Connectivity.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Enumeration.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Radios.dll)
+ System.Diagnostics.ProcessModule (NETAPI32.dll)
+ System.Diagnostics.ProcessModule (SAMCLI.DLL)
+ System.Diagnostics.ProcessModule (SAMLIB.dll)
+ System.Diagnostics.ProcessModule (wdmaud.drv)
+ System.Diagnostics.ProcessModule (ksuser.dll)
+ System.Diagnostics.ProcessModule (AVRT.dll)
+ System.Diagnostics.ProcessModule (AUDIOSES.DLL)
+ System.Diagnostics.ProcessModule (msacm32.drv)
+ System.Diagnostics.ProcessModule (MSACM32.dll)
+ System.Diagnostics.ProcessModule (midimap.dll)
+ System.Diagnostics.ProcessModule (resourcepolicyclient.dll)
+ System.Diagnostics.ProcessModule (BitsProxy.dll)
+
+
+ 61568
+ 61568
+ 316080128
+ 316080128
+ 857648
+ 857648
+ 455720960
+ 455720960
+ 398323712
+ 398323712
+ 2204288917504
+ 970694656
+ true
+ Normal
+ 316080128
+ 316080128
+ chrome
+ 65535
+ 1
+
+
+
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+
+
+ 1747
+ 2204143845376
+ 825622528
+ false
+ 112414720
+ 112414720
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ PT11M7.53125S
+ PT21M46.28125S
+ PT10M38.75S
+ 1770664
+ The Living Tombstone Radio - Now Playing on Pandora - Google Chrome
+ true
+
+
+
+
+ chrome
+ 1
+ 1747
+ 2204143845376
+ 112414720
+ 316080128
+ 61568
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ System.Diagnostics.Process (explorer)
+ Google LLC
+ 1306.28125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+ Google LLC
+ 0.21875
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+
+
+ System.Diagnostics.Process (chrome)
+
+
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+
+ false
+ false
+
+
+
+
+ 5648
+
+ 8
+ false
+ 2019-08-24T14:18:00.9927237+03:00
+ 22468
+ .
+
+
+ 1413120
+
+
+
+ 204800
+
+
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (ntdll.dll)
+
+ ntdll.dll
+ C:\Windows\SYSTEM32\ntdll.dll
+ 140719954984960
+ 2019328
+ 0
+ File: C:\Windows\SYSTEM32\ntdll.dll_x000D__x000A_InternalName: ntdll.dll_x000D__x000A_OriginalFilename: ntdll.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NT Layer DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NT Layer DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+
+ KERNEL32.DLL
+ C:\Windows\System32\KERNEL32.DLL
+ 140719912779776
+ 733184
+ 140719912876560
+ File: C:\Windows\System32\KERNEL32.DLL_x000D__x000A_InternalName: kernel32_x000D__x000A_OriginalFilename: kernel32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 716
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+
+ KERNELBASE.dll
+ C:\Windows\System32\KERNELBASE.dll
+ 140719894495232
+ 2699264
+ 140719894841456
+ File: C:\Windows\System32\KERNELBASE.dll_x000D__x000A_InternalName: Kernelbase.dll_x000D__x000A_OriginalFilename: Kernelbase.dll.mui_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT BASE API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 2636
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ Windows NT BASE API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+
+ chrome_elf.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll
+ 140719325642752
+ 925696
+ 140719326148464
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_elf.dll_x000D__x000A_InternalName: chrome_elf_dll_x000D__x000A_OriginalFilename: chrome_elf.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 904
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (VERSION.dll)
+
+ VERSION.dll
+ C:\Windows\SYSTEM32\VERSION.dll
+ 140719800254464
+ 40960
+ 140719800259344
+ File: C:\Windows\SYSTEM32\VERSION.dll_x000D__x000A_InternalName: version_x000D__x000A_OriginalFilename: VERSION.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Version Checking and File Installation Libraries_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 40
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Version Checking and File Installation Libraries
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+
+ msvcrt.dll
+ C:\Windows\System32\msvcrt.dll
+ 140719950004224
+ 647168
+ 140719950035120
+ File: C:\Windows\System32\msvcrt.dll_x000D__x000A_InternalName: msvcrt.dll_x000D__x000A_OriginalFilename: msvcrt.dll_x000D__x000A_FileVersion: 7.0.17763.475 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows NT CRT DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 7.0.17763.475_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 7.0.17763.475 (WinBuild.160101.0800)
+ 7.0.17763.475
+ Windows NT CRT DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+
+ bcryptPrimitives.dll
+ C:\Windows\System32\bcryptPrimitives.dll
+ 140719890235392
+ 516096
+ 140719890461152
+ File: C:\Windows\System32\bcryptPrimitives.dll_x000D__x000A_InternalName: bcryptprimitives.dll_x000D__x000A_OriginalFilename: bcryptprimitives.dll_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 504
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+
+ ADVAPI32.dll
+ C:\Windows\System32\ADVAPI32.dll
+ 140719915335680
+ 667648
+ 140719915417840
+ File: C:\Windows\System32\ADVAPI32.dll_x000D__x000A_InternalName: advapi32.dll_x000D__x000A_OriginalFilename: advapi32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Advanced Windows 32 Base API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 652
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Advanced Windows 32 Base API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (sechost.dll)
+
+ sechost.dll
+ C:\Windows\System32\sechost.dll
+ 140719948824576
+ 647168
+ 140719948951504
+ File: C:\Windows\System32\sechost.dll_x000D__x000A_InternalName: sechost.dll_x000D__x000A_OriginalFilename: sechost.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Host for SCM/SDDL/LSA Lookup APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 632
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Host for SCM/SDDL/LSA Lookup APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+
+ RPCRT4.dll
+ C:\Windows\System32\RPCRT4.dll
+ 140719917629440
+ 1187840
+ 140719918006928
+ File: C:\Windows\System32\RPCRT4.dll_x000D__x000A_InternalName: rpcrt4.dll_x000D__x000A_OriginalFilename: rpcrt4.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Remote Procedure Call Runtime_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Remote Procedure Call Runtime
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (chrome_child.dll)
+
+ chrome_child.dll
+ C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll
+ 140717177962496
+ 87977984
+ 140717247440176
+ File: C:\Program Files (x86)\Google\Chrome\Application\76.0.3809.100\chrome_child.dll_x000D__x000A_InternalName: chrome_dll_x000D__x000A_OriginalFilename: chrome.dll_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 85916
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+
+
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+
+ OLEAUT32.dll
+ C:\Windows\System32\OLEAUT32.dll
+ 140719946465280
+ 802816
+ 140719946574624
+ File: C:\Windows\System32\OLEAUT32.dll_x000D__x000A_InternalName: OLEAUT32.DLL_x000D__x000A_OriginalFilename: OLEAUT32.DLL_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: OLEAUT32.DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 784
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ OLEAUT32.DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+
+ msvcp_win.dll
+ C:\Windows\System32\msvcp_win.dll
+ 140719889580032
+ 655360
+ 140719889658864
+ File: C:\Windows\System32\msvcp_win.dll_x000D__x000A_InternalName: msvcp_win.dll_x000D__x000A_OriginalFilename: msvcp_win.dll_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 640
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+
+ ucrtbase.dll
+ C:\Windows\System32\ucrtbase.dll
+ 140719893446656
+ 1024000
+ 140719893528400
+ File: C:\Windows\System32\ucrtbase.dll_x000D__x000A_InternalName: ucrtbase.dll_x000D__x000A_OriginalFilename: ucrtbase.dll_x000D__x000A_FileVersion: 10.0.17763.404 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft® C Runtime Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.404_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1000
+ Microsoft Corporation
+ 10.0.17763.404 (WinBuild.160101.0800)
+ 10.0.17763.404
+ Microsoft® C Runtime Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (combase.dll)
+
+ combase.dll
+ C:\Windows\System32\combase.dll
+ 140719950856192
+ 3325952
+ 140719951769888
+ File: C:\Windows\System32\combase.dll_x000D__x000A_InternalName: COMBASE.DLL_x000D__x000A_OriginalFilename: COMBASE.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft COM for Windows_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3248
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft COM for Windows
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+
+ WS2_32.dll
+ C:\Windows\System32\WS2_32.dll
+ 140719954198528
+ 446464
+ 140719954286384
+ File: C:\Windows\System32\WS2_32.dll_x000D__x000A_InternalName: ws2_32.dll_x000D__x000A_OriginalFilename: ws2_32.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Socket 2.0 32-Bit DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 436
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Socket 2.0 32-Bit DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (GDI32.dll)
+
+ GDI32.dll
+ C:\Windows\System32\GDI32.dll
+ 140719950659584
+ 167936
+ 140719950676208
+ File: C:\Windows\System32\GDI32.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.592 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.592_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 164
+ Microsoft Corporation
+ 10.0.17763.592 (WinBuild.160101.0800)
+ 10.0.17763.592
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+
+ gdi32full.dll
+ C:\Windows\System32\gdi32full.dll
+ 140719905112064
+ 1675264
+ 140719905369792
+ File: C:\Windows\System32\gdi32full.dll_x000D__x000A_InternalName: gdi32_x000D__x000A_OriginalFilename: gdi32_x000D__x000A_FileVersion: 10.0.17763.678 (WinBuild.160101.0800)_x000D__x000A_FileDescription: GDI Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.678_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1636
+ Microsoft Corporation
+ 10.0.17763.678 (WinBuild.160101.0800)
+ 10.0.17763.678
+ GDI Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USER32.dll)
+
+ USER32.dll
+ C:\Windows\System32\USER32.dll
+ 140719909306368
+ 1667072
+ 140719909414448
+ File: C:\Windows\System32\USER32.dll_x000D__x000A_InternalName: user32_x000D__x000A_OriginalFilename: user32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows USER API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1628
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows USER API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (win32u.dll)
+
+ win32u.dll
+ C:\Windows\System32\win32u.dll
+ 140719906816000
+ 131072
+ 0
+ File: C:\Windows\System32\win32u.dll_x000D__x000A_InternalName: Win32u_x000D__x000A_OriginalFilename: Win32u.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Win32u_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 128
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Win32u
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINTRUST.dll)
+
+ WINTRUST.dll
+ C:\Windows\System32\WINTRUST.dll
+ 140719888728064
+ 364544
+ 140719888791376
+ File: C:\Windows\System32\WINTRUST.dll_x000D__x000A_InternalName: WINTRUST.DLL_x000D__x000A_OriginalFilename: WINTRUST.DLL_x000D__x000A_FileVersion: 10.0.17763.348 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Trust Verification APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.348_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 356
+ Microsoft Corporation
+ 10.0.17763.348 (WinBuild.160101.0800)
+ 10.0.17763.348
+ Microsoft Trust Verification APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+
+ MSASN1.dll
+ C:\Windows\System32\MSASN1.dll
+ 140719887876096
+ 73728
+ 140719887898576
+ File: C:\Windows\System32\MSASN1.dll_x000D__x000A_InternalName: msasn1.dll_x000D__x000A_OriginalFilename: msasn1.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: ASN.1 Runtime APIs_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 72
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ ASN.1 Runtime APIs
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+
+ CRYPT32.dll
+ C:\Windows\System32\CRYPT32.dll
+ 140719891480576
+ 1945600
+ 140719891804832
+ File: C:\Windows\System32\CRYPT32.dll_x000D__x000A_InternalName: CRYPT32.DLL_x000D__x000A_OriginalFilename: CRYPT32.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Crypto API32_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1900
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Crypto API32
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+
+ IPHLPAPI.DLL
+ C:\Windows\SYSTEM32\IPHLPAPI.DLL
+ 140719876931584
+ 249856
+ 140719876989024
+ File: C:\Windows\SYSTEM32\IPHLPAPI.DLL_x000D__x000A_InternalName: iphlpapi.dll_x000D__x000A_OriginalFilename: iphlpapi.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: IP Helper API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 244
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ IP Helper API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMM.dll)
+
+ WINMM.dll
+ C:\Windows\SYSTEM32\WINMM.dll
+ 140719835054080
+ 147456
+ 140719835066368
+ File: C:\Windows\SYSTEM32\WINMM.dll_x000D__x000A_InternalName: winmm.dll_x000D__x000A_OriginalFilename: WINMM.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: MCI API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ MCI API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (USERENV.dll)
+
+ USERENV.dll
+ C:\Windows\SYSTEM32\USERENV.dll
+ 140719887024128
+ 163840
+ 140719887043280
+ File: C:\Windows\SYSTEM32\USERENV.dll_x000D__x000A_InternalName: userenv_x000D__x000A_OriginalFilename: userenv.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Userenv_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 160
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Userenv
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (profapi.dll)
+
+ profapi.dll
+ C:\Windows\System32\profapi.dll
+ 140719888531456
+ 147456
+ 140719888564400
+ File: C:\Windows\System32\profapi.dll_x000D__x000A_InternalName: PROFAPI.DLL_x000D__x000A_OriginalFilename: PROFAPI.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: User Profile Basic API_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 144
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ User Profile Basic API
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (DWrite.dll)
+
+ DWrite.dll
+ C:\Windows\SYSTEM32\DWrite.dll
+ 140719303819264
+ 3129344
+ 140719304509728
+ File: C:\Windows\SYSTEM32\DWrite.dll_x000D__x000A_InternalName: DWrite_x000D__x000A_OriginalFilename: DWrite_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft DirectX Typography Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 3056
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Microsoft DirectX Typography Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINSPOOL.DRV)
+
+ WINSPOOL.DRV
+ C:\Windows\SYSTEM32\WINSPOOL.DRV
+ 140719787606016
+ 561152
+ 140719787676448
+ File: C:\Windows\SYSTEM32\WINSPOOL.DRV_x000D__x000A_InternalName: winspool.drv_x000D__x000A_OriginalFilename: winspool.drv.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Spooler Driver_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 548
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Spooler Driver
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+
+ kernel.appcore.dll
+ C:\Windows\System32\kernel.appcore.dll
+ 140719888400384
+ 69632
+ 140719888415648
+ File: C:\Windows\System32\kernel.appcore.dll_x000D__x000A_InternalName: kernel.appcore.dll_x000D__x000A_OriginalFilename: kernel.appcore.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: AppModel API Host_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 68
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ AppModel API Host
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+
+ bcrypt.dll
+ C:\Windows\System32\bcrypt.dll
+ 140719897247744
+ 155648
+ 140719897281296
+ File: C:\Windows\System32\bcrypt.dll_x000D__x000A_InternalName: bcrypt.dll_x000D__x000A_OriginalFilename: bcrypt.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Cryptographic Primitives Library_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 152
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Cryptographic Primitives Library
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dbghelp.dll)
+
+ dbghelp.dll
+ C:\Windows\SYSTEM32\dbghelp.dll
+ 140719552397312
+ 2019328
+ 140719552479168
+ File: C:\Windows\SYSTEM32\dbghelp.dll_x000D__x000A_InternalName: DBGHELP.DLL_x000D__x000A_OriginalFilename: DBGHELP.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows Image Helper_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1972
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows Image Helper
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+
+ WINHTTP.dll
+ C:\Windows\SYSTEM32\WINHTTP.dll
+ 140719810019328
+ 991232
+ 140719810293024
+ File: C:\Windows\SYSTEM32\WINHTTP.dll_x000D__x000A_InternalName: winhttp.dll_x000D__x000A_OriginalFilename: winhttp.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Windows HTTP Services_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 968
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Windows HTTP Services
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (Secur32.dll)
+
+ Secur32.dll
+ C:\Windows\SYSTEM32\Secur32.dll
+ 140719559147520
+ 49152
+ 140719559156816
+ File: C:\Windows\SYSTEM32\Secur32.dll_x000D__x000A_InternalName: secur32.dll_x000D__x000A_OriginalFilename: secur32.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+
+ dhcpcsvc.DLL
+ C:\Windows\SYSTEM32\dhcpcsvc.DLL
+ 140719782494208
+ 114688
+ 140719782503840
+ File: C:\Windows\SYSTEM32\dhcpcsvc.DLL_x000D__x000A_InternalName: dhcpcsvc.dll_x000D__x000A_OriginalFilename: dhcpcsvc.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: DHCP Client Service_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 112
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ DHCP Client Service
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (NSI.dll)
+
+ NSI.dll
+ C:\Windows\System32\NSI.dll
+ 140719916843008
+ 32768
+ 140719916851008
+ File: C:\Windows\System32\NSI.dll_x000D__x000A_InternalName: nsi.dll_x000D__x000A_OriginalFilename: nsi.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: NSI User-mode interface DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 32
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ NSI User-mode interface DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+
+ WINMMBASE.dll
+ C:\Windows\SYSTEM32\WINMMBASE.dll
+ 140719834857472
+ 184320
+ 140719834890448
+ File: C:\Windows\SYSTEM32\WINMMBASE.dll_x000D__x000A_InternalName: winmmbase.dll_x000D__x000A_OriginalFilename: WINMMbase.DLL.MUI_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base Multimedia Extension API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 180
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base Multimedia Extension API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+
+ cfgmgr32.dll
+ C:\Windows\System32\cfgmgr32.dll
+ 140719889252352
+ 303104
+ 140719889325904
+ File: C:\Windows\System32\cfgmgr32.dll_x000D__x000A_InternalName: cfgmgr32.dll_x000D__x000A_OriginalFilename: CFGMGR32.DLL_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Configuration Manager DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 296
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Configuration Manager DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+
+ PROPSYS.dll
+ C:\Windows\SYSTEM32\PROPSYS.dll
+ 140719831187456
+ 1736704
+ 140719831447408
+ File: C:\Windows\SYSTEM32\PROPSYS.dll_x000D__x000A_InternalName: propsys.dll_x000D__x000A_OriginalFilename: propsys.dll.mui_x000D__x000A_FileVersion: 7.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Microsoft Property System_x000D__x000A_Product: Windows® Search_x000D__x000A_ProductVersion: 7.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1696
+ Microsoft Corporation
+ 7.0.17763.1 (WinBuild.160101.0800)
+ 7.0.17763.1
+ Microsoft Property System
+ Windows® Search
+
+
+
+
+ System.Diagnostics.ProcessModule (shcore.dll)
+
+ shcore.dll
+ C:\Windows\System32\shcore.dll
+ 140719907143680
+ 688128
+ 140719907388560
+ File: C:\Windows\System32\shcore.dll_x000D__x000A_InternalName: SHCORE_x000D__x000A_OriginalFilename: SHCORE.dll.mui_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: SHCORE_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 672
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ SHCORE
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+
+ SSPICLI.DLL
+ C:\Windows\SYSTEM32\SSPICLI.DLL
+ 140719886827520
+ 192512
+ 140719886881776
+ File: C:\Windows\SYSTEM32\SSPICLI.DLL_x000D__x000A_InternalName: sspicli.dll_x000D__x000A_OriginalFilename: sspicli.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Security Support Provider Interface_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 188
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Security Support Provider Interface
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+
+ IMM32.DLL
+ C:\Windows\System32\IMM32.DLL
+ 140719906947072
+ 188416
+ 140719906952688
+ File: C:\Windows\System32\IMM32.DLL_x000D__x000A_InternalName: imm32_x000D__x000A_OriginalFilename: imm32_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Multi-User Windows IMM32 API Client DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 184
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Multi-User Windows IMM32 API Client DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+
+ CRYPTBASE.DLL
+ C:\Windows\SYSTEM32\CRYPTBASE.DLL
+ 140719881846784
+ 49152
+ 140719881855488
+ File: C:\Windows\SYSTEM32\CRYPTBASE.DLL_x000D__x000A_InternalName: cryptbase.dll_x000D__x000A_OriginalFilename: cryptbase.dll_x000D__x000A_FileVersion: 10.0.17763.1 (WinBuild.160101.0800)_x000D__x000A_FileDescription: Base cryptographic API DLL_x000D__x000A_Product: Microsoft® Windows® Operating System_x000D__x000A_ProductVersion: 10.0.17763.1_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 48
+ Microsoft Corporation
+ 10.0.17763.1 (WinBuild.160101.0800)
+ 10.0.17763.1
+ Base cryptographic API DLL
+ Microsoft® Windows® Operating System
+
+
+
+
+ 44
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 28960
+ 28960
+ 38973440
+ 38973440
+ 360048
+ 360048
+ 45535232
+ 45535232
+ 65232896
+ 65232896
+ 2203789897728
+ 471674880
+ true
+
+
+ Normal
+ 32
+
+ 38973440
+ 38973440
+ chrome
+
+
+ 65535
+
+ 1
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 14712
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.515625S
+ 2019-08-24T14:18:00.9927255+03:00
+ PT3.453125S
+ PT2.9375S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 4696
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.0767085+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 6
+ 21084
+ true
+ Lowest
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.015625S
+ 2019-08-24T14:18:01.0784573+03:00
+ PT0.015625S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 22848
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0.234375S
+ 2019-08-24T14:18:01.0795982+03:00
+ PT1.203125S
+ PT0.96875S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 18736
+ true
+ Normal
+ 140719955419728
+ Wait
+ EventPairLow
+ PT0S
+ 2019-08-24T14:18:01.0805741+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 6688
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.0817489+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 7036
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0S
+ 2019-08-24T14:18:01.0915583+03:00
+ PT0.0625S
+ PT0.0625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 19192
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0.015625S
+ 2019-08-24T14:18:01.0936767+03:00
+ PT0.015625S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 22864
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0.03125S
+ 2019-08-24T14:18:01.0941059+03:00
+ PT0.03125S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 14696
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.0945295+03:00
+ PT0.015625S
+ PT0.015625S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 9
+ 3272
+ true
+ Normal
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.0951787+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 6
+ 6
+ 17120
+ true
+ Lowest
+ 140719955419728
+ Wait
+ Unknown
+ PT0S
+ 2019-08-24T14:18:01.0956001+03:00
+ PT0S
+ PT0S
+
+
+
+
+
+
+ System.Diagnostics.ProcessThread
+
+ 8
+ 8
+ 27616
+ true
+ Normal
+ 140719955419728
+ Wait
+ UserRequest
+ PT0.015625S
+ 2019-08-27T02:00:52.309162+03:00
+ PT0.015625S
+ PT0S
+
+
+
+
+
+
+ 13
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+ 273
+ 2203764723712
+ 446500864
+ false
+ 28418048
+ 28418048
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+
+ chrome.exe
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ 140702356078592
+ 1732608
+ 140702357044720
+ File: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe_x000D__x000A_InternalName: chrome_exe_x000D__x000A_OriginalFilename: chrome.exe_x000D__x000A_FileVersion: 76.0.3809.100_x000D__x000A_FileDescription: Google Chrome_x000D__x000A_Product: Google Chrome_x000D__x000A_ProductVersion: 76.0.3809.100_x000D__x000A_Debug: False_x000D__x000A_Patched: False_x000D__x000A_PreRelease: False_x000D__x000A_PrivateBuild: False_x000D__x000A_SpecialBuild: False_x000D__x000A_Language: English (United States)_x000D__x000A_
+
+
+
+
+ 1692
+ Google LLC
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+
+
+ PT1.40625S
+ PT5.484375S
+ PT4.078125S
+
+
+ 0
+
+
+ true
+
+
+
+
+ chrome
+ 1
+ 273
+ 2203764723712
+ 28418048
+ 38973440
+ 28960
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+
+
+ System.Diagnostics.Process (chrome)
+
+ Microsoft.Win32.SafeHandles.SafeProcessHandle
+ 2468
+ 8
+ false
+ 2019-08-24T14:18:00.3253674+03:00
+ 23804
+ .
+ 1413120
+ 204800
+
+
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ System.Diagnostics.ProcessModule (ntdll.dll)
+ System.Diagnostics.ProcessModule (KERNEL32.DLL)
+ System.Diagnostics.ProcessModule (KERNELBASE.dll)
+ System.Diagnostics.ProcessModule (chrome_elf.dll)
+ System.Diagnostics.ProcessModule (VERSION.dll)
+ System.Diagnostics.ProcessModule (msvcrt.dll)
+ System.Diagnostics.ProcessModule (ADVAPI32.dll)
+ System.Diagnostics.ProcessModule (sechost.dll)
+ System.Diagnostics.ProcessModule (RPCRT4.dll)
+ System.Diagnostics.ProcessModule (CRYPTBASE.DLL)
+ System.Diagnostics.ProcessModule (bcryptPrimitives.dll)
+ System.Diagnostics.ProcessModule (user32.dll)
+ System.Diagnostics.ProcessModule (win32u.dll)
+ System.Diagnostics.ProcessModule (GDI32.dll)
+ System.Diagnostics.ProcessModule (gdi32full.dll)
+ System.Diagnostics.ProcessModule (msvcp_win.dll)
+ System.Diagnostics.ProcessModule (ucrtbase.dll)
+ System.Diagnostics.ProcessModule (IMM32.DLL)
+ System.Diagnostics.ProcessModule (SHELL32.dll)
+ System.Diagnostics.ProcessModule (cfgmgr32.dll)
+ System.Diagnostics.ProcessModule (shcore.dll)
+ System.Diagnostics.ProcessModule (combase.dll)
+ System.Diagnostics.ProcessModule (windows.storage.dll)
+ System.Diagnostics.ProcessModule (profapi.dll)
+ System.Diagnostics.ProcessModule (powrprof.dll)
+ System.Diagnostics.ProcessModule (shlwapi.dll)
+ System.Diagnostics.ProcessModule (kernel.appcore.dll)
+ System.Diagnostics.ProcessModule (cryptsp.dll)
+ System.Diagnostics.ProcessModule (chrome.dll)
+ System.Diagnostics.ProcessModule (uxtheme.dll)
+ System.Diagnostics.ProcessModule (dwmapi.dll)
+ System.Diagnostics.ProcessModule (CRYPT32.dll)
+ System.Diagnostics.ProcessModule (MSASN1.dll)
+ System.Diagnostics.ProcessModule (USERENV.dll)
+ System.Diagnostics.ProcessModule (gpapi.dll)
+ System.Diagnostics.ProcessModule (wkscli.dll)
+ System.Diagnostics.ProcessModule (bcrypt.dll)
+ System.Diagnostics.ProcessModule (netutils.dll)
+ System.Diagnostics.ProcessModule (ole32.dll)
+ System.Diagnostics.ProcessModule (MSCTF.dll)
+ System.Diagnostics.ProcessModule (OLEAUT32.dll)
+ System.Diagnostics.ProcessModule (Secur32.dll)
+ System.Diagnostics.ProcessModule (SSPICLI.DLL)
+ System.Diagnostics.ProcessModule (DWrite.dll)
+ System.Diagnostics.ProcessModule (WS2_32.dll)
+ System.Diagnostics.ProcessModule (COMCTL32.dll)
+ System.Diagnostics.ProcessModule (clbcatq.dll)
+ System.Diagnostics.ProcessModule (twinapi.appcore.dll)
+ System.Diagnostics.ProcessModule (RMCLIENT.dll)
+ System.Diagnostics.ProcessModule (twinapi.dll)
+ System.Diagnostics.ProcessModule (NLAapi.dll)
+ System.Diagnostics.ProcessModule (IPHLPAPI.DLL)
+ System.Diagnostics.ProcessModule (NSI.dll)
+ System.Diagnostics.ProcessModule (dhcpcsvc6.DLL)
+ System.Diagnostics.ProcessModule (dhcpcsvc.DLL)
+ System.Diagnostics.ProcessModule (DNSAPI.dll)
+ System.Diagnostics.ProcessModule (mscms.dll)
+ System.Diagnostics.ProcessModule (ColorAdapterClient.dll)
+ System.Diagnostics.ProcessModule (icm32.dll)
+ System.Diagnostics.ProcessModule (Windows.UI.dll)
+ System.Diagnostics.ProcessModule (TextInputFramework.dll)
+ System.Diagnostics.ProcessModule (InputHost.dll)
+ System.Diagnostics.ProcessModule (CoreUIComponents.dll)
+ System.Diagnostics.ProcessModule (CoreMessaging.dll)
+ System.Diagnostics.ProcessModule (d2d1.dll)
+ System.Diagnostics.ProcessModule (d3d11.dll)
+ System.Diagnostics.ProcessModule (PROPSYS.dll)
+ System.Diagnostics.ProcessModule (wintypes.dll)
+ System.Diagnostics.ProcessModule (ntmarta.dll)
+ System.Diagnostics.ProcessModule (dxgi.dll)
+ System.Diagnostics.ProcessModule (WTSAPI32.dll)
+ System.Diagnostics.ProcessModule (wlanapi.dll)
+ System.Diagnostics.ProcessModule (WINSTA.dll)
+ System.Diagnostics.ProcessModule (wbemprox.dll)
+ System.Diagnostics.ProcessModule (wbemcomn.dll)
+ System.Diagnostics.ProcessModule (MMDevApi.dll)
+ System.Diagnostics.ProcessModule (DEVOBJ.dll)
+ System.Diagnostics.ProcessModule (wbemsvc.dll)
+ System.Diagnostics.ProcessModule (WINHTTP.dll)
+ System.Diagnostics.ProcessModule (fastprox.dll)
+ System.Diagnostics.ProcessModule (wmiutils.dll)
+ System.Diagnostics.ProcessModule (DPAPI.dll)
+ System.Diagnostics.ProcessModule (FirewallAPI.dll)
+ System.Diagnostics.ProcessModule (fwbase.dll)
+ System.Diagnostics.ProcessModule (LINKINFO.dll)
+ System.Diagnostics.ProcessModule (FWPolicyIOMgr.dll)
+ System.Diagnostics.ProcessModule (dataexchange.dll)
+ System.Diagnostics.ProcessModule (dcomp.dll)
+ System.Diagnostics.ProcessModule (atlthunk.dll)
+ System.Diagnostics.ProcessModule (OLEACC.dll)
+ System.Diagnostics.ProcessModule (directmanipulation.dll)
+ System.Diagnostics.ProcessModule (OneCoreUAPCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (explorerframe.dll)
+ System.Diagnostics.ProcessModule (wpnapps.dll)
+ System.Diagnostics.ProcessModule (XmlLite.dll)
+ System.Diagnostics.ProcessModule (usermgrcli.dll)
+ System.Diagnostics.ProcessModule (mswsock.dll)
+ System.Diagnostics.ProcessModule (WINMM.dll)
+ System.Diagnostics.ProcessModule (WINMMBASE.dll)
+ System.Diagnostics.ProcessModule (OneCoreCommonProxyStub.dll)
+ System.Diagnostics.ProcessModule (WmiPerfInst.dll)
+ System.Diagnostics.ProcessModule (pdh.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Bluetooth.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.HostName.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.dll)
+ System.Diagnostics.ProcessModule (BiWinrt.dll)
+ System.Diagnostics.ProcessModule (Windows.Networking.Connectivity.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Enumeration.dll)
+ System.Diagnostics.ProcessModule (Windows.Devices.Radios.dll)
+ System.Diagnostics.ProcessModule (NETAPI32.dll)
+ System.Diagnostics.ProcessModule (SAMCLI.DLL)
+ System.Diagnostics.ProcessModule (SAMLIB.dll)
+ System.Diagnostics.ProcessModule (wdmaud.drv)
+ System.Diagnostics.ProcessModule (ksuser.dll)
+ System.Diagnostics.ProcessModule (AVRT.dll)
+ System.Diagnostics.ProcessModule (AUDIOSES.DLL)
+ System.Diagnostics.ProcessModule (msacm32.drv)
+ System.Diagnostics.ProcessModule (MSACM32.dll)
+ System.Diagnostics.ProcessModule (midimap.dll)
+ System.Diagnostics.ProcessModule (resourcepolicyclient.dll)
+ System.Diagnostics.ProcessModule (BitsProxy.dll)
+
+
+ 61568
+ 61568
+ 316080128
+ 316080128
+ 857648
+ 857648
+ 455720960
+ 455720960
+ 398323712
+ 398323712
+ 2204288917504
+ 970694656
+ true
+ Normal
+ 316080128
+ 316080128
+ chrome
+ 65535
+ 1
+
+
+
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+ System.Diagnostics.ProcessThread
+
+
+ 1747
+ 2204143845376
+ 825622528
+ false
+ 112414720
+ 112414720
+
+ System.Diagnostics.ProcessModule (chrome.exe)
+ PT11M7.53125S
+ PT21M46.28125S
+ PT10M38.75S
+ 1770664
+ The Living Tombstone Radio - Now Playing on Pandora - Google Chrome
+ true
+
+
+
+
+ chrome
+ 1
+ 1747
+ 2204143845376
+ 112414720
+ 316080128
+ 61568
+ C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
+ System.Diagnostics.Process (explorer)
+ Google LLC
+ 1306.28125
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+ Google LLC
+ 5.484375
+ 76.0.3809.100
+ 76.0.3809.100
+ Google Chrome
+ Google Chrome
+ Process
+
+
+
\ No newline at end of file
diff --git a/__tests__/Samples/Get-Service.xml b/__tests__/Samples/Get-Service.xml
new file mode 100644
index 0000000000000000000000000000000000000000..d8181a5217af6a1d901f7f7abfa69d5ccdaded1e
GIT binary patch
literal 148546
zcmeHQYj52~lI7BguCB=XbXb
zTjhRKb+OsaOT7reZe3lnNmf@?pE_0D{J;Nw(EZT;-2G2?-mP^nyMykGetXxQbjRJd
z-Iv{Z_f`Mzo4);$j`^)S>JI7K^Zxs{-39%ecK^|RO+V+|tL`oJan$Y8?_W{-j{b5+
zy`9s)H+1Az^!bGT{xzL*(tW(V9?m(WpRc=(?i>2qqTlfUm)*ne-?}g8s%stJ=UVqS
zI{HobqLjuS4g#dwZ5V`2&*03CR>PdPh(A3w{6SQY((>FX#QI3;OK?
zJ++fIMgn)|^e~pVyGq(4Yl)My>*bXC_WI*TVUI@RS+6^fNixTD&He5@9eY4`a!j)4
zF~!}!r@ulA-}ExXF}VI-QNPbg^6%*>Ueoh`q`uG(q<}uh^m0MxpBA3|{PVMY*UR>l
zMt+}0{u%v$bonf?^w%Q!uc;%j*8Pq~@oD#a>Rpb;b5$BnTUgTH(X~(MALQ%wJnrY5
zo-ei7_5PW|k@aJ!S$O{Vob|=`Fy7MttNZV)1%>yTdYDI~1!w)ZIBk|%YMnh~hyGmn
zq0}Dzw|}Lvd_hwGS{=WyFXsh$Zx84^9#{An_2tT7@FIyV|p+J3zF-s5>~GkZ7wOlX0A
zSC~EXcNO-KdfdmP!Jo*cFGw3c(C7^NW$umJ2baD^_tSh7w-3ncver%Mx4D0A<#lTO
zIQPb_)@!+6=U%uCEimur{Ro}VtP6j0+FR-?l4Gj*7(LBm_=?>ePoaWm0l=e1kU-Asd12V%LdO{lhD|xsxLIQ{VEM6)x?iXVQWWBPHCMX62Z_2orBr#a03
z_rBLnib;Ry@q3I9|3F^UAAvan(H2KA952@05uWjko-(|fM|~`TXc5nkxVpUWXLS7G
z=h^c)eL{p)GV^16ACM0Y&*%7PpZ*HecUIIB?$(OSVoiG5drJ-b$H#djIgO<=N^-Ls
zKK+a2{;nU{*K|)IGoZyRu<{Z-^)*FPmKTP!9Nrs`2zPqRuw-Y=tM!QRO|K;f-9O2D
zfDhp){)9f^c_a^D-(#t^I33;ltlw9U4u{!-P>c2Zho>uz`(B1J)bbD~wkl(1$wA53_
znwN|0@7*9>`(q!6JnbVp=tGH=phI)$&YUQXy;jKK*ZC^%Gu{0!2rQ31*c*jNIz(X8
z*mNrzgFVlI#w?q{cR3`N&X2L(qzvNytaoyFE(36c-)R*$1DarkY;dNZGkD_M$)=x`k*tFBz$p;o%3w79j?GNcm7a
z5r0atGrlX=voMbFQD&+^>y(8>l$~CS^+#q|Z8jQmY0){p)0&aJ&AR1z2#u+5(n|Sz
zeN0)q*1MevwN3IFQq%I;JKek4EOM)+c?7`u_(kU+lQ4&m+;+-GjrD084O$knQbVj(
z9gBrg&+!lsG8|406RjdTeDFE1SIbxdB}j~f=Z+aF{3V@VJbrOVjcan&X}(J54QIuS
z=;Gsb&IxCvUdzewIkBH_=^CELmq&*F&CWE++}vHS2yyZ~pjwUhgsFfPHb_U}m>T+^
z#hhLz>NAAvgm_Z@32|dxPLOkeQrj8PrTXo!>0`s1d{yWXVkw3(Q%<)_q#XBJnv+^j
zYV7!VojhvUG?ufD8(rT{(h>y>XUWFbIGxu3^5t
zZRNRY%oj(OIR)mYkz<30I-_=ts`e27ASg!pv=G0_#)SfnLju8@Li`Z#uvF_WVOGi
z|50V@Dm%txGteupylUn>WKrhJaW5HctqwBOB#eEjr_aR(VSi4ay!UJM4UDa8BLT$x
zS}Y*%IgJgpBXU^EJ$2rSAm!Y-DYlF)MWTs(?$GjUdPKy}s6{0=liSN@yDaGdnd=DJ
zjjY5@w}G7+;@;WzT+4AVII3~7(yM%=OvC8bYbLXIcaK$(jDUux+Sw8pG08E7*Q)1B
zu<9v|cP$$n!vtiwq(3LWvO#P5QhoDYq&4oB*5PIbYhL#D)OEah7FHH!7L6yNIqfx;*P=&4T066?_XS48Rm&)W_=4W`iExylfTEVC~+L
z(Q$2L>O7^KS6We*sKN-4|#
zw%{Kt(?6aOX~{KddK9m^N?FIv%6Mx$23oixsg*hOqs{TUKWs%m&KJtKxE1}#2-C8@
zawg~zRSW&;hVwrqm}MT!7Ta{7!-M~LvO5C~dKR~dk97?N+fcoUD
z>^R|k)_%c0X=NwSLavf?Ec4@Mc-;fGA|B`crbawlN=!Kw;*mSt*-^#9_i!DF#rNpg
z2bG3yKV9tU^{Gdix*o=JR!y#Jt1^-=n}>D3=6oC9d+HBm{+8zsZpZ61pUEwHNLLHl
zyF$w2(~1-B8?CMV;gRm>6lqVhR&n?`U=7mUtcN3ml725pzNh`nR@0wHxq0h(-tU?R
zW+B|k6P0<`*Us_MSGU8}mceOA`Q_(%+sjPOWlvL0z;WxdeWaw6(lb-DnPv4&MW$I^BM>Jm*7CwE2gxnzrsP
zZqi;>l4UM=-nI9fS6QzP)a
zSCH4n+_S8Rmz9oXb8?7|LTn#mFuz*W%9D@3o`%NsI=iyIV@x%)`<2wB`26dS$>RB_
zOh&C3%=v}k2pK3TUi~TMJsdxKUzTD3S(_*O&wHhM44}O+Xq&?o_X99Mcj#UZQykK{*_BWvMeTJmxxMbMS4JhsAffe5vQ?I7+l?zqh-5
zEr{iD?ndqRcIAqRySnym$H)a++GIy6I5VwpOshoX5n4r~e^b%j+9!!?pKQLVeecPw
z-d?14gujZj51I$_o-58S>?pZUOPlnVQPUzfgWw&(Z%D&%PqrS}m9R3)K27DT?6_I2Vwl;s?o0O@5{*h95wq0tdu=Y_er=z^
zM{z4{cp4wW{c|g?Q|EKIKW?>ty$@Oy*91LTDv`Y1aAXixn3P-nFr({7JJ0OeUVwYx
zmi=ztEAWxrx;*DniL_KArSH{SDv{VmeA|xwclxz=68rmWxZh+fpdFE8H~3iZ%Tf$*
zRV(fs>-C24><7ZW!?6TE3AZ;H2Momy{EXb%C}4bVo*&FdCO^?$teEfk-CX?s@6x@<
z_};no8rTw}+$8@0AM}=n!+!sgBa-BETD$Xs+FT6Ba!Ok_F9Re0N@pL_zPM+Xzq_6H
zw0I@$gFm~zcw`+XwBP;Gk8|C9ozoi9Q+l!^(iXPk@plB48kHeu)E;)OhW2g$w1|Ae
z$hht<%c4A%QrO~ptFDZhuaZjo+>)_MEw?uM%`@kr#PPcob;|R4xO76Z_uPsX*
z)lu&)mO3h@aegijbA7dz?$9CcUV%^lBES5OJTuOOzg8%glNNigzc?yL>(OY8$kE
zE(lYe7VZ=n&fmj$DdvsW2tVUZk&f*K9}f=*iR+pe&wF*~X_fm9Nga1=(Dgu1p+=X;
zw+=1ct7IRp2U@yU8R_2*v~*92Swqb8?2>m(F=z`~f>%Qfdyue8!+zP{8MAMA`xegQ
z&na%gclkIc_C5}E+iy|1R~f4h^WQJGv&9NV*pJSk%5Z(Mc$
zOzL%slB);zW0JI+HF83nPm>5^$sRk|GvA
zN@e~quDhw@eDm3;P!HVbUXNIL;aFUxt66uA-o$fhDa*1>nI?E9J9=atx_Z>L@FNR9
zg8gB%oGWW7w^zZBjQ9Sn=!h-&syPze2O=-qlUN?49wDKU?}9R|*rVpnf{;233pxyt
zBD|0*SlmgHT}>|W*0PS9D@ciB4Y{mE4$r)N}Q@Veu-ePYJP
z{za#KL{Nem{FC5lMyw^334CVQ!oS|0T$koUN@VKe#TM=hnuuDuo1%%#OS^o3iJVw-
zT%PNg>W}ux{>Sd#HHXf@7rLFn&ifIWhv&+zn)T~yt(77rBM>s$?iu6N9S<*8tG%bE
zKP>hscW>X$dQUM0*0U>ay_L1*!z@d~cez}e^oOA}r7Nf4_fQk7`#lRS-i^9!$fs_9
z16xlZ*|d(!dm7CbVa(+@8q)MD^Vezj0h~A2dNfEYpQ*L9X?$I_V*>a4-8QjHS&e*J
z_RfmmyFRpAa_XhaG7Wg99CMtjCq9LY;^hB9(WYb759tb@
zh#zou?`h<@*8T1>Cc-E{Q-7aDLFp`4!`efe@;N0-tLzMS%g#GKH(OI>7>-KJM@vr-
zYPyDAQwhiYjp4WRxsi4m>$n9d%-?^UM_ebCY?yJk?o9V7jQqIOe9Rfy*DH#;T-0X!
z7w(5!+u!g}+)DeN#{Y2t+{)|J`6KR+Tdm(Q{)zkHHnfbqzk;URwrZkS=QK-a8FA|^
zr;Sm8rR5?Ez81HZz1iNDd*GJ6Z{9QTk=#Nz9?}f;ie{%HV$}AD(>tb5Z?m%xpP9C<
zC&$fvPqu#1NAy^Ogq#VmPl^1|D~???w|6x>%j#Ja=4X$37HQcr+Ub)=79kd>@eb`Q
zit`LII*|61Mhn^zIVOaU_5MsEf#K|f<(cY{!1*P|3BPba{^5i$!8`gJvNNB0>%Tkb
zV0^x7{_Gk1$^-Jv(4ut2(paX{*L&S`b8TH5vwov;7c$bmPP1Z7+{K=T+YoKWaZ~7f
zhkZbaTv82+uU8(Yts6WrKNq)_Pn-v>ji0x0@3$9KX^e6C{`h5j<`IPRhD-K}?Llip
zAFv9mp8|#1tUEsytS07c`5SI=goVN^yR*)fzRk{Mtyku1?n*8T`Jh}xZu#`7b6Mq{
zsSE}CjMo-1y3nZkGG6OSM#9@gzGBI?J&Z=09|STvCT@bO1LP5QHgK~+GB-2ZHOz6h
zd(m(DcLm8<7Frm4P0iDJ59jWLcN0N`EOQfe*h=kK2pU
z=@`EqaLI+0tXvIe`aHK>F7?t_((6uJ?6}JOjI;~*M$Hnu&-6I6CKd}vBaVea6jnYO
z-Uc+3oQ^?!#q#KD!^lZlR&PgJ%!SvCLcA)9`H%PHJHEW+K;F-Iicrz+k&*Kghb
zT|r(OMxC=IpBCh0G412A!@N6NL!0*W<8*?l;?!m-Cs@x3wa#
z4TTA_G;R#?dQTqn9U=Sg346WnS!C>keL?Sc#``u8>2I7Vv@O)G29VkFX|n&a-@0tS
z*3Sh=<+Qi>p?p9%!{_mqtEPNSy?!K(#a@ss`!yl`HAViq*2c499b3Oq$x@Wf^}5G&
zsEhADjWsq5UclqBd@QS50H4V%Y$%Os{ivK%=BwoGf!rInwk7aU+)B-x#xl5nZsm3A
zEQR~yR_nLia<~_6TP+EmRJ&{p2g8t>v$6JCZ%QIt)3_q(|bj71^Z6
zhtjW!bgcg3I3$jI*bjP(s~N-i3S%N2$!nxf!k?!f#k_aqYjTUx!5Tf5*6@s7BE`6O
zS1I(I=BH9i!udG%cGd=IS*%jYgw~|zrQ*x!MM7(y6re#G^DiuVMA1JB>
zx9|6MlPdr>E4jNCZc6j?w<#-#H^I%rUg@*iSiNgu_ikQpu+^_lF~`BD$~jKXY1$m-
zJ$o9-Zz`;*g`)MyeVRz!j?85wJ53}m`>l(-wSLMY?GRVha8wv|EuQcr-;(p&R2WXi
zPL{UVk#kG7XvE2Q~|u$5Lljn@gUf#2nI
z>by`%zvW&@_U7%b#!J;R>GDou^jgOdZW^^%@``yr+xBy^r&2bC&rG=`+aK{+VT<{p
z^r{+y2>S|u59h6`;3S8=gElLMPk`U2^Way>RZ4W2KBs$Do8t)22}d`s=y*u0TCnQz
znBv7_stn8FkFYm)b?-sqdD2Im4?BBjlk&K)Z0y530yB`-sp}C_S>NMg9VxB&{IXp@
zWH0$$LFBPEL&nF4nxXT6Q(0zv?6lceMh;sCbl86S63^&;iHx=KyqK43ewNW=FFuo7
zEf$OO1`A$dS;neIFGvDXm!akRYqM<9^_@uN7&kQ
zo3l;BaY{HZ=i?Hr^t&L2=L4Z8?8?Xz#){HI`r8@(4SO)gvS0Nsj9V+slSr+H2h{Z3
zdq&S7)o`HUSi~_;h?r6-OcYhO_S=q{IOmtItMvCTy~l7p?|5&*
zqsXo1UCwBw!LkqIUS@R_OAhVApX4>0a0QBrsrS(JWGvtn1VmK{*~4#hiupSZuPry=sw57665(33>3ORTn)?;Uy6{$v6_a*211_D_o{!gXQeW9z{2JyVnJw
zsh3pQ@e}*TJ*0x9;dtB2dJ
zDe%@_yBI0?Gx;xbV5dC8XX*WdomRPr&y@bL9bGx!DCd%PbR}6YOXtR*tM6zB8TW>&
z1vee`*b;Kk_~a13=kro~l#{xk`ic|6t-oI8p}r%$>M~VsmBB0e{E4D%6lJVx@X4Q@8`
zv{M^mll??2^3cCKt4bzEm{
zGqyata%(fVd=$5`^5ZtGlpe0AV>xhJ7Rf+UmX$v#dtDzBXWv(^E7OL0gAs!`eLrX?1wX6^xE445a8_!5(Jxzg*;Ta@4<}v10vWWZ*
zw>ZMh^Ewj1_j9cL*-_s2;_opZACJ$m$ojG}9N|~8T*WSRJCzLF-Q^Enxu!69#Qjv9>JxtuCATG(q$UgZhZpgdm~
z1j@s^$i5|`vft-Yej(oAq~F=)HO-b-?*lFYt9|eekAwd68cF@EuRS}bS|G&e^X67|
zE16*%)ia8h769ASbY8RB)vf>8qtRe(*L?u94{g=|yOk_*nRIo`^$PpJqnK=x9~~n+a_YHD!)%FBDgPiN6S8Q{Dzi=J#iZ0=k}Q42xt0O=QK+XwaoR)
zmeXqaSoLe$8DHC)!EH~#J#fo@x9qy^c_Ec$-H(jR%Cse?g?=4CxC7h5o}}49)?99Z
z4N84|4)=3k+=iS}t9NK;Pj)l=0r1^&D`N%zhFc3q;TU{B2Ya$>WMnMgc30RFRQl)U
z0!uzE?8$B4N)E
z{If@KKe&Yp`sRfGf4i&*Vn;c4o5nn23i%ab&}T*pw}FC*L7=y
z?p3nGb~M1~|N62ns~d+n1}v{{xu-Cy9$)2okkySu8h_eruJ2XycjK`aTjtGLbA7Lp
zfzxM~P%~2hj<<}v+?@3N8n@*$dj8D$RtMcvDiOn{dqyi)u{t$flRX|kEi0=f8xzi3
zVMJPs5%iggN6^hw`1CJAAnz#0fL#+(kBN-FJL3s``z@iwb;8)XpKC=~_mrx_sZbWy
zr~D5gtoNB*ifx^Cou0%i)70h3e!ICzR;kp?%!PkHht?7MdD9+jChKmKu_;u8Z-k
zR*RbIR(k3>?7f}iNUkqxnnL2KwZ|jynyPT1W10u3<1Wf%EW)fD=mO9G{O_@3-o6*+zkK%HO3E-+{OE
zoyz<8vDZ4h|MgS%=ySD4ojjgVFR!T=-~mJ(;E>*5dZF>seMD!T(#|xG`#Ka?g;IB4
z$Nin063#lINa3hbQqSl<_UWlU&{Njk$1{@7`^s}4lVA9;@#?R-pZihqZ~U!$4tTC-
zG|shl13hVzB<8laG#;n4uDpIcp3wQ>+Nm1P8{6XnJ=ZUEUkBZvdY!A2?;h!?9UGKd
z6RuzCU2&|#GI_KUJ}vX1HPuht54YjW86&_j>h#{ORIcf~824SyzTG!?P<{q(r=J;h
z#Lw5`ws!p7>IUA|XSM4y{z6u9M!Jpa!WwIf^+a2h0oy^=qFh7bx2@g&T|{fF$i+5n
z@%S{Bp>Y;8tjQR+c)vW>Z*GV59N*`Bo^`JD6*i-Nzmkz3&uGhZ%BEMhB_>X6_{ay}QH36P(ti0xb3(NgV{(n5r&G`JNkDP$~Yb4aN
z!|FJXTenX$o+($KHNH-u29Hg#KI2|rkt4k(o-X#1_)Ci3yhls9sryP+#lkIPss|8d
zx&4{2lHd)^_imTbGm3riW)bk+Zsme)l{OP4nVV^tC)sZu)1>u-sMs+}!%S6(bn;vh
z_JF`{Snu7rn%PrP#===E#jf`3ertxYwZl@L6I69-{lbK0Ytg94-Fw+TK
z_!+e|)1Hs5{QXO7&F2$J?o78{K9gIGNzT<<+m_2ca%)>MAH}V-oM|kZ`{!0(r_R#3
zKW?>t$5=l1!)<6ic~9^i@nk>HoZxNRtQ0o)I_VSjm_kkh}iJLb$xt3SwRmiTG7wdT+|R$R{ge66t6X8-W}@b_5qVT`ld
z*x#dc*xB+{)-(!>$0(0p!{hLK4$aEr{45^MyKOe+=BhSkV6I&noV3_0$XWKP^0o2m
zuVrpcHP?T>nz@jLI8
z=QjCj+%A~lf_Ojd27S<1bLhNR8Il~wSn&vOTgPDW+1z40bBq=r!)+@jh-aiS8BKu%
z;2DMyFC-DOU;NzMmgv6sXE74kpj;m!=6s}%t5`_CKHj!`#DWWWbY**0xZp>My4_x@
zugTAx^!u$|&|hl&dl;9^7hzi(S7!H&r&~|~Y!30UZF4;CmhCN3Hg*8U8}ODW`}(cn
zuSb9F*(A2HIp$Z)zpKx|*S&`2CGJKJ9`ZppeY|{Ha`2YlDZ?;+#o63%@`S|l
z`%YOJwdCQ?NYkWmv7(k-loBGLkg06X5Ka-JV80~&Ipdf_i$ScIL+-<5>6;#7;EZ&=
zr<2;p{tZlyZIH)=T(q67lSq4-?40bkE*q!ybMZOvKF!)Pyea&M@ILC?U6xJCSi{bK
z^c_}?*EV6-#W)jo-fNnSPV?DdOJi(geErwtqpl>>;t~m`@{A>(TTO;pAfNMVm$5z{
zJ63_CDLLv_m7PGw_?Yw^|Fb-qx3oP8$7|f$o`sL%R$B5jo`(D9R$iyh^KgIMYWzWK!~H%->#F#&BZA!A#UsaFZaML&v|)&%tvyIQF=)K_Q@YUryq=PiJa2&u>#9g
z(3YM(hu+P(62w=7Xf@k^AnWl*SP^B3{6gDu&v-^yYsn3LK~m2Dgi;Hmuy&u(8ij2T
zSFFcB>C?b!;;2kJ!eOqw7w|J=iptgtSZm8)l|F^US>Y)BosjVvRRN!qR%11^d-pA#
zU7i<4dQujp`9+*5@l6Rn8;Zc>J?+u8T)f0PugM)phU=+I`du|T%a2o;7vtEVC3;*p
z7*i>u+G=OnQ;rQzkL1s8rhQ4)`;m0|jL^h?l9ofmUsun%KqTjv*6}?>Gao8@a{C4x
z(*68G|BfqrSum)p%P8|?H5O8jM)RyW>nFFCcefcA?t$A{H2RDX=#xqvd`eYGztQJWcF1@t4%oc@HOJewiDxP@o>;Yqp7<$R5$oK{0L})+jr#QWvKW
zN7S<4y1a?jkB`Jl?!&KZ%4bI8j-Q8*f-PAise?H==%dX~^jVI97J+yzX^YA8
zxjjp>?D&G?30bS)kdV}Qk1M=HYjP2x?Z}TiSvsEVP
z>xR!#_O|RP#__H^=G@ltuzWVR7|9$j%g1n=<7xSOZbK`Z!mg%3XEr16?>yyo`5SJB
zG#}sRJfU^2^d5FLY@;&UGd>$8ZL|#6`Mk|~LvA8Q6|v9u(U{EKY*fCdxg{HB#erjG
zHvg){jmq^ZwqbL)I8?k?w3b3QcZGsiOA?Y?ro(|1t8Q?=y0
zHk7wmTlhuiq&0oo>m$!c{aZXP2ut|)tJs=lN1T$corZ6g{nqizT0a*(nnL_PR3jVe
zTb@0B)W19D1!?oz=g8iz%YZg$C?}oA;?*0a>k~J69n|A7OK0r3kK;TYKsE9V^NI(Eez
zFy;_f?8ke_X0a^LVz$V|dEs$>s;vrZN6mF$Shb`Vmx0Wt+WhBc)n!*H!UIWl4qSQ`LysQ
zx4n9Jvy!7*7?rf10G?nvMg@6ljV;i;>l9VQF2a)DRC-U%<9Saf<0M&~ZrQ3H7in>j
z%z)WG%#M9ztT0WiBm1q3ZM1&I#4=%YpO0N+wivngn%ukBh?ZRYW+mTS#)#uYWuC%O*CAHX^agOhzoLSv6m{s}IQ}ZhlZ=~16=h~4@xe1viE|YY~c7!aJ
z&+R@WmTH5d6Wri!IxcgV$~t8(u>T{nA^ZJ)?|AYrX*5#YD|^Y~
zV0mnutxLb>&!PR!XJPFeg|n_Qnc0#ku>tS;47RQ`FEDJ;cKQnQ$+=W79P)b
z^ZjFtAJPsq=^BKRx!qlV{(R0VG1Hu@lNLP1TF9ErHR~~+YV!wEASRow=cj;gT`gkD
z=NkMye1QS}rwxwshXDt6$qPGC%T)c}-t9p7+GI
zf;BwpXLcU#7!AQ%OXm4>Y~x=j5U8)0%>ET??75g@w{~
z_F@}B8;)s=n#y?I@^P60N5TGw<5b*J8;(K`b=5Im`)VTIa5Q2s8IDa^v^AaAm3wBf
z2Gx66J1+wH=PLK)bJ-P0*u5?niCgzSz5+?cm1S7gS0G)*imk26ntwZ{(V~E|*m$hW
z=3lY3ZRD3Mjaur9(mV_7e5(4QQm;70JhYnK3AdGuhNVw>Jg!;ZE6R5rQDwyk+A|C?
zw{6U>myj{&H1!d(-@1ATtsg`(r~NE2yh0+JgY#8Ic%Q*3{rj2nh==s=g5Fk-%)+b7
zx96PGC&$n2(@yiqGnVe~k*k?^*WOR#jxj(l5Y?KzN9s^?mCn#woES>@5_c4cMr
z>Li@5*|u@fc4g)9UBN}$2A5=6Pzx@)?UmWvmAeBh$Z3_xsmyD(<0j`ZW&93A636RW
z{OA3)yOSrh|L?anr(;JB8KGJhT8^9CERTJ2&S(ygXNt7KZNXFrJ+|Cavfg7bRhhI)
zX7*a-RL2*rZeE`QIgQcu64}SLG6q%Ut8^`!UY+#Ep{kuqZs4w
+
+if ($IsLinux -or $IsMacOS) {
+ if (-not (Get-Command 'Get-Service' -ErrorAction SilentlyContinue)) {
+ function Get-Service {
+ Import-Clixml -Path (Join-Path $PSScriptRoot Get-Service.xml)
+ }
+ }
+ if (-not (Get-Command 'Get-CimInstance' -ErrorAction SilentlyContinue)) {
+ function Get-CimInstance {
+ param (
+ $ClassName,
+ $Namespace,
+ $class
+ )
+ if ($ClassName -eq 'win32_logicaldisk') {
+ Import-Clixml -Path (Join-Path $PSScriptRoot Get-CimInstanceDisk.xml)
+ }
+ elseif ($class -eq 'MSFT_NetAdapter') {
+ Import-Clixml -Path (Join-Path $PSScriptRoot Get-CimInstanceNetAdapter.xml)
+ }
+ }
+ }
+ function Get-Process {
+ Import-Clixml -Path (Join-Path $PSScriptRoot Get-Process.xml)
+ }
+}
\ No newline at end of file
From 3a6946466fa4faf8f317f62c2367c3074af5fa19 Mon Sep 17 00:00:00 2001
From: ili101
Date: Tue, 27 Aug 2019 14:27:33 +0300
Subject: [PATCH 08/14] xlsx case
---
__tests__/Compare-WorkSheet.tests.ps1 | 48 +++++++++++++--------------
1 file changed, 24 insertions(+), 24 deletions(-)
diff --git a/__tests__/Compare-WorkSheet.tests.ps1 b/__tests__/Compare-WorkSheet.tests.ps1
index 94e1112..60a1582 100644
--- a/__tests__/Compare-WorkSheet.tests.ps1
+++ b/__tests__/Compare-WorkSheet.tests.ps1
@@ -19,7 +19,7 @@ Describe "Compare Worksheet" {
$s.RemoveAt(5)
$s | Export-Excel -Path TestDrive:\server2.xlsx
#Assume default worksheet name, (sheet1) and column header for key ("name")
- $comp = compare-WorkSheet "TestDrive:\Server1.xlsx" "TestDrive:\Server2.xlsx" | Sort-Object -Property _row, _file
+ $comp = compare-WorkSheet "TestDrive:\server1.xlsx" "TestDrive:\server2.xlsx" | Sort-Object -Property _row, _file
}
Context "Simple comparison output" {
it "Found the right number of differences " {
@@ -56,13 +56,13 @@ Describe "Compare Worksheet" {
$ModulePath = (Get-Command -Name 'Compare-WorkSheet').Module.Path
$PowerShellExec = if ($PSEdition -eq 'Core') {'pwsh.exe'} else {'powershell.exe'}
$PowerShellPath = Join-Path -Path $PSHOME -ChildPath $PowerShellExec
- . $PowerShellPath -Command ('Import-Module {0}; $null = Compare-WorkSheet "{1}Server1.xlsx" "{1}Server2.xlsx" -BackgroundColor ([System.Drawing.Color]::LightGreen) -GridView; Start-Sleep -sec 5' -f $ModulePath, (Resolve-Path 'TestDrive:').ProviderPath)
+ . $PowerShellPath -Command ('Import-Module {0}; $null = Compare-WorkSheet "{1}server1.xlsx" "{1}server2.xlsx" -BackgroundColor ([System.Drawing.Color]::LightGreen) -GridView; Start-Sleep -sec 5' -f $ModulePath, (Resolve-Path 'TestDrive:').ProviderPath)
}
else {
- $null = Compare-WorkSheet "TestDrive:\Server1.xlsx" "TestDrive:\Server2.xlsx" -BackgroundColor ([System.Drawing.Color]::LightGreen) -GridView:$useGrid
+ $null = Compare-WorkSheet "TestDrive:\server1.xlsx" "TestDrive:\server2.xlsx" -BackgroundColor ([System.Drawing.Color]::LightGreen) -GridView:$useGrid
}
- $xl1 = Open-ExcelPackage -Path "TestDrive:\Server1.xlsx"
- $xl2 = Open-ExcelPackage -Path "TestDrive:\Server2.xlsx"
+ $xl1 = Open-ExcelPackage -Path "TestDrive:\server1.xlsx"
+ $xl2 = Open-ExcelPackage -Path "TestDrive:\server2.xlsx"
$s1Sheet = $xl1.Workbook.Worksheets[1]
$s2Sheet = $xl2.Workbook.Worksheets[1]
}
@@ -86,9 +86,9 @@ Describe "Compare Worksheet" {
Context "Setting the forgound to highlight changed properties" {
BeforeAll {
- $null = compare-WorkSheet "TestDrive:\Server1.xlsx" "TestDrive:\Server2.xlsx" -AllDataBackgroundColor([System.Drawing.Color]::white) -BackgroundColor ([System.Drawing.Color]::LightGreen) -FontColor ([System.Drawing.Color]::DarkRed)
- $xl1 = Open-ExcelPackage -Path "TestDrive:\Server1.xlsx"
- $xl2 = Open-ExcelPackage -Path "TestDrive:\Server2.xlsx"
+ $null = compare-WorkSheet "TestDrive:\server1.xlsx" "TestDrive:\server2.xlsx" -AllDataBackgroundColor([System.Drawing.Color]::white) -BackgroundColor ([System.Drawing.Color]::LightGreen) -FontColor ([System.Drawing.Color]::DarkRed)
+ $xl1 = Open-ExcelPackage -Path "TestDrive:\server1.xlsx"
+ $xl2 = Open-ExcelPackage -Path "TestDrive:\server2.xlsx"
$s1Sheet = $xl1.Workbook.Worksheets[1]
$s2Sheet = $xl2.Workbook.Worksheets[1]
}
@@ -117,7 +117,7 @@ Describe "Compare Worksheet" {
BeforeAll {
[System.Collections.ArrayList]$s = get-service | Select-Object -first 25 -Property RequiredServices, CanPauseAndContinue, CanShutdown, CanStop,
DisplayName, DependentServices, MachineName, ServiceName, ServicesDependedOn, ServiceHandle, Status, ServiceType, StartType -ExcludeProperty Name
- $s | Export-Excel -Path TestDrive:\server1.xlsx -WorkSheetname Server1
+ $s | Export-Excel -Path TestDrive:\server1.xlsx -WorkSheetname server1
#$s is a zero based array, excel rows are 1 based and excel has a header row so Excel rows will be 2 + index in $s
$row4Displayname = $s[2].DisplayName
$s[2].DisplayName = "Changed from the orginal"
@@ -131,9 +131,9 @@ Describe "Compare Worksheet" {
$s | Select-Object -Property ServiceName, DisplayName, StartType, ServiceType | Export-Excel -Path TestDrive:\server2.xlsx -WorkSheetname server2
#Assume default worksheet name, (sheet1) and column header for key ("name")
- $comp = compare-WorkSheet "TestDrive:\Server1.xlsx" "TestDrive:\Server2.xlsx" -WorkSheetName Server1,Server2 -Key ServiceName -Property DisplayName,StartType -AllDataBackgroundColor ([System.Drawing.Color]::AliceBlue) -BackgroundColor ([System.Drawing.Color]::White) -FontColor ([System.Drawing.Color]::Red) | Sort-Object _row,_file
- $xl1 = Open-ExcelPackage -Path "TestDrive:\Server1.xlsx"
- $xl2 = Open-ExcelPackage -Path "TestDrive:\Server2.xlsx"
+ $comp = compare-WorkSheet "TestDrive:\server1.xlsx" "TestDrive:\server2.xlsx" -WorkSheetName server1,server2 -Key ServiceName -Property DisplayName,StartType -AllDataBackgroundColor ([System.Drawing.Color]::AliceBlue) -BackgroundColor ([System.Drawing.Color]::White) -FontColor ([System.Drawing.Color]::Red) | Sort-Object _row,_file
+ $xl1 = Open-ExcelPackage -Path "TestDrive:\server1.xlsx"
+ $xl2 = Open-ExcelPackage -Path "TestDrive:\server2.xlsx"
$s1Sheet = $xl1.Workbook.Worksheets["server1"]
$s2Sheet = $xl2.Workbook.Worksheets["server2"]
}
@@ -188,7 +188,7 @@ Describe "Compare Worksheet" {
Describe "Merge Worksheet" {
BeforeAll {
- Remove-Item -Path "TestDrive:\server*.xlsx" , "TestDrive:\Combined*.xlsx" -ErrorAction SilentlyContinue
+ Remove-Item -Path "TestDrive:\server*.xlsx" , "TestDrive:\combined*.xlsx" -ErrorAction SilentlyContinue
[System.Collections.ArrayList]$s = get-service | Select-Object -first 25 -Property *
$s | Export-Excel -Path TestDrive:\server1.xlsx
@@ -205,7 +205,7 @@ Describe "Merge Worksheet" {
$s | Export-Excel -Path TestDrive:\server2.xlsx
#Assume default worksheet name, (sheet1) and column header for key ("name")
- Merge-Worksheet -Referencefile "TestDrive:\server1.xlsx" -Differencefile "TestDrive:\Server2.xlsx" -OutputFile "TestDrive:\combined1.xlsx" -Property name,displayname,startType -Key name
+ Merge-Worksheet -Referencefile "TestDrive:\server1.xlsx" -Differencefile "TestDrive:\server2.xlsx" -OutputFile "TestDrive:\combined1.xlsx" -Property name,displayname,startType -Key name
$excel = Open-ExcelPackage -Path "TestDrive:\combined1.xlsx"
$ws = $excel.Workbook.Worksheets["sheet1"]
}
@@ -215,8 +215,8 @@ Describe "Merge Worksheet" {
$ws.Cells[ 1,1].Value | Should be "name"
$ws.Cells[ 1,2].Value | Should be "DisplayName"
$ws.Cells[ 1,3].Value | Should be "StartType"
- $ws.Cells[ 1,4].Value | Should be "Server2 DisplayName"
- $ws.Cells[ 1,5].Value | Should be "Server2 StartType"
+ $ws.Cells[ 1,4].Value | Should be "server2 DisplayName"
+ $ws.Cells[ 1,5].Value | Should be "server2 StartType"
}
it "Joined the two sheets correctly " {
$ws.Cells[ 2,2].Value | Should be $ws.Cells[ 2,4].Value
@@ -248,14 +248,14 @@ Describe "Merge Worksheet" {
}
Context "Wider data set" {
it "Coped with columns beyond Z in the Output sheet " {
- { Merge-Worksheet -Referencefile "TestDrive:\server1.xlsx" -Differencefile "TestDrive:\Server2.xlsx" -OutputFile "TestDrive:\combined2.xlsx" } | Should not throw
+ { Merge-Worksheet -Referencefile "TestDrive:\server1.xlsx" -Differencefile "TestDrive:\server2.xlsx" -OutputFile "TestDrive:\combined2.xlsx" } | Should not throw
}
}
}
Describe "Merge Multiple sheets" {
Context "Merge 3 sheets with 3 properties" {
BeforeAll {
- Remove-Item -Path "TestDrive:\server*.xlsx" , "TestDrive:\Combined*.xlsx" -ErrorAction SilentlyContinue
+ Remove-Item -Path "TestDrive:\server*.xlsx" , "TestDrive:\combined*.xlsx" -ErrorAction SilentlyContinue
[System.Collections.ArrayList]$s = get-service | Select-Object -first 25 -Property Name,DisplayName,StartType
$s | Export-Excel -Path TestDrive:\server1.xlsx
@@ -282,7 +282,7 @@ Describe "Merge Multiple sheets" {
$s | Export-Excel -Path TestDrive:\server3.xlsx
- Merge-MultipleSheets -Path "TestDrive:\server1.xlsx", "TestDrive:\Server2.xlsx","TestDrive:\Server3.xlsx" -OutputFile "TestDrive:\combined3.xlsx" -Property name,displayname,startType -Key name
+ Merge-MultipleSheets -Path "TestDrive:\server1.xlsx", "TestDrive:\server2.xlsx","TestDrive:\server3.xlsx" -OutputFile "TestDrive:\combined3.xlsx" -Property name,displayname,startType -Key name
$excel = Open-ExcelPackage -Path "TestDrive:\combined3.xlsx"
$ws = $excel.Workbook.Worksheets["sheet1"]
@@ -290,12 +290,12 @@ Describe "Merge Multiple sheets" {
it "Created a worksheet with the correct headings " {
$ws | Should not beNullOrEmpty
$ws.Cells[ 1,2 ].Value | Should be "name"
- $ws.Cells[ 1,3 ].Value | Should be "Server1 DisplayName"
- $ws.Cells[ 1,4 ].Value | Should be "Server1 StartType"
- $ws.Cells[ 1,5 ].Value | Should be "Server2 DisplayName"
- $ws.Cells[ 1,6 ].Value | Should be "Server2 StartType"
+ $ws.Cells[ 1,3 ].Value | Should be "server1 DisplayName"
+ $ws.Cells[ 1,4 ].Value | Should be "server1 StartType"
+ $ws.Cells[ 1,5 ].Value | Should be "server2 DisplayName"
+ $ws.Cells[ 1,6 ].Value | Should be "server2 StartType"
$ws.Column(7).hidden | Should be $true
- $ws.Cells[ 1,8].Value | Should be "Server2 Row"
+ $ws.Cells[ 1,8].Value | Should be "server2 Row"
$ws.Cells[ 1,9 ].Value | Should be "server3 DisplayName"
$ws.Cells[ 1,10].Value | Should be "server3 StartType"
$ws.Column(11).hidden | Should be $true
From cfd89f5afca33e31cabc82185e63047930291c42 Mon Sep 17 00:00:00 2001
From: ili101
Date: Wed, 28 Aug 2019 16:59:08 +0300
Subject: [PATCH 09/14] Samples
---
__tests__/Compare-WorkSheet.tests.ps1 | 3 +-
__tests__/Export-Excel.Tests.ps1 | 19 +++++++++--
__tests__/Join-Worksheet.tests.ps1 | 2 +-
__tests__/Samples/Get-Process.xml | Bin 1853700 -> 587972 bytes
__tests__/Samples/Samples.ps1 | 45 +++++++++++++++++---------
5 files changed, 49 insertions(+), 20 deletions(-)
diff --git a/__tests__/Compare-WorkSheet.tests.ps1 b/__tests__/Compare-WorkSheet.tests.ps1
index 60a1582..b4f2626 100644
--- a/__tests__/Compare-WorkSheet.tests.ps1
+++ b/__tests__/Compare-WorkSheet.tests.ps1
@@ -1,10 +1,11 @@
#Requires -Modules Pester
#Import-Module $PSScriptRoot\..\ImportExcel.psd1 -Force
-. "$PSScriptRoot\Samples\Samples.ps1"
+
if ($PSVersionTable.PSVersion.Major -gt 5) { Write-Warning "Can't test grid view on V6 and later" }
else {Add-Type -AssemblyName System.Windows.Forms }
Describe "Compare Worksheet" {
BeforeAll {
+ . "$PSScriptRoot\Samples\Samples.ps1"
Remove-Item -Path "TestDrive:\server*.xlsx"
[System.Collections.ArrayList]$s = get-service | Select-Object -first 25 -Property Name, RequiredServices, CanPauseAndContinue, CanShutdown, CanStop, DisplayName, DependentServices, MachineName
$s | Export-Excel -Path TestDrive:\server1.xlsx
diff --git a/__tests__/Export-Excel.Tests.ps1 b/__tests__/Export-Excel.Tests.ps1
index 70b362f..74b0aad 100644
--- a/__tests__/Export-Excel.Tests.ps1
+++ b/__tests__/Export-Excel.Tests.ps1
@@ -1,10 +1,17 @@
#Requires -Modules Pester
#Import-Module $PSScriptRoot\..\ImportExcel.psd1 -Force
-. "$PSScriptRoot\Samples\Samples.ps1"
-if (Get-process -Name Excel,xlim -ErrorAction SilentlyContinue) { Write-Warning -Message "You need to close Excel before running the tests." ; return}
Describe ExportExcel {
+ . "$PSScriptRoot\Samples\Samples.ps1"
+ if (Get-process -Name Excel,xlim -ErrorAction SilentlyContinue) {
+ It "Excel is open" {
+ $Warning = "You need to close Excel before running the tests."
+ Write-Warning -Message $Warning
+ Set-ItResult -Inconclusive -Because $Warning
+ }
+ return
+ }
Context "#Example 1 # Creates and opens a file with the right number of rows and columns" {
$path = "TestDrive:\Test.xlsx"
@@ -958,7 +965,13 @@ Describe ExportExcel {
$path = "TestDrive:\test.xlsx"
#Test creating 3 on overlapping tables on the same page. Create rightmost the left most then middle.
remove-item -Path $path -ErrorAction SilentlyContinue
- $r = Get-ChildItem -path C:\WINDOWS\system32 -File
+ if ($IsLinux -or $IsMacOS) {
+ $SystemFolder = '/etc'
+ }
+ else {
+ $SystemFolder = 'C:\WINDOWS\system32'
+ }
+ $r = Get-ChildItem -path $SystemFolder -File
"Biggest files" | Export-Excel -Path $path -StartRow 1 -StartColumn 7
$r | Sort-Object length -Descending | Select-Object -First 14 Name, @{n="Size";e={$_.Length}} |
diff --git a/__tests__/Join-Worksheet.tests.ps1 b/__tests__/Join-Worksheet.tests.ps1
index 35d029c..446e1dd 100644
--- a/__tests__/Join-Worksheet.tests.ps1
+++ b/__tests__/Join-Worksheet.tests.ps1
@@ -24,10 +24,10 @@ ID,Product,Quantity,Price,Total
12010,Drill,11,8,88
12012,Pliers,3,14.99,44.97
"@
-. "$PSScriptRoot\Samples\Samples.ps1"
Describe "Join Worksheet part 1" {
BeforeAll {
+ . "$PSScriptRoot\Samples\Samples.ps1"
$path = "TestDrive:\test.xlsx"
Remove-Item -Path $path -ErrorAction SilentlyContinue
$data1 | Export-Excel -Path $path -WorkSheetname Oxford
diff --git a/__tests__/Samples/Get-Process.xml b/__tests__/Samples/Get-Process.xml
index 2895dc0523434e1779f4ef17bebee8e0666b6543..763098dfc5a080d13b06a5befe132db5d5d98193 100644
GIT binary patch
literal 587972
zcmeFaS#w-RlD3KK&usn!O;=skBNq3ihE-++NlEDD)&xq`-w0zgE+EAg7Z^ZNV*U7;
zd7tBOM#RZDOPmA&iRA_ZG835@t8d}%;qU+V|K8Ymu<>-`e>M&`&TRa+vA1!cXRkKi
zZM@z1>&7=5=QqxFzvsHgZ}gepHr{N!*1Lz@`#*2I*U$dOUpD@%pTmu38$YX!Hycm%
z{Hz{d=|2Z*?NGlj^vSb&{Z9Y?v%d3gkv+=i$|6}8S
zsn;_bKF%{6kM!vm8(SOCyAhl#K4qWW*|@K7OnuHj`?rnTYVoie%PWoiwMP9J5M%VYWB?NeK$Mi`LLVgv#ymxjr7kOJK4zTr@gOR-8!*KZ`JNw
z^>$CspX>Q+^|<=(@$`C6^Me9@?$%*bv$s_=8rjqCy+5Y;O|@wAx!+sI8(P_S+LiYj
zQ2r(e`^^>y+p-?ef;f
zMbYsY(I6bOsg;Db_zrx<-}mYX+P>EHW}mOMwE4M}AG%iVi2L|9w8{5hbh||Btk!0A
zG`7w@8rpfQZ@<=e;O3G?&UdZmb4|0V@zn6=+v$C)qw$BD-N7J*<)fL;wLf;N^g%P;
z(Yo&+tyYagm$g4d$*EQ3LZ713yQ`FaVdHWq4~-YbXp&a=l#QiEOC=p_YfWBgCC2ID
zLL)s4f8NH&nh(p`d!p^Ww)lts_qO9FWbx{lk-q-_QVQoYv-MkDm3-~L@WIE9Vqb|**ByB&8y~4JG|4Mzvpubx@tlokU+c)TkKHby
z57Wx#~Hty|hpEUfu@&c^-cBTH;ZGmpu~QfucF4^0~1
zFst($SM>`Q4D0Q(Ei6_0=B176`tF5^Z*PCr`dDLF)JTavX^tly-_q9Eu8r*(8lN`!
zzDd&On#->fQvc$F)Hj=kGs??=y&2Bq)B;BTHlC>VzYvpS7XS$=gzdy2e{?@!^
zW^sQQu$Id6iPN%CV$E6_URVFlm<}o>(7cmKKK|pC+pFh~Wv3HgHRxmh?AJM^EbH;h
zN&I#9b?78>RuTiPIp;)^)?}XK&v}kBsc}dypK50-9}$#TlU!*OseQCMXO+C|TknT7AzU$lEeKVM?6AB!*WGM&>|Wnzy(#E&)Euw+PdNi4X6v4Yxj@{{^
z*5mv(>#NhYF098>jq&Bc2pQ>j-Tq>?j*sn$=4qbN=L4C5+b>qmR;`DZ3-+e1>V$%P)zLR2c!cLpg3b3@I;(#EMFL*$&f4(F
zCH){%TIVv|m(Pr|HZu2OcNS(1ot}qgx0%s0Cn$6#_Tnd5#P9S&gah04iOv*ANAnO9
z^&n2kY&NTsq|{E>J9*pq%{c`iyZgHJ>V$Uce}34zX;y8Eziytla(FhZ2mST+8Y5{R
z4eS0vC-38J^^Y56M$aB-J>WQ7lPQn9t-13X*$#ZqU-x&3_l9ju`&N?tP&DyR&Q?SG
zU(;WVVwFPBz3}M#_MPWzeGGB?j%<^D59YVz-1_|J1n2odtTu6pH+l~%;-OxVU&Rcr
zbyE7W+OwUg+eu|_@8nA`AEbM$TF(e6x5{!>>>TB-GTxi=+P%=2@$gvoN?%@Fn~*QZ
zW$}{}ad{@4j#FNe(Twd-mL~S*^KO*n!Aqv_>9NM&`We
zbO`=WTCG_yXd?M(FT)z5m_$
zk;&S5*D`6yJ9DpSo?nWLL9V{+vPBx3L4$8FD^@Hm*AE(Hr-T
z?~U)z{577-`)Liv^6t{7?uwJftjzRDIIffvLo0{0?C&YG&aQvzxMYlbqsLY65!@83
zIwiG(a)NSlJrXjfc
zj^GY%2!|iQWrF#y;@na4g}n;hk$hsIJ3@DqJQCdT$L9|GlT-e5K4ZT8;Rr!LGF^`o
zt!BHNR~&s=RA@L)Ca2QVjjR0o#`lT>S@t;b1#a&=>27I!x!BO}BkJ;#D2938?xJQN
z^$d%P8{-z&JlOa@74NfKLx0zQSr2Z6k&W?M5tlc5-f!XmX^g}Cq>PQ5iWL2z46gsy
zBRyjIJy5>N|D|XA_fGe0v-=$XyQTMTcmMlQanbG1&+K#mar7S^?LYs}v+uf3@$850
z85!KSx@Ql?Th=Pi+Q+}6ULI*gk2RA=8u$15d$W7}WB1Osat|ITV#>_8C38_ZgXHD6
z_w=25*j7KAT|dl)o*(O$hCj0re5W4o>b=MM|BgPfrQW~q`X}q2xH5MP-!B*ebG@fg
zOw+|panQbYiTL&t(aBv=mem&6)tJac++WcD-EMtZO`EZ;Fr(Sk&u#7Kl6AFJyQR5p
z>*qnYrZ@HXmS|;5qrIbNJ6h#OdPZOD?(HrU>iG8XrdIXgXBrybLGoD07~oDFw*|Ph
z^PAR^JN_2UZXc7=&;4#@Hb;2;)uJ7``I*{~sz#k>wR$_^!Ecq5)jqyoH4@7u$|cf2
zI=a5C{elzPTQwQ;up1eCl+Pai*;>>l^|<`jR^pO!th6^g0B)zA(W-exHC~_7f5_z8>-2!-is+;#MRw
zEVbM|1D9N--b*{4uT`>I+WV<#2sAAE=WaKrD+|^?r$QuhuUZJK;uU`U?<&`Zb#bQ*KCI7ky9NsLEhfm
zqi=tEl<`O&_-=Qz{jDC~9esw(UurWxlfC+K0dM(==hXAKTYIcGvxrysVqMz$4@u7p
zT9+R>nl(#m{QNX#C({}ghTdu=-bvm**XkXJ13sz`^iBKznU#54+_aQ!F7H{%XOYv2utizsGk$bBdsQV
z-0SAydG61&R%VsAkKF0U&&I6Ju4Yp^gSWSSOF6Kd#u%UFA5*=AXFq2;a#hby)D|Y`q-TF
zQg4Uy0Z!LPD%Y~5)zb2+c>w0L{ju{Pa?&ivzB^;|(`Vdmt>k}-6RGa?Ppv1ijn%HL
z-6Oq+gymC6Kk8X<1D88`2Sp3xpPXLx;~h7*%2Hj{eAIrEXL>|+4?!*|@tUI-%u{zp
z77kUvsAK&|e|I}?Lb{pF**ULGX|MCur0x^eG54C*-T5EY!msMjb{E%9I*KBRI7owB^b5_`F)&zQbvro5&F
zR^yfakKbwzPv<@7&%eYdO8K-Z!JHP#&(;51^9=q&XF%ctE#F`ztqSYmfSgJa)7zc9
zzxO-cc3XRU^JuRQI;wg@d-vd#Lwy*xr+@*7skLrH)9L)a?iEAknT8>zY}
zpLg0gncmmwZB4dmsPR2PuNLoJ?g`x9*(R$+T?(4;J?Q>~g+MoAjD?QQo
zeeT2Gt8)c0Q?o(wzx7A4WRB$spn}!4C6ci9XCIuxuAE0yw&oMM-(lef4|8>_pHf0dfu_>&G6_^x(D
z>8F_GfHobe3941dt`PO|MwM^S~g
ztpd&bJ|1-Kf9YQCXg*L66`|W^QdXGmuTX0Djwt(?dSE??hJK?}ZmC_}Z#iF=_O{dd
zn^aAH?mUuZHPSpn359KrRQtIh+6T?jsmE(2)hh>$Ej>ewIGG--@zx^+pB|b&1bM6zQI$EyF^Qw8Q%2-97el>R@K15D`
z?f8}|o>OBidA0w2&f=W%sIoHB5XS*riIHb7d=tv{dUnIs}@5yK_BYWe)??XkCvlhb;RCq_S3KX#nb
z^7*ry<~2r6eCjBKcKWqDhgyURY&Yw5=6HYTF3t_vXFH!Is_6hCK|5MIuVHD?qU$>0
zpHogMQID&7pW1AHk=Njg{$A+ffK)do(~|n-S2zA$&o1gcuVhX?t9OC=JV(?DJw}yr
z&h}JOGr5^dpCO*P(VgYYw#X}$TQ$5qA~v`BU)~D-^nUG#Ar3^hq&>!)X!!)TPkHst
ze5JiwDCj?|EcGzQtA*yhl$<@)2lzr)C)+P;U`|(6hHhz@_@bdCkx#`c4OfsYtGG`0
z;Z^Y8#NZye!-nGH##8#UZwzx?Nv~vr7)4I4HGAUwm&F)fl6{^x!z`xb6}8=7hVGWrlSM-JMYU6iHt55rpLg+=
z=Kc3>{i)%cOJ(SZPu4VAn!DRZc2YsYz&*B~bFpypc^FSQn$~f(YX0BkFHfVa?Zz_f
zo8eio8nu3gc|5Hz2ya+PAh_l-qtvpsmiS*Ohxkw5N=heAJQXh_O`dnS?{ER*&g;_J
zY0^H|uhC2u+tsrJ-{@BnUSgx*<9gcJOTS8s?dci1jhp~988MPWy_$m+d1Fv&+j+T^
zu8x(+YC|*pwffJH~LW2?GKckXFO^k+7$qoGgDb+{(@*j(|LtWs$j%j#TKqXcJyQ`jkc7eahWxk%i}MJ
zXbq?JWwG!47`3-^wyonT7xbyJrb*I>%Jt&Rk!PrJ8vIh2)>yGiRtjC$CKr}yu{@J=
zo<{TA$#XPYTK{>{BHyKy(V5fqw8r)E)$9)+50ANRe((?G_p{(g
zYyr!HJ}dj?k#4*0>gJJs{>;iZ%1lu*r@zcR-FBe5$@6YBcv_)OyEjd)3*Ha&fn4jJ
z`}w|hdi3?|pT%>kx~CN)KNqhe=Uzu#zN%jESB$jeS4r%O>|n6Av(^4X#AI-2v?_aA82rjVQG)Badb^*t*Q
zZ^<9GYAoP5U)A}7{QNns)=zKN`q=kP4*FTL9F0@@^!(@dP*SY-*FJCN8(7U`8jT}S
zd)1G?YBp-_M;hjNGMy993saWEkY_WsQCixi4w^zbOsynsFyF6L`*vL}p@ZvO*<#0(
z(xv46@|6s-ZUhtTS
zE}hJ*1CjZSD7tPrbN0R>`kVGJ)M(P
z`>*)4`+*;7ucuL;eI~Vj_}`qpv3_ciS*O;8y&uOAmnHcemFvieg9zwF{tc{|m<(@?FCA?nFUSg6Wi6iW!82GoAXK+ChWr#A;>XF4>&pRM8
zHcTO@g{f-p>67@WODe(#(a(wu+y^28@X458KUOs;$8xR6CI6%x7>^|d
z$HTimCe8`*A!@c*G^GE&{a~@D}3VFK@bWw|t$L0e3`>
zKV}fvo?vlc1)oMxf4{w-gzppBo>cV{NX0=L~;~UXhV0(gkf>+-?D)~y*F>7*38Q7kmrPrK#p
zaiPHWw2JCTn4DY80~*+#f$a(2AhlA_btPU_>A4s~md!Ca9RaHU?K#w!w^OIrSF&53
zqU#8JNniU36wSc)Oh`|=x-V_@$Dp6|e0`+j!1e@*}v^R)f6cWY|n#^
z)^l%7jyBr9wt?+QO;d7XHwP*w5nH;UcfHmZnXhEVP|doAADUxWk`p_PD&bMAmR=G<
zTx%aCwvts^;he{Pj_1mMbj(n4f1gRVGS|TNq-M}M8P3$poS)%5{>gcn+^N2eTgZ8>
zC)yaR6Vk6-OSB?zDV77fmDseMyVTlDU
zOE3Rk6NtL=$B>n!RZQ<@GK}O7Zul}8X#4Kr>Y;86?O@Ct-fv9#K_R0X7JrXxNM
z)gjDf1$R168l93c!YAMawpH{kWu+lr`a0O$`|S>`LEj=WOt2w+-PersYPut}jS^Su
z(hb#c&oxV~QP!!`SW@qCVO7pUd}94wQ|4HeZ4_JbM#8GBQPR+kmu)!CB%kir2%XnL
zj#XJ!rylx#()peTf}HrHqweGsJ0B-t2>)_b`ol%*AYis(4CJ#h-gV@Xb+HBVmfJA}
z@^6>pf`-cyr?3BV|?&ks*^Hz5*#Sb?Z
zht*mcwy6C5VY(>opd8y2y#=-}_uT*1*#j3lO0;j3lF9lh+j1<+>s@W`DN8>|+|xm_
zVE!vgG`>WTj3A$uemzzjJ#!h?T43KstwECtzZ1}{8;JuX>;Q425|E)f=FEqT1oo@i24kuKylO2EVvM?=qeoZZ7
zFTK^{Q@syQy-}MWaB!yP{_}e4Fos+S*2i^?;kmiI6d=^(akJc1!
z1M<*hV%kIE2y@UXuXlYg2hgRKP)TW(lOJ`w_>_MPx^n6~Cz^vQe-jn*b5qYfXUx#r
z>-d$o3gtyuES6iEdW|`lD-q^|$
zRyii8_a!aW=h`+)W*4}WflKLLHP9WYx-sOtbb4Lp!%W{Ex4ik>kWVwUQR<-_mlD0{
z=f5GVJGGNE&3unj?b|LfO1`u+0J=Z709v$DDL;<8^}2jx)JY~SAMN~h=;LHDD2Z?^
zvB%r}5x*x4N-VIGnKjlfK6Pvdc6VJ*Oybkr<~02E{Jz3mjGpS$Sz6WQ!=ejg8J
zi0b=zhpotvtUeey=ezZxmmwKNPx${`I=A-3cWb>3#S}`3N?c(agOaG*IeGQ4ygg0`
zebs#&`Ao*!_HozRZykG18AIoji`tFLn!%UHpj_=~?tJFpL$cRILpg7q*NmooM$FDoZU1L#&zNDQ(h-6J_(r~V{ooe4HsMg02_2juSMn505x~&M5
z7o|P0)~EAklKwY~*fVnS%!X;3wI9(b+kz&hktUHJOQ^Knatx%&Z#vz)WVHinGI7jJ
z(e+D3rTnJ7SB7SehW9muWfv(?j6RJ4zZ_D(bQNY+tMPN2Sp
z%qjUIxTEiR3*8aAqvVm$9f746XkjH!q*uWm!5zUJi66>m!5zUJ!5t+}q*uWm!5zUJ
zi66>m!5zoV9r&3~6KRqv0PDmI0%`KBvIA}^q7F9XE#>Up?w+ibvc=kj0jI6&~-LpWNtY<#tGRY)TAWh!sP@8Uc^hbt5d*!n4bWdSh_Y*dC
zd-H+fnb7DXy}qgcbA#bw_y6ydgLhZ&Jl6X=`VUo)zwi3a??UV;E=u+C-*n@L8ac#D
z4;GBcE7jfCDDJ5}a74(dc(tIdK$?7`J)>Usvq6Nf)jHW;yVq~MwbPYllsGPeSF?0P
zm_BZTzu(?ZLYoPs$>-vbK$;AsNw_SKCd)e350q82Co9cz0QVMX64y$%r6=!6Gob@n
z>HE@%rZs<5wr;xwDJn#Zunfbd;0zO<#V1RLyh4;noQL5
zxU;RWam=17ZLQ;=tw5U0PYvn0pC3xj3Z%)jLiWtp$r0xsc4yunI@z=*aeyt$wB_mftV{M$E~Hg_s%-?bW5ai$HVNmkqW{&sif|MBQ7
zPVJEPm42YTW1sSz=|k}$_EURnrYmn9@!SKA4{ds9<45tI^B}!l6i1)a-z7b4OD+V`
zB)Bq%vJ-3gG6}gVUn#1@OylmpphG&J({!ndj?KYb7aCRvylmh*V^&&JX$qJ#?|fEK$-+=V~*7hhu2O5fi(GZr)SBmN$Xhmkc}g}
zt;(uEnjG>qj;~}XIgsS5Ya2+D9(xa@$tB$C*p;q(mb9@-r$hmt>j!`Fk_?(1QToFy
zg1BTli;sLb^N$gr)8y{2x
zGGjQ|lE>S}Y7C^w`x}2%Ht^WGa9iCXW1NIuc2!9JJahd`_9WY%{6Kc%Ll?y%3z>>k
zA7<@pSu@3|fIih3?Hlbm`}{)Qk>}lPE~;kQIvLJ^G+825a*_pMg6cO1Ivww67r}NI
zt~X|Un5ysGmVHd6F(`3&Vjmc$rUOj7iToMM=uOa4XAuPKM0?CI;>4>d6VUGHDidtSAbepa%
zcBk`W5;ZicnU;!P%h4&XlxX-yk@D~n=oM6lB|36^7?bsOht}YahB1j0H`KEstrx@SzdOvy<~3aTv%L~8(NXH$9}kv6
zd77VxDoI83C36i_$*&Jp(rV+Q6^wUF`BdX-N0l^O0FXJxznvuS>EKFUlC8aj+S@t%
zcsROTFV4Pso)u@g_n$pB!`i%*3yz_dXPDMx;KfBN#kYoiShbq@OHShX*zy0D+RJa*
z&e38?u8(Q6^r?JDQZ94u@2ZbwXm@HY*Su&`mUA8j+3l@I|Fy4A%a~k$-&EVrrNhZ;
zvokRoD)M0l}kXReYyP{49LC$BFT{WN*iC
z4H+LdKF07C$G-odv*BJ!`rtQtt=b#rH|7<7LeL27Trk$Ew^FWUiEMaY{;>19nc(P=
z!Nq}
zgX}y`3}~@my5}zy6SD}!s?P&to7Fa%`Iu*_{bUpfj&DTK+_z<4K50jYYg%;GC;_ZJ
z_Id0So<|y%A~^PY8}j9sp1g4+KWK*I{?xm53j9B3Y=@xudK3
z73K-F`?4t>FfP~1)lZpbc&5yAwrZaa=bw(*r-9d)Jl0<)UL$#iLwq>r+!lC^$xA*Y
zFMS>T5m_9ldnWS&SBz6^P>%D4*Vf9+CN
zoF-l)`Q+=w3<9q)@EU(o-g_PE&(VOU(f-KPq^7_JdB5H-sHqS7#%We2qk7i&9X^L6
zHi33X)vjIr+}3^XWe84SCzezRvnd
zQud}0Aq-n`PyWTn9ahy@{oN7$eydER_L^zGcKHHi4IE@O@ybfW?XBL@oa`N47^4|1-~t-+|h5+j9$NuT}nuR
ztJS$5X@9tLYx$e)dfM_{9aTE;8gq%kbMyQp+_u1L?5|K-qrhvV8j|x;UZJ`~4$9wY
z=h)nWPqw;Cj`sEfuW^;46HNzRW2$k&t+w~7lmM;WR;7epoya+rdu{d?ou=B;Ybp~{
zkD6K#Ry(tgxKYPE$*Z~?&PLdpLI|t3T6!yXW!>~o#(AZkz-#my?}ys`RG+_oHs2Nn
z{AXuj-qg)jYH2_f^*wjAs8^zxJ^6oDQS}@NqO?_VDLOQYw4;I77Cm`QTI(*N;WB^07DO5_F;wRMggp=@;&rF>eIV9qz?=j#8hc?JWoG4L7#
zuMs&Ac#TNNz-!F40zR9&vuxD5-4l3?eWXy(P+lGBUB@cNM|oSwM7N}U&+ESRI!K~J
z7ARG=&*?Yt8uzuk%H`x4>&0^QPx(x4Ke&AI42ZMyP$>xg)X`{Fow
zueHB?R*tR+g{8cs<7jc6HcC!mj(8gauW{8g>G6miVb||u@uG4Cb6Hb*YwmXX^_@^{
z-YtmXmAxd7Q1S=49~wFy@`mRlYWG(MUSr@j;>md~+vGrh6T%z5oM)ozRLy3%0+hw}
z`shbkKB?s#$FjZcP3dyOfi%s1(s+$vdaaY;9C(d^*Z99g!>d2&AgArJqTX$3ZG8RQ
z7O>iuP~cR3ha8tOaWidk`XHi8E7QnpKGJ-A_4bHlF-|BEuCfs|KS-i
zhY~@6wVjd*r-iY2S-Oi6=M_@NDusS|j738e=AJdabIaMCgHd&3!a^)%s3SE&jd=}c
z*5dbuw0K#1wZBKn&OTnO1!~b_b<&RHhMwCe
zURfCo^=n6`)M1-E>GadVS)^X|5?XJsjr~W*S>&X+WTj3AXR)Ti&gvZUn||kLvLxHb
zd>-jjIUT1=gSF&ELBoJPrr
zFdPZvgPJXtW?R|`d0uo40|2T7mE>I47ldxs+3D9rOGF*)H|g6xT&vt=OawW$Qi>`fROj
zAA7z1w!N5+J2R6DM?AurmOO`6PO-U6_vJIA5AcNX+MUyHqUoX8r8sxre}7sSjF&Zf
z)~;1M|0`fH*12vjf6ql>toJfRL3vh*(a=Z5fm(1F&v&*n_ifI1=lIKt@u5-H!DVc*
zYx_9XW{c-JG1KUbU=J^$+I9~#GUZ<#o$-n&Wyxv>I%D!<-jw(5Wl=SQ6`el&C5>@Q
zEuf*u48lUqvlD5nC5N&+&Ed&KijdR)_H$j2AJrE!%(Jl$MFV}@PVkzCC}YkUFVGp2
z7k!Er(t6@MmCVpGy_Yq1nKnb6P1M@yi9}1g>YuoRTl>Rd7d=qJck$772}<_$0U^
zxFam9#1G}O;Ev#q;Es|f(yQQ(;Ev#q#1G}O;Ev#q;Es|f(yQQ(BNFMk)
zF@r#740OgoX9W8%&>5{7H@7VI6c?r9_iw7CM_n0Wr3VYDpgEFJj!#H_#j6Ev1v=v!
zMVvsGdX`nQo5p5%rWo{d-7>M8XYEzwEThD+TD0zrCM?&~os(wrc7nkIz%}
zFpt;5l?eUvr)opK~V>3Xf00oa6Rlwr?(MsNaneNKO=AGIf5*w^PkB{(B12wM4G
z|9z{x5dOQTK1`y$UN8ffTs9NNdsib)^q8+zs*~DI^|h6vryuoux9cy^8B1KZ2i@K#
zY0wa=N54-i>Tfij`
zySAwS0p{C#*(tOK>V;WapStQr)EkE%v1Q2QMmKHB8rm19f-T#=>vnJS%~5a5wN#)p
zI<3?moqmQ_yA3t=I9J>G{830xI=dBf600YbjH#{Z)k5G30xN+@i;Nv$}Fx+X!U&JZqOm}AD{9^ui
zzV)<=W%^DGorcCZZnfV)XRIN&I^N?tYh7{*`$rTo&>2^~rS2;YbVl-;){C8`$lg5P
z=<(&OZc1huav#1p&;;@Q;O8MjBS#3tr?KC~JX))3%m{uw^%%!1+vTfJ6$#-<;LuI$HM`zVO2y9b5l$BnmD@)P`H8?Lwhj34ZXNGAsw@&JGAFiFKUdbxa
z57jG)C!qzc7VfGhERkGK9;NZRMo8ZDRmHr($FQ-^tHwB9pS0HQQ2oWeMf7_|YHX{_
zSkmip;Wf^~Lt@2UwmV*9JB^l=oE@{VPCG+;T(;q;jcs*0%QkY{#(6cOlMM8zEV5xL
zDqBY^ssGpSSHMR#G?rY~T7D4OTuX5quSnXIvYCF@MQ$wdNaoDMSeivif>48IeByU2zM0
zY
zcyUXpy`8WB=$MQk9V}U?)4^mko#nRL>7X!{V;Hisk`_r;jNd40!(IGNcGRAJ`Zs>^
zJi-H6liW7>zKdAd=g+Ksqs%=d7kBwwhVdE=kKVB5sj81R$4=DOkEBk`zE0~^p1Sg^
z(jgQT`ruRrE(~WI_GHLIkormcf=_)KyRknns(o{t6;w*=b9`Q@Kc|BdX^RNU@uE1M
z9OaDR6f!R|V8_rO$G$%Y>9M5avDWHq@7RV$9h}X`roSkPIxB5w-mN*U)=xgxy6?s`
zUyk)up4iH9J8gf7o=RHve%n`y6$(7az=L$l^6S8ZbS>A88@%dEa_*hd_e8K?cDimo
zy@T~v=i?UJrj$#iv^bs~>avx#eZ{6F>+%^LUq6iDWHBef<6``|@5yz=@p?J1k9iuQvXv*U%6&O-vf3Z%#37vl(xnF^=`oI)}Wn($IWBH@v1@X^p3*
znN0QKvs&$G?tBb?F!eYz7qHvFA_E{U}+FH=-s@oQ{V28KR;*bH?cCqk3vV
zp~U{iikO#2lRQagb$fnJ?pHLA$dJ9;&)+QDfeWTlC(-LmD7D?k9;lPwNP?P-Yn2Ou
zI+?iT>qMO-vu}tG=bZ8abu#(?hvcQNqd(g1m)r&p)X7wtJy0i|PF5d-auS^ct{#4d
zkU5D3?`PK`OWw^L#tLo)G{
zSFVD>b2PpFH`@F3y$#gKvHM2O6V4I2#C;?=^iGm0?N*6?+`cCdq%Xmw1sCD$(Al
z5Z}Jbda%q!M?cP~E>I_3=jD7dR*5=LCv*B~r`G$j?d~bF97M>+qSWv7cNIM?P$&14
z6~n!c_riBdvf`Frz3b}gzCOy~{SSHg9-rpV
z^+~ebol4qwtwvQ;EI1VPVOzh>D6rHeemd9{O&$kj=4({;^bdLKxX*H7a4fl8Dy{zf
zo%YoU)X9V)mrJDE8-I~~X{T~O$GteZ^T8PsIrX8dljFFu3;>OWTtd<(2;as`V*fyXGD8(2sc@%QFzZ{VCkXK%Lx`Uu$1K
z$xo4R#&%UHlsXqb=#=_YpP*j*FM9n>pYLN9mTRA%KTG>FP$w<2dc1UAJ6{IsB;J=L
za>OwrpNryO$iMeN{=N5~aZ=Z5@pyNgDy4xs>9NH0=uyQ$oeb2;&4DUO=1obJoj@ZT
zL$=J(70HQ3F0|MDpXw!{L$>zO$5;x~Nw0V|hB|pw`A+L(I0x!vpiTzrWYWCp89LZG
zF!!SVQBfz)t9}x--ifeY>VB>S>SVUZEvS>!%eVTdUkY#XqI%%=3bh`;4B{l!|EO0>
z<;n}1jiWXVAxiY?R<_lvq*moc^#X!Ls*pKUX)swe)U0}rN82<7`umoiF5#t$g1++v!$Dz%!Yw8aSP?GCL$-yZtCV@^(0
zVl3DGxKJkNVLY+MzUz)MX`IzUl_k1kLYb^l%h0ZtZ8*wgYbDOIm4q`nw=Q(jY#xV&
zKBwZayPqr2Pu1-Iau_|iR<=x{eMtq!r}PT>Q{#j0hcN|i$W!?AGrioB5BBdJ|CUl8
zsjv=`Wg8YjK5z3>I!ffa7zBCCUlMyD@28vrwC6jw9NQpo|FqCAuS#Dqo4k7I81evk
z1!qJ@tKWDh%LJ?@({+E-tCY8NR&@7DRR29KRcizm#*&pfEfmaLcbzsGW^F7(yOXp^+G|JT%d6KBkhilHEQ+Mhkt#7Js
zO$IW&@P6ZF7hPn%4)sG1Il86I3F(1n!Vy)*=al;M{VeV8E%kf6=$6YUU<_N4F?uZn
zVn9xjj&{iEmUK4O+JnwYec7!zt@*m(w|S$Lr`0-@jV
z6EYiT>(yQ9$JCbML9X^U9Dm49`FQ`w5h2YM2ixwves~4H4$0;Ie8$^njL_;(AFXr9
zeWXJt43G^$vcIIitvG$YR#W}>ylQ>Tozon&Mq4{(!s*2@AzSxnPCq^$P&8|Owauw6
zy`h5Z;u_ZMa`*iBQ6YzVXdC}@+?##*R@4QBUGC`ZTKB4rb8Kg(drP|mA8}Sd>cFoc
zMDninJ2cD9&sHF|$nOCgl2u!x!;mJc(Ue^K^`k1t+XJ0avBO!VX-~b`wl4pWrQ^Fg
zX4{k&u&w?WZsVA&oTp!=`$*IT^{&eOAu3uQ8}hu)xKQkQ^*fza)3=~K=H=LW%vbbX&t@5d1%R2Er7U5xcE_&N#5R+ZQ
zY&fBQ(0jDAsn>m*vY$^w1`U2TJ6CxGVJhxWTKGgg!Bu-N8^b+meOnd!ShCuI5t+E=
z>%@pe&kj*Wt_OxrL4gsOyy!#n($~=+$-C(1C*WxzVzH;Z1oyK93LcgBV^y7Qyozjo
znhJE$#4mv^nkc3JEM!iilaQ++S4;i~?g;J(l%J9((yQQ(;Ev#q#1G}O;Ev#q;Es|f
z(yQQ(;Ev#q#1G}O;Ev#qcJ9CWBMr1#8tUNb*CO}_Oa#O|DZb(+c~A&$NEY%wWJ<$U_`FRdw~&I%0Tm-{iHe~s~CG;qbpHt?NjX>5g3uHInCv+
zB+X>EOW$-iMoWFrrlpP(wJ_Hw$@X_DX{U!8Rgr}q7?GUfTyNZ#rrHuN{hiNetM-+C
zAWgngG~IuhzyKKJfndT310_BB;IlK3ijP?Nuj%+W#h068^XrEG8nPQjp5*U&1
zR4d`VEU6N4v5$~Bw63NTo!9sFI0JeW~|P674lG
zBFFb8N0Hs>PCxq#JZBzVye%IbKAZ>g##qG5{Is`pGU3+q1O45S718dS3yjFXh^$p-
z@kquE)o$@RpZNO%BhptUJ@)INS``|s49@<~#huh^-S7TVA>*0kHtT4Wa)xV8nKvt~
zziH5fCw@oOEUA$}>wB|m?)aGdRg0{0=u>H&Z?xO&bE^6d?$kON&Vdmb7?FVy>7188
z;;DAon)^hNAD_D1CHSsiWv*6*%p}ElU1e@c4A=9zt=OTDB~{S^O@b=yjDz}sR0aH2
zkJt3~g3f0<`p+fRXs7Zbf2m?@sDM}WNl*d*U7xHE2Wm4;Ruqg`&_o-7?O;rrDA8L(345F!x!tILFO1Av{ly;`HG`ghcO^q+glee
zAm0U(4?Z?%Vjku|-o|MmIAZZI;yh!03>z>I9Pf9?VxZ3*D(CFCBds$R1+RaO%~9-X
zC)s8AW$kr#u|Lr1RwI78E;KwlY@7FM+&59f-TLRP)4^~Ak)bbl{iHo6f7?0RPOpm#h@hq<#`G3Rqo{CFkrs_jMJ2*zpPfbaWE#*W>TgrHyRpyy5g=pUQW{
zEF3iQ(q>kokFRY$pQ4@w<)!LDC*ur)@>!@FBnIKE0_38hIAaJG9Y6|IqSO
zOMQGs-!X56$Np!qu>!+!75@V-zr`8?!_iPsu+(ziZ?QJk^~pE|=N3#Us~BA==f=jz
zdnb$GNW5W*t=oPo_&s4bUe|f;WM+*A6Ca1i_EygTeTy6#81{42ZSd2G+LbYbR$N6^
zABq5v{Ho5>%zF6j-1nptN5Kbe$cp(Xs)kCKqCNfohT=Ts-0;1RV>lXaBmM*Y1MbtB
zJD>6P)9B3`-tVJz4pXaTJA-xs$C25z>`j`>R6l86t9{L#(;RF?=5tX$=Q|#xFVGL$
z<}{}tpU+TVZF8zcEo~-965_>BS!*oxp=^gIx@lEwJ&nKKL)-YLW75oq$TvRV%bf-%
z-q%WPHlOL`e*ZmSI1&?Q4g2~7n`F$N_pgBAxUM{A
zhsSUtotlRF8KR;*1I6g*V|S|BJJK&^JC5bNTvSvPewml?lB|WY<=ngWLL(si=Y^u3
zzjbo49vLkoEMXnMnZ6n%WMRg6W;I|(Gm
zcgh$#P%hsaWqXldUPHiJt?f$v(N{XzhY%R`$3LV0ojJl5;S;<*r@yRHAUV2ymmZyGb80F1Gg0Qh
zDYuM#%RgllP=0opj`Q~OPqkCZ1MU8vD8usm_Oh|$)R@BTu}Z^RA?&edbWo_O;@e&y-*Ja)E5C
zQBNQ_-jv38C_cU^`F?W-7h4T;wKynNuN6tW0XymL*g~3Dp8a7A^0%agM29jfL3*}N~s$NncIVN{Jt!z{p_>G(i$B(IFKWgt1S4(~IX9pi`jly|E;&D#n?
zmA5zkQ++(p;Zg)iK
z4>Ql@+`Y-UCy*T7C!hTA`938d`0|)|yO;Q`EP`8#l?9UH=1A3xKyrMksvyHP%+2Fe
zq8b?z8YjrF0m+dZ=V4Tc#M#4@Q3A^`up9%+(K#i5L?1eKM(#&Ng8Xr?96@TNUg2MK
zvc9hKui^Dwm(-w+X<#{~Jtk{(E|%j(tttM5^WEBhDJ(~-=HaoR?&B0%WLX1ty22#Y
zw7wNZT+pxK%~7Y*>q^eUDxB`cD-U`dODbPqRFCwV*UucPK)Cst1MkQuck)P%)Geig
z?bV|Zx71-Bt6GZxwbt^`I`nOrKypmDMmcJhRhEV;=b$68+AiVyNRF+PTGo6{NRDm$
zT(;s!j;(b&%T{tE$GH`ylT`FbE%IV2Qu{R^Ij%}}cs`IE4b{(lIDbqeN6t#Cm||o1
zKLgA0B(WUXpJhm9?G<;a091b&w=V#@;{bZpgKO?_@B>o${FLgDsmSQ`$wYO7s`QtzVTPlFV^l!VeR~$a2?Ng
zGhbrmw|hJS+3}6!++KI{l&YDz6k{KV7_=howW3IRG;FoMp}0>edGWax!CJeZ
zvo=_DQyzsp1~T4$8hyQw);Z*N9)@>@eW4PI`|5`M8)eiZ&1I^eG_TdZ=FVvj;v#%*
zJ5Mx`SnEP$
z`SxgM=<&SfGL2RZ)-@w>yUejFr~C8$@tC;bNfHfazmg0ZnrDiMo1G1s9r55#x(qlK|sjE@wyRHTZbwB1|Izp$z
zHDSm6s!J@cKy_rjhx1d%);mxgQ@rMDMRmk-7}6Ta|2>?$9H@@y`9O7aTJcA_$&%as
zfy|XKWdeK1>16dWC@0ZLpsNJBO35L?9l;&&L|7dqU)ZbQj^K{qjv8n1zu=DGj^K{q
zjyRQ*zY}MxI9rvnAoOGC$3KF8BszDxsE$O**NGYgs$-x!2C8GAIwo|rgD#W$y-um%
zkL)Ycg=~UlHR&7y>Hfw|;7XiPjcRKK+Ujdq@PtwbgNd(tXYpQqnIbu3Te_R7xU
zKNS*}dcM>LOS@I-q4qs_Abknu>$ZOGiU*Lk_odfU52c>TWo(IB5U7ryr15t}*ZcZ$
z&9|#nB|j8=v)zsV(Es0U{3+Xr{1MIsqLPWUGRdQ?Jzd&_dMKU%EVToM|^;7lt
z(UAptuj2#HT7RZJGpoFPpB&xoq3C008qZDLx97b*QOVdRPkP*rDFrrUIqElh
zO=kM^i0Wu1xvvAikF{nN8#kG`#ltP~3tFA>#@(52^}wpN`Uv(qU(Ki8J7At27Cf?K
z=L6M|6O*5pR_&hQ6HLiLXf5-I>`Dgu^MBJ0|4HrV{NR*@ulB7t#CO@w|NG)1s$$TB
zS$4N%Rc_DX>AdIs`Ii_)sYh0Qn9eul=j#8hc?SQXyPVv0Z}|o*d3?Bf<^JC9blYw1
z?M>|`dvzfG<1d!7A$@}o^K<9p{BP}-?Wf^H`z(g32^>qS3UsJ8xZ&{2;GU=RAyR@9
zBDO8#*i-L)1jMmEbBwdR3IhrXT5YVNewFh%or>hyZN)K~gP=He$ll$H%tN2)D=`JCi%{(OCDcv~{y
z?q|s~#$TsDg1Y5+MX|Si@$jB($XELNt5&Og?YuHJyYD+*_Gs0dZw!rQj>Wp$$@YZg
zHmAQ@>}GqTh9?@Rj>DeEk_NC!9!mP-AHr5CUs1Il`3TnfE76o$F}_!IpVheEv%U9q
zdRwI!)6B`TFduC@o?hkdz)*b==mvuhyvXog%ZYfDP!aIO
zSsvA%^!0nmHN5T#SrF@WUpnf2m#z9j@3q&hpX%d5*Z!C8<&LZosE1mke^cGY`72x;LJ9S3j*hsj
zuVwW^pUQS&uIzJO50lzw>*P2Gs$-x!2CAb=_WTho>=Hcpt|FWMIH-=-J3Plr`g>85
z0#rxPWT-a=s!gCeraf*$bz~*20_0V#<9KDeynddaQp_6m8h2>S9ceUT7D)4ldUa8|
zb$)gqW&PJO(p9SkNH12)63j?$%1~$Y%i}sy!;&h__<#QxxQ-XJDpbk6)QuVKJ-4!K
zts<(|^rYHdt>vK_jD0I6a2=;`9p|7VvDz-<`?!v+lv-AK&2b%D_PJ~&;X1Ze>?~W!
zaUJ3Gyngi%y(PKmv05a?Nn_jOI@scT``yXuQzs?KTluG?CRrL!w2ypZHChPA)+>&J
z)#$r_OEUNGU8~65T(S_1)$1U=)eQK|`%c&WR
zxzj{-1WS9#Yy;J?-8;4=?+KAdYM$eZW8LR@r;z?;tJiUHcz?(jc;m=YbRCo9Pot|o
z$b)4*KW@=o)DNwVS(n(1-Wr%F%)@9Iob>T;Cyh>)RLXnH>uaCw+Nf*G(kn$9c;NDr
zaX!DAuL_HQ3B|Yb_a7hCku%wnwF*?nvPQh$?S(gLbe;4|;t%3dWccQsanhD=ZCrus
z7^sec>Iip|QT0L^^f%qC7)KYhn+-(W0@ZPEa<%N<0J4v$$ll7DeW(AM^)xq+T3%Yp{
zwOBCaSlim7pE}Mb?+l-HR?i3XQ5`|JT4L?CpA0x@VMTB+=y*;E{dwD|2v6iM-3jTX
z?9M$=O#MW(4D+Ua-pm&CHT=lzBhfCq3t)K^tC=k0yPd4%{PrL@3V&0(ss7Aa`A%O+
zTD_FiGQ=_NfKk=5jDYPZ%N4E8eS2gaK3&U}F@9h)HT%7P#%@JgWV~ioUh39|e#TDV
zdBmW#FTPvvZ^#Q@M)mN-kE1%W%b*}$kZ*~IRV&usSo=Qup*~vYkWO>kC1y<9t@|^lAD_=qUu|=$#W0~^TEDCrT+!ZK)*iLu
zhuTbPt>@#f_0Tr{xsh;YbL}&w;b&{3Hk;3MZ$3N6bR-Mol6nJ!6*~8Rhi19?+5d<9
zL^hs2rX!LDng~oscB8~}9Fmq$*y@U*&DeSO@!B4Ll-%d6P?M60p6Zf+h>r4{6z|2n
zUZ!D6?aaLT`6<`C{FDo#-|_61WGR$w=H9gzqU3a@AJ+AytyQ+i7;nleKwEG1OO{sM
z<{GXFd%RI5*5>lDSX+tf$^Sf5wlJr_lmq)W&2|d4wX`L$NkPLj>ng<(#-(1l{+6YC
zpuV>>8vHT!^&ZYp9b50fbxfS|wc#Ob#kV5Lh^O=N4s5;
zTg8ESm@3K#=AqNc>SIt&q7ytAcsA01f^t?V#{UzPljtNUC$yFGg*^s$1b4s_Vat_#
z5!}&_f`sk}-BI#L=#J1Gp*u>RNUwrBf;)mc58Jm5F_A=ia!
zx8y978BFcZb_%7w!=@~kE#(&{y7ziKR&AF$u^_NMThu;COSk031s}=K3bzy^1i5WT
zy?&=(5Krlwd>Jyj0@u-3DsUbDBC5`*F=35SqaLh^BrV#hKX4tF$mcvuCU6}ei2@TU
zC`eQflyP}a(hTfr!>U5c!OKXwbumLhV!WU`i;mA#m)bd>1g;}_#c7=^L)P)B^NPXk
z66C(5(>-ZWbl79<{CE1hicc1}j$p%h&8)N&H3Yu)JqTRK)tvd#r&@X(?gA_uq_W|U2;?V_23N0v5l6DB-!faYX76V(J)so9p`Gh
z-UwXBy+R`0*1dj^dN>PtRe5eraN}}UIv1p?4_z%%PAQy>@+v<=D2e4gP{)TTX(8vH
zby_XG6|1;Z^V$wv$5s4`GdjE8-uTaM*Ato~R8m96*T%N$7cyK^Q11-a
z^jleq;A3)+>++Gu1z$_TH*MDft9H*Y|ChKr$s=N`Xx@?aF~nZUBNMoeeR;SmE>Cy#
z(arr&)cHM0%xU>v?r-2aA`b%Bk-EqyL4ASi=$`UTS$1#rGY9*xGJlLOb0ySKaY
znQ==wa2@ARW^O$tl$~9jEr}Ij!K~BD)!8_mL$=wN=drYb*!jS93|z-IqJuW7sh!qJ
zl*GB1h-YQxzmx1Cs)Pgr6VvpC+jYl7=hGt&T*uwc^YU8u_!LFF?M`*z^HTltiO!X;
zwR7w2n76o28>`X{|7zem_WjbyGaa~&cP05A>IX}3N5Ad?AC7#-TYjg
zhgvLTtx&lJKabTz30%iS`Kwh=OXSPIbsWNVq=Mf%InIIW7`Tps>zE`_dd966udkNJ
zwUFL_99+k9is4a1@-NDkKKxDyd%6GwSL(#*($Vn!RyD8AZ;G)IWIAW#CeWo(kvGrvv5rj!r(rxrjzHt7+^W
zDk(B&Z@X4$l$O|Su%N)6y54b7%j(oxP3uu_d8i^|AUx(Wy4<}SS;#10E@Bd^?KIFw
zcxy8NB2p&GI!wa?!l
zaXI)Vcro+3*JpIjI-__#QM8xc=g6Z36W~Ce;h*&$@As`4;w1Qv4atmI)av)%&|QnC
z8~>y4o22&f<++1(*|V%FKl?X~NrjB=Bgf>qWOMOe^3juZLjG}D3rB7I)6Bg!>bFyO
z9j7(vn0%*Gw&QR$dLPTs{?uA#X9Gc!_+%Zm013gV8?VQ?BMm(y)oSaTDkYMqh>zg?
z#?3C~2n|u!o*u9O%p+l*F_3W#>&LwyHGZr0=lfZrevuz#RqqX}i`mvu2CdC6b+#JA
z;`1D?1C5m%Ax`J{I7>M+*4hK{=qpJ$R-D#+U3m58X!bAk?kXpbwd$>utDBGTj40(=
zcV;^)ikZ_^9aYWRoIhWaD31A7j>zd`X>0Y_&YdUod#Vh8mm?H67p)O=5wsN1%%M5X
z#eEC}N&J-`#1G)8ptJY%%5r~Sk5cZmerfX%I(_zIuy|RJmw_PZE0i8{3%V|qOmih!
zG`(xd-YBI>$^YxLTbFgTSjwj5V{L1Teoh)e@}f>wj57E8_`V*$UjZxP_kkb@4%^Ah
z8%r$^B==|PM)XCz9bX^6Q$D*s2ic6Kd-M4jk|eQxDEx94aR=qsaDJ`z8ntg`T>E=Lk|bY%
zRczJb$dxvq6_WQrvYc}b5^mM2RUd;(LiaoR>;9){)BJX;v+3t1U>CkphQlz*BWp4w
zHRtmER3A=HL;VbKOP>GYGcoViTqMcMvKGl&A{Pc4#cXFa@*rtfhuW{wc-5OF?&ByB@^e|l-$8rf#)veRt@nIsn{3Pt1?GAb8{sxFkhOb1H#j6EvQGE@>CaSIx`F-5AepY{Xlrj9RG8x*(_p3(2
zO<3-Jq-t&@PD6XEfhxHKwJaga1gd19N+KmbiPNv>*KS>c|G?{W`paF`J;|p1j(=b3
zKNmax{l1e7AG-hUDa)7q5Wd&W!!Eg2@!{+~oYzdEE;3`aN~rDqtYVQpmPL7I<4678
z?dEi4!RY6pNd23nJN1tKlu16zBC8>F0cxj^ETyw`@_*3JuoDw(`WxxHUQ_VYSjNwU{I)xHOTD!H1YU+zje
zhvoXZMYhbb7p%)VCnt=4~Aeu;07tOM>}_VJzY-UX`U1FcY?N;<{-
zAS#(dWp(S~zeI6XyAWJwVpY4cXQ-;X+ue~4R7t8j*(q>eQVkEP-JJwE9Z%w%wXe&;
zE8_Kit@vJd^KnlSbGP?;PTPShiN=|ScN(aYe-Vuh#RrBlxB3>?98626-6g%P%BntI
zwT(4UC8sb1OS^-8TV2~T@@jBP94QCZVBhK(+QGA(ofoK*?NnI$>`xXS)-fR2=|Ghn
z$7J2n8oiNDZugv}Na=m?RzF^POT2bV^-sumIjfWE-32`as$`%_j#t>&luWl8;&=wf
zkSiZ_HB0xqzvRSD<1Kl-B*$}_>LsB+w)WAlgc_)lzOz{T{afXwfapbTiq*$6?Bs8>dVj9AmezGgF#xm`K9+Y!(QrFa<@Mq~3!!2alJ=p#Ma4G9m87n!;T~L8YxG5{wN=b}^Ap!}
zUsMFWCx0E)^ycALmK9>B>rOH&DqDhXNX^OXdh}Y8^J)=J_u;h&y|yK@qW16=&Fs8-
z^QyE%H3^fYb4Qfs)xu5+Q)iM2mImPMox)Vq;0OXGS
zR)2L&$<}=?TX9Uu)=HjbD+yC_ezobes~)puUuxO2dG>&1O5`|?W!?JSUM0`7qT%24
zJ1nWwINVeJr7UE$4N9$Lfp*uH?z$N`imh-ygTn
z$M&hc{x13)o5yUB>AKO#fZOJ8rWi
zRLQHdrLp0m(P6tOY17j}mE`ofgx=e^+fFj;a&@_4oOW}cK#3+fY{itaVJ_|?XOAUo
zg?_7_3y`D8(7=6kjgmj+o*%yhke_Kz+WPge<>T6vUOAM-JO?B3a_67GcVN6wJHMqq
z$}?4t>N$kS61b1t&N`0s&lnEkR(EnIe+&Od;66gJ<*9OP^~|3UxQ}xYB=O1;?ZcC5
zlBSO%IlrZZgtDplBR9fJRLXfRZFf1e&-8t$f1Q@@s)ZcWu|G2?tN$4+t-yWkZ~Qp!
zqhZ!T<6zg}O>3FYc>8Jew7uF#>l~(5i#FHNT&+FB7tZ9dbz`RptnPAq~rBX_vn8*S@2G|LnZ#}*;afxl#?Z0h+t
z`3BzWo_LCsKkuXscgsGAdT4u7beP9Ju$=msUH!Ii$?~>*DLhM@4_?U2_Su_K@|+ag?T?}(PJQ#S9?49(+DS4nOQ*76lI?F+wCCC6
z9<~=611HcIqU7H?YOVRKYSj9!yBB{b`k#yQcv+MS@ArAZ_+c1RZi(G>S*ru@t$JSj
zz4NKz7*pbYc<@km2i6Dqznp8C%`~T%_5?TdSvAX;O7R4fLP+4%73!})nQ`Evy_ZaQ
z+wEOlN(^VLj!B8Yc}$%1wcXX*
z8ShlJqk=(ub-ciN44g;HBRW*3Si;jAs!sY!xhEf#J@Q(gCXeJpm(B7{ugET?Zc&M^
zb5*a&qVek0?G*Y@RdP3FxooMLMWTDJ%VYI#KWseJh+ZkDXi58E&fQWL9#!8TC|mBa
z`ns*xV8Lv4Xmoed%_~TfR
zclG;7+7dl^uhW#C*ZQo}{N(ty?~~KdLs9FFs0j@`R5QQ5^%~Y5H#JJUquQt1`|_1}
ze8g?vYn|XgX7o`!&MHCI?Ja{%kKJMzb2&ymH#R{I#PV9w@pk$Ojh3eql{zl
zGtAQZ)YYCN_ZxoPQ(t6=GowvqHSTLAkzVaHvYV!Fy3t$axuZ?_{m^-6#HAgY-}-MK
zQ=X9+IFG&``I;W*YCGQt&f{Kpcg!VH;5-J-BUtzKvv~_XW#Bvp&LgoXi$Dd=;}EXc
zEBS?pnI&AeyqXxN{X^M0+~MSwI=8PJYpMKP{lB|vx%@W%+`xHEt6kcEw>#_niB|oY
z>XCDU5L*#!e4K&v7&wnP#RSeH*mYz4mHgz#i~bupk3+Jt
zly5a;x$TV_!YGvjUUjGU_p%4fhQvpCTc`M2+U4`QDZUN@Y2Z8t&Lf(dh~cih&D6g5
zLH?wtqA+f<|DxA;yXR}~GD>-0cGnYq-}UvFRH|{sGQ7n$e9q(RH*g-8qKyX5BX;xM
z&T2MZEIEa<4F1*U`oUkk#9zN7kM_gP1H3%i6F85aBbv_Upf|bCHTl3(t_D8$sanUm
z)NJ>E6W_U|h(+K$ZdU56q#fJTP6Wh`Lv@4aqBCMmhJVRjZi|e0
zy`14H>E_K!>u>o%+wv1o8~1e)$+9}A9-$;JdVE*QYVhMYk5mp?C&xK(9xZP8t7IPZ
zz)6xb3ia9!6a@x<=)G2WiV{){9na-r@6(gdx
z7kYm#vPBw`OYyvx*7Ug2_scqbw>2Iju-r9a)jl=P^NzlSmN}4BZgrc{ILqf(Z;$A@
zMT$8CP}|vT4f>f=@jjnFyZKxr{#ASVN5y%(*5$8IN6>HyF9pt{cGEQ|S)kDqAX8tmz>pFUePn^Tu#-u%PZ=Y{5{swg{~)d4rG)$b@a;mZPOJe;Rb42
zQe%s{qwO_er~BwvwFFTTJC*SOcD|uebOk8hKzcxtNuw{RwSpba;^4V
zS^u|`oWw!js|CB4RBv}^4f=LWAUr0Vqg=Wh!s9%wB-Yybzr=T>0(cvZ_V<0e(`Rja
zT(;rpj;*yj%T^M)RduYk
zXka^@EVd(3yT3o_oHShDv%Tgn*sVx^cpJ;l;_i0tFX_Wh`eRjh%k%nNWJi#-m&`Sg
z9p|2ZlhwGT$PcG_>YwlF9LKuPJ4r(yb_!p`yq>0v(iYFH6ta##$d<*ofc{dS}Y6
zB;Uual~jqDcqvxK__vcrKP_ZOto9d}K$E^OmetAUonK!{=ia;-~P#lWs};
zQS+6ZwB=hHS0For_<`0o?2U1s>gs-$Xk7Stp%J*ucf5x8<~#AFC}0emkTH^L7|4#?
zEVA8UuM&Tct)6M^Kz5vmqR46mvSW_^h@}R2V*J8ngG?Dsbm@hQCrc;d&A
z9q|ufA469}3%>-i<4_;1bI5NZ)ldrI3*r@*G?%M-<`F{ruleW7y-8~|)eqwy>TB+t
z=At`7WyF-sV}smlp|>`4$DzL3=2VMbvRa(O@K{~dkHw9b%%s-3@5fLNZR4MgOf#Er
zH5=mImqlB6pz*#ena^}@K08Bqgc^u`^9a%-QF!ZjXqL&NiM{^&KzD?qS;ai2;-}`Z
z*b00%oK?j)`(F9``p-d^TlKnIr`1o?$KbJgWXJfvj(Pd}(s&Aa(fDLNi9FSZ(^IQd
z&T~$T6FX?ubM#qomtMds4G}$t`xzwVlg7=OxcbD}8tDRK2Y--cq&)h1`^9
zhqm78ms~CA?2+b{W0LyH)hXsUBTdMZKzGExS|TL^-7#^_P0{vCMUCEwmhlW)rppkY
zBpIBv#x1pgwSrd>X`0^}XLshs#AvyX@kw45GK8$ox1UG&qxwRIdBzqauJPh(RNhDL
zk7Jr7&>dO*KzDRn@khJSlAizq-7(<