R version 4.6.0 beta (2026-04-15 r89885 ucrt) -- "Because it was There" Copyright (C) 2026 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > #! /usr/bin/env Rscript > ## This runs testme test script inst/testme/test-utils.R > ## Don't edit - it was autogenerated by inst/testme/deploy.R > parallelly:::testme("utils") Test 'utils' ... > message("*** utils ...") *** utils ... > message("*** hpaste() ...") *** hpaste() ... > x <- 1:6 > y <- 10:1 > z <- LETTERS[x] > printf("x = %s.\n", hpaste(x)) x = 1, 2, 3, 4, 5, 6. > printf("x = %s.\n", hpaste(x, maxHead = 2)) x = 1, 2, ..., 6. > printf("x = %s.\n", hpaste(x, maxHead = 3)) x = 1, 2, 3, ..., 6. > printf("x = %s.\n", hpaste(x, maxHead = 4)) x = 1, 2, 3, 4, 5, 6. > printf("x = %s.\n", hpaste(x, maxHead = 1, maxTail = 2)) x = 1, ..., 5, 6. > printf("y = %s.\n", hpaste(y, maxHead = Inf)) y = 10, 9, 8, 7, 6, 5, 4, 3, 2, 1. > printf("y = %s.\n", paste(y, collapse = ", ")) y = 10, 9, 8, 7, 6, 5, 4, 3, 2, 1. > printf("x = %s.\n", hpaste(x, lastCollapse = " and ")) x = 1, 2, 3, 4, 5 and 6. > stopifnot(all(hpaste(x, collapse = NULL) == x)) > stopifnot(identical(hpaste(character(0)), character(0))) > message("*** hpaste() ... DONE") *** hpaste() ... DONE > message("*** mdebug() ...") *** mdebug() ... > mdebug("Hello #", 1) NULL > mdebugf("Hello #%d", 1) NULL > options(parallelly.debug = TRUE) > mdebug("Hello #", 2) [22:42:16.469] Hello #2 > mdebugf("Hello #%d", 2) [22:42:16.470] Hello #2 > options(parallelly.debug = FALSE) > mdebug("Hello #", 3) NULL > mdebugf("Hello #%d", 3) NULL > message("*** mdebug() ... DONE") *** mdebug() ... DONE > message("*** pid_exists() ...") *** pid_exists() ... > options(parallelly.debug = TRUE) > pid <- Sys.getpid() > printf("Current PID: %d\n", pid) Current PID: 84224 > exists <- pid_exists(pid) [22:42:16.472] Attempting to find a working pid_exists_*() function ... [22:42:16.770] Call: tasklist [22:42:16.771] [1] "" [22:42:16.771] [2] "Abbildname PID Sitzungsname Sitz.-Nr. Speichernutzung" [22:42:16.771] [3] "========================= ======== ================ =========== ===============" [22:42:16.771] [4] "System Idle Process 0 Services 0 8 K" [22:42:16.771] [5] "System 4 Services 0 148 K" [22:42:16.771] [6] "Registry 1064 Services 0 111.864 K" [22:42:16.771] [7] "smss.exe 1904 Services 0 1.292 K" [22:42:16.771] [8] "csrss.exe 2000 Services 0 6.880 K" [22:42:16.771] [9] "wininit.exe 1956 Services 0 7.316 K" [22:42:16.771] [10] "csrss.exe 2044 Console 1 6.076 K" [22:42:16.771] [11] "services.exe 2104 Services 0 16.172 K" [22:42:16.771] [12] "winlogon.exe 2112 Console 1 10.580 K" [22:42:16.771] [13] "lsass.exe 2168 Services 0 87.292 K" [22:42:16.771] [14] "svchost.exe 2288 Services 0 33.984 K" [22:42:16.771] [15] "fontdrvhost.exe 2316 Services 0 4.528 K" [22:42:16.771] [16] "svchost.exe 2372 Services 0 52.816 K" [22:42:16.771] [17] "svchost.exe 2416 Services 0 13.220 K" [22:42:16.771] [18] "fontdrvhost.exe 2476 Console 1 4.388 K" [22:42:16.771] [19] "svchost.exe 2552 Services 0 44.472 K" [22:42:16.771] [20] "svchost.exe 2580 Services 0 8.288 K" [22:42:16.771] [21] "svchost.exe 2584 Services 0 9.656 K" [22:42:16.771] [22] "svchost.exe 2592 Services 0 5.740 K" [22:42:16.771] [23] "svchost.exe 2676 Services 0 9.088 K" [22:42:16.771] [24] "svchost.exe 2724 Services 0 11.788 K" [22:42:16.771] [25] "svchost.exe 2736 Services 0 10.656 K" [22:42:16.771] [26] "svchost.exe 2744 Services 0 12.548 K" [22:42:16.771] [27] "svchost.exe 2896 Services 0 22.504 K" [22:42:16.771] [28] "svchost.exe 2904 Services 0 6.232 K" [22:42:16.771] [29] "svchost.exe 2940 Services 0 21.612 K" [22:42:16.771] [30] "svchost.exe 1948 Services 0 13.944 K" [22:42:16.771] [31] "svchost.exe 2388 Services 0 21.052 K" [22:42:16.771] [32] "LogonUI.exe 1888 Console 1 48.860 K" [22:42:16.771] [33] "svchost.exe 3076 Services 0 12.052 K" [22:42:16.771] [34] "svchost.exe 3100 Services 0 7.892 K" [22:42:16.771] [35] "svchost.exe 3132 Services 0 19.160 K" [22:42:16.771] [36] "dwm.exe 3164 Console 1 45.620 K" [22:42:16.771] [37] "svchost.exe 3248 Services 0 11.852 K" [22:42:16.771] [38] "svchost.exe 3300 Services 0 6.276 K" [22:42:16.771] [39] "svchost.exe 3304 Services 0 14.832 K" [22:42:16.771] [40] "svchost.exe 3316 Services 0 8.608 K" [22:42:16.771] [41] "svchost.exe 3524 Services 0 9.092 K" [22:42:16.771] [42] "svchost.exe 3708 Services 0 9.652 K" [22:42:16.771] [43] "svchost.exe 3732 Services 0 10.260 K" [22:42:16.771] [44] "svchost.exe 3784 Services 0 14.024 K" [22:42:16.771] [45] "svchost.exe 3856 Services 0 7.880 K" [22:42:16.771] [46] "svchost.exe 3972 Services 0 9.292 K" [22:42:16.771] [47] "svchost.exe 4184 Services 0 8.200 K" [22:42:16.771] [48] "svchost.exe 4228 Services 0 9.740 K" [22:42:16.771] [49] "WUDFHost.exe 4280 Services 0 9.296 K" [22:42:16.771] [50] "svchost.exe 4296 Services 0 10.276 K" [22:42:16.771] [51] "spoolsv.exe 4444 Services 0 27.480 K" [22:42:16.771] [52] "svchost.exe 4552 Services 0 7.056 K" [22:42:16.771] [53] "svchost.exe 4560 Services 0 39.516 K" [22:42:16.771] [54] "cvfwd.exe 4568 Services 0 26.588 K" [22:42:16.771] [55] "svchost.exe 4576 Services 0 23.804 K" [22:42:16.771] [56] "IpOverUsbSvc.exe 4584 Services 0 15.528 K" [22:42:16.771] [57] "svchost.exe 4592 Services 0 8.064 K" [22:42:16.771] [58] "svchost.exe 4628 Services 0 5.916 K" [22:42:16.771] [59] "svchost.exe 4644 Services 0 30.476 K" [22:42:16.771] [60] "svchost.exe 4652 Services 0 14.980 K" [22:42:16.771] [61] "svchost.exe 4664 Services 0 12.120 K" [22:42:16.771] [62] "svchost.exe 4672 Services 0 7.632 K" [22:42:16.771] [63] "svchost.exe 5124 Services 0 10.172 K" [22:42:16.771] [64] "cvd.exe 5144 Services 0 323.756 K" [22:42:16.771] [65] "svchost.exe 5216 Services 0 14.172 K" [22:42:16.771] [66] "AggregatorHost.exe 6604 Services 0 11.064 K" [22:42:16.771] [67] "svchost.exe 8184 Services 0 8.048 K" [22:42:16.771] [68] "ClMgrS.exe 6616 Services 0 48.616 K" [22:42:16.771] [69] "dllhost.exe 8248 Services 0 13.760 K" [22:42:16.771] [70] "svchost.exe 8300 Services 0 7.664 K" [22:42:16.771] [71] "WmiPrvSE.exe 9132 Services 0 73.544 K" [22:42:16.771] [72] "svchost.exe 10552 Services 0 17.532 K" [22:42:16.771] [73] "svchost.exe 4192 Services 0 14.256 K" [22:42:16.771] [74] "svchost.exe 4624 Services 0 38.456 K" [22:42:16.771] [75] "svchost.exe 4752 Services 0 7.924 K" [22:42:16.771] [76] "svchost.exe 4548 Services 0 13.436 K" [22:42:16.771] [77] "msdtc.exe 8824 Services 0 11.264 K" [22:42:16.771] [78] "svchost.exe 836 Services 0 24.136 K" [22:42:16.771] [79] "svchost.exe 4828 Services 0 13.472 K" [22:42:16.771] [80] "csrss.exe 2304 2 13.092 K" [22:42:16.771] [81] "winlogon.exe 2328 2 10.980 K" [22:42:16.771] [82] "fontdrvhost.exe 2140 2 9.448 K" [22:42:16.771] [83] "dwm.exe 3428 2 41.288 K" [22:42:16.771] [84] "svchost.exe 8696 Services 0 16.804 K" [22:42:16.771] [85] "rdpclip.exe 3988 2 11.996 K" [22:42:16.771] [86] "svchost.exe 8760 2 17.540 K" [22:42:16.771] [87] "svchost.exe 8168 2 28.364 K" [22:42:16.771] [88] "sihost.exe 3000 2 27.732 K" [22:42:16.771] [89] "svchost.exe 3828 Services 0 16.900 K" [22:42:16.771] [90] "svchost.exe 4356 Services 0 7.896 K" [22:42:16.771] [91] "svchost.exe 8440 Services 0 11.036 K" [22:42:16.771] [92] "ctfmon.exe 4820 2 20.776 K" [22:42:16.771] [93] "taskhostw.exe 3152 2 15.324 K" [22:42:16.771] [94] "explorer.exe 11544 2 168.388 K" [22:42:16.771] [95] "csrss.exe 11788 3 10.272 K" [22:42:16.771] [96] "winlogon.exe 11840 3 11.184 K" [22:42:16.771] [97] "StartMenuExperienceHost.e 11980 2 64.092 K" [22:42:16.771] [98] "RuntimeBroker.exe 12064 2 22.932 K" [22:42:16.771] [99] "fontdrvhost.exe 12196 3 14.044 K" [22:42:16.771] [100] "dwm.exe 11884 3 52.036 K" [22:42:16.771] [101] "SearchApp.exe 12428 2 167.160 K" [22:42:16.771] [102] "RuntimeBroker.exe 12636 2 55.472 K" [22:42:16.771] [103] "rdpclip.exe 12788 3 13.824 K" [22:42:16.771] [104] "sihost.exe 12836 3 28.352 K" [22:42:16.771] [105] "svchost.exe 12872 3 17.836 K" [22:42:16.771] [106] "svchost.exe 12920 3 30.392 K" [22:42:16.771] [107] "explorer.exe 13232 3 665.256 K" [22:42:16.771] [108] "taskhostw.exe 11960 3 16.692 K" [22:42:16.771] [109] "RuntimeBroker.exe 13176 2 15.904 K" [22:42:16.771] [110] "StartMenuExperienceHost.e 13104 3 58.316 K" [22:42:16.771] [111] "RuntimeBroker.exe 13348 3 22.424 K" [22:42:16.771] [112] "SearchApp.exe 13428 3 86.596 K" [22:42:16.771] [113] "RuntimeBroker.exe 13652 3 32.000 K" [22:42:16.771] [114] "ctfmon.exe 13792 3 21.460 K" [22:42:16.771] [115] "RuntimeBroker.exe 13932 3 15.784 K" [22:42:16.771] [116] "svchost.exe 13252 Services 0 10.132 K" [22:42:16.771] [117] "svchost.exe 3336 2 17.516 K" [22:42:16.771] [118] "svchost.exe 14464 3 17.396 K" [22:42:16.771] [119] "svchost.exe 11852 Services 0 13.292 K" [22:42:16.771] [120] "svchost.exe 15280 Services 0 22.276 K" [22:42:16.771] [121] "TextInputHost.exe 9672 3 45.324 K" [22:42:16.771] [122] "taskhostw.exe 2424 3 16.184 K" [22:42:16.771] [123] "svchost.exe 22048 Services 0 13.604 K" [22:42:16.771] [124] "svchost.exe 35608 Services 0 7.764 K" [22:42:16.771] [125] "SecurityHealthService.exe 3764 Services 0 12.260 K" [22:42:16.771] [126] "ShellExperienceHost.exe 84468 3 50.532 K" [22:42:16.771] [127] "RuntimeBroker.exe 32988 3 20.128 K" [22:42:16.771] [128] "MpDefenderCoreService.exe 25244 Services 0 38.364 K" [22:42:16.771] [129] "MsMpEng.exe 40528 Services 0 663.768 K" [22:42:16.771] [130] "NisSrv.exe 24492 Services 0 14.604 K" [22:42:16.771] [131] "MusNotifyIcon.exe 19620 2 14.104 K" [22:42:16.771] [132] "TextInputHost.exe 58268 2 44.128 K" [22:42:16.771] [133] "dllhost.exe 40964 2 13.908 K" [22:42:16.771] [134] "LogonUI.exe 27812 3 31.244 K" [22:42:16.771] [135] "explorer.exe 21576 3 196.644 K" [22:42:16.771] [136] "cmd.exe 108564 3 5.388 K" [22:42:16.771] [137] "conhost.exe 85480 3 17.532 K" [22:42:16.771] [138] "R.exe 101452 3 5.480 K" [22:42:16.771] [139] "Rterm.exe 43740 3 177.012 K" [22:42:16.771] [140] "cmd.exe 24744 3 4.576 K" [22:42:16.771] [141] "make.exe 68324 3 134.344 K" [22:42:16.771] [142] "sh.exe 30308 3 8.264 K" [22:42:16.771] [143] "R.exe 23244 3 5.360 K" [22:42:16.771] [144] "cmd.exe 53260 3 4.604 K" [22:42:16.771] [145] "Rterm.exe 100728 3 31.808 K" [22:42:16.771] [146] "cmd.exe 70268 3 4.592 K" [22:42:16.771] [147] "R.exe 36980 3 5.612 K" [22:42:16.771] [148] "cmd.exe 70744 3 4.608 K" [22:42:16.771] [149] "Rterm.exe 29068 3 118.408 K" [22:42:16.771] [150] "Rterm.exe 64412 3 63.748 K" [22:42:16.771] [151] "R.exe 88760 3 5.516 K" [22:42:16.771] [152] "Rterm.exe 23416 3 267.172 K" [22:42:16.771] [153] "mintty.exe 87976 2 17.964 K" [22:42:16.771] [154] "conhost.exe 46672 2 13.348 K" [22:42:16.771] [155] "bash.exe 30772 2 9.980 K" [22:42:16.771] [156] "LogonUI.exe 22296 2 31.268 K" [22:42:16.771] [157] "WmiPrvSE.exe 109392 Services 0 13.416 K" [22:42:16.771] [158] "cmd.exe 66024 3 5.708 K" [22:42:16.771] [159] "conhost.exe 13476 3 17.380 K" [22:42:16.771] [160] "R.exe 103880 3 5.528 K" [22:42:16.771] [161] "Rterm.exe 28512 3 115.696 K" [22:42:16.771] [162] "cmd.exe 35912 3 4.624 K" [22:42:16.771] [163] "make.exe 46664 3 8.372 K" [22:42:16.771] [164] "sh.exe 43912 3 8.336 K" [22:42:16.771] [165] "R.exe 61708 3 5.364 K" [22:42:16.771] [166] "cmd.exe 88080 3 4.628 K" [22:42:16.771] [167] "Rterm.exe 32712 3 22.020 K" [22:42:16.771] [168] "cmd.exe 33836 3 4.596 K" [22:42:16.771] [169] "R.exe 26832 3 5.596 K" [22:42:16.771] [170] "cmd.exe 60968 3 4.616 K" [22:42:16.771] [171] "Rterm.exe 33212 3 296.908 K" [22:42:16.771] [172] "Rterm.exe 3540 3 67.080 K" [22:42:16.771] [173] "WmiPrvSE.exe 65164 Services 0 16.072 K" [22:42:16.771] [174] "R.exe 102208 3 5.580 K" [22:42:16.771] [175] "Rterm.exe 84224 3 77.488 K" [22:42:16.771] [176] "tasklist.exe 20792 3 9.404 K" [22:42:16.776] chr [1:176] "" ... [22:42:16.781] Column widths: [22:42:16.781] [1] "========================= ======== ================ =========== ===============" [22:42:16.782] [,1] [,2] [,3] [,4] [,5] [22:42:16.782] from 1 27 36 53 65 [22:42:16.782] to 25 34 51 63 79 [22:42:16.783] [1] "=========================" "========" [22:42:16.783] [3] "================" "===========" [22:42:16.783] [5] "===============" [22:42:16.785] Trimmed: [22:42:16.786] [,1] [,2] [,3] [,4] [,5] [22:42:16.786] [1,] "System Idle Process" "0" "Services" "0" "8 K" [22:42:16.786] [2,] "System" "4" "Services" "0" "148 K" [22:42:16.786] [3,] "Registry" "1064" "Services" "0" "111.864 K" [22:42:16.786] [4,] "smss.exe" "1904" "Services" "0" "1.292 K" [22:42:16.786] [5,] "csrss.exe" "2000" "Services" "0" "6.880 K" [22:42:16.786] [6,] "wininit.exe" "1956" "Services" "0" "7.316 K" [22:42:16.786] [7,] "csrss.exe" "2044" "Console" "1" "6.076 K" [22:42:16.786] [8,] "services.exe" "2104" "Services" "0" "16.172 K" [22:42:16.786] [9,] "winlogon.exe" "2112" "Console" "1" "10.580 K" [22:42:16.786] [10,] "lsass.exe" "2168" "Services" "0" "87.292 K" [22:42:16.786] [11,] "svchost.exe" "2288" "Services" "0" "33.984 K" [22:42:16.786] [12,] "fontdrvhost.exe" "2316" "Services" "0" "4.528 K" [22:42:16.786] [13,] "svchost.exe" "2372" "Services" "0" "52.816 K" [22:42:16.786] [14,] "svchost.exe" "2416" "Services" "0" "13.220 K" [22:42:16.786] [15,] "fontdrvhost.exe" "2476" "Console" "1" "4.388 K" [22:42:16.786] [16,] "svchost.exe" "2552" "Services" "0" "44.472 K" [22:42:16.786] [17,] "svchost.exe" "2580" "Services" "0" "8.288 K" [22:42:16.786] [18,] "svchost.exe" "2584" "Services" "0" "9.656 K" [22:42:16.786] [19,] "svchost.exe" "2592" "Services" "0" "5.740 K" [22:42:16.786] [20,] "svchost.exe" "2676" "Services" "0" "9.088 K" [22:42:16.786] [21,] "svchost.exe" "2724" "Services" "0" "11.788 K" [22:42:16.786] [22,] "svchost.exe" "2736" "Services" "0" "10.656 K" [22:42:16.786] [23,] "svchost.exe" "2744" "Services" "0" "12.548 K" [22:42:16.786] [24,] "svchost.exe" "2896" "Services" "0" "22.504 K" [22:42:16.786] [25,] "svchost.exe" "2904" "Services" "0" "6.232 K" [22:42:16.786] [26,] "svchost.exe" "2940" "Services" "0" "21.612 K" [22:42:16.786] [27,] "svchost.exe" "1948" "Services" "0" "13.944 K" [22:42:16.786] [28,] "svchost.exe" "2388" "Services" "0" "21.052 K" [22:42:16.786] [29,] "LogonUI.exe" "1888" "Console" "1" "48.860 K" [22:42:16.786] [30,] "svchost.exe" "3076" "Services" "0" "12.052 K" [22:42:16.786] [31,] "svchost.exe" "3100" "Services" "0" "7.892 K" [22:42:16.786] [32,] "svchost.exe" "3132" "Services" "0" "19.160 K" [22:42:16.786] [33,] "dwm.exe" "3164" "Console" "1" "45.620 K" [22:42:16.786] [34,] "svchost.exe" "3248" "Services" "0" "11.852 K" [22:42:16.786] [35,] "svchost.exe" "3300" "Services" "0" "6.276 K" [22:42:16.786] [36,] "svchost.exe" "3304" "Services" "0" "14.832 K" [22:42:16.786] [37,] "svchost.exe" "3316" "Services" "0" "8.608 K" [22:42:16.786] [38,] "svchost.exe" "3524" "Services" "0" "9.092 K" [22:42:16.786] [39,] "svchost.exe" "3708" "Services" "0" "9.652 K" [22:42:16.786] [40,] "svchost.exe" "3732" "Services" "0" "10.260 K" [22:42:16.786] [41,] "svchost.exe" "3784" "Services" "0" "14.024 K" [22:42:16.786] [42,] "svchost.exe" "3856" "Services" "0" "7.880 K" [22:42:16.786] [43,] "svchost.exe" "3972" "Services" "0" "9.292 K" [22:42:16.786] [44,] "svchost.exe" "4184" "Services" "0" "8.200 K" [22:42:16.786] [45,] "svchost.exe" "4228" "Services" "0" "9.740 K" [22:42:16.786] [46,] "WUDFHost.exe" "4280" "Services" "0" "9.296 K" [22:42:16.786] [47,] "svchost.exe" "4296" "Services" "0" "10.276 K" [22:42:16.786] [48,] "spoolsv.exe" "4444" "Services" "0" "27.480 K" [22:42:16.786] [49,] "svchost.exe" "4552" "Services" "0" "7.056 K" [22:42:16.786] [50,] "svchost.exe" "4560" "Services" "0" "39.516 K" [22:42:16.786] [51,] "cvfwd.exe" "4568" "Services" "0" "26.588 K" [22:42:16.786] [52,] "svchost.exe" "4576" "Services" "0" "23.804 K" [22:42:16.786] [53,] "IpOverUsbSvc.exe" "4584" "Services" "0" "15.528 K" [22:42:16.786] [54,] "svchost.exe" "4592" "Services" "0" "8.064 K" [22:42:16.786] [55,] "svchost.exe" "4628" "Services" "0" "5.916 K" [22:42:16.786] [56,] "svchost.exe" "4644" "Services" "0" "30.476 K" [22:42:16.786] [57,] "svchost.exe" "4652" "Services" "0" "14.980 K" [22:42:16.786] [58,] "svchost.exe" "4664" "Services" "0" "12.120 K" [22:42:16.786] [59,] "svchost.exe" "4672" "Services" "0" "7.632 K" [22:42:16.786] [60,] "svchost.exe" "5124" "Services" "0" "10.172 K" [22:42:16.786] [61,] "cvd.exe" "5144" "Services" "0" "323.756 K" [22:42:16.786] [62,] "svchost.exe" "5216" "Services" "0" "14.172 K" [22:42:16.786] [63,] "AggregatorHost.exe" "6604" "Services" "0" "11.064 K" [22:42:16.786] [64,] "svchost.exe" "8184" "Services" "0" "8.048 K" [22:42:16.786] [65,] "ClMgrS.exe" "6616" "Services" "0" "48.616 K" [22:42:16.786] [66,] "dllhost.exe" "8248" "Services" "0" "13.760 K" [22:42:16.786] [67,] "svchost.exe" "8300" "Services" "0" "7.664 K" [22:42:16.786] [68,] "WmiPrvSE.exe" "9132" "Services" "0" "73.544 K" [22:42:16.786] [69,] "svchost.exe" "10552" "Services" "0" "17.532 K" [22:42:16.786] [70,] "svchost.exe" "4192" "Services" "0" "14.256 K" [22:42:16.786] [71,] "svchost.exe" "4624" "Services" "0" "38.456 K" [22:42:16.786] [72,] "svchost.exe" "4752" "Services" "0" "7.924 K" [22:42:16.786] [73,] "svchost.exe" "4548" "Services" "0" "13.436 K" [22:42:16.786] [74,] "msdtc.exe" "8824" "Services" "0" "11.264 K" [22:42:16.786] [75,] "svchost.exe" "836" "Services" "0" "24.136 K" [22:42:16.786] [76,] "svchost.exe" "4828" "Services" "0" "13.472 K" [22:42:16.786] [77,] "csrss.exe" "2304" "" "2" "13.092 K" [22:42:16.786] [78,] "winlogon.exe" "2328" "" "2" "10.980 K" [22:42:16.786] [79,] "fontdrvhost.exe" "2140" "" "2" "9.448 K" [22:42:16.786] [80,] "dwm.exe" "3428" "" "2" "41.288 K" [22:42:16.786] [81,] "svchost.exe" "8696" "Services" "0" "16.804 K" [22:42:16.786] [82,] "rdpclip.exe" "3988" "" "2" "11.996 K" [22:42:16.786] [83,] "svchost.exe" "8760" "" "2" "17.540 K" [22:42:16.786] [84,] "svchost.exe" "8168" "" "2" "28.364 K" [22:42:16.786] [85,] "sihost.exe" "3000" "" "2" "27.732 K" [22:42:16.786] [86,] "svchost.exe" "3828" "Services" "0" "16.900 K" [22:42:16.786] [87,] "svchost.exe" "4356" "Services" "0" "7.896 K" [22:42:16.786] [88,] "svchost.exe" "8440" "Services" "0" "11.036 K" [22:42:16.786] [89,] "ctfmon.exe" "4820" "" "2" "20.776 K" [22:42:16.786] [90,] "taskhostw.exe" "3152" "" "2" "15.324 K" [22:42:16.786] [91,] "explorer.exe" "11544" "" "2" "168.388 K" [22:42:16.786] [92,] "csrss.exe" "11788" "" "3" "10.272 K" [22:42:16.786] [93,] "winlogon.exe" "11840" "" "3" "11.184 K" [22:42:16.786] [94,] "StartMenuExperienceHost.e" "11980" "" "2" "64.092 K" [22:42:16.786] [95,] "RuntimeBroker.exe" "12064" "" "2" "22.932 K" [22:42:16.786] [96,] "fontdrvhost.exe" "12196" "" "3" "14.044 K" [22:42:16.786] [97,] "dwm.exe" "11884" "" "3" "52.036 K" [22:42:16.786] [98,] "SearchApp.exe" "12428" "" "2" "167.160 K" [22:42:16.786] [99,] "RuntimeBroker.exe" "12636" "" "2" "55.472 K" [22:42:16.786] [100,] "rdpclip.exe" "12788" "" "3" "13.824 K" [22:42:16.786] [101,] "sihost.exe" "12836" "" "3" "28.352 K" [22:42:16.786] [102,] "svchost.exe" "12872" "" "3" "17.836 K" [22:42:16.786] [103,] "svchost.exe" "12920" "" "3" "30.392 K" [22:42:16.786] [104,] "explorer.exe" "13232" "" "3" "665.256 K" [22:42:16.786] [105,] "taskhostw.exe" "11960" "" "3" "16.692 K" [22:42:16.786] [106,] "RuntimeBroker.exe" "13176" "" "2" "15.904 K" [22:42:16.786] [107,] "StartMenuExperienceHost.e" "13104" "" "3" "58.316 K" [22:42:16.786] [108,] "RuntimeBroker.exe" "13348" "" "3" "22.424 K" [22:42:16.786] [109,] "SearchApp.exe" "13428" "" "3" "86.596 K" [22:42:16.786] [110,] "RuntimeBroker.exe" "13652" "" "3" "32.000 K" [22:42:16.786] [111,] "ctfmon.exe" "13792" "" "3" "21.460 K" [22:42:16.786] [112,] "RuntimeBroker.exe" "13932" "" "3" "15.784 K" [22:42:16.786] [113,] "svchost.exe" "13252" "Services" "0" "10.132 K" [22:42:16.786] [114,] "svchost.exe" "3336" "" "2" "17.516 K" [22:42:16.786] [115,] "svchost.exe" "14464" "" "3" "17.396 K" [22:42:16.786] [116,] "svchost.exe" "11852" "Services" "0" "13.292 K" [22:42:16.786] [117,] "svchost.exe" "15280" "Services" "0" "22.276 K" [22:42:16.786] [118,] "TextInputHost.exe" "9672" "" "3" "45.324 K" [22:42:16.786] [119,] "taskhostw.exe" "2424" "" "3" "16.184 K" [22:42:16.786] [120,] "svchost.exe" "22048" "Services" "0" "13.604 K" [22:42:16.786] [121,] "svchost.exe" "35608" "Services" "0" "7.764 K" [22:42:16.786] [122,] "SecurityHealthService.exe" "3764" "Services" "0" "12.260 K" [22:42:16.786] [123,] "ShellExperienceHost.exe" "84468" "" "3" "50.532 K" [22:42:16.786] [124,] "RuntimeBroker.exe" "32988" "" "3" "20.128 K" [22:42:16.786] [125,] "MpDefenderCoreService.exe" "25244" "Services" "0" "38.364 K" [22:42:16.786] [126,] "MsMpEng.exe" "40528" "Services" "0" "663.768 K" [22:42:16.786] [127,] "NisSrv.exe" "24492" "Services" "0" "14.604 K" [22:42:16.786] [128,] "MusNotifyIcon.exe" "19620" "" "2" "14.104 K" [22:42:16.786] [129,] "TextInputHost.exe" "58268" "" "2" "44.128 K" [22:42:16.786] [130,] "dllhost.exe" "40964" "" "2" "13.908 K" [22:42:16.786] [131,] "LogonUI.exe" "27812" "" "3" "31.244 K" [22:42:16.786] [132,] "explorer.exe" "21576" "" "3" "196.644 K" [22:42:16.786] [133,] "cmd.exe" "108564" "" "3" "5.388 K" [22:42:16.786] [134,] "conhost.exe" "85480" "" "3" "17.532 K" [22:42:16.786] [135,] "R.exe" "101452" "" "3" "5.480 K" [22:42:16.786] [136,] "Rterm.exe" "43740" "" "3" "177.012 K" [22:42:16.786] [137,] "cmd.exe" "24744" "" "3" "4.576 K" [22:42:16.786] [138,] "make.exe" "68324" "" "3" "134.344 K" [22:42:16.786] [139,] "sh.exe" "30308" "" "3" "8.264 K" [22:42:16.786] [140,] "R.exe" "23244" "" "3" "5.360 K" [22:42:16.786] [141,] "cmd.exe" "53260" "" "3" "4.604 K" [22:42:16.786] [142,] "Rterm.exe" "100728" "" "3" "31.808 K" [22:42:16.786] [143,] "cmd.exe" "70268" "" "3" "4.592 K" [22:42:16.786] [144,] "R.exe" "36980" "" "3" "5.612 K" [22:42:16.786] [145,] "cmd.exe" "70744" "" "3" "4.608 K" [22:42:16.786] [146,] "Rterm.exe" "29068" "" "3" "118.408 K" [22:42:16.786] [147,] "Rterm.exe" "64412" "" "3" "63.748 K" [22:42:16.786] [148,] "R.exe" "88760" "" "3" "5.516 K" [22:42:16.786] [149,] "Rterm.exe" "23416" "" "3" "267.172 K" [22:42:16.786] [150,] "mintty.exe" "87976" "" "2" "17.964 K" [22:42:16.786] [151,] "conhost.exe" "46672" "" "2" "13.348 K" [22:42:16.786] [152,] "bash.exe" "30772" "" "2" "9.980 K" [22:42:16.786] [153,] "LogonUI.exe" "22296" "" "2" "31.268 K" [22:42:16.786] [154,] "WmiPrvSE.exe" "109392" "Services" "0" "13.416 K" [22:42:16.786] [155,] "cmd.exe" "66024" "" "3" "5.708 K" [22:42:16.786] [156,] "conhost.exe" "13476" "" "3" "17.380 K" [22:42:16.786] [157,] "R.exe" "103880" "" "3" "5.528 K" [22:42:16.786] [158,] "Rterm.exe" "28512" "" "3" "115.696 K" [22:42:16.786] [159,] "cmd.exe" "35912" "" "3" "4.624 K" [22:42:16.786] [160,] "make.exe" "46664" "" "3" "8.372 K" [22:42:16.786] [161,] "sh.exe" "43912" "" "3" "8.336 K" [22:42:16.786] [162,] "R.exe" "61708" "" "3" "5.364 K" [22:42:16.786] [163,] "cmd.exe" "88080" "" "3" "4.628 K" [22:42:16.786] [164,] "Rterm.exe" "32712" "" "3" "22.020 K" [22:42:16.786] [165,] "cmd.exe" "33836" "" "3" "4.596 K" [22:42:16.786] [166,] "R.exe" "26832" "" "3" "5.596 K" [22:42:16.786] [167,] "cmd.exe" "60968" "" "3" "4.616 K" [22:42:16.786] [168,] "Rterm.exe" "33212" "" "3" "296.908 K" [22:42:16.786] [169,] "Rterm.exe" "3540" "" "3" "67.080 K" [22:42:16.786] [170,] "WmiPrvSE.exe" "65164" "Services" "0" "16.072 K" [22:42:16.786] [171,] "R.exe" "102208" "" "3" "5.580 K" [22:42:16.786] [172,] "Rterm.exe" "84224" "" "3" "77.488 K" [22:42:16.786] [173,] "tasklist.exe" "20792" "" "3" "9.404 K" [22:42:16.789] Extracted: '0', '4', '1064', '1904', '2000', '1956', '2044', '2104', '2112', '2168', '2288', '2316', '2372', '2416', '2476', '2552', '2580', '2584', '2592', '2676', '2724', '2736', '2744', '2896', '2904', '2940', '1948', '2388', '1888', '3076', '3100', '3132', '3164', '3248', '3300', '3304', '3316', '3524', '3708', '3732', '3784', '3856', '3972', '4184', '4228', '4280', '4296', '4444', '4552', '4560', '4568', '4576', '4584', '4592', '4628', '4644', '4652', '4664', '4672', '5124', '5144', '5216', '6604', '8184', '6616', '8248', '8300', '9132', '10552', '4192', '4624', '4752', '4548', '8824', '836', '4828', '2304', '2328', '2140', '3428', '8696', '3988', '8760', '8168', '3000', '3828', '4356', '8440', '4820', '3152', '11544', '11788', '11840', '11980', '12064', '12196', '11884', '12428', '12636', '12788', '12836', '12872', '12920', '13232', '11960', '13176', '13104', '13348', '13428', '13652', '13792', '13932', '13252', '3336', '14464', '11852', '15280', '9672', '2424', '22048', '35608', '3764', '84468', '32988', '25244', '40528', '24492', '19620', '58268', '40964', '27812', '21576', '108564', '85480', '101452', '43740', '24744', '68324', '30308', '23244', '53260', '100728', '70268', '36980', '70744', '29068', '64412', '88760', '23416', '87976', '46672', '30772', '22296', '109392', '66024', '13476', '103880', '28512', '35912', '46664', '43912', '61708', '88080', '32712', '33836', '26832', '60968', '33212', '3540', '65164', '102208', '84224', '20792' [22:42:16.790] Parsed: '0', '4', '1064', '1904', '2000', '1956', '2044', '2104', '2112', '2168', '2288', '2316', '2372', '2416', '2476', '2552', '2580', '2584', '2592', '2676', '2724', '2736', '2744', '2896', '2904', '2940', '1948', '2388', '1888', '3076', '3100', '3132', '3164', '3248', '3300', '3304', '3316', '3524', '3708', '3732', '3784', '3856', '3972', '4184', '4228', '4280', '4296', '4444', '4552', '4560', '4568', '4576', '4584', '4592', '4628', '4644', '4652', '4664', '4672', '5124', '5144', '5216', '6604', '8184', '6616', '8248', '8300', '9132', '10552', '4192', '4624', '4752', '4548', '8824', '836', '4828', '2304', '2328', '2140', '3428', '8696', '3988', '8760', '8168', '3000', '3828', '4356', '8440', '4820', '3152', '11544', '11788', '11840', '11980', '12064', '12196', '11884', '12428', '12636', '12788', '12836', '12872', '12920', '13232', '11960', '13176', '13104', '13348', '13428', '13652', '13792', '13932', '13252', '3336', '14464', '11852', '15280', '9672', '2424', '22048', '35608', '3764', '84468', '32988', '25244', '40528', '24492', '19620', '58268', '40964', '27812', '21576', '108564', '85480', '101452', '43740', '24744', '68324', '30308', '23244', '53260', '100728', '70268', '36980', '70744', '29068', '64412', '88760', '23416', '87976', '46672', '30772', '22296', '109392', '66024', '13476', '103880', '28512', '35912', '46664', '43912', '61708', '88080', '32712', '33836', '26832', '60968', '33212', '3540', '65164', '102208', '84224', '20792' [22:42:16.790] Equals PID: 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'TRUE', 'FALSE' [22:42:17.113] Call: tasklist [22:42:17.114] [1] "" [22:42:17.114] [2] "Abbildname PID Sitzungsname Sitz.-Nr. Speichernutzung" [22:42:17.114] [3] "========================= ======== ================ =========== ===============" [22:42:17.114] [4] "System Idle Process 0 Services 0 8 K" [22:42:17.114] [5] "System 4 Services 0 148 K" [22:42:17.114] [6] "Registry 1064 Services 0 111.864 K" [22:42:17.114] [7] "smss.exe 1904 Services 0 1.292 K" [22:42:17.114] [8] "csrss.exe 2000 Services 0 6.880 K" [22:42:17.114] [9] "wininit.exe 1956 Services 0 7.316 K" [22:42:17.114] [10] "csrss.exe 2044 Console 1 6.076 K" [22:42:17.114] [11] "services.exe 2104 Services 0 16.172 K" [22:42:17.114] [12] "winlogon.exe 2112 Console 1 10.580 K" [22:42:17.114] [13] "lsass.exe 2168 Services 0 87.292 K" [22:42:17.114] [14] "svchost.exe 2288 Services 0 33.984 K" [22:42:17.114] [15] "fontdrvhost.exe 2316 Services 0 4.528 K" [22:42:17.114] [16] "svchost.exe 2372 Services 0 52.816 K" [22:42:17.114] [17] "svchost.exe 2416 Services 0 13.220 K" [22:42:17.114] [18] "fontdrvhost.exe 2476 Console 1 4.388 K" [22:42:17.114] [19] "svchost.exe 2552 Services 0 44.472 K" [22:42:17.114] [20] "svchost.exe 2580 Services 0 8.288 K" [22:42:17.114] [21] "svchost.exe 2584 Services 0 9.656 K" [22:42:17.114] [22] "svchost.exe 2592 Services 0 5.740 K" [22:42:17.114] [23] "svchost.exe 2676 Services 0 9.088 K" [22:42:17.114] [24] "svchost.exe 2724 Services 0 11.788 K" [22:42:17.114] [25] "svchost.exe 2736 Services 0 10.656 K" [22:42:17.114] [26] "svchost.exe 2744 Services 0 12.548 K" [22:42:17.114] [27] "svchost.exe 2896 Services 0 22.504 K" [22:42:17.114] [28] "svchost.exe 2904 Services 0 6.232 K" [22:42:17.114] [29] "svchost.exe 2940 Services 0 21.612 K" [22:42:17.114] [30] "svchost.exe 1948 Services 0 13.944 K" [22:42:17.114] [31] "svchost.exe 2388 Services 0 21.052 K" [22:42:17.114] [32] "LogonUI.exe 1888 Console 1 48.860 K" [22:42:17.114] [33] "svchost.exe 3076 Services 0 12.052 K" [22:42:17.114] [34] "svchost.exe 3100 Services 0 7.892 K" [22:42:17.114] [35] "svchost.exe 3132 Services 0 19.160 K" [22:42:17.114] [36] "dwm.exe 3164 Console 1 45.620 K" [22:42:17.114] [37] "svchost.exe 3248 Services 0 11.852 K" [22:42:17.114] [38] "svchost.exe 3300 Services 0 6.276 K" [22:42:17.114] [39] "svchost.exe 3304 Services 0 14.832 K" [22:42:17.114] [40] "svchost.exe 3316 Services 0 8.608 K" [22:42:17.114] [41] "svchost.exe 3524 Services 0 9.092 K" [22:42:17.114] [42] "svchost.exe 3708 Services 0 9.652 K" [22:42:17.114] [43] "svchost.exe 3732 Services 0 10.260 K" [22:42:17.114] [44] "svchost.exe 3784 Services 0 14.024 K" [22:42:17.114] [45] "svchost.exe 3856 Services 0 7.880 K" [22:42:17.114] [46] "svchost.exe 3972 Services 0 9.292 K" [22:42:17.114] [47] "svchost.exe 4184 Services 0 8.200 K" [22:42:17.114] [48] "svchost.exe 4228 Services 0 9.740 K" [22:42:17.114] [49] "WUDFHost.exe 4280 Services 0 9.296 K" [22:42:17.114] [50] "svchost.exe 4296 Services 0 10.276 K" [22:42:17.114] [51] "spoolsv.exe 4444 Services 0 27.480 K" [22:42:17.114] [52] "svchost.exe 4552 Services 0 7.056 K" [22:42:17.114] [53] "svchost.exe 4560 Services 0 39.516 K" [22:42:17.114] [54] "cvfwd.exe 4568 Services 0 26.652 K" [22:42:17.114] [55] "svchost.exe 4576 Services 0 23.804 K" [22:42:17.114] [56] "IpOverUsbSvc.exe 4584 Services 0 15.528 K" [22:42:17.114] [57] "svchost.exe 4592 Services 0 8.064 K" [22:42:17.114] [58] "svchost.exe 4628 Services 0 5.916 K" [22:42:17.114] [59] "svchost.exe 4644 Services 0 30.492 K" [22:42:17.114] [60] "svchost.exe 4652 Services 0 14.980 K" [22:42:17.114] [61] "svchost.exe 4664 Services 0 12.120 K" [22:42:17.114] [62] "svchost.exe 4672 Services 0 7.632 K" [22:42:17.114] [63] "svchost.exe 5124 Services 0 10.172 K" [22:42:17.114] [64] "cvd.exe 5144 Services 0 323.756 K" [22:42:17.114] [65] "svchost.exe 5216 Services 0 14.172 K" [22:42:17.114] [66] "AggregatorHost.exe 6604 Services 0 11.064 K" [22:42:17.114] [67] "svchost.exe 8184 Services 0 8.048 K" [22:42:17.114] [68] "ClMgrS.exe 6616 Services 0 48.616 K" [22:42:17.114] [69] "dllhost.exe 8248 Services 0 13.760 K" [22:42:17.114] [70] "svchost.exe 8300 Services 0 7.664 K" [22:42:17.114] [71] "WmiPrvSE.exe 9132 Services 0 73.544 K" [22:42:17.114] [72] "svchost.exe 10552 Services 0 17.532 K" [22:42:17.114] [73] "svchost.exe 4192 Services 0 14.256 K" [22:42:17.114] [74] "svchost.exe 4624 Services 0 38.456 K" [22:42:17.114] [75] "svchost.exe 4752 Services 0 7.924 K" [22:42:17.114] [76] "svchost.exe 4548 Services 0 13.436 K" [22:42:17.114] [77] "msdtc.exe 8824 Services 0 11.264 K" [22:42:17.114] [78] "svchost.exe 836 Services 0 24.136 K" [22:42:17.114] [79] "svchost.exe 4828 Services 0 13.472 K" [22:42:17.114] [80] "csrss.exe 2304 2 13.092 K" [22:42:17.114] [81] "winlogon.exe 2328 2 10.980 K" [22:42:17.114] [82] "fontdrvhost.exe 2140 2 9.448 K" [22:42:17.114] [83] "dwm.exe 3428 2 41.288 K" [22:42:17.114] [84] "svchost.exe 8696 Services 0 16.804 K" [22:42:17.114] [85] "rdpclip.exe 3988 2 11.996 K" [22:42:17.114] [86] "svchost.exe 8760 2 17.540 K" [22:42:17.114] [87] "svchost.exe 8168 2 28.364 K" [22:42:17.114] [88] "sihost.exe 3000 2 27.732 K" [22:42:17.114] [89] "svchost.exe 3828 Services 0 16.900 K" [22:42:17.114] [90] "svchost.exe 4356 Services 0 7.896 K" [22:42:17.114] [91] "svchost.exe 8440 Services 0 11.036 K" [22:42:17.114] [92] "ctfmon.exe 4820 2 20.776 K" [22:42:17.114] [93] "taskhostw.exe 3152 2 15.324 K" [22:42:17.114] [94] "explorer.exe 11544 2 168.388 K" [22:42:17.114] [95] "csrss.exe 11788 3 10.272 K" [22:42:17.114] [96] "winlogon.exe 11840 3 11.184 K" [22:42:17.114] [97] "StartMenuExperienceHost.e 11980 2 64.092 K" [22:42:17.114] [98] "RuntimeBroker.exe 12064 2 22.932 K" [22:42:17.114] [99] "fontdrvhost.exe 12196 3 14.044 K" [22:42:17.114] [100] "dwm.exe 11884 3 52.036 K" [22:42:17.114] [101] "SearchApp.exe 12428 2 167.160 K" [22:42:17.114] [102] "RuntimeBroker.exe 12636 2 55.472 K" [22:42:17.114] [103] "rdpclip.exe 12788 3 13.824 K" [22:42:17.114] [104] "sihost.exe 12836 3 28.352 K" [22:42:17.114] [105] "svchost.exe 12872 3 17.836 K" [22:42:17.114] [106] "svchost.exe 12920 3 30.392 K" [22:42:17.114] [107] "explorer.exe 13232 3 665.256 K" [22:42:17.114] [108] "taskhostw.exe 11960 3 16.692 K" [22:42:17.114] [109] "RuntimeBroker.exe 13176 2 15.904 K" [22:42:17.114] [110] "StartMenuExperienceHost.e 13104 3 58.316 K" [22:42:17.114] [111] "RuntimeBroker.exe 13348 3 22.424 K" [22:42:17.114] [112] "SearchApp.exe 13428 3 86.596 K" [22:42:17.114] [113] "RuntimeBroker.exe 13652 3 32.000 K" [22:42:17.114] [114] "ctfmon.exe 13792 3 21.460 K" [22:42:17.114] [115] "RuntimeBroker.exe 13932 3 15.784 K" [22:42:17.114] [116] "svchost.exe 13252 Services 0 10.132 K" [22:42:17.114] [117] "svchost.exe 3336 2 17.516 K" [22:42:17.114] [118] "svchost.exe 14464 3 17.396 K" [22:42:17.114] [119] "svchost.exe 11852 Services 0 13.292 K" [22:42:17.114] [120] "svchost.exe 15280 Services 0 22.276 K" [22:42:17.114] [121] "TextInputHost.exe 9672 3 45.324 K" [22:42:17.114] [122] "taskhostw.exe 2424 3 16.184 K" [22:42:17.114] [123] "svchost.exe 22048 Services 0 13.604 K" [22:42:17.114] [124] "svchost.exe 35608 Services 0 7.764 K" [22:42:17.114] [125] "SecurityHealthService.exe 3764 Services 0 12.260 K" [22:42:17.114] [126] "ShellExperienceHost.exe 84468 3 50.532 K" [22:42:17.114] [127] "RuntimeBroker.exe 32988 3 20.128 K" [22:42:17.114] [128] "MpDefenderCoreService.exe 25244 Services 0 38.364 K" [22:42:17.114] [129] "MsMpEng.exe 40528 Services 0 663.784 K" [22:42:17.114] [130] "NisSrv.exe 24492 Services 0 14.604 K" [22:42:17.114] [131] "MusNotifyIcon.exe 19620 2 14.104 K" [22:42:17.114] [132] "TextInputHost.exe 58268 2 44.128 K" [22:42:17.114] [133] "dllhost.exe 40964 2 13.908 K" [22:42:17.114] [134] "LogonUI.exe 27812 3 31.244 K" [22:42:17.114] [135] "explorer.exe 21576 3 196.644 K" [22:42:17.114] [136] "cmd.exe 108564 3 5.388 K" [22:42:17.114] [137] "conhost.exe 85480 3 17.532 K" [22:42:17.114] [138] "R.exe 101452 3 5.480 K" [22:42:17.114] [139] "Rterm.exe 43740 3 177.012 K" [22:42:17.114] [140] "cmd.exe 24744 3 4.576 K" [22:42:17.114] [141] "make.exe 68324 3 134.344 K" [22:42:17.114] [142] "sh.exe 30308 3 8.264 K" [22:42:17.114] [143] "R.exe 23244 3 5.360 K" [22:42:17.114] [144] "cmd.exe 53260 3 4.604 K" [22:42:17.114] [145] "Rterm.exe 100728 3 31.808 K" [22:42:17.114] [146] "cmd.exe 70268 3 4.592 K" [22:42:17.114] [147] "R.exe 36980 3 5.612 K" [22:42:17.114] [148] "cmd.exe 70744 3 4.608 K" [22:42:17.114] [149] "Rterm.exe 29068 3 118.408 K" [22:42:17.114] [150] "Rterm.exe 64412 3 63.748 K" [22:42:17.114] [151] "R.exe 88760 3 5.516 K" [22:42:17.114] [152] "Rterm.exe 23416 3 267.172 K" [22:42:17.114] [153] "mintty.exe 87976 2 17.964 K" [22:42:17.114] [154] "conhost.exe 46672 2 13.348 K" [22:42:17.114] [155] "bash.exe 30772 2 9.980 K" [22:42:17.114] [156] "LogonUI.exe 22296 2 31.268 K" [22:42:17.114] [157] "WmiPrvSE.exe 109392 Services 0 13.416 K" [22:42:17.114] [158] "cmd.exe 66024 3 5.708 K" [22:42:17.114] [159] "conhost.exe 13476 3 17.380 K" [22:42:17.114] [160] "R.exe 103880 3 5.528 K" [22:42:17.114] [161] "Rterm.exe 28512 3 115.696 K" [22:42:17.114] [162] "cmd.exe 35912 3 4.624 K" [22:42:17.114] [163] "make.exe 46664 3 8.372 K" [22:42:17.114] [164] "sh.exe 43912 3 8.336 K" [22:42:17.114] [165] "R.exe 61708 3 5.364 K" [22:42:17.114] [166] "cmd.exe 88080 3 4.628 K" [22:42:17.114] [167] "Rterm.exe 32712 3 22.020 K" [22:42:17.114] [168] "cmd.exe 33836 3 4.596 K" [22:42:17.114] [169] "R.exe 26832 3 5.596 K" [22:42:17.114] [170] "cmd.exe 60968 3 4.616 K" [22:42:17.114] [171] "Rterm.exe 33212 3 296.908 K" [22:42:17.114] [172] "Rterm.exe 3540 3 67.080 K" [22:42:17.114] [173] "WmiPrvSE.exe 65164 Services 0 16.072 K" [22:42:17.114] [174] "R.exe 102208 3 5.580 K" [22:42:17.114] [175] "Rterm.exe 84224 3 78.428 K" [22:42:17.114] [176] "tasklist.exe 98900 3 9.412 K" [22:42:17.119] chr [1:176] "" ... [22:42:17.122] Column widths: [22:42:17.123] [1] "========================= ======== ================ =========== ===============" [22:42:17.123] [,1] [,2] [,3] [,4] [,5] [22:42:17.123] from 1 27 36 53 65 [22:42:17.123] to 25 34 51 63 79 [22:42:17.124] [1] "=========================" "========" [22:42:17.124] [3] "================" "===========" [22:42:17.124] [5] "===============" [22:42:17.126] Trimmed: [22:42:17.126] [,1] [,2] [,3] [,4] [,5] [22:42:17.126] [1,] "System Idle Process" "0" "Services" "0" "8 K" [22:42:17.126] [2,] "System" "4" "Services" "0" "148 K" [22:42:17.126] [3,] "Registry" "1064" "Services" "0" "111.864 K" [22:42:17.126] [4,] "smss.exe" "1904" "Services" "0" "1.292 K" [22:42:17.126] [5,] "csrss.exe" "2000" "Services" "0" "6.880 K" [22:42:17.126] [6,] "wininit.exe" "1956" "Services" "0" "7.316 K" [22:42:17.126] [7,] "csrss.exe" "2044" "Console" "1" "6.076 K" [22:42:17.126] [8,] "services.exe" "2104" "Services" "0" "16.172 K" [22:42:17.126] [9,] "winlogon.exe" "2112" "Console" "1" "10.580 K" [22:42:17.126] [10,] "lsass.exe" "2168" "Services" "0" "87.292 K" [22:42:17.126] [11,] "svchost.exe" "2288" "Services" "0" "33.984 K" [22:42:17.126] [12,] "fontdrvhost.exe" "2316" "Services" "0" "4.528 K" [22:42:17.126] [13,] "svchost.exe" "2372" "Services" "0" "52.816 K" [22:42:17.126] [14,] "svchost.exe" "2416" "Services" "0" "13.220 K" [22:42:17.126] [15,] "fontdrvhost.exe" "2476" "Console" "1" "4.388 K" [22:42:17.126] [16,] "svchost.exe" "2552" "Services" "0" "44.472 K" [22:42:17.126] [17,] "svchost.exe" "2580" "Services" "0" "8.288 K" [22:42:17.126] [18,] "svchost.exe" "2584" "Services" "0" "9.656 K" [22:42:17.126] [19,] "svchost.exe" "2592" "Services" "0" "5.740 K" [22:42:17.126] [20,] "svchost.exe" "2676" "Services" "0" "9.088 K" [22:42:17.126] [21,] "svchost.exe" "2724" "Services" "0" "11.788 K" [22:42:17.126] [22,] "svchost.exe" "2736" "Services" "0" "10.656 K" [22:42:17.126] [23,] "svchost.exe" "2744" "Services" "0" "12.548 K" [22:42:17.126] [24,] "svchost.exe" "2896" "Services" "0" "22.504 K" [22:42:17.126] [25,] "svchost.exe" "2904" "Services" "0" "6.232 K" [22:42:17.126] [26,] "svchost.exe" "2940" "Services" "0" "21.612 K" [22:42:17.126] [27,] "svchost.exe" "1948" "Services" "0" "13.944 K" [22:42:17.126] [28,] "svchost.exe" "2388" "Services" "0" "21.052 K" [22:42:17.126] [29,] "LogonUI.exe" "1888" "Console" "1" "48.860 K" [22:42:17.126] [30,] "svchost.exe" "3076" "Services" "0" "12.052 K" [22:42:17.126] [31,] "svchost.exe" "3100" "Services" "0" "7.892 K" [22:42:17.126] [32,] "svchost.exe" "3132" "Services" "0" "19.160 K" [22:42:17.126] [33,] "dwm.exe" "3164" "Console" "1" "45.620 K" [22:42:17.126] [34,] "svchost.exe" "3248" "Services" "0" "11.852 K" [22:42:17.126] [35,] "svchost.exe" "3300" "Services" "0" "6.276 K" [22:42:17.126] [36,] "svchost.exe" "3304" "Services" "0" "14.832 K" [22:42:17.126] [37,] "svchost.exe" "3316" "Services" "0" "8.608 K" [22:42:17.126] [38,] "svchost.exe" "3524" "Services" "0" "9.092 K" [22:42:17.126] [39,] "svchost.exe" "3708" "Services" "0" "9.652 K" [22:42:17.126] [40,] "svchost.exe" "3732" "Services" "0" "10.260 K" [22:42:17.126] [41,] "svchost.exe" "3784" "Services" "0" "14.024 K" [22:42:17.126] [42,] "svchost.exe" "3856" "Services" "0" "7.880 K" [22:42:17.126] [43,] "svchost.exe" "3972" "Services" "0" "9.292 K" [22:42:17.126] [44,] "svchost.exe" "4184" "Services" "0" "8.200 K" [22:42:17.126] [45,] "svchost.exe" "4228" "Services" "0" "9.740 K" [22:42:17.126] [46,] "WUDFHost.exe" "4280" "Services" "0" "9.296 K" [22:42:17.126] [47,] "svchost.exe" "4296" "Services" "0" "10.276 K" [22:42:17.126] [48,] "spoolsv.exe" "4444" "Services" "0" "27.480 K" [22:42:17.126] [49,] "svchost.exe" "4552" "Services" "0" "7.056 K" [22:42:17.126] [50,] "svchost.exe" "4560" "Services" "0" "39.516 K" [22:42:17.126] [51,] "cvfwd.exe" "4568" "Services" "0" "26.652 K" [22:42:17.126] [52,] "svchost.exe" "4576" "Services" "0" "23.804 K" [22:42:17.126] [53,] "IpOverUsbSvc.exe" "4584" "Services" "0" "15.528 K" [22:42:17.126] [54,] "svchost.exe" "4592" "Services" "0" "8.064 K" [22:42:17.126] [55,] "svchost.exe" "4628" "Services" "0" "5.916 K" [22:42:17.126] [56,] "svchost.exe" "4644" "Services" "0" "30.492 K" [22:42:17.126] [57,] "svchost.exe" "4652" "Services" "0" "14.980 K" [22:42:17.126] [58,] "svchost.exe" "4664" "Services" "0" "12.120 K" [22:42:17.126] [59,] "svchost.exe" "4672" "Services" "0" "7.632 K" [22:42:17.126] [60,] "svchost.exe" "5124" "Services" "0" "10.172 K" [22:42:17.126] [61,] "cvd.exe" "5144" "Services" "0" "323.756 K" [22:42:17.126] [62,] "svchost.exe" "5216" "Services" "0" "14.172 K" [22:42:17.126] [63,] "AggregatorHost.exe" "6604" "Services" "0" "11.064 K" [22:42:17.126] [64,] "svchost.exe" "8184" "Services" "0" "8.048 K" [22:42:17.126] [65,] "ClMgrS.exe" "6616" "Services" "0" "48.616 K" [22:42:17.126] [66,] "dllhost.exe" "8248" "Services" "0" "13.760 K" [22:42:17.126] [67,] "svchost.exe" "8300" "Services" "0" "7.664 K" [22:42:17.126] [68,] "WmiPrvSE.exe" "9132" "Services" "0" "73.544 K" [22:42:17.126] [69,] "svchost.exe" "10552" "Services" "0" "17.532 K" [22:42:17.126] [70,] "svchost.exe" "4192" "Services" "0" "14.256 K" [22:42:17.126] [71,] "svchost.exe" "4624" "Services" "0" "38.456 K" [22:42:17.126] [72,] "svchost.exe" "4752" "Services" "0" "7.924 K" [22:42:17.126] [73,] "svchost.exe" "4548" "Services" "0" "13.436 K" [22:42:17.126] [74,] "msdtc.exe" "8824" "Services" "0" "11.264 K" [22:42:17.126] [75,] "svchost.exe" "836" "Services" "0" "24.136 K" [22:42:17.126] [76,] "svchost.exe" "4828" "Services" "0" "13.472 K" [22:42:17.126] [77,] "csrss.exe" "2304" "" "2" "13.092 K" [22:42:17.126] [78,] "winlogon.exe" "2328" "" "2" "10.980 K" [22:42:17.126] [79,] "fontdrvhost.exe" "2140" "" "2" "9.448 K" [22:42:17.126] [80,] "dwm.exe" "3428" "" "2" "41.288 K" [22:42:17.126] [81,] "svchost.exe" "8696" "Services" "0" "16.804 K" [22:42:17.126] [82,] "rdpclip.exe" "3988" "" "2" "11.996 K" [22:42:17.126] [83,] "svchost.exe" "8760" "" "2" "17.540 K" [22:42:17.126] [84,] "svchost.exe" "8168" "" "2" "28.364 K" [22:42:17.126] [85,] "sihost.exe" "3000" "" "2" "27.732 K" [22:42:17.126] [86,] "svchost.exe" "3828" "Services" "0" "16.900 K" [22:42:17.126] [87,] "svchost.exe" "4356" "Services" "0" "7.896 K" [22:42:17.126] [88,] "svchost.exe" "8440" "Services" "0" "11.036 K" [22:42:17.126] [89,] "ctfmon.exe" "4820" "" "2" "20.776 K" [22:42:17.126] [90,] "taskhostw.exe" "3152" "" "2" "15.324 K" [22:42:17.126] [91,] "explorer.exe" "11544" "" "2" "168.388 K" [22:42:17.126] [92,] "csrss.exe" "11788" "" "3" "10.272 K" [22:42:17.126] [93,] "winlogon.exe" "11840" "" "3" "11.184 K" [22:42:17.126] [94,] "StartMenuExperienceHost.e" "11980" "" "2" "64.092 K" [22:42:17.126] [95,] "RuntimeBroker.exe" "12064" "" "2" "22.932 K" [22:42:17.126] [96,] "fontdrvhost.exe" "12196" "" "3" "14.044 K" [22:42:17.126] [97,] "dwm.exe" "11884" "" "3" "52.036 K" [22:42:17.126] [98,] "SearchApp.exe" "12428" "" "2" "167.160 K" [22:42:17.126] [99,] "RuntimeBroker.exe" "12636" "" "2" "55.472 K" [22:42:17.126] [100,] "rdpclip.exe" "12788" "" "3" "13.824 K" [22:42:17.126] [101,] "sihost.exe" "12836" "" "3" "28.352 K" [22:42:17.126] [102,] "svchost.exe" "12872" "" "3" "17.836 K" [22:42:17.126] [103,] "svchost.exe" "12920" "" "3" "30.392 K" [22:42:17.126] [104,] "explorer.exe" "13232" "" "3" "665.256 K" [22:42:17.126] [105,] "taskhostw.exe" "11960" "" "3" "16.692 K" [22:42:17.126] [106,] "RuntimeBroker.exe" "13176" "" "2" "15.904 K" [22:42:17.126] [107,] "StartMenuExperienceHost.e" "13104" "" "3" "58.316 K" [22:42:17.126] [108,] "RuntimeBroker.exe" "13348" "" "3" "22.424 K" [22:42:17.126] [109,] "SearchApp.exe" "13428" "" "3" "86.596 K" [22:42:17.126] [110,] "RuntimeBroker.exe" "13652" "" "3" "32.000 K" [22:42:17.126] [111,] "ctfmon.exe" "13792" "" "3" "21.460 K" [22:42:17.126] [112,] "RuntimeBroker.exe" "13932" "" "3" "15.784 K" [22:42:17.126] [113,] "svchost.exe" "13252" "Services" "0" "10.132 K" [22:42:17.126] [114,] "svchost.exe" "3336" "" "2" "17.516 K" [22:42:17.126] [115,] "svchost.exe" "14464" "" "3" "17.396 K" [22:42:17.126] [116,] "svchost.exe" "11852" "Services" "0" "13.292 K" [22:42:17.126] [117,] "svchost.exe" "15280" "Services" "0" "22.276 K" [22:42:17.126] [118,] "TextInputHost.exe" "9672" "" "3" "45.324 K" [22:42:17.126] [119,] "taskhostw.exe" "2424" "" "3" "16.184 K" [22:42:17.126] [120,] "svchost.exe" "22048" "Services" "0" "13.604 K" [22:42:17.126] [121,] "svchost.exe" "35608" "Services" "0" "7.764 K" [22:42:17.126] [122,] "SecurityHealthService.exe" "3764" "Services" "0" "12.260 K" [22:42:17.126] [123,] "ShellExperienceHost.exe" "84468" "" "3" "50.532 K" [22:42:17.126] [124,] "RuntimeBroker.exe" "32988" "" "3" "20.128 K" [22:42:17.126] [125,] "MpDefenderCoreService.exe" "25244" "Services" "0" "38.364 K" [22:42:17.126] [126,] "MsMpEng.exe" "40528" "Services" "0" "663.784 K" [22:42:17.126] [127,] "NisSrv.exe" "24492" "Services" "0" "14.604 K" [22:42:17.126] [128,] "MusNotifyIcon.exe" "19620" "" "2" "14.104 K" [22:42:17.126] [129,] "TextInputHost.exe" "58268" "" "2" "44.128 K" [22:42:17.126] [130,] "dllhost.exe" "40964" "" "2" "13.908 K" [22:42:17.126] [131,] "LogonUI.exe" "27812" "" "3" "31.244 K" [22:42:17.126] [132,] "explorer.exe" "21576" "" "3" "196.644 K" [22:42:17.126] [133,] "cmd.exe" "108564" "" "3" "5.388 K" [22:42:17.126] [134,] "conhost.exe" "85480" "" "3" "17.532 K" [22:42:17.126] [135,] "R.exe" "101452" "" "3" "5.480 K" [22:42:17.126] [136,] "Rterm.exe" "43740" "" "3" "177.012 K" [22:42:17.126] [137,] "cmd.exe" "24744" "" "3" "4.576 K" [22:42:17.126] [138,] "make.exe" "68324" "" "3" "134.344 K" [22:42:17.126] [139,] "sh.exe" "30308" "" "3" "8.264 K" [22:42:17.126] [140,] "R.exe" "23244" "" "3" "5.360 K" [22:42:17.126] [141,] "cmd.exe" "53260" "" "3" "4.604 K" [22:42:17.126] [142,] "Rterm.exe" "100728" "" "3" "31.808 K" [22:42:17.126] [143,] "cmd.exe" "70268" "" "3" "4.592 K" [22:42:17.126] [144,] "R.exe" "36980" "" "3" "5.612 K" [22:42:17.126] [145,] "cmd.exe" "70744" "" "3" "4.608 K" [22:42:17.126] [146,] "Rterm.exe" "29068" "" "3" "118.408 K" [22:42:17.126] [147,] "Rterm.exe" "64412" "" "3" "63.748 K" [22:42:17.126] [148,] "R.exe" "88760" "" "3" "5.516 K" [22:42:17.126] [149,] "Rterm.exe" "23416" "" "3" "267.172 K" [22:42:17.126] [150,] "mintty.exe" "87976" "" "2" "17.964 K" [22:42:17.126] [151,] "conhost.exe" "46672" "" "2" "13.348 K" [22:42:17.126] [152,] "bash.exe" "30772" "" "2" "9.980 K" [22:42:17.126] [153,] "LogonUI.exe" "22296" "" "2" "31.268 K" [22:42:17.126] [154,] "WmiPrvSE.exe" "109392" "Services" "0" "13.416 K" [22:42:17.126] [155,] "cmd.exe" "66024" "" "3" "5.708 K" [22:42:17.126] [156,] "conhost.exe" "13476" "" "3" "17.380 K" [22:42:17.126] [157,] "R.exe" "103880" "" "3" "5.528 K" [22:42:17.126] [158,] "Rterm.exe" "28512" "" "3" "115.696 K" [22:42:17.126] [159,] "cmd.exe" "35912" "" "3" "4.624 K" [22:42:17.126] [160,] "make.exe" "46664" "" "3" "8.372 K" [22:42:17.126] [161,] "sh.exe" "43912" "" "3" "8.336 K" [22:42:17.126] [162,] "R.exe" "61708" "" "3" "5.364 K" [22:42:17.126] [163,] "cmd.exe" "88080" "" "3" "4.628 K" [22:42:17.126] [164,] "Rterm.exe" "32712" "" "3" "22.020 K" [22:42:17.126] [165,] "cmd.exe" "33836" "" "3" "4.596 K" [22:42:17.126] [166,] "R.exe" "26832" "" "3" "5.596 K" [22:42:17.126] [167,] "cmd.exe" "60968" "" "3" "4.616 K" [22:42:17.126] [168,] "Rterm.exe" "33212" "" "3" "296.908 K" [22:42:17.126] [169,] "Rterm.exe" "3540" "" "3" "67.080 K" [22:42:17.126] [170,] "WmiPrvSE.exe" "65164" "Services" "0" "16.072 K" [22:42:17.126] [171,] "R.exe" "102208" "" "3" "5.580 K" [22:42:17.126] [172,] "Rterm.exe" "84224" "" "3" "78.428 K" [22:42:17.126] [173,] "tasklist.exe" "98900" "" "3" "9.412 K" [22:42:17.129] Extracted: '0', '4', '1064', '1904', '2000', '1956', '2044', '2104', '2112', '2168', '2288', '2316', '2372', '2416', '2476', '2552', '2580', '2584', '2592', '2676', '2724', '2736', '2744', '2896', '2904', '2940', '1948', '2388', '1888', '3076', '3100', '3132', '3164', '3248', '3300', '3304', '3316', '3524', '3708', '3732', '3784', '3856', '3972', '4184', '4228', '4280', '4296', '4444', '4552', '4560', '4568', '4576', '4584', '4592', '4628', '4644', '4652', '4664', '4672', '5124', '5144', '5216', '6604', '8184', '6616', '8248', '8300', '9132', '10552', '4192', '4624', '4752', '4548', '8824', '836', '4828', '2304', '2328', '2140', '3428', '8696', '3988', '8760', '8168', '3000', '3828', '4356', '8440', '4820', '3152', '11544', '11788', '11840', '11980', '12064', '12196', '11884', '12428', '12636', '12788', '12836', '12872', '12920', '13232', '11960', '13176', '13104', '13348', '13428', '13652', '13792', '13932', '13252', '3336', '14464', '11852', '15280', '9672', '2424', '22048', '35608', '3764', '84468', '32988', '25244', '40528', '24492', '19620', '58268', '40964', '27812', '21576', '108564', '85480', '101452', '43740', '24744', '68324', '30308', '23244', '53260', '100728', '70268', '36980', '70744', '29068', '64412', '88760', '23416', '87976', '46672', '30772', '22296', '109392', '66024', '13476', '103880', '28512', '35912', '46664', '43912', '61708', '88080', '32712', '33836', '26832', '60968', '33212', '3540', '65164', '102208', '84224', '98900' [22:42:17.130] Parsed: '0', '4', '1064', '1904', '2000', '1956', '2044', '2104', '2112', '2168', '2288', '2316', '2372', '2416', '2476', '2552', '2580', '2584', '2592', '2676', '2724', '2736', '2744', '2896', '2904', '2940', '1948', '2388', '1888', '3076', '3100', '3132', '3164', '3248', '3300', '3304', '3316', '3524', '3708', '3732', '3784', '3856', '3972', '4184', '4228', '4280', '4296', '4444', '4552', '4560', '4568', '4576', '4584', '4592', '4628', '4644', '4652', '4664', '4672', '5124', '5144', '5216', '6604', '8184', '6616', '8248', '8300', '9132', '10552', '4192', '4624', '4752', '4548', '8824', '836', '4828', '2304', '2328', '2140', '3428', '8696', '3988', '8760', '8168', '3000', '3828', '4356', '8440', '4820', '3152', '11544', '11788', '11840', '11980', '12064', '12196', '11884', '12428', '12636', '12788', '12836', '12872', '12920', '13232', '11960', '13176', '13104', '13348', '13428', '13652', '13792', '13932', '13252', '3336', '14464', '11852', '15280', '9672', '2424', '22048', '35608', '3764', '84468', '32988', '25244', '40528', '24492', '19620', '58268', '40964', '27812', '21576', '108564', '85480', '101452', '43740', '24744', '68324', '30308', '23244', '53260', '100728', '70268', '36980', '70744', '29068', '64412', '88760', '23416', '87976', '46672', '30772', '22296', '109392', '66024', '13476', '103880', '28512', '35912', '46664', '43912', '61708', '88080', '32712', '33836', '26832', '60968', '33212', '3540', '65164', '102208', '84224', '98900' [22:42:17.131] Equals PID: 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'TRUE', 'FALSE' [22:42:17.131] - success [22:42:17.132] Attempting to find a working pid_exists_*() function ... done > printf("Does it exist: %s\n", exists) Does it exist: TRUE > stopifnot(is.logical(exists), length(exists) == 1, + isTRUE(exists) || is.na(exists)) > message("*** pid_exists() ... DONE") *** pid_exists() ... DONE > message("*** inRCmdCheck() ...") *** inRCmdCheck() ... > cat(sprintf("R CMD check is running: %s\n", inRCmdCheck())) R CMD check is running: TRUE > message("*** inRCmdCheck() ... DONE") *** inRCmdCheck() ... DONE > message("*** trim() ...") *** trim() ... > trim <- parallelly:::trim > stopifnot(identical(trim(" hello "), "hello"), identical(trim("hello"), + "hello"), identical(trim("\t hello \n"), "hello"), identical(trim(" ..." ... [TRUNCATED] > message("*** trim() ... DONE") *** trim() ... DONE > message("*** commaq() ...") *** commaq() ... > commaq <- parallelly:::commaq > res <- commaq("a") > stopifnot(identical(res, sQuote("a"))) > res <- commaq(c("a", "b")) > stopifnot(identical(res, paste(sQuote(c("a", "b")), + collapse = ", "))) > res <- commaq(character(0)) > stopifnot(identical(res, "")) > message("*** commaq() ... DONE") *** commaq() ... DONE > message("*** hpaste() - lastCollapse ...") *** hpaste() - lastCollapse ... > res <- hpaste(c("a", "b"), lastCollapse = " and ") > stopifnot(identical(res, "a and b")) > res <- hpaste("a", lastCollapse = " and ") > stopifnot(identical(res, "a")) > message("*** hpaste() - lastCollapse ... DONE") *** hpaste() - lastCollapse ... DONE > message("*** pid_exists() - argument validation ...") *** pid_exists() - argument validation ... > result <- pid_exists(2^31 - 1) [22:42:17.816] Call: tasklist [22:42:17.817] [1] "" [22:42:17.817] [2] "Abbildname PID Sitzungsname Sitz.-Nr. Speichernutzung" [22:42:17.817] [3] "========================= ======== ================ =========== ===============" [22:42:17.817] [4] "System Idle Process 0 Services 0 8 K" [22:42:17.817] [5] "System 4 Services 0 148 K" [22:42:17.817] [6] "Registry 1064 Services 0 111.864 K" [22:42:17.817] [7] "smss.exe 1904 Services 0 1.292 K" [22:42:17.817] [8] "csrss.exe 2000 Services 0 6.880 K" [22:42:17.817] [9] "wininit.exe 1956 Services 0 7.316 K" [22:42:17.817] [10] "csrss.exe 2044 Console 1 6.076 K" [22:42:17.817] [11] "services.exe 2104 Services 0 16.172 K" [22:42:17.817] [12] "winlogon.exe 2112 Console 1 10.580 K" [22:42:17.817] [13] "lsass.exe 2168 Services 0 87.292 K" [22:42:17.817] [14] "svchost.exe 2288 Services 0 33.984 K" [22:42:17.817] [15] "fontdrvhost.exe 2316 Services 0 4.528 K" [22:42:17.817] [16] "svchost.exe 2372 Services 0 52.816 K" [22:42:17.817] [17] "svchost.exe 2416 Services 0 13.220 K" [22:42:17.817] [18] "fontdrvhost.exe 2476 Console 1 4.388 K" [22:42:17.817] [19] "svchost.exe 2552 Services 0 44.472 K" [22:42:17.817] [20] "svchost.exe 2580 Services 0 8.288 K" [22:42:17.817] [21] "svchost.exe 2584 Services 0 9.656 K" [22:42:17.817] [22] "svchost.exe 2592 Services 0 5.740 K" [22:42:17.817] [23] "svchost.exe 2676 Services 0 9.088 K" [22:42:17.817] [24] "svchost.exe 2724 Services 0 11.788 K" [22:42:17.817] [25] "svchost.exe 2736 Services 0 10.656 K" [22:42:17.817] [26] "svchost.exe 2744 Services 0 12.548 K" [22:42:17.817] [27] "svchost.exe 2896 Services 0 22.504 K" [22:42:17.817] [28] "svchost.exe 2904 Services 0 6.232 K" [22:42:17.817] [29] "svchost.exe 2940 Services 0 21.612 K" [22:42:17.817] [30] "svchost.exe 1948 Services 0 13.944 K" [22:42:17.817] [31] "svchost.exe 2388 Services 0 21.052 K" [22:42:17.817] [32] "LogonUI.exe 1888 Console 1 48.860 K" [22:42:17.817] [33] "svchost.exe 3076 Services 0 12.052 K" [22:42:17.817] [34] "svchost.exe 3100 Services 0 7.892 K" [22:42:17.817] [35] "svchost.exe 3132 Services 0 19.160 K" [22:42:17.817] [36] "dwm.exe 3164 Console 1 45.620 K" [22:42:17.817] [37] "svchost.exe 3248 Services 0 11.852 K" [22:42:17.817] [38] "svchost.exe 3300 Services 0 6.276 K" [22:42:17.817] [39] "svchost.exe 3304 Services 0 14.832 K" [22:42:17.817] [40] "svchost.exe 3316 Services 0 8.608 K" [22:42:17.817] [41] "svchost.exe 3524 Services 0 9.092 K" [22:42:17.817] [42] "svchost.exe 3708 Services 0 9.652 K" [22:42:17.817] [43] "svchost.exe 3732 Services 0 10.260 K" [22:42:17.817] [44] "svchost.exe 3784 Services 0 14.024 K" [22:42:17.817] [45] "svchost.exe 3856 Services 0 7.880 K" [22:42:17.817] [46] "svchost.exe 3972 Services 0 9.292 K" [22:42:17.817] [47] "svchost.exe 4184 Services 0 8.200 K" [22:42:17.817] [48] "svchost.exe 4228 Services 0 9.740 K" [22:42:17.817] [49] "WUDFHost.exe 4280 Services 0 9.296 K" [22:42:17.817] [50] "svchost.exe 4296 Services 0 10.276 K" [22:42:17.817] [51] "spoolsv.exe 4444 Services 0 27.480 K" [22:42:17.817] [52] "svchost.exe 4552 Services 0 7.056 K" [22:42:17.817] [53] "svchost.exe 4560 Services 0 39.516 K" [22:42:17.817] [54] "cvfwd.exe 4568 Services 0 26.652 K" [22:42:17.817] [55] "svchost.exe 4576 Services 0 23.804 K" [22:42:17.817] [56] "IpOverUsbSvc.exe 4584 Services 0 15.528 K" [22:42:17.817] [57] "svchost.exe 4592 Services 0 8.064 K" [22:42:17.817] [58] "svchost.exe 4628 Services 0 5.916 K" [22:42:17.817] [59] "svchost.exe 4644 Services 0 30.484 K" [22:42:17.817] [60] "svchost.exe 4652 Services 0 14.980 K" [22:42:17.817] [61] "svchost.exe 4664 Services 0 12.120 K" [22:42:17.817] [62] "svchost.exe 4672 Services 0 7.632 K" [22:42:17.817] [63] "svchost.exe 5124 Services 0 10.172 K" [22:42:17.817] [64] "cvd.exe 5144 Services 0 323.756 K" [22:42:17.817] [65] "svchost.exe 5216 Services 0 14.172 K" [22:42:17.817] [66] "AggregatorHost.exe 6604 Services 0 11.064 K" [22:42:17.817] [67] "svchost.exe 8184 Services 0 8.048 K" [22:42:17.817] [68] "ClMgrS.exe 6616 Services 0 48.616 K" [22:42:17.817] [69] "dllhost.exe 8248 Services 0 13.760 K" [22:42:17.817] [70] "svchost.exe 8300 Services 0 7.664 K" [22:42:17.817] [71] "WmiPrvSE.exe 9132 Services 0 73.544 K" [22:42:17.817] [72] "svchost.exe 10552 Services 0 17.532 K" [22:42:17.817] [73] "svchost.exe 4192 Services 0 14.256 K" [22:42:17.817] [74] "svchost.exe 4624 Services 0 38.456 K" [22:42:17.817] [75] "svchost.exe 4752 Services 0 7.924 K" [22:42:17.817] [76] "svchost.exe 4548 Services 0 13.436 K" [22:42:17.817] [77] "msdtc.exe 8824 Services 0 11.264 K" [22:42:17.817] [78] "svchost.exe 836 Services 0 24.136 K" [22:42:17.817] [79] "svchost.exe 4828 Services 0 13.472 K" [22:42:17.817] [80] "csrss.exe 2304 2 13.092 K" [22:42:17.817] [81] "winlogon.exe 2328 2 10.980 K" [22:42:17.817] [82] "fontdrvhost.exe 2140 2 9.448 K" [22:42:17.817] [83] "dwm.exe 3428 2 41.288 K" [22:42:17.817] [84] "svchost.exe 8696 Services 0 16.804 K" [22:42:17.817] [85] "rdpclip.exe 3988 2 11.996 K" [22:42:17.817] [86] "svchost.exe 8760 2 17.540 K" [22:42:17.817] [87] "svchost.exe 8168 2 28.364 K" [22:42:17.817] [88] "sihost.exe 3000 2 27.732 K" [22:42:17.817] [89] "svchost.exe 3828 Services 0 16.900 K" [22:42:17.817] [90] "svchost.exe 4356 Services 0 7.896 K" [22:42:17.817] [91] "svchost.exe 8440 Services 0 11.036 K" [22:42:17.817] [92] "ctfmon.exe 4820 2 20.776 K" [22:42:17.817] [93] "taskhostw.exe 3152 2 15.324 K" [22:42:17.817] [94] "explorer.exe 11544 2 168.388 K" [22:42:17.817] [95] "csrss.exe 11788 3 10.272 K" [22:42:17.817] [96] "winlogon.exe 11840 3 11.184 K" [22:42:17.817] [97] "StartMenuExperienceHost.e 11980 2 64.092 K" [22:42:17.817] [98] "RuntimeBroker.exe 12064 2 22.932 K" [22:42:17.817] [99] "fontdrvhost.exe 12196 3 14.044 K" [22:42:17.817] [100] "dwm.exe 11884 3 52.036 K" [22:42:17.817] [101] "SearchApp.exe 12428 2 167.160 K" [22:42:17.817] [102] "RuntimeBroker.exe 12636 2 55.472 K" [22:42:17.817] [103] "rdpclip.exe 12788 3 13.824 K" [22:42:17.817] [104] "sihost.exe 12836 3 28.352 K" [22:42:17.817] [105] "svchost.exe 12872 3 17.836 K" [22:42:17.817] [106] "svchost.exe 12920 3 30.392 K" [22:42:17.817] [107] "explorer.exe 13232 3 665.256 K" [22:42:17.817] [108] "taskhostw.exe 11960 3 16.692 K" [22:42:17.817] [109] "RuntimeBroker.exe 13176 2 15.904 K" [22:42:17.817] [110] "StartMenuExperienceHost.e 13104 3 58.316 K" [22:42:17.817] [111] "RuntimeBroker.exe 13348 3 22.424 K" [22:42:17.817] [112] "SearchApp.exe 13428 3 86.596 K" [22:42:17.817] [113] "RuntimeBroker.exe 13652 3 32.000 K" [22:42:17.817] [114] "ctfmon.exe 13792 3 21.460 K" [22:42:17.817] [115] "RuntimeBroker.exe 13932 3 15.784 K" [22:42:17.817] [116] "svchost.exe 13252 Services 0 10.132 K" [22:42:17.817] [117] "svchost.exe 3336 2 17.516 K" [22:42:17.817] [118] "svchost.exe 14464 3 17.396 K" [22:42:17.817] [119] "svchost.exe 11852 Services 0 13.292 K" [22:42:17.817] [120] "svchost.exe 15280 Services 0 22.276 K" [22:42:17.817] [121] "TextInputHost.exe 9672 3 45.324 K" [22:42:17.817] [122] "taskhostw.exe 2424 3 16.184 K" [22:42:17.817] [123] "svchost.exe 22048 Services 0 13.604 K" [22:42:17.817] [124] "svchost.exe 35608 Services 0 7.764 K" [22:42:17.817] [125] "SecurityHealthService.exe 3764 Services 0 12.260 K" [22:42:17.817] [126] "ShellExperienceHost.exe 84468 3 50.532 K" [22:42:17.817] [127] "RuntimeBroker.exe 32988 3 20.128 K" [22:42:17.817] [128] "MpDefenderCoreService.exe 25244 Services 0 38.364 K" [22:42:17.817] [129] "MsMpEng.exe 40528 Services 0 663.792 K" [22:42:17.817] [130] "NisSrv.exe 24492 Services 0 14.604 K" [22:42:17.817] [131] "MusNotifyIcon.exe 19620 2 14.104 K" [22:42:17.817] [132] "TextInputHost.exe 58268 2 44.128 K" [22:42:17.817] [133] "dllhost.exe 40964 2 13.908 K" [22:42:17.817] [134] "LogonUI.exe 27812 3 31.244 K" [22:42:17.817] [135] "explorer.exe 21576 3 197.060 K" [22:42:17.817] [136] "cmd.exe 108564 3 5.388 K" [22:42:17.817] [137] "conhost.exe 85480 3 17.532 K" [22:42:17.817] [138] "R.exe 101452 3 5.480 K" [22:42:17.817] [139] "Rterm.exe 43740 3 177.012 K" [22:42:17.817] [140] "cmd.exe 24744 3 4.576 K" [22:42:17.817] [141] "make.exe 68324 3 134.344 K" [22:42:17.817] [142] "sh.exe 30308 3 8.264 K" [22:42:17.817] [143] "R.exe 23244 3 5.360 K" [22:42:17.817] [144] "cmd.exe 53260 3 4.604 K" [22:42:17.817] [145] "Rterm.exe 100728 3 31.808 K" [22:42:17.817] [146] "cmd.exe 70268 3 4.592 K" [22:42:17.817] [147] "R.exe 36980 3 5.612 K" [22:42:17.817] [148] "cmd.exe 70744 3 4.608 K" [22:42:17.817] [149] "Rterm.exe 29068 3 118.408 K" [22:42:17.817] [150] "Rterm.exe 64412 3 63.748 K" [22:42:17.817] [151] "R.exe 88760 3 5.516 K" [22:42:17.817] [152] "Rterm.exe 23416 3 267.172 K" [22:42:17.817] [153] "mintty.exe 87976 2 17.964 K" [22:42:17.817] [154] "conhost.exe 46672 2 13.348 K" [22:42:17.817] [155] "bash.exe 30772 2 9.980 K" [22:42:17.817] [156] "LogonUI.exe 22296 2 31.268 K" [22:42:17.817] [157] "WmiPrvSE.exe 109392 Services 0 13.416 K" [22:42:17.817] [158] "cmd.exe 66024 3 5.708 K" [22:42:17.817] [159] "conhost.exe 13476 3 17.380 K" [22:42:17.817] [160] "R.exe 103880 3 5.528 K" [22:42:17.817] [161] "Rterm.exe 28512 3 115.696 K" [22:42:17.817] [162] "cmd.exe 35912 3 4.624 K" [22:42:17.817] [163] "make.exe 46664 3 8.372 K" [22:42:17.817] [164] "sh.exe 43912 3 8.336 K" [22:42:17.817] [165] "R.exe 61708 3 5.364 K" [22:42:17.817] [166] "cmd.exe 88080 3 4.628 K" [22:42:17.817] [167] "Rterm.exe 32712 3 22.020 K" [22:42:17.817] [168] "cmd.exe 33836 3 4.596 K" [22:42:17.817] [169] "R.exe 26832 3 5.596 K" [22:42:17.817] [170] "cmd.exe 60968 3 4.616 K" [22:42:17.817] [171] "Rterm.exe 33212 3 296.908 K" [22:42:17.817] [172] "Rterm.exe 3540 3 67.080 K" [22:42:17.817] [173] "WmiPrvSE.exe 65164 Services 0 16.072 K" [22:42:17.817] [174] "R.exe 102208 3 5.580 K" [22:42:17.817] [175] "Rterm.exe 84224 3 75.616 K" [22:42:17.817] [176] "tasklist.exe 77760 3 9.420 K" [22:42:17.822] chr [1:176] "" ... [22:42:17.825] Column widths: [22:42:17.826] [1] "========================= ======== ================ =========== ===============" [22:42:17.826] [,1] [,2] [,3] [,4] [,5] [22:42:17.826] from 1 27 36 53 65 [22:42:17.826] to 25 34 51 63 79 [22:42:17.827] [1] "=========================" "========" [22:42:17.827] [3] "================" "===========" [22:42:17.827] [5] "===============" [22:42:17.829] Trimmed: [22:42:17.829] [,1] [,2] [,3] [,4] [,5] [22:42:17.829] [1,] "System Idle Process" "0" "Services" "0" "8 K" [22:42:17.829] [2,] "System" "4" "Services" "0" "148 K" [22:42:17.829] [3,] "Registry" "1064" "Services" "0" "111.864 K" [22:42:17.829] [4,] "smss.exe" "1904" "Services" "0" "1.292 K" [22:42:17.829] [5,] "csrss.exe" "2000" "Services" "0" "6.880 K" [22:42:17.829] [6,] "wininit.exe" "1956" "Services" "0" "7.316 K" [22:42:17.829] [7,] "csrss.exe" "2044" "Console" "1" "6.076 K" [22:42:17.829] [8,] "services.exe" "2104" "Services" "0" "16.172 K" [22:42:17.829] [9,] "winlogon.exe" "2112" "Console" "1" "10.580 K" [22:42:17.829] [10,] "lsass.exe" "2168" "Services" "0" "87.292 K" [22:42:17.829] [11,] "svchost.exe" "2288" "Services" "0" "33.984 K" [22:42:17.829] [12,] "fontdrvhost.exe" "2316" "Services" "0" "4.528 K" [22:42:17.829] [13,] "svchost.exe" "2372" "Services" "0" "52.816 K" [22:42:17.829] [14,] "svchost.exe" "2416" "Services" "0" "13.220 K" [22:42:17.829] [15,] "fontdrvhost.exe" "2476" "Console" "1" "4.388 K" [22:42:17.829] [16,] "svchost.exe" "2552" "Services" "0" "44.472 K" [22:42:17.829] [17,] "svchost.exe" "2580" "Services" "0" "8.288 K" [22:42:17.829] [18,] "svchost.exe" "2584" "Services" "0" "9.656 K" [22:42:17.829] [19,] "svchost.exe" "2592" "Services" "0" "5.740 K" [22:42:17.829] [20,] "svchost.exe" "2676" "Services" "0" "9.088 K" [22:42:17.829] [21,] "svchost.exe" "2724" "Services" "0" "11.788 K" [22:42:17.829] [22,] "svchost.exe" "2736" "Services" "0" "10.656 K" [22:42:17.829] [23,] "svchost.exe" "2744" "Services" "0" "12.548 K" [22:42:17.829] [24,] "svchost.exe" "2896" "Services" "0" "22.504 K" [22:42:17.829] [25,] "svchost.exe" "2904" "Services" "0" "6.232 K" [22:42:17.829] [26,] "svchost.exe" "2940" "Services" "0" "21.612 K" [22:42:17.829] [27,] "svchost.exe" "1948" "Services" "0" "13.944 K" [22:42:17.829] [28,] "svchost.exe" "2388" "Services" "0" "21.052 K" [22:42:17.829] [29,] "LogonUI.exe" "1888" "Console" "1" "48.860 K" [22:42:17.829] [30,] "svchost.exe" "3076" "Services" "0" "12.052 K" [22:42:17.829] [31,] "svchost.exe" "3100" "Services" "0" "7.892 K" [22:42:17.829] [32,] "svchost.exe" "3132" "Services" "0" "19.160 K" [22:42:17.829] [33,] "dwm.exe" "3164" "Console" "1" "45.620 K" [22:42:17.829] [34,] "svchost.exe" "3248" "Services" "0" "11.852 K" [22:42:17.829] [35,] "svchost.exe" "3300" "Services" "0" "6.276 K" [22:42:17.829] [36,] "svchost.exe" "3304" "Services" "0" "14.832 K" [22:42:17.829] [37,] "svchost.exe" "3316" "Services" "0" "8.608 K" [22:42:17.829] [38,] "svchost.exe" "3524" "Services" "0" "9.092 K" [22:42:17.829] [39,] "svchost.exe" "3708" "Services" "0" "9.652 K" [22:42:17.829] [40,] "svchost.exe" "3732" "Services" "0" "10.260 K" [22:42:17.829] [41,] "svchost.exe" "3784" "Services" "0" "14.024 K" [22:42:17.829] [42,] "svchost.exe" "3856" "Services" "0" "7.880 K" [22:42:17.829] [43,] "svchost.exe" "3972" "Services" "0" "9.292 K" [22:42:17.829] [44,] "svchost.exe" "4184" "Services" "0" "8.200 K" [22:42:17.829] [45,] "svchost.exe" "4228" "Services" "0" "9.740 K" [22:42:17.829] [46,] "WUDFHost.exe" "4280" "Services" "0" "9.296 K" [22:42:17.829] [47,] "svchost.exe" "4296" "Services" "0" "10.276 K" [22:42:17.829] [48,] "spoolsv.exe" "4444" "Services" "0" "27.480 K" [22:42:17.829] [49,] "svchost.exe" "4552" "Services" "0" "7.056 K" [22:42:17.829] [50,] "svchost.exe" "4560" "Services" "0" "39.516 K" [22:42:17.829] [51,] "cvfwd.exe" "4568" "Services" "0" "26.652 K" [22:42:17.829] [52,] "svchost.exe" "4576" "Services" "0" "23.804 K" [22:42:17.829] [53,] "IpOverUsbSvc.exe" "4584" "Services" "0" "15.528 K" [22:42:17.829] [54,] "svchost.exe" "4592" "Services" "0" "8.064 K" [22:42:17.829] [55,] "svchost.exe" "4628" "Services" "0" "5.916 K" [22:42:17.829] [56,] "svchost.exe" "4644" "Services" "0" "30.484 K" [22:42:17.829] [57,] "svchost.exe" "4652" "Services" "0" "14.980 K" [22:42:17.829] [58,] "svchost.exe" "4664" "Services" "0" "12.120 K" [22:42:17.829] [59,] "svchost.exe" "4672" "Services" "0" "7.632 K" [22:42:17.829] [60,] "svchost.exe" "5124" "Services" "0" "10.172 K" [22:42:17.829] [61,] "cvd.exe" "5144" "Services" "0" "323.756 K" [22:42:17.829] [62,] "svchost.exe" "5216" "Services" "0" "14.172 K" [22:42:17.829] [63,] "AggregatorHost.exe" "6604" "Services" "0" "11.064 K" [22:42:17.829] [64,] "svchost.exe" "8184" "Services" "0" "8.048 K" [22:42:17.829] [65,] "ClMgrS.exe" "6616" "Services" "0" "48.616 K" [22:42:17.829] [66,] "dllhost.exe" "8248" "Services" "0" "13.760 K" [22:42:17.829] [67,] "svchost.exe" "8300" "Services" "0" "7.664 K" [22:42:17.829] [68,] "WmiPrvSE.exe" "9132" "Services" "0" "73.544 K" [22:42:17.829] [69,] "svchost.exe" "10552" "Services" "0" "17.532 K" [22:42:17.829] [70,] "svchost.exe" "4192" "Services" "0" "14.256 K" [22:42:17.829] [71,] "svchost.exe" "4624" "Services" "0" "38.456 K" [22:42:17.829] [72,] "svchost.exe" "4752" "Services" "0" "7.924 K" [22:42:17.829] [73,] "svchost.exe" "4548" "Services" "0" "13.436 K" [22:42:17.829] [74,] "msdtc.exe" "8824" "Services" "0" "11.264 K" [22:42:17.829] [75,] "svchost.exe" "836" "Services" "0" "24.136 K" [22:42:17.829] [76,] "svchost.exe" "4828" "Services" "0" "13.472 K" [22:42:17.829] [77,] "csrss.exe" "2304" "" "2" "13.092 K" [22:42:17.829] [78,] "winlogon.exe" "2328" "" "2" "10.980 K" [22:42:17.829] [79,] "fontdrvhost.exe" "2140" "" "2" "9.448 K" [22:42:17.829] [80,] "dwm.exe" "3428" "" "2" "41.288 K" [22:42:17.829] [81,] "svchost.exe" "8696" "Services" "0" "16.804 K" [22:42:17.829] [82,] "rdpclip.exe" "3988" "" "2" "11.996 K" [22:42:17.829] [83,] "svchost.exe" "8760" "" "2" "17.540 K" [22:42:17.829] [84,] "svchost.exe" "8168" "" "2" "28.364 K" [22:42:17.829] [85,] "sihost.exe" "3000" "" "2" "27.732 K" [22:42:17.829] [86,] "svchost.exe" "3828" "Services" "0" "16.900 K" [22:42:17.829] [87,] "svchost.exe" "4356" "Services" "0" "7.896 K" [22:42:17.829] [88,] "svchost.exe" "8440" "Services" "0" "11.036 K" [22:42:17.829] [89,] "ctfmon.exe" "4820" "" "2" "20.776 K" [22:42:17.829] [90,] "taskhostw.exe" "3152" "" "2" "15.324 K" [22:42:17.829] [91,] "explorer.exe" "11544" "" "2" "168.388 K" [22:42:17.829] [92,] "csrss.exe" "11788" "" "3" "10.272 K" [22:42:17.829] [93,] "winlogon.exe" "11840" "" "3" "11.184 K" [22:42:17.829] [94,] "StartMenuExperienceHost.e" "11980" "" "2" "64.092 K" [22:42:17.829] [95,] "RuntimeBroker.exe" "12064" "" "2" "22.932 K" [22:42:17.829] [96,] "fontdrvhost.exe" "12196" "" "3" "14.044 K" [22:42:17.829] [97,] "dwm.exe" "11884" "" "3" "52.036 K" [22:42:17.829] [98,] "SearchApp.exe" "12428" "" "2" "167.160 K" [22:42:17.829] [99,] "RuntimeBroker.exe" "12636" "" "2" "55.472 K" [22:42:17.829] [100,] "rdpclip.exe" "12788" "" "3" "13.824 K" [22:42:17.829] [101,] "sihost.exe" "12836" "" "3" "28.352 K" [22:42:17.829] [102,] "svchost.exe" "12872" "" "3" "17.836 K" [22:42:17.829] [103,] "svchost.exe" "12920" "" "3" "30.392 K" [22:42:17.829] [104,] "explorer.exe" "13232" "" "3" "665.256 K" [22:42:17.829] [105,] "taskhostw.exe" "11960" "" "3" "16.692 K" [22:42:17.829] [106,] "RuntimeBroker.exe" "13176" "" "2" "15.904 K" [22:42:17.829] [107,] "StartMenuExperienceHost.e" "13104" "" "3" "58.316 K" [22:42:17.829] [108,] "RuntimeBroker.exe" "13348" "" "3" "22.424 K" [22:42:17.829] [109,] "SearchApp.exe" "13428" "" "3" "86.596 K" [22:42:17.829] [110,] "RuntimeBroker.exe" "13652" "" "3" "32.000 K" [22:42:17.829] [111,] "ctfmon.exe" "13792" "" "3" "21.460 K" [22:42:17.829] [112,] "RuntimeBroker.exe" "13932" "" "3" "15.784 K" [22:42:17.829] [113,] "svchost.exe" "13252" "Services" "0" "10.132 K" [22:42:17.829] [114,] "svchost.exe" "3336" "" "2" "17.516 K" [22:42:17.829] [115,] "svchost.exe" "14464" "" "3" "17.396 K" [22:42:17.829] [116,] "svchost.exe" "11852" "Services" "0" "13.292 K" [22:42:17.829] [117,] "svchost.exe" "15280" "Services" "0" "22.276 K" [22:42:17.829] [118,] "TextInputHost.exe" "9672" "" "3" "45.324 K" [22:42:17.829] [119,] "taskhostw.exe" "2424" "" "3" "16.184 K" [22:42:17.829] [120,] "svchost.exe" "22048" "Services" "0" "13.604 K" [22:42:17.829] [121,] "svchost.exe" "35608" "Services" "0" "7.764 K" [22:42:17.829] [122,] "SecurityHealthService.exe" "3764" "Services" "0" "12.260 K" [22:42:17.829] [123,] "ShellExperienceHost.exe" "84468" "" "3" "50.532 K" [22:42:17.829] [124,] "RuntimeBroker.exe" "32988" "" "3" "20.128 K" [22:42:17.829] [125,] "MpDefenderCoreService.exe" "25244" "Services" "0" "38.364 K" [22:42:17.829] [126,] "MsMpEng.exe" "40528" "Services" "0" "663.792 K" [22:42:17.829] [127,] "NisSrv.exe" "24492" "Services" "0" "14.604 K" [22:42:17.829] [128,] "MusNotifyIcon.exe" "19620" "" "2" "14.104 K" [22:42:17.829] [129,] "TextInputHost.exe" "58268" "" "2" "44.128 K" [22:42:17.829] [130,] "dllhost.exe" "40964" "" "2" "13.908 K" [22:42:17.829] [131,] "LogonUI.exe" "27812" "" "3" "31.244 K" [22:42:17.829] [132,] "explorer.exe" "21576" "" "3" "197.060 K" [22:42:17.829] [133,] "cmd.exe" "108564" "" "3" "5.388 K" [22:42:17.829] [134,] "conhost.exe" "85480" "" "3" "17.532 K" [22:42:17.829] [135,] "R.exe" "101452" "" "3" "5.480 K" [22:42:17.829] [136,] "Rterm.exe" "43740" "" "3" "177.012 K" [22:42:17.829] [137,] "cmd.exe" "24744" "" "3" "4.576 K" [22:42:17.829] [138,] "make.exe" "68324" "" "3" "134.344 K" [22:42:17.829] [139,] "sh.exe" "30308" "" "3" "8.264 K" [22:42:17.829] [140,] "R.exe" "23244" "" "3" "5.360 K" [22:42:17.829] [141,] "cmd.exe" "53260" "" "3" "4.604 K" [22:42:17.829] [142,] "Rterm.exe" "100728" "" "3" "31.808 K" [22:42:17.829] [143,] "cmd.exe" "70268" "" "3" "4.592 K" [22:42:17.829] [144,] "R.exe" "36980" "" "3" "5.612 K" [22:42:17.829] [145,] "cmd.exe" "70744" "" "3" "4.608 K" [22:42:17.829] [146,] "Rterm.exe" "29068" "" "3" "118.408 K" [22:42:17.829] [147,] "Rterm.exe" "64412" "" "3" "63.748 K" [22:42:17.829] [148,] "R.exe" "88760" "" "3" "5.516 K" [22:42:17.829] [149,] "Rterm.exe" "23416" "" "3" "267.172 K" [22:42:17.829] [150,] "mintty.exe" "87976" "" "2" "17.964 K" [22:42:17.829] [151,] "conhost.exe" "46672" "" "2" "13.348 K" [22:42:17.829] [152,] "bash.exe" "30772" "" "2" "9.980 K" [22:42:17.829] [153,] "LogonUI.exe" "22296" "" "2" "31.268 K" [22:42:17.829] [154,] "WmiPrvSE.exe" "109392" "Services" "0" "13.416 K" [22:42:17.829] [155,] "cmd.exe" "66024" "" "3" "5.708 K" [22:42:17.829] [156,] "conhost.exe" "13476" "" "3" "17.380 K" [22:42:17.829] [157,] "R.exe" "103880" "" "3" "5.528 K" [22:42:17.829] [158,] "Rterm.exe" "28512" "" "3" "115.696 K" [22:42:17.829] [159,] "cmd.exe" "35912" "" "3" "4.624 K" [22:42:17.829] [160,] "make.exe" "46664" "" "3" "8.372 K" [22:42:17.829] [161,] "sh.exe" "43912" "" "3" "8.336 K" [22:42:17.829] [162,] "R.exe" "61708" "" "3" "5.364 K" [22:42:17.829] [163,] "cmd.exe" "88080" "" "3" "4.628 K" [22:42:17.829] [164,] "Rterm.exe" "32712" "" "3" "22.020 K" [22:42:17.829] [165,] "cmd.exe" "33836" "" "3" "4.596 K" [22:42:17.829] [166,] "R.exe" "26832" "" "3" "5.596 K" [22:42:17.829] [167,] "cmd.exe" "60968" "" "3" "4.616 K" [22:42:17.829] [168,] "Rterm.exe" "33212" "" "3" "296.908 K" [22:42:17.829] [169,] "Rterm.exe" "3540" "" "3" "67.080 K" [22:42:17.829] [170,] "WmiPrvSE.exe" "65164" "Services" "0" "16.072 K" [22:42:17.829] [171,] "R.exe" "102208" "" "3" "5.580 K" [22:42:17.829] [172,] "Rterm.exe" "84224" "" "3" "75.616 K" [22:42:17.829] [173,] "tasklist.exe" "77760" "" "3" "9.420 K" [22:42:17.832] Extracted: '0', '4', '1064', '1904', '2000', '1956', '2044', '2104', '2112', '2168', '2288', '2316', '2372', '2416', '2476', '2552', '2580', '2584', '2592', '2676', '2724', '2736', '2744', '2896', '2904', '2940', '1948', '2388', '1888', '3076', '3100', '3132', '3164', '3248', '3300', '3304', '3316', '3524', '3708', '3732', '3784', '3856', '3972', '4184', '4228', '4280', '4296', '4444', '4552', '4560', '4568', '4576', '4584', '4592', '4628', '4644', '4652', '4664', '4672', '5124', '5144', '5216', '6604', '8184', '6616', '8248', '8300', '9132', '10552', '4192', '4624', '4752', '4548', '8824', '836', '4828', '2304', '2328', '2140', '3428', '8696', '3988', '8760', '8168', '3000', '3828', '4356', '8440', '4820', '3152', '11544', '11788', '11840', '11980', '12064', '12196', '11884', '12428', '12636', '12788', '12836', '12872', '12920', '13232', '11960', '13176', '13104', '13348', '13428', '13652', '13792', '13932', '13252', '3336', '14464', '11852', '15280', '9672', '2424', '22048', '35608', '3764', '84468', '32988', '25244', '40528', '24492', '19620', '58268', '40964', '27812', '21576', '108564', '85480', '101452', '43740', '24744', '68324', '30308', '23244', '53260', '100728', '70268', '36980', '70744', '29068', '64412', '88760', '23416', '87976', '46672', '30772', '22296', '109392', '66024', '13476', '103880', '28512', '35912', '46664', '43912', '61708', '88080', '32712', '33836', '26832', '60968', '33212', '3540', '65164', '102208', '84224', '77760' [22:42:17.833] Parsed: '0', '4', '1064', '1904', '2000', '1956', '2044', '2104', '2112', '2168', '2288', '2316', '2372', '2416', '2476', '2552', '2580', '2584', '2592', '2676', '2724', '2736', '2744', '2896', '2904', '2940', '1948', '2388', '1888', '3076', '3100', '3132', '3164', '3248', '3300', '3304', '3316', '3524', '3708', '3732', '3784', '3856', '3972', '4184', '4228', '4280', '4296', '4444', '4552', '4560', '4568', '4576', '4584', '4592', '4628', '4644', '4652', '4664', '4672', '5124', '5144', '5216', '6604', '8184', '6616', '8248', '8300', '9132', '10552', '4192', '4624', '4752', '4548', '8824', '836', '4828', '2304', '2328', '2140', '3428', '8696', '3988', '8760', '8168', '3000', '3828', '4356', '8440', '4820', '3152', '11544', '11788', '11840', '11980', '12064', '12196', '11884', '12428', '12636', '12788', '12836', '12872', '12920', '13232', '11960', '13176', '13104', '13348', '13428', '13652', '13792', '13932', '13252', '3336', '14464', '11852', '15280', '9672', '2424', '22048', '35608', '3764', '84468', '32988', '25244', '40528', '24492', '19620', '58268', '40964', '27812', '21576', '108564', '85480', '101452', '43740', '24744', '68324', '30308', '23244', '53260', '100728', '70268', '36980', '70744', '29068', '64412', '88760', '23416', '87976', '46672', '30772', '22296', '109392', '66024', '13476', '103880', '28512', '35912', '46664', '43912', '61708', '88080', '32712', '33836', '26832', '60968', '33212', '3540', '65164', '102208', '84224', '77760' [22:42:17.834] Equals PID: 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE' [22:42:18.426] Call: tasklist [22:42:18.427] [1] "" [22:42:18.427] [2] "Abbildname PID Sitzungsname Sitz.-Nr. Speichernutzung" [22:42:18.427] [3] "========================= ======== ================ =========== ===============" [22:42:18.427] [4] "System Idle Process 0 Services 0 8 K" [22:42:18.427] [5] "System 4 Services 0 148 K" [22:42:18.427] [6] "Registry 1064 Services 0 111.864 K" [22:42:18.427] [7] "smss.exe 1904 Services 0 1.292 K" [22:42:18.427] [8] "csrss.exe 2000 Services 0 6.880 K" [22:42:18.427] [9] "wininit.exe 1956 Services 0 7.316 K" [22:42:18.427] [10] "csrss.exe 2044 Console 1 6.076 K" [22:42:18.427] [11] "services.exe 2104 Services 0 16.172 K" [22:42:18.427] [12] "winlogon.exe 2112 Console 1 10.580 K" [22:42:18.427] [13] "lsass.exe 2168 Services 0 87.292 K" [22:42:18.427] [14] "svchost.exe 2288 Services 0 33.984 K" [22:42:18.427] [15] "fontdrvhost.exe 2316 Services 0 4.528 K" [22:42:18.427] [16] "svchost.exe 2372 Services 0 52.816 K" [22:42:18.427] [17] "svchost.exe 2416 Services 0 13.212 K" [22:42:18.427] [18] "fontdrvhost.exe 2476 Console 1 4.388 K" [22:42:18.427] [19] "svchost.exe 2552 Services 0 44.472 K" [22:42:18.427] [20] "svchost.exe 2580 Services 0 8.288 K" [22:42:18.427] [21] "svchost.exe 2584 Services 0 9.656 K" [22:42:18.427] [22] "svchost.exe 2592 Services 0 5.740 K" [22:42:18.427] [23] "svchost.exe 2676 Services 0 9.088 K" [22:42:18.427] [24] "svchost.exe 2724 Services 0 11.788 K" [22:42:18.427] [25] "svchost.exe 2736 Services 0 10.656 K" [22:42:18.427] [26] "svchost.exe 2744 Services 0 12.548 K" [22:42:18.427] [27] "svchost.exe 2896 Services 0 22.504 K" [22:42:18.427] [28] "svchost.exe 2904 Services 0 6.232 K" [22:42:18.427] [29] "svchost.exe 2940 Services 0 21.612 K" [22:42:18.427] [30] "svchost.exe 1948 Services 0 13.944 K" [22:42:18.427] [31] "svchost.exe 2388 Services 0 21.052 K" [22:42:18.427] [32] "LogonUI.exe 1888 Console 1 48.860 K" [22:42:18.427] [33] "svchost.exe 3076 Services 0 12.052 K" [22:42:18.427] [34] "svchost.exe 3100 Services 0 7.892 K" [22:42:18.427] [35] "svchost.exe 3132 Services 0 19.160 K" [22:42:18.427] [36] "dwm.exe 3164 Console 1 45.620 K" [22:42:18.427] [37] "svchost.exe 3248 Services 0 11.852 K" [22:42:18.427] [38] "svchost.exe 3300 Services 0 6.276 K" [22:42:18.427] [39] "svchost.exe 3304 Services 0 14.832 K" [22:42:18.427] [40] "svchost.exe 3316 Services 0 8.608 K" [22:42:18.427] [41] "svchost.exe 3524 Services 0 9.092 K" [22:42:18.427] [42] "svchost.exe 3708 Services 0 9.652 K" [22:42:18.427] [43] "svchost.exe 3732 Services 0 10.260 K" [22:42:18.427] [44] "svchost.exe 3784 Services 0 14.024 K" [22:42:18.427] [45] "svchost.exe 3856 Services 0 7.880 K" [22:42:18.427] [46] "svchost.exe 3972 Services 0 9.292 K" [22:42:18.427] [47] "svchost.exe 4184 Services 0 8.200 K" [22:42:18.427] [48] "svchost.exe 4228 Services 0 9.740 K" [22:42:18.427] [49] "WUDFHost.exe 4280 Services 0 9.296 K" [22:42:18.427] [50] "svchost.exe 4296 Services 0 10.276 K" [22:42:18.427] [51] "spoolsv.exe 4444 Services 0 27.480 K" [22:42:18.427] [52] "svchost.exe 4552 Services 0 7.056 K" [22:42:18.427] [53] "svchost.exe 4560 Services 0 39.516 K" [22:42:18.427] [54] "cvfwd.exe 4568 Services 0 26.652 K" [22:42:18.427] [55] "svchost.exe 4576 Services 0 23.804 K" [22:42:18.427] [56] "IpOverUsbSvc.exe 4584 Services 0 15.528 K" [22:42:18.427] [57] "svchost.exe 4592 Services 0 8.064 K" [22:42:18.427] [58] "svchost.exe 4628 Services 0 5.916 K" [22:42:18.427] [59] "svchost.exe 4644 Services 0 30.180 K" [22:42:18.427] [60] "svchost.exe 4652 Services 0 14.980 K" [22:42:18.427] [61] "svchost.exe 4664 Services 0 12.120 K" [22:42:18.427] [62] "svchost.exe 4672 Services 0 7.632 K" [22:42:18.427] [63] "svchost.exe 5124 Services 0 10.172 K" [22:42:18.427] [64] "cvd.exe 5144 Services 0 323.756 K" [22:42:18.427] [65] "svchost.exe 5216 Services 0 14.172 K" [22:42:18.427] [66] "AggregatorHost.exe 6604 Services 0 11.064 K" [22:42:18.427] [67] "svchost.exe 8184 Services 0 8.048 K" [22:42:18.427] [68] "ClMgrS.exe 6616 Services 0 48.616 K" [22:42:18.427] [69] "dllhost.exe 8248 Services 0 13.760 K" [22:42:18.427] [70] "svchost.exe 8300 Services 0 7.664 K" [22:42:18.427] [71] "WmiPrvSE.exe 9132 Services 0 73.544 K" [22:42:18.427] [72] "svchost.exe 10552 Services 0 17.532 K" [22:42:18.427] [73] "svchost.exe 4192 Services 0 14.256 K" [22:42:18.427] [74] "svchost.exe 4624 Services 0 38.456 K" [22:42:18.427] [75] "svchost.exe 4752 Services 0 7.924 K" [22:42:18.427] [76] "svchost.exe 4548 Services 0 13.436 K" [22:42:18.427] [77] "msdtc.exe 8824 Services 0 11.264 K" [22:42:18.427] [78] "svchost.exe 836 Services 0 24.136 K" [22:42:18.427] [79] "svchost.exe 4828 Services 0 13.472 K" [22:42:18.427] [80] "csrss.exe 2304 2 13.092 K" [22:42:18.427] [81] "winlogon.exe 2328 2 10.980 K" [22:42:18.427] [82] "fontdrvhost.exe 2140 2 9.448 K" [22:42:18.427] [83] "dwm.exe 3428 2 41.288 K" [22:42:18.427] [84] "svchost.exe 8696 Services 0 16.804 K" [22:42:18.427] [85] "rdpclip.exe 3988 2 11.996 K" [22:42:18.427] [86] "svchost.exe 8760 2 17.540 K" [22:42:18.427] [87] "svchost.exe 8168 2 28.364 K" [22:42:18.427] [88] "sihost.exe 3000 2 27.732 K" [22:42:18.427] [89] "svchost.exe 3828 Services 0 16.900 K" [22:42:18.427] [90] "svchost.exe 4356 Services 0 7.896 K" [22:42:18.427] [91] "svchost.exe 8440 Services 0 11.036 K" [22:42:18.427] [92] "ctfmon.exe 4820 2 20.776 K" [22:42:18.427] [93] "taskhostw.exe 3152 2 15.324 K" [22:42:18.427] [94] "explorer.exe 11544 2 168.388 K" [22:42:18.427] [95] "csrss.exe 11788 3 10.272 K" [22:42:18.427] [96] "winlogon.exe 11840 3 11.184 K" [22:42:18.427] [97] "StartMenuExperienceHost.e 11980 2 64.092 K" [22:42:18.427] [98] "RuntimeBroker.exe 12064 2 22.932 K" [22:42:18.427] [99] "fontdrvhost.exe 12196 3 14.044 K" [22:42:18.427] [100] "dwm.exe 11884 3 52.036 K" [22:42:18.427] [101] "SearchApp.exe 12428 2 167.160 K" [22:42:18.427] [102] "RuntimeBroker.exe 12636 2 55.472 K" [22:42:18.427] [103] "rdpclip.exe 12788 3 13.824 K" [22:42:18.427] [104] "sihost.exe 12836 3 28.352 K" [22:42:18.427] [105] "svchost.exe 12872 3 17.836 K" [22:42:18.427] [106] "svchost.exe 12920 3 30.392 K" [22:42:18.427] [107] "explorer.exe 13232 3 665.256 K" [22:42:18.427] [108] "taskhostw.exe 11960 3 16.692 K" [22:42:18.427] [109] "RuntimeBroker.exe 13176 2 15.904 K" [22:42:18.427] [110] "StartMenuExperienceHost.e 13104 3 58.316 K" [22:42:18.427] [111] "RuntimeBroker.exe 13348 3 22.424 K" [22:42:18.427] [112] "SearchApp.exe 13428 3 86.596 K" [22:42:18.427] [113] "RuntimeBroker.exe 13652 3 32.000 K" [22:42:18.427] [114] "ctfmon.exe 13792 3 21.460 K" [22:42:18.427] [115] "RuntimeBroker.exe 13932 3 15.784 K" [22:42:18.427] [116] "svchost.exe 13252 Services 0 10.132 K" [22:42:18.427] [117] "svchost.exe 3336 2 17.516 K" [22:42:18.427] [118] "svchost.exe 14464 3 17.396 K" [22:42:18.427] [119] "svchost.exe 11852 Services 0 13.292 K" [22:42:18.427] [120] "svchost.exe 15280 Services 0 22.276 K" [22:42:18.427] [121] "TextInputHost.exe 9672 3 45.324 K" [22:42:18.427] [122] "taskhostw.exe 2424 3 16.184 K" [22:42:18.427] [123] "svchost.exe 22048 Services 0 13.604 K" [22:42:18.427] [124] "svchost.exe 35608 Services 0 7.764 K" [22:42:18.427] [125] "SecurityHealthService.exe 3764 Services 0 12.260 K" [22:42:18.427] [126] "ShellExperienceHost.exe 84468 3 50.532 K" [22:42:18.427] [127] "RuntimeBroker.exe 32988 3 20.128 K" [22:42:18.427] [128] "MpDefenderCoreService.exe 25244 Services 0 38.364 K" [22:42:18.427] [129] "MsMpEng.exe 40528 Services 0 663.792 K" [22:42:18.427] [130] "NisSrv.exe 24492 Services 0 14.604 K" [22:42:18.427] [131] "MusNotifyIcon.exe 19620 2 14.104 K" [22:42:18.427] [132] "TextInputHost.exe 58268 2 44.128 K" [22:42:18.427] [133] "dllhost.exe 40964 2 13.908 K" [22:42:18.427] [134] "LogonUI.exe 27812 3 31.244 K" [22:42:18.427] [135] "explorer.exe 21576 3 197.060 K" [22:42:18.427] [136] "cmd.exe 108564 3 5.388 K" [22:42:18.427] [137] "conhost.exe 85480 3 17.532 K" [22:42:18.427] [138] "R.exe 101452 3 5.480 K" [22:42:18.427] [139] "Rterm.exe 43740 3 177.012 K" [22:42:18.427] [140] "cmd.exe 24744 3 4.576 K" [22:42:18.427] [141] "make.exe 68324 3 134.344 K" [22:42:18.427] [142] "sh.exe 30308 3 8.264 K" [22:42:18.427] [143] "R.exe 23244 3 5.360 K" [22:42:18.427] [144] "cmd.exe 53260 3 4.604 K" [22:42:18.427] [145] "Rterm.exe 100728 3 31.808 K" [22:42:18.427] [146] "cmd.exe 70268 3 4.592 K" [22:42:18.427] [147] "R.exe 36980 3 5.612 K" [22:42:18.427] [148] "cmd.exe 70744 3 4.608 K" [22:42:18.427] [149] "Rterm.exe 29068 3 118.408 K" [22:42:18.427] [150] "Rterm.exe 64412 3 63.748 K" [22:42:18.427] [151] "R.exe 88760 3 5.516 K" [22:42:18.427] [152] "Rterm.exe 23416 3 267.172 K" [22:42:18.427] [153] "mintty.exe 87976 2 17.964 K" [22:42:18.427] [154] "conhost.exe 46672 2 13.348 K" [22:42:18.427] [155] "bash.exe 30772 2 9.980 K" [22:42:18.427] [156] "LogonUI.exe 22296 2 31.268 K" [22:42:18.427] [157] "WmiPrvSE.exe 109392 Services 0 13.416 K" [22:42:18.427] [158] "cmd.exe 66024 3 5.708 K" [22:42:18.427] [159] "conhost.exe 13476 3 17.380 K" [22:42:18.427] [160] "R.exe 103880 3 5.528 K" [22:42:18.427] [161] "Rterm.exe 28512 3 115.696 K" [22:42:18.427] [162] "cmd.exe 35912 3 4.624 K" [22:42:18.427] [163] "make.exe 46664 3 8.372 K" [22:42:18.427] [164] "sh.exe 43912 3 8.336 K" [22:42:18.427] [165] "R.exe 61708 3 5.364 K" [22:42:18.427] [166] "cmd.exe 88080 3 4.628 K" [22:42:18.427] [167] "Rterm.exe 32712 3 22.020 K" [22:42:18.427] [168] "cmd.exe 33836 3 4.596 K" [22:42:18.427] [169] "R.exe 26832 3 5.596 K" [22:42:18.427] [170] "cmd.exe 60968 3 4.616 K" [22:42:18.427] [171] "Rterm.exe 33212 3 296.908 K" [22:42:18.427] [172] "Rterm.exe 3540 3 67.080 K" [22:42:18.427] [173] "WmiPrvSE.exe 65164 Services 0 16.072 K" [22:42:18.427] [174] "R.exe 102208 3 5.580 K" [22:42:18.427] [175] "Rterm.exe 84224 3 75.872 K" [22:42:18.427] [176] "tasklist.exe 93084 3 9.412 K" [22:42:18.432] chr [1:176] "" ... [22:42:18.435] Column widths: [22:42:18.436] [1] "========================= ======== ================ =========== ===============" [22:42:18.437] [,1] [,2] [,3] [,4] [,5] [22:42:18.437] from 1 27 36 53 65 [22:42:18.437] to 25 34 51 63 79 [22:42:18.437] [1] "=========================" "========" [22:42:18.437] [3] "================" "===========" [22:42:18.437] [5] "===============" [22:42:18.439] Trimmed: [22:42:18.440] [,1] [,2] [,3] [,4] [,5] [22:42:18.440] [1,] "System Idle Process" "0" "Services" "0" "8 K" [22:42:18.440] [2,] "System" "4" "Services" "0" "148 K" [22:42:18.440] [3,] "Registry" "1064" "Services" "0" "111.864 K" [22:42:18.440] [4,] "smss.exe" "1904" "Services" "0" "1.292 K" [22:42:18.440] [5,] "csrss.exe" "2000" "Services" "0" "6.880 K" [22:42:18.440] [6,] "wininit.exe" "1956" "Services" "0" "7.316 K" [22:42:18.440] [7,] "csrss.exe" "2044" "Console" "1" "6.076 K" [22:42:18.440] [8,] "services.exe" "2104" "Services" "0" "16.172 K" [22:42:18.440] [9,] "winlogon.exe" "2112" "Console" "1" "10.580 K" [22:42:18.440] [10,] "lsass.exe" "2168" "Services" "0" "87.292 K" [22:42:18.440] [11,] "svchost.exe" "2288" "Services" "0" "33.984 K" [22:42:18.440] [12,] "fontdrvhost.exe" "2316" "Services" "0" "4.528 K" [22:42:18.440] [13,] "svchost.exe" "2372" "Services" "0" "52.816 K" [22:42:18.440] [14,] "svchost.exe" "2416" "Services" "0" "13.212 K" [22:42:18.440] [15,] "fontdrvhost.exe" "2476" "Console" "1" "4.388 K" [22:42:18.440] [16,] "svchost.exe" "2552" "Services" "0" "44.472 K" [22:42:18.440] [17,] "svchost.exe" "2580" "Services" "0" "8.288 K" [22:42:18.440] [18,] "svchost.exe" "2584" "Services" "0" "9.656 K" [22:42:18.440] [19,] "svchost.exe" "2592" "Services" "0" "5.740 K" [22:42:18.440] [20,] "svchost.exe" "2676" "Services" "0" "9.088 K" [22:42:18.440] [21,] "svchost.exe" "2724" "Services" "0" "11.788 K" [22:42:18.440] [22,] "svchost.exe" "2736" "Services" "0" "10.656 K" [22:42:18.440] [23,] "svchost.exe" "2744" "Services" "0" "12.548 K" [22:42:18.440] [24,] "svchost.exe" "2896" "Services" "0" "22.504 K" [22:42:18.440] [25,] "svchost.exe" "2904" "Services" "0" "6.232 K" [22:42:18.440] [26,] "svchost.exe" "2940" "Services" "0" "21.612 K" [22:42:18.440] [27,] "svchost.exe" "1948" "Services" "0" "13.944 K" [22:42:18.440] [28,] "svchost.exe" "2388" "Services" "0" "21.052 K" [22:42:18.440] [29,] "LogonUI.exe" "1888" "Console" "1" "48.860 K" [22:42:18.440] [30,] "svchost.exe" "3076" "Services" "0" "12.052 K" [22:42:18.440] [31,] "svchost.exe" "3100" "Services" "0" "7.892 K" [22:42:18.440] [32,] "svchost.exe" "3132" "Services" "0" "19.160 K" [22:42:18.440] [33,] "dwm.exe" "3164" "Console" "1" "45.620 K" [22:42:18.440] [34,] "svchost.exe" "3248" "Services" "0" "11.852 K" [22:42:18.440] [35,] "svchost.exe" "3300" "Services" "0" "6.276 K" [22:42:18.440] [36,] "svchost.exe" "3304" "Services" "0" "14.832 K" [22:42:18.440] [37,] "svchost.exe" "3316" "Services" "0" "8.608 K" [22:42:18.440] [38,] "svchost.exe" "3524" "Services" "0" "9.092 K" [22:42:18.440] [39,] "svchost.exe" "3708" "Services" "0" "9.652 K" [22:42:18.440] [40,] "svchost.exe" "3732" "Services" "0" "10.260 K" [22:42:18.440] [41,] "svchost.exe" "3784" "Services" "0" "14.024 K" [22:42:18.440] [42,] "svchost.exe" "3856" "Services" "0" "7.880 K" [22:42:18.440] [43,] "svchost.exe" "3972" "Services" "0" "9.292 K" [22:42:18.440] [44,] "svchost.exe" "4184" "Services" "0" "8.200 K" [22:42:18.440] [45,] "svchost.exe" "4228" "Services" "0" "9.740 K" [22:42:18.440] [46,] "WUDFHost.exe" "4280" "Services" "0" "9.296 K" [22:42:18.440] [47,] "svchost.exe" "4296" "Services" "0" "10.276 K" [22:42:18.440] [48,] "spoolsv.exe" "4444" "Services" "0" "27.480 K" [22:42:18.440] [49,] "svchost.exe" "4552" "Services" "0" "7.056 K" [22:42:18.440] [50,] "svchost.exe" "4560" "Services" "0" "39.516 K" [22:42:18.440] [51,] "cvfwd.exe" "4568" "Services" "0" "26.652 K" [22:42:18.440] [52,] "svchost.exe" "4576" "Services" "0" "23.804 K" [22:42:18.440] [53,] "IpOverUsbSvc.exe" "4584" "Services" "0" "15.528 K" [22:42:18.440] [54,] "svchost.exe" "4592" "Services" "0" "8.064 K" [22:42:18.440] [55,] "svchost.exe" "4628" "Services" "0" "5.916 K" [22:42:18.440] [56,] "svchost.exe" "4644" "Services" "0" "30.180 K" [22:42:18.440] [57,] "svchost.exe" "4652" "Services" "0" "14.980 K" [22:42:18.440] [58,] "svchost.exe" "4664" "Services" "0" "12.120 K" [22:42:18.440] [59,] "svchost.exe" "4672" "Services" "0" "7.632 K" [22:42:18.440] [60,] "svchost.exe" "5124" "Services" "0" "10.172 K" [22:42:18.440] [61,] "cvd.exe" "5144" "Services" "0" "323.756 K" [22:42:18.440] [62,] "svchost.exe" "5216" "Services" "0" "14.172 K" [22:42:18.440] [63,] "AggregatorHost.exe" "6604" "Services" "0" "11.064 K" [22:42:18.440] [64,] "svchost.exe" "8184" "Services" "0" "8.048 K" [22:42:18.440] [65,] "ClMgrS.exe" "6616" "Services" "0" "48.616 K" [22:42:18.440] [66,] "dllhost.exe" "8248" "Services" "0" "13.760 K" [22:42:18.440] [67,] "svchost.exe" "8300" "Services" "0" "7.664 K" [22:42:18.440] [68,] "WmiPrvSE.exe" "9132" "Services" "0" "73.544 K" [22:42:18.440] [69,] "svchost.exe" "10552" "Services" "0" "17.532 K" [22:42:18.440] [70,] "svchost.exe" "4192" "Services" "0" "14.256 K" [22:42:18.440] [71,] "svchost.exe" "4624" "Services" "0" "38.456 K" [22:42:18.440] [72,] "svchost.exe" "4752" "Services" "0" "7.924 K" [22:42:18.440] [73,] "svchost.exe" "4548" "Services" "0" "13.436 K" [22:42:18.440] [74,] "msdtc.exe" "8824" "Services" "0" "11.264 K" [22:42:18.440] [75,] "svchost.exe" "836" "Services" "0" "24.136 K" [22:42:18.440] [76,] "svchost.exe" "4828" "Services" "0" "13.472 K" [22:42:18.440] [77,] "csrss.exe" "2304" "" "2" "13.092 K" [22:42:18.440] [78,] "winlogon.exe" "2328" "" "2" "10.980 K" [22:42:18.440] [79,] "fontdrvhost.exe" "2140" "" "2" "9.448 K" [22:42:18.440] [80,] "dwm.exe" "3428" "" "2" "41.288 K" [22:42:18.440] [81,] "svchost.exe" "8696" "Services" "0" "16.804 K" [22:42:18.440] [82,] "rdpclip.exe" "3988" "" "2" "11.996 K" [22:42:18.440] [83,] "svchost.exe" "8760" "" "2" "17.540 K" [22:42:18.440] [84,] "svchost.exe" "8168" "" "2" "28.364 K" [22:42:18.440] [85,] "sihost.exe" "3000" "" "2" "27.732 K" [22:42:18.440] [86,] "svchost.exe" "3828" "Services" "0" "16.900 K" [22:42:18.440] [87,] "svchost.exe" "4356" "Services" "0" "7.896 K" [22:42:18.440] [88,] "svchost.exe" "8440" "Services" "0" "11.036 K" [22:42:18.440] [89,] "ctfmon.exe" "4820" "" "2" "20.776 K" [22:42:18.440] [90,] "taskhostw.exe" "3152" "" "2" "15.324 K" [22:42:18.440] [91,] "explorer.exe" "11544" "" "2" "168.388 K" [22:42:18.440] [92,] "csrss.exe" "11788" "" "3" "10.272 K" [22:42:18.440] [93,] "winlogon.exe" "11840" "" "3" "11.184 K" [22:42:18.440] [94,] "StartMenuExperienceHost.e" "11980" "" "2" "64.092 K" [22:42:18.440] [95,] "RuntimeBroker.exe" "12064" "" "2" "22.932 K" [22:42:18.440] [96,] "fontdrvhost.exe" "12196" "" "3" "14.044 K" [22:42:18.440] [97,] "dwm.exe" "11884" "" "3" "52.036 K" [22:42:18.440] [98,] "SearchApp.exe" "12428" "" "2" "167.160 K" [22:42:18.440] [99,] "RuntimeBroker.exe" "12636" "" "2" "55.472 K" [22:42:18.440] [100,] "rdpclip.exe" "12788" "" "3" "13.824 K" [22:42:18.440] [101,] "sihost.exe" "12836" "" "3" "28.352 K" [22:42:18.440] [102,] "svchost.exe" "12872" "" "3" "17.836 K" [22:42:18.440] [103,] "svchost.exe" "12920" "" "3" "30.392 K" [22:42:18.440] [104,] "explorer.exe" "13232" "" "3" "665.256 K" [22:42:18.440] [105,] "taskhostw.exe" "11960" "" "3" "16.692 K" [22:42:18.440] [106,] "RuntimeBroker.exe" "13176" "" "2" "15.904 K" [22:42:18.440] [107,] "StartMenuExperienceHost.e" "13104" "" "3" "58.316 K" [22:42:18.440] [108,] "RuntimeBroker.exe" "13348" "" "3" "22.424 K" [22:42:18.440] [109,] "SearchApp.exe" "13428" "" "3" "86.596 K" [22:42:18.440] [110,] "RuntimeBroker.exe" "13652" "" "3" "32.000 K" [22:42:18.440] [111,] "ctfmon.exe" "13792" "" "3" "21.460 K" [22:42:18.440] [112,] "RuntimeBroker.exe" "13932" "" "3" "15.784 K" [22:42:18.440] [113,] "svchost.exe" "13252" "Services" "0" "10.132 K" [22:42:18.440] [114,] "svchost.exe" "3336" "" "2" "17.516 K" [22:42:18.440] [115,] "svchost.exe" "14464" "" "3" "17.396 K" [22:42:18.440] [116,] "svchost.exe" "11852" "Services" "0" "13.292 K" [22:42:18.440] [117,] "svchost.exe" "15280" "Services" "0" "22.276 K" [22:42:18.440] [118,] "TextInputHost.exe" "9672" "" "3" "45.324 K" [22:42:18.440] [119,] "taskhostw.exe" "2424" "" "3" "16.184 K" [22:42:18.440] [120,] "svchost.exe" "22048" "Services" "0" "13.604 K" [22:42:18.440] [121,] "svchost.exe" "35608" "Services" "0" "7.764 K" [22:42:18.440] [122,] "SecurityHealthService.exe" "3764" "Services" "0" "12.260 K" [22:42:18.440] [123,] "ShellExperienceHost.exe" "84468" "" "3" "50.532 K" [22:42:18.440] [124,] "RuntimeBroker.exe" "32988" "" "3" "20.128 K" [22:42:18.440] [125,] "MpDefenderCoreService.exe" "25244" "Services" "0" "38.364 K" [22:42:18.440] [126,] "MsMpEng.exe" "40528" "Services" "0" "663.792 K" [22:42:18.440] [127,] "NisSrv.exe" "24492" "Services" "0" "14.604 K" [22:42:18.440] [128,] "MusNotifyIcon.exe" "19620" "" "2" "14.104 K" [22:42:18.440] [129,] "TextInputHost.exe" "58268" "" "2" "44.128 K" [22:42:18.440] [130,] "dllhost.exe" "40964" "" "2" "13.908 K" [22:42:18.440] [131,] "LogonUI.exe" "27812" "" "3" "31.244 K" [22:42:18.440] [132,] "explorer.exe" "21576" "" "3" "197.060 K" [22:42:18.440] [133,] "cmd.exe" "108564" "" "3" "5.388 K" [22:42:18.440] [134,] "conhost.exe" "85480" "" "3" "17.532 K" [22:42:18.440] [135,] "R.exe" "101452" "" "3" "5.480 K" [22:42:18.440] [136,] "Rterm.exe" "43740" "" "3" "177.012 K" [22:42:18.440] [137,] "cmd.exe" "24744" "" "3" "4.576 K" [22:42:18.440] [138,] "make.exe" "68324" "" "3" "134.344 K" [22:42:18.440] [139,] "sh.exe" "30308" "" "3" "8.264 K" [22:42:18.440] [140,] "R.exe" "23244" "" "3" "5.360 K" [22:42:18.440] [141,] "cmd.exe" "53260" "" "3" "4.604 K" [22:42:18.440] [142,] "Rterm.exe" "100728" "" "3" "31.808 K" [22:42:18.440] [143,] "cmd.exe" "70268" "" "3" "4.592 K" [22:42:18.440] [144,] "R.exe" "36980" "" "3" "5.612 K" [22:42:18.440] [145,] "cmd.exe" "70744" "" "3" "4.608 K" [22:42:18.440] [146,] "Rterm.exe" "29068" "" "3" "118.408 K" [22:42:18.440] [147,] "Rterm.exe" "64412" "" "3" "63.748 K" [22:42:18.440] [148,] "R.exe" "88760" "" "3" "5.516 K" [22:42:18.440] [149,] "Rterm.exe" "23416" "" "3" "267.172 K" [22:42:18.440] [150,] "mintty.exe" "87976" "" "2" "17.964 K" [22:42:18.440] [151,] "conhost.exe" "46672" "" "2" "13.348 K" [22:42:18.440] [152,] "bash.exe" "30772" "" "2" "9.980 K" [22:42:18.440] [153,] "LogonUI.exe" "22296" "" "2" "31.268 K" [22:42:18.440] [154,] "WmiPrvSE.exe" "109392" "Services" "0" "13.416 K" [22:42:18.440] [155,] "cmd.exe" "66024" "" "3" "5.708 K" [22:42:18.440] [156,] "conhost.exe" "13476" "" "3" "17.380 K" [22:42:18.440] [157,] "R.exe" "103880" "" "3" "5.528 K" [22:42:18.440] [158,] "Rterm.exe" "28512" "" "3" "115.696 K" [22:42:18.440] [159,] "cmd.exe" "35912" "" "3" "4.624 K" [22:42:18.440] [160,] "make.exe" "46664" "" "3" "8.372 K" [22:42:18.440] [161,] "sh.exe" "43912" "" "3" "8.336 K" [22:42:18.440] [162,] "R.exe" "61708" "" "3" "5.364 K" [22:42:18.440] [163,] "cmd.exe" "88080" "" "3" "4.628 K" [22:42:18.440] [164,] "Rterm.exe" "32712" "" "3" "22.020 K" [22:42:18.440] [165,] "cmd.exe" "33836" "" "3" "4.596 K" [22:42:18.440] [166,] "R.exe" "26832" "" "3" "5.596 K" [22:42:18.440] [167,] "cmd.exe" "60968" "" "3" "4.616 K" [22:42:18.440] [168,] "Rterm.exe" "33212" "" "3" "296.908 K" [22:42:18.440] [169,] "Rterm.exe" "3540" "" "3" "67.080 K" [22:42:18.440] [170,] "WmiPrvSE.exe" "65164" "Services" "0" "16.072 K" [22:42:18.440] [171,] "R.exe" "102208" "" "3" "5.580 K" [22:42:18.440] [172,] "Rterm.exe" "84224" "" "3" "75.872 K" [22:42:18.440] [173,] "tasklist.exe" "93084" "" "3" "9.412 K" [22:42:18.443] Extracted: '0', '4', '1064', '1904', '2000', '1956', '2044', '2104', '2112', '2168', '2288', '2316', '2372', '2416', '2476', '2552', '2580', '2584', '2592', '2676', '2724', '2736', '2744', '2896', '2904', '2940', '1948', '2388', '1888', '3076', '3100', '3132', '3164', '3248', '3300', '3304', '3316', '3524', '3708', '3732', '3784', '3856', '3972', '4184', '4228', '4280', '4296', '4444', '4552', '4560', '4568', '4576', '4584', '4592', '4628', '4644', '4652', '4664', '4672', '5124', '5144', '5216', '6604', '8184', '6616', '8248', '8300', '9132', '10552', '4192', '4624', '4752', '4548', '8824', '836', '4828', '2304', '2328', '2140', '3428', '8696', '3988', '8760', '8168', '3000', '3828', '4356', '8440', '4820', '3152', '11544', '11788', '11840', '11980', '12064', '12196', '11884', '12428', '12636', '12788', '12836', '12872', '12920', '13232', '11960', '13176', '13104', '13348', '13428', '13652', '13792', '13932', '13252', '3336', '14464', '11852', '15280', '9672', '2424', '22048', '35608', '3764', '84468', '32988', '25244', '40528', '24492', '19620', '58268', '40964', '27812', '21576', '108564', '85480', '101452', '43740', '24744', '68324', '30308', '23244', '53260', '100728', '70268', '36980', '70744', '29068', '64412', '88760', '23416', '87976', '46672', '30772', '22296', '109392', '66024', '13476', '103880', '28512', '35912', '46664', '43912', '61708', '88080', '32712', '33836', '26832', '60968', '33212', '3540', '65164', '102208', '84224', '93084' [22:42:18.444] Parsed: '0', '4', '1064', '1904', '2000', '1956', '2044', '2104', '2112', '2168', '2288', '2316', '2372', '2416', '2476', '2552', '2580', '2584', '2592', '2676', '2724', '2736', '2744', '2896', '2904', '2940', '1948', '2388', '1888', '3076', '3100', '3132', '3164', '3248', '3300', '3304', '3316', '3524', '3708', '3732', '3784', '3856', '3972', '4184', '4228', '4280', '4296', '4444', '4552', '4560', '4568', '4576', '4584', '4592', '4628', '4644', '4652', '4664', '4672', '5124', '5144', '5216', '6604', '8184', '6616', '8248', '8300', '9132', '10552', '4192', '4624', '4752', '4548', '8824', '836', '4828', '2304', '2328', '2140', '3428', '8696', '3988', '8760', '8168', '3000', '3828', '4356', '8440', '4820', '3152', '11544', '11788', '11840', '11980', '12064', '12196', '11884', '12428', '12636', '12788', '12836', '12872', '12920', '13232', '11960', '13176', '13104', '13348', '13428', '13652', '13792', '13932', '13252', '3336', '14464', '11852', '15280', '9672', '2424', '22048', '35608', '3764', '84468', '32988', '25244', '40528', '24492', '19620', '58268', '40964', '27812', '21576', '108564', '85480', '101452', '43740', '24744', '68324', '30308', '23244', '53260', '100728', '70268', '36980', '70744', '29068', '64412', '88760', '23416', '87976', '46672', '30772', '22296', '109392', '66024', '13476', '103880', '28512', '35912', '46664', '43912', '61708', '88080', '32712', '33836', '26832', '60968', '33212', '3540', '65164', '102208', '84224', '93084' [22:42:18.444] Equals PID: 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE' [22:42:18.927] Call: tasklist [22:42:18.928] [1] "" [22:42:18.928] [2] "Abbildname PID Sitzungsname Sitz.-Nr. Speichernutzung" [22:42:18.928] [3] "========================= ======== ================ =========== ===============" [22:42:18.928] [4] "System Idle Process 0 Services 0 8 K" [22:42:18.928] [5] "System 4 Services 0 148 K" [22:42:18.928] [6] "Registry 1064 Services 0 111.864 K" [22:42:18.928] [7] "smss.exe 1904 Services 0 1.292 K" [22:42:18.928] [8] "csrss.exe 2000 Services 0 6.880 K" [22:42:18.928] [9] "wininit.exe 1956 Services 0 7.316 K" [22:42:18.928] [10] "csrss.exe 2044 Console 1 6.076 K" [22:42:18.928] [11] "services.exe 2104 Services 0 16.172 K" [22:42:18.928] [12] "winlogon.exe 2112 Console 1 10.580 K" [22:42:18.928] [13] "lsass.exe 2168 Services 0 87.292 K" [22:42:18.928] [14] "svchost.exe 2288 Services 0 33.984 K" [22:42:18.928] [15] "fontdrvhost.exe 2316 Services 0 4.528 K" [22:42:18.928] [16] "svchost.exe 2372 Services 0 52.816 K" [22:42:18.928] [17] "svchost.exe 2416 Services 0 13.220 K" [22:42:18.928] [18] "fontdrvhost.exe 2476 Console 1 4.388 K" [22:42:18.928] [19] "svchost.exe 2552 Services 0 44.472 K" [22:42:18.928] [20] "svchost.exe 2580 Services 0 8.288 K" [22:42:18.928] [21] "svchost.exe 2584 Services 0 9.656 K" [22:42:18.928] [22] "svchost.exe 2592 Services 0 5.740 K" [22:42:18.928] [23] "svchost.exe 2676 Services 0 9.088 K" [22:42:18.928] [24] "svchost.exe 2724 Services 0 11.788 K" [22:42:18.928] [25] "svchost.exe 2736 Services 0 10.656 K" [22:42:18.928] [26] "svchost.exe 2744 Services 0 12.548 K" [22:42:18.928] [27] "svchost.exe 2896 Services 0 22.504 K" [22:42:18.928] [28] "svchost.exe 2904 Services 0 6.232 K" [22:42:18.928] [29] "svchost.exe 2940 Services 0 21.612 K" [22:42:18.928] [30] "svchost.exe 1948 Services 0 13.944 K" [22:42:18.928] [31] "svchost.exe 2388 Services 0 21.052 K" [22:42:18.928] [32] "LogonUI.exe 1888 Console 1 48.860 K" [22:42:18.928] [33] "svchost.exe 3076 Services 0 12.052 K" [22:42:18.928] [34] "svchost.exe 3100 Services 0 7.892 K" [22:42:18.928] [35] "svchost.exe 3132 Services 0 19.160 K" [22:42:18.928] [36] "dwm.exe 3164 Console 1 45.620 K" [22:42:18.928] [37] "svchost.exe 3248 Services 0 11.852 K" [22:42:18.928] [38] "svchost.exe 3300 Services 0 6.276 K" [22:42:18.928] [39] "svchost.exe 3304 Services 0 14.832 K" [22:42:18.928] [40] "svchost.exe 3316 Services 0 8.608 K" [22:42:18.928] [41] "svchost.exe 3524 Services 0 9.092 K" [22:42:18.928] [42] "svchost.exe 3708 Services 0 9.652 K" [22:42:18.928] [43] "svchost.exe 3732 Services 0 10.260 K" [22:42:18.928] [44] "svchost.exe 3784 Services 0 14.024 K" [22:42:18.928] [45] "svchost.exe 3856 Services 0 7.880 K" [22:42:18.928] [46] "svchost.exe 3972 Services 0 9.292 K" [22:42:18.928] [47] "svchost.exe 4184 Services 0 8.200 K" [22:42:18.928] [48] "svchost.exe 4228 Services 0 9.740 K" [22:42:18.928] [49] "WUDFHost.exe 4280 Services 0 9.296 K" [22:42:18.928] [50] "svchost.exe 4296 Services 0 10.276 K" [22:42:18.928] [51] "spoolsv.exe 4444 Services 0 27.480 K" [22:42:18.928] [52] "svchost.exe 4552 Services 0 7.056 K" [22:42:18.928] [53] "svchost.exe 4560 Services 0 39.516 K" [22:42:18.928] [54] "cvfwd.exe 4568 Services 0 26.652 K" [22:42:18.928] [55] "svchost.exe 4576 Services 0 23.804 K" [22:42:18.928] [56] "IpOverUsbSvc.exe 4584 Services 0 15.528 K" [22:42:18.928] [57] "svchost.exe 4592 Services 0 8.064 K" [22:42:18.928] [58] "svchost.exe 4628 Services 0 5.916 K" [22:42:18.928] [59] "svchost.exe 4644 Services 0 30.364 K" [22:42:18.928] [60] "svchost.exe 4652 Services 0 14.980 K" [22:42:18.928] [61] "svchost.exe 4664 Services 0 12.120 K" [22:42:18.928] [62] "svchost.exe 4672 Services 0 7.632 K" [22:42:18.928] [63] "svchost.exe 5124 Services 0 10.172 K" [22:42:18.928] [64] "cvd.exe 5144 Services 0 323.756 K" [22:42:18.928] [65] "svchost.exe 5216 Services 0 14.172 K" [22:42:18.928] [66] "AggregatorHost.exe 6604 Services 0 11.064 K" [22:42:18.928] [67] "svchost.exe 8184 Services 0 8.048 K" [22:42:18.928] [68] "ClMgrS.exe 6616 Services 0 48.616 K" [22:42:18.928] [69] "dllhost.exe 8248 Services 0 13.760 K" [22:42:18.928] [70] "svchost.exe 8300 Services 0 7.664 K" [22:42:18.928] [71] "WmiPrvSE.exe 9132 Services 0 73.544 K" [22:42:18.928] [72] "svchost.exe 10552 Services 0 17.532 K" [22:42:18.928] [73] "svchost.exe 4192 Services 0 14.256 K" [22:42:18.928] [74] "svchost.exe 4624 Services 0 38.456 K" [22:42:18.928] [75] "svchost.exe 4752 Services 0 7.924 K" [22:42:18.928] [76] "svchost.exe 4548 Services 0 13.436 K" [22:42:18.928] [77] "msdtc.exe 8824 Services 0 11.264 K" [22:42:18.928] [78] "svchost.exe 836 Services 0 24.136 K" [22:42:18.928] [79] "svchost.exe 4828 Services 0 13.472 K" [22:42:18.928] [80] "csrss.exe 2304 2 13.092 K" [22:42:18.928] [81] "winlogon.exe 2328 2 10.980 K" [22:42:18.928] [82] "fontdrvhost.exe 2140 2 9.448 K" [22:42:18.928] [83] "dwm.exe 3428 2 41.288 K" [22:42:18.928] [84] "svchost.exe 8696 Services 0 16.804 K" [22:42:18.928] [85] "rdpclip.exe 3988 2 11.996 K" [22:42:18.928] [86] "svchost.exe 8760 2 17.540 K" [22:42:18.928] [87] "svchost.exe 8168 2 28.364 K" [22:42:18.928] [88] "sihost.exe 3000 2 27.732 K" [22:42:18.928] [89] "svchost.exe 3828 Services 0 16.900 K" [22:42:18.928] [90] "svchost.exe 4356 Services 0 7.896 K" [22:42:18.928] [91] "svchost.exe 8440 Services 0 11.036 K" [22:42:18.928] [92] "ctfmon.exe 4820 2 20.776 K" [22:42:18.928] [93] "taskhostw.exe 3152 2 15.324 K" [22:42:18.928] [94] "explorer.exe 11544 2 168.388 K" [22:42:18.928] [95] "csrss.exe 11788 3 10.272 K" [22:42:18.928] [96] "winlogon.exe 11840 3 11.184 K" [22:42:18.928] [97] "StartMenuExperienceHost.e 11980 2 64.092 K" [22:42:18.928] [98] "RuntimeBroker.exe 12064 2 22.932 K" [22:42:18.928] [99] "fontdrvhost.exe 12196 3 14.044 K" [22:42:18.928] [100] "dwm.exe 11884 3 52.036 K" [22:42:18.928] [101] "SearchApp.exe 12428 2 167.160 K" [22:42:18.928] [102] "RuntimeBroker.exe 12636 2 55.472 K" [22:42:18.928] [103] "rdpclip.exe 12788 3 13.824 K" [22:42:18.928] [104] "sihost.exe 12836 3 28.352 K" [22:42:18.928] [105] "svchost.exe 12872 3 17.836 K" [22:42:18.928] [106] "svchost.exe 12920 3 30.392 K" [22:42:18.928] [107] "explorer.exe 13232 3 665.256 K" [22:42:18.928] [108] "taskhostw.exe 11960 3 16.692 K" [22:42:18.928] [109] "RuntimeBroker.exe 13176 2 15.904 K" [22:42:18.928] [110] "StartMenuExperienceHost.e 13104 3 58.316 K" [22:42:18.928] [111] "RuntimeBroker.exe 13348 3 22.424 K" [22:42:18.928] [112] "SearchApp.exe 13428 3 86.596 K" [22:42:18.928] [113] "RuntimeBroker.exe 13652 3 32.000 K" [22:42:18.928] [114] "ctfmon.exe 13792 3 21.460 K" [22:42:18.928] [115] "RuntimeBroker.exe 13932 3 15.784 K" [22:42:18.928] [116] "svchost.exe 13252 Services 0 10.132 K" [22:42:18.928] [117] "svchost.exe 3336 2 17.516 K" [22:42:18.928] [118] "svchost.exe 14464 3 17.396 K" [22:42:18.928] [119] "svchost.exe 11852 Services 0 13.292 K" [22:42:18.928] [120] "svchost.exe 15280 Services 0 22.276 K" [22:42:18.928] [121] "TextInputHost.exe 9672 3 45.324 K" [22:42:18.928] [122] "taskhostw.exe 2424 3 16.184 K" [22:42:18.928] [123] "svchost.exe 22048 Services 0 13.604 K" [22:42:18.928] [124] "svchost.exe 35608 Services 0 7.764 K" [22:42:18.928] [125] "SecurityHealthService.exe 3764 Services 0 12.260 K" [22:42:18.928] [126] "ShellExperienceHost.exe 84468 3 50.532 K" [22:42:18.928] [127] "RuntimeBroker.exe 32988 3 20.128 K" [22:42:18.928] [128] "MpDefenderCoreService.exe 25244 Services 0 38.364 K" [22:42:18.928] [129] "MsMpEng.exe 40528 Services 0 663.792 K" [22:42:18.928] [130] "NisSrv.exe 24492 Services 0 14.604 K" [22:42:18.928] [131] "MusNotifyIcon.exe 19620 2 14.104 K" [22:42:18.928] [132] "TextInputHost.exe 58268 2 44.128 K" [22:42:18.928] [133] "dllhost.exe 40964 2 13.908 K" [22:42:18.928] [134] "LogonUI.exe 27812 3 31.244 K" [22:42:18.928] [135] "explorer.exe 21576 3 196.644 K" [22:42:18.928] [136] "cmd.exe 108564 3 5.388 K" [22:42:18.928] [137] "conhost.exe 85480 3 17.532 K" [22:42:18.928] [138] "R.exe 101452 3 5.480 K" [22:42:18.928] [139] "Rterm.exe 43740 3 177.012 K" [22:42:18.928] [140] "cmd.exe 24744 3 4.576 K" [22:42:18.928] [141] "make.exe 68324 3 134.344 K" [22:42:18.928] [142] "sh.exe 30308 3 8.264 K" [22:42:18.928] [143] "R.exe 23244 3 5.360 K" [22:42:18.928] [144] "cmd.exe 53260 3 4.604 K" [22:42:18.928] [145] "Rterm.exe 100728 3 31.808 K" [22:42:18.928] [146] "cmd.exe 70268 3 4.592 K" [22:42:18.928] [147] "R.exe 36980 3 5.612 K" [22:42:18.928] [148] "cmd.exe 70744 3 4.608 K" [22:42:18.928] [149] "Rterm.exe 29068 3 118.408 K" [22:42:18.928] [150] "Rterm.exe 64412 3 63.748 K" [22:42:18.928] [151] "R.exe 88760 3 5.516 K" [22:42:18.928] [152] "Rterm.exe 23416 3 267.172 K" [22:42:18.928] [153] "mintty.exe 87976 2 17.964 K" [22:42:18.928] [154] "conhost.exe 46672 2 13.348 K" [22:42:18.928] [155] "bash.exe 30772 2 9.980 K" [22:42:18.928] [156] "LogonUI.exe 22296 2 31.268 K" [22:42:18.928] [157] "WmiPrvSE.exe 109392 Services 0 13.416 K" [22:42:18.928] [158] "cmd.exe 66024 3 5.708 K" [22:42:18.928] [159] "conhost.exe 13476 3 17.380 K" [22:42:18.928] [160] "R.exe 103880 3 5.528 K" [22:42:18.928] [161] "Rterm.exe 28512 3 115.696 K" [22:42:18.928] [162] "cmd.exe 35912 3 4.624 K" [22:42:18.928] [163] "make.exe 46664 3 8.372 K" [22:42:18.928] [164] "sh.exe 43912 3 8.336 K" [22:42:18.928] [165] "R.exe 61708 3 5.364 K" [22:42:18.928] [166] "cmd.exe 88080 3 4.628 K" [22:42:18.928] [167] "Rterm.exe 32712 3 22.020 K" [22:42:18.928] [168] "cmd.exe 33836 3 4.596 K" [22:42:18.928] [169] "R.exe 26832 3 5.596 K" [22:42:18.928] [170] "cmd.exe 60968 3 4.616 K" [22:42:18.928] [171] "Rterm.exe 33212 3 296.908 K" [22:42:18.928] [172] "Rterm.exe 3540 3 67.080 K" [22:42:18.928] [173] "WmiPrvSE.exe 65164 Services 0 16.072 K" [22:42:18.928] [174] "R.exe 102208 3 5.580 K" [22:42:18.928] [175] "Rterm.exe 84224 3 76.204 K" [22:42:18.928] [176] "tasklist.exe 94764 3 9.408 K" [22:42:18.933] chr [1:176] "" ... [22:42:18.936] Column widths: [22:42:18.937] [1] "========================= ======== ================ =========== ===============" [22:42:18.937] [,1] [,2] [,3] [,4] [,5] [22:42:18.937] from 1 27 36 53 65 [22:42:18.937] to 25 34 51 63 79 [22:42:18.938] [1] "=========================" "========" [22:42:18.938] [3] "================" "===========" [22:42:18.938] [5] "===============" [22:42:18.940] Trimmed: [22:42:18.941] [,1] [,2] [,3] [,4] [,5] [22:42:18.941] [1,] "System Idle Process" "0" "Services" "0" "8 K" [22:42:18.941] [2,] "System" "4" "Services" "0" "148 K" [22:42:18.941] [3,] "Registry" "1064" "Services" "0" "111.864 K" [22:42:18.941] [4,] "smss.exe" "1904" "Services" "0" "1.292 K" [22:42:18.941] [5,] "csrss.exe" "2000" "Services" "0" "6.880 K" [22:42:18.941] [6,] "wininit.exe" "1956" "Services" "0" "7.316 K" [22:42:18.941] [7,] "csrss.exe" "2044" "Console" "1" "6.076 K" [22:42:18.941] [8,] "services.exe" "2104" "Services" "0" "16.172 K" [22:42:18.941] [9,] "winlogon.exe" "2112" "Console" "1" "10.580 K" [22:42:18.941] [10,] "lsass.exe" "2168" "Services" "0" "87.292 K" [22:42:18.941] [11,] "svchost.exe" "2288" "Services" "0" "33.984 K" [22:42:18.941] [12,] "fontdrvhost.exe" "2316" "Services" "0" "4.528 K" [22:42:18.941] [13,] "svchost.exe" "2372" "Services" "0" "52.816 K" [22:42:18.941] [14,] "svchost.exe" "2416" "Services" "0" "13.220 K" [22:42:18.941] [15,] "fontdrvhost.exe" "2476" "Console" "1" "4.388 K" [22:42:18.941] [16,] "svchost.exe" "2552" "Services" "0" "44.472 K" [22:42:18.941] [17,] "svchost.exe" "2580" "Services" "0" "8.288 K" [22:42:18.941] [18,] "svchost.exe" "2584" "Services" "0" "9.656 K" [22:42:18.941] [19,] "svchost.exe" "2592" "Services" "0" "5.740 K" [22:42:18.941] [20,] "svchost.exe" "2676" "Services" "0" "9.088 K" [22:42:18.941] [21,] "svchost.exe" "2724" "Services" "0" "11.788 K" [22:42:18.941] [22,] "svchost.exe" "2736" "Services" "0" "10.656 K" [22:42:18.941] [23,] "svchost.exe" "2744" "Services" "0" "12.548 K" [22:42:18.941] [24,] "svchost.exe" "2896" "Services" "0" "22.504 K" [22:42:18.941] [25,] "svchost.exe" "2904" "Services" "0" "6.232 K" [22:42:18.941] [26,] "svchost.exe" "2940" "Services" "0" "21.612 K" [22:42:18.941] [27,] "svchost.exe" "1948" "Services" "0" "13.944 K" [22:42:18.941] [28,] "svchost.exe" "2388" "Services" "0" "21.052 K" [22:42:18.941] [29,] "LogonUI.exe" "1888" "Console" "1" "48.860 K" [22:42:18.941] [30,] "svchost.exe" "3076" "Services" "0" "12.052 K" [22:42:18.941] [31,] "svchost.exe" "3100" "Services" "0" "7.892 K" [22:42:18.941] [32,] "svchost.exe" "3132" "Services" "0" "19.160 K" [22:42:18.941] [33,] "dwm.exe" "3164" "Console" "1" "45.620 K" [22:42:18.941] [34,] "svchost.exe" "3248" "Services" "0" "11.852 K" [22:42:18.941] [35,] "svchost.exe" "3300" "Services" "0" "6.276 K" [22:42:18.941] [36,] "svchost.exe" "3304" "Services" "0" "14.832 K" [22:42:18.941] [37,] "svchost.exe" "3316" "Services" "0" "8.608 K" [22:42:18.941] [38,] "svchost.exe" "3524" "Services" "0" "9.092 K" [22:42:18.941] [39,] "svchost.exe" "3708" "Services" "0" "9.652 K" [22:42:18.941] [40,] "svchost.exe" "3732" "Services" "0" "10.260 K" [22:42:18.941] [41,] "svchost.exe" "3784" "Services" "0" "14.024 K" [22:42:18.941] [42,] "svchost.exe" "3856" "Services" "0" "7.880 K" [22:42:18.941] [43,] "svchost.exe" "3972" "Services" "0" "9.292 K" [22:42:18.941] [44,] "svchost.exe" "4184" "Services" "0" "8.200 K" [22:42:18.941] [45,] "svchost.exe" "4228" "Services" "0" "9.740 K" [22:42:18.941] [46,] "WUDFHost.exe" "4280" "Services" "0" "9.296 K" [22:42:18.941] [47,] "svchost.exe" "4296" "Services" "0" "10.276 K" [22:42:18.941] [48,] "spoolsv.exe" "4444" "Services" "0" "27.480 K" [22:42:18.941] [49,] "svchost.exe" "4552" "Services" "0" "7.056 K" [22:42:18.941] [50,] "svchost.exe" "4560" "Services" "0" "39.516 K" [22:42:18.941] [51,] "cvfwd.exe" "4568" "Services" "0" "26.652 K" [22:42:18.941] [52,] "svchost.exe" "4576" "Services" "0" "23.804 K" [22:42:18.941] [53,] "IpOverUsbSvc.exe" "4584" "Services" "0" "15.528 K" [22:42:18.941] [54,] "svchost.exe" "4592" "Services" "0" "8.064 K" [22:42:18.941] [55,] "svchost.exe" "4628" "Services" "0" "5.916 K" [22:42:18.941] [56,] "svchost.exe" "4644" "Services" "0" "30.364 K" [22:42:18.941] [57,] "svchost.exe" "4652" "Services" "0" "14.980 K" [22:42:18.941] [58,] "svchost.exe" "4664" "Services" "0" "12.120 K" [22:42:18.941] [59,] "svchost.exe" "4672" "Services" "0" "7.632 K" [22:42:18.941] [60,] "svchost.exe" "5124" "Services" "0" "10.172 K" [22:42:18.941] [61,] "cvd.exe" "5144" "Services" "0" "323.756 K" [22:42:18.941] [62,] "svchost.exe" "5216" "Services" "0" "14.172 K" [22:42:18.941] [63,] "AggregatorHost.exe" "6604" "Services" "0" "11.064 K" [22:42:18.941] [64,] "svchost.exe" "8184" "Services" "0" "8.048 K" [22:42:18.941] [65,] "ClMgrS.exe" "6616" "Services" "0" "48.616 K" [22:42:18.941] [66,] "dllhost.exe" "8248" "Services" "0" "13.760 K" [22:42:18.941] [67,] "svchost.exe" "8300" "Services" "0" "7.664 K" [22:42:18.941] [68,] "WmiPrvSE.exe" "9132" "Services" "0" "73.544 K" [22:42:18.941] [69,] "svchost.exe" "10552" "Services" "0" "17.532 K" [22:42:18.941] [70,] "svchost.exe" "4192" "Services" "0" "14.256 K" [22:42:18.941] [71,] "svchost.exe" "4624" "Services" "0" "38.456 K" [22:42:18.941] [72,] "svchost.exe" "4752" "Services" "0" "7.924 K" [22:42:18.941] [73,] "svchost.exe" "4548" "Services" "0" "13.436 K" [22:42:18.941] [74,] "msdtc.exe" "8824" "Services" "0" "11.264 K" [22:42:18.941] [75,] "svchost.exe" "836" "Services" "0" "24.136 K" [22:42:18.941] [76,] "svchost.exe" "4828" "Services" "0" "13.472 K" [22:42:18.941] [77,] "csrss.exe" "2304" "" "2" "13.092 K" [22:42:18.941] [78,] "winlogon.exe" "2328" "" "2" "10.980 K" [22:42:18.941] [79,] "fontdrvhost.exe" "2140" "" "2" "9.448 K" [22:42:18.941] [80,] "dwm.exe" "3428" "" "2" "41.288 K" [22:42:18.941] [81,] "svchost.exe" "8696" "Services" "0" "16.804 K" [22:42:18.941] [82,] "rdpclip.exe" "3988" "" "2" "11.996 K" [22:42:18.941] [83,] "svchost.exe" "8760" "" "2" "17.540 K" [22:42:18.941] [84,] "svchost.exe" "8168" "" "2" "28.364 K" [22:42:18.941] [85,] "sihost.exe" "3000" "" "2" "27.732 K" [22:42:18.941] [86,] "svchost.exe" "3828" "Services" "0" "16.900 K" [22:42:18.941] [87,] "svchost.exe" "4356" "Services" "0" "7.896 K" [22:42:18.941] [88,] "svchost.exe" "8440" "Services" "0" "11.036 K" [22:42:18.941] [89,] "ctfmon.exe" "4820" "" "2" "20.776 K" [22:42:18.941] [90,] "taskhostw.exe" "3152" "" "2" "15.324 K" [22:42:18.941] [91,] "explorer.exe" "11544" "" "2" "168.388 K" [22:42:18.941] [92,] "csrss.exe" "11788" "" "3" "10.272 K" [22:42:18.941] [93,] "winlogon.exe" "11840" "" "3" "11.184 K" [22:42:18.941] [94,] "StartMenuExperienceHost.e" "11980" "" "2" "64.092 K" [22:42:18.941] [95,] "RuntimeBroker.exe" "12064" "" "2" "22.932 K" [22:42:18.941] [96,] "fontdrvhost.exe" "12196" "" "3" "14.044 K" [22:42:18.941] [97,] "dwm.exe" "11884" "" "3" "52.036 K" [22:42:18.941] [98,] "SearchApp.exe" "12428" "" "2" "167.160 K" [22:42:18.941] [99,] "RuntimeBroker.exe" "12636" "" "2" "55.472 K" [22:42:18.941] [100,] "rdpclip.exe" "12788" "" "3" "13.824 K" [22:42:18.941] [101,] "sihost.exe" "12836" "" "3" "28.352 K" [22:42:18.941] [102,] "svchost.exe" "12872" "" "3" "17.836 K" [22:42:18.941] [103,] "svchost.exe" "12920" "" "3" "30.392 K" [22:42:18.941] [104,] "explorer.exe" "13232" "" "3" "665.256 K" [22:42:18.941] [105,] "taskhostw.exe" "11960" "" "3" "16.692 K" [22:42:18.941] [106,] "RuntimeBroker.exe" "13176" "" "2" "15.904 K" [22:42:18.941] [107,] "StartMenuExperienceHost.e" "13104" "" "3" "58.316 K" [22:42:18.941] [108,] "RuntimeBroker.exe" "13348" "" "3" "22.424 K" [22:42:18.941] [109,] "SearchApp.exe" "13428" "" "3" "86.596 K" [22:42:18.941] [110,] "RuntimeBroker.exe" "13652" "" "3" "32.000 K" [22:42:18.941] [111,] "ctfmon.exe" "13792" "" "3" "21.460 K" [22:42:18.941] [112,] "RuntimeBroker.exe" "13932" "" "3" "15.784 K" [22:42:18.941] [113,] "svchost.exe" "13252" "Services" "0" "10.132 K" [22:42:18.941] [114,] "svchost.exe" "3336" "" "2" "17.516 K" [22:42:18.941] [115,] "svchost.exe" "14464" "" "3" "17.396 K" [22:42:18.941] [116,] "svchost.exe" "11852" "Services" "0" "13.292 K" [22:42:18.941] [117,] "svchost.exe" "15280" "Services" "0" "22.276 K" [22:42:18.941] [118,] "TextInputHost.exe" "9672" "" "3" "45.324 K" [22:42:18.941] [119,] "taskhostw.exe" "2424" "" "3" "16.184 K" [22:42:18.941] [120,] "svchost.exe" "22048" "Services" "0" "13.604 K" [22:42:18.941] [121,] "svchost.exe" "35608" "Services" "0" "7.764 K" [22:42:18.941] [122,] "SecurityHealthService.exe" "3764" "Services" "0" "12.260 K" [22:42:18.941] [123,] "ShellExperienceHost.exe" "84468" "" "3" "50.532 K" [22:42:18.941] [124,] "RuntimeBroker.exe" "32988" "" "3" "20.128 K" [22:42:18.941] [125,] "MpDefenderCoreService.exe" "25244" "Services" "0" "38.364 K" [22:42:18.941] [126,] "MsMpEng.exe" "40528" "Services" "0" "663.792 K" [22:42:18.941] [127,] "NisSrv.exe" "24492" "Services" "0" "14.604 K" [22:42:18.941] [128,] "MusNotifyIcon.exe" "19620" "" "2" "14.104 K" [22:42:18.941] [129,] "TextInputHost.exe" "58268" "" "2" "44.128 K" [22:42:18.941] [130,] "dllhost.exe" "40964" "" "2" "13.908 K" [22:42:18.941] [131,] "LogonUI.exe" "27812" "" "3" "31.244 K" [22:42:18.941] [132,] "explorer.exe" "21576" "" "3" "196.644 K" [22:42:18.941] [133,] "cmd.exe" "108564" "" "3" "5.388 K" [22:42:18.941] [134,] "conhost.exe" "85480" "" "3" "17.532 K" [22:42:18.941] [135,] "R.exe" "101452" "" "3" "5.480 K" [22:42:18.941] [136,] "Rterm.exe" "43740" "" "3" "177.012 K" [22:42:18.941] [137,] "cmd.exe" "24744" "" "3" "4.576 K" [22:42:18.941] [138,] "make.exe" "68324" "" "3" "134.344 K" [22:42:18.941] [139,] "sh.exe" "30308" "" "3" "8.264 K" [22:42:18.941] [140,] "R.exe" "23244" "" "3" "5.360 K" [22:42:18.941] [141,] "cmd.exe" "53260" "" "3" "4.604 K" [22:42:18.941] [142,] "Rterm.exe" "100728" "" "3" "31.808 K" [22:42:18.941] [143,] "cmd.exe" "70268" "" "3" "4.592 K" [22:42:18.941] [144,] "R.exe" "36980" "" "3" "5.612 K" [22:42:18.941] [145,] "cmd.exe" "70744" "" "3" "4.608 K" [22:42:18.941] [146,] "Rterm.exe" "29068" "" "3" "118.408 K" [22:42:18.941] [147,] "Rterm.exe" "64412" "" "3" "63.748 K" [22:42:18.941] [148,] "R.exe" "88760" "" "3" "5.516 K" [22:42:18.941] [149,] "Rterm.exe" "23416" "" "3" "267.172 K" [22:42:18.941] [150,] "mintty.exe" "87976" "" "2" "17.964 K" [22:42:18.941] [151,] "conhost.exe" "46672" "" "2" "13.348 K" [22:42:18.941] [152,] "bash.exe" "30772" "" "2" "9.980 K" [22:42:18.941] [153,] "LogonUI.exe" "22296" "" "2" "31.268 K" [22:42:18.941] [154,] "WmiPrvSE.exe" "109392" "Services" "0" "13.416 K" [22:42:18.941] [155,] "cmd.exe" "66024" "" "3" "5.708 K" [22:42:18.941] [156,] "conhost.exe" "13476" "" "3" "17.380 K" [22:42:18.941] [157,] "R.exe" "103880" "" "3" "5.528 K" [22:42:18.941] [158,] "Rterm.exe" "28512" "" "3" "115.696 K" [22:42:18.941] [159,] "cmd.exe" "35912" "" "3" "4.624 K" [22:42:18.941] [160,] "make.exe" "46664" "" "3" "8.372 K" [22:42:18.941] [161,] "sh.exe" "43912" "" "3" "8.336 K" [22:42:18.941] [162,] "R.exe" "61708" "" "3" "5.364 K" [22:42:18.941] [163,] "cmd.exe" "88080" "" "3" "4.628 K" [22:42:18.941] [164,] "Rterm.exe" "32712" "" "3" "22.020 K" [22:42:18.941] [165,] "cmd.exe" "33836" "" "3" "4.596 K" [22:42:18.941] [166,] "R.exe" "26832" "" "3" "5.596 K" [22:42:18.941] [167,] "cmd.exe" "60968" "" "3" "4.616 K" [22:42:18.941] [168,] "Rterm.exe" "33212" "" "3" "296.908 K" [22:42:18.941] [169,] "Rterm.exe" "3540" "" "3" "67.080 K" [22:42:18.941] [170,] "WmiPrvSE.exe" "65164" "Services" "0" "16.072 K" [22:42:18.941] [171,] "R.exe" "102208" "" "3" "5.580 K" [22:42:18.941] [172,] "Rterm.exe" "84224" "" "3" "76.204 K" [22:42:18.941] [173,] "tasklist.exe" "94764" "" "3" "9.408 K" [22:42:18.944] Extracted: '0', '4', '1064', '1904', '2000', '1956', '2044', '2104', '2112', '2168', '2288', '2316', '2372', '2416', '2476', '2552', '2580', '2584', '2592', '2676', '2724', '2736', '2744', '2896', '2904', '2940', '1948', '2388', '1888', '3076', '3100', '3132', '3164', '3248', '3300', '3304', '3316', '3524', '3708', '3732', '3784', '3856', '3972', '4184', '4228', '4280', '4296', '4444', '4552', '4560', '4568', '4576', '4584', '4592', '4628', '4644', '4652', '4664', '4672', '5124', '5144', '5216', '6604', '8184', '6616', '8248', '8300', '9132', '10552', '4192', '4624', '4752', '4548', '8824', '836', '4828', '2304', '2328', '2140', '3428', '8696', '3988', '8760', '8168', '3000', '3828', '4356', '8440', '4820', '3152', '11544', '11788', '11840', '11980', '12064', '12196', '11884', '12428', '12636', '12788', '12836', '12872', '12920', '13232', '11960', '13176', '13104', '13348', '13428', '13652', '13792', '13932', '13252', '3336', '14464', '11852', '15280', '9672', '2424', '22048', '35608', '3764', '84468', '32988', '25244', '40528', '24492', '19620', '58268', '40964', '27812', '21576', '108564', '85480', '101452', '43740', '24744', '68324', '30308', '23244', '53260', '100728', '70268', '36980', '70744', '29068', '64412', '88760', '23416', '87976', '46672', '30772', '22296', '109392', '66024', '13476', '103880', '28512', '35912', '46664', '43912', '61708', '88080', '32712', '33836', '26832', '60968', '33212', '3540', '65164', '102208', '84224', '94764' [22:42:18.944] Parsed: '0', '4', '1064', '1904', '2000', '1956', '2044', '2104', '2112', '2168', '2288', '2316', '2372', '2416', '2476', '2552', '2580', '2584', '2592', '2676', '2724', '2736', '2744', '2896', '2904', '2940', '1948', '2388', '1888', '3076', '3100', '3132', '3164', '3248', '3300', '3304', '3316', '3524', '3708', '3732', '3784', '3856', '3972', '4184', '4228', '4280', '4296', '4444', '4552', '4560', '4568', '4576', '4584', '4592', '4628', '4644', '4652', '4664', '4672', '5124', '5144', '5216', '6604', '8184', '6616', '8248', '8300', '9132', '10552', '4192', '4624', '4752', '4548', '8824', '836', '4828', '2304', '2328', '2140', '3428', '8696', '3988', '8760', '8168', '3000', '3828', '4356', '8440', '4820', '3152', '11544', '11788', '11840', '11980', '12064', '12196', '11884', '12428', '12636', '12788', '12836', '12872', '12920', '13232', '11960', '13176', '13104', '13348', '13428', '13652', '13792', '13932', '13252', '3336', '14464', '11852', '15280', '9672', '2424', '22048', '35608', '3764', '84468', '32988', '25244', '40528', '24492', '19620', '58268', '40964', '27812', '21576', '108564', '85480', '101452', '43740', '24744', '68324', '30308', '23244', '53260', '100728', '70268', '36980', '70744', '29068', '64412', '88760', '23416', '87976', '46672', '30772', '22296', '109392', '66024', '13476', '103880', '28512', '35912', '46664', '43912', '61708', '88080', '32712', '33836', '26832', '60968', '33212', '3540', '65164', '102208', '84224', '94764' [22:42:18.945] Equals PID: 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE' [22:42:19.441] Call: tasklist [22:42:19.442] [1] "" [22:42:19.442] [2] "Abbildname PID Sitzungsname Sitz.-Nr. Speichernutzung" [22:42:19.442] [3] "========================= ======== ================ =========== ===============" [22:42:19.442] [4] "System Idle Process 0 Services 0 8 K" [22:42:19.442] [5] "System 4 Services 0 148 K" [22:42:19.442] [6] "Registry 1064 Services 0 111.864 K" [22:42:19.442] [7] "smss.exe 1904 Services 0 1.292 K" [22:42:19.442] [8] "csrss.exe 2000 Services 0 6.880 K" [22:42:19.442] [9] "wininit.exe 1956 Services 0 7.316 K" [22:42:19.442] [10] "csrss.exe 2044 Console 1 6.076 K" [22:42:19.442] [11] "services.exe 2104 Services 0 16.172 K" [22:42:19.442] [12] "winlogon.exe 2112 Console 1 10.580 K" [22:42:19.442] [13] "lsass.exe 2168 Services 0 87.292 K" [22:42:19.442] [14] "svchost.exe 2288 Services 0 33.984 K" [22:42:19.442] [15] "fontdrvhost.exe 2316 Services 0 4.528 K" [22:42:19.442] [16] "svchost.exe 2372 Services 0 52.816 K" [22:42:19.442] [17] "svchost.exe 2416 Services 0 13.220 K" [22:42:19.442] [18] "fontdrvhost.exe 2476 Console 1 4.388 K" [22:42:19.442] [19] "svchost.exe 2552 Services 0 44.472 K" [22:42:19.442] [20] "svchost.exe 2580 Services 0 8.288 K" [22:42:19.442] [21] "svchost.exe 2584 Services 0 9.656 K" [22:42:19.442] [22] "svchost.exe 2592 Services 0 5.740 K" [22:42:19.442] [23] "svchost.exe 2676 Services 0 9.088 K" [22:42:19.442] [24] "svchost.exe 2724 Services 0 11.788 K" [22:42:19.442] [25] "svchost.exe 2736 Services 0 10.656 K" [22:42:19.442] [26] "svchost.exe 2744 Services 0 12.548 K" [22:42:19.442] [27] "svchost.exe 2896 Services 0 22.504 K" [22:42:19.442] [28] "svchost.exe 2904 Services 0 6.232 K" [22:42:19.442] [29] "svchost.exe 2940 Services 0 21.612 K" [22:42:19.442] [30] "svchost.exe 1948 Services 0 13.944 K" [22:42:19.442] [31] "svchost.exe 2388 Services 0 21.052 K" [22:42:19.442] [32] "LogonUI.exe 1888 Console 1 48.860 K" [22:42:19.442] [33] "svchost.exe 3076 Services 0 12.052 K" [22:42:19.442] [34] "svchost.exe 3100 Services 0 7.892 K" [22:42:19.442] [35] "svchost.exe 3132 Services 0 19.160 K" [22:42:19.442] [36] "dwm.exe 3164 Console 1 45.620 K" [22:42:19.442] [37] "svchost.exe 3248 Services 0 11.852 K" [22:42:19.442] [38] "svchost.exe 3300 Services 0 6.276 K" [22:42:19.442] [39] "svchost.exe 3304 Services 0 14.832 K" [22:42:19.442] [40] "svchost.exe 3316 Services 0 8.608 K" [22:42:19.442] [41] "svchost.exe 3524 Services 0 9.092 K" [22:42:19.442] [42] "svchost.exe 3708 Services 0 9.652 K" [22:42:19.442] [43] "svchost.exe 3732 Services 0 10.260 K" [22:42:19.442] [44] "svchost.exe 3784 Services 0 14.024 K" [22:42:19.442] [45] "svchost.exe 3856 Services 0 7.880 K" [22:42:19.442] [46] "svchost.exe 3972 Services 0 9.292 K" [22:42:19.442] [47] "svchost.exe 4184 Services 0 8.200 K" [22:42:19.442] [48] "svchost.exe 4228 Services 0 9.740 K" [22:42:19.442] [49] "WUDFHost.exe 4280 Services 0 9.296 K" [22:42:19.442] [50] "svchost.exe 4296 Services 0 10.276 K" [22:42:19.442] [51] "spoolsv.exe 4444 Services 0 27.480 K" [22:42:19.442] [52] "svchost.exe 4552 Services 0 7.056 K" [22:42:19.442] [53] "svchost.exe 4560 Services 0 39.516 K" [22:42:19.442] [54] "cvfwd.exe 4568 Services 0 26.652 K" [22:42:19.442] [55] "svchost.exe 4576 Services 0 23.804 K" [22:42:19.442] [56] "IpOverUsbSvc.exe 4584 Services 0 15.528 K" [22:42:19.442] [57] "svchost.exe 4592 Services 0 8.064 K" [22:42:19.442] [58] "svchost.exe 4628 Services 0 5.916 K" [22:42:19.442] [59] "svchost.exe 4644 Services 0 30.220 K" [22:42:19.442] [60] "svchost.exe 4652 Services 0 14.980 K" [22:42:19.442] [61] "svchost.exe 4664 Services 0 12.120 K" [22:42:19.442] [62] "svchost.exe 4672 Services 0 7.632 K" [22:42:19.442] [63] "svchost.exe 5124 Services 0 10.172 K" [22:42:19.442] [64] "cvd.exe 5144 Services 0 323.756 K" [22:42:19.442] [65] "svchost.exe 5216 Services 0 14.172 K" [22:42:19.442] [66] "AggregatorHost.exe 6604 Services 0 11.064 K" [22:42:19.442] [67] "svchost.exe 8184 Services 0 8.048 K" [22:42:19.442] [68] "ClMgrS.exe 6616 Services 0 48.616 K" [22:42:19.442] [69] "dllhost.exe 8248 Services 0 13.760 K" [22:42:19.442] [70] "svchost.exe 8300 Services 0 7.664 K" [22:42:19.442] [71] "WmiPrvSE.exe 9132 Services 0 73.544 K" [22:42:19.442] [72] "svchost.exe 10552 Services 0 17.532 K" [22:42:19.442] [73] "svchost.exe 4192 Services 0 14.256 K" [22:42:19.442] [74] "svchost.exe 4624 Services 0 38.456 K" [22:42:19.442] [75] "svchost.exe 4752 Services 0 7.924 K" [22:42:19.442] [76] "svchost.exe 4548 Services 0 13.436 K" [22:42:19.442] [77] "msdtc.exe 8824 Services 0 11.264 K" [22:42:19.442] [78] "svchost.exe 836 Services 0 24.136 K" [22:42:19.442] [79] "svchost.exe 4828 Services 0 13.472 K" [22:42:19.442] [80] "csrss.exe 2304 2 13.092 K" [22:42:19.442] [81] "winlogon.exe 2328 2 10.980 K" [22:42:19.442] [82] "fontdrvhost.exe 2140 2 9.448 K" [22:42:19.442] [83] "dwm.exe 3428 2 41.288 K" [22:42:19.442] [84] "svchost.exe 8696 Services 0 16.804 K" [22:42:19.442] [85] "rdpclip.exe 3988 2 11.996 K" [22:42:19.442] [86] "svchost.exe 8760 2 17.540 K" [22:42:19.442] [87] "svchost.exe 8168 2 28.364 K" [22:42:19.442] [88] "sihost.exe 3000 2 27.732 K" [22:42:19.442] [89] "svchost.exe 3828 Services 0 16.900 K" [22:42:19.442] [90] "svchost.exe 4356 Services 0 7.896 K" [22:42:19.442] [91] "svchost.exe 8440 Services 0 11.036 K" [22:42:19.442] [92] "ctfmon.exe 4820 2 20.776 K" [22:42:19.442] [93] "taskhostw.exe 3152 2 15.324 K" [22:42:19.442] [94] "explorer.exe 11544 2 168.388 K" [22:42:19.442] [95] "csrss.exe 11788 3 10.272 K" [22:42:19.442] [96] "winlogon.exe 11840 3 11.184 K" [22:42:19.442] [97] "StartMenuExperienceHost.e 11980 2 64.092 K" [22:42:19.442] [98] "RuntimeBroker.exe 12064 2 22.932 K" [22:42:19.442] [99] "fontdrvhost.exe 12196 3 14.044 K" [22:42:19.442] [100] "dwm.exe 11884 3 52.036 K" [22:42:19.442] [101] "SearchApp.exe 12428 2 167.160 K" [22:42:19.442] [102] "RuntimeBroker.exe 12636 2 55.472 K" [22:42:19.442] [103] "rdpclip.exe 12788 3 13.824 K" [22:42:19.442] [104] "sihost.exe 12836 3 28.352 K" [22:42:19.442] [105] "svchost.exe 12872 3 17.836 K" [22:42:19.442] [106] "svchost.exe 12920 3 30.392 K" [22:42:19.442] [107] "explorer.exe 13232 3 665.256 K" [22:42:19.442] [108] "taskhostw.exe 11960 3 16.692 K" [22:42:19.442] [109] "RuntimeBroker.exe 13176 2 15.904 K" [22:42:19.442] [110] "StartMenuExperienceHost.e 13104 3 58.316 K" [22:42:19.442] [111] "RuntimeBroker.exe 13348 3 22.424 K" [22:42:19.442] [112] "SearchApp.exe 13428 3 86.596 K" [22:42:19.442] [113] "RuntimeBroker.exe 13652 3 32.000 K" [22:42:19.442] [114] "ctfmon.exe 13792 3 21.460 K" [22:42:19.442] [115] "RuntimeBroker.exe 13932 3 15.784 K" [22:42:19.442] [116] "svchost.exe 13252 Services 0 10.132 K" [22:42:19.442] [117] "svchost.exe 3336 2 17.516 K" [22:42:19.442] [118] "svchost.exe 14464 3 17.396 K" [22:42:19.442] [119] "svchost.exe 11852 Services 0 13.292 K" [22:42:19.442] [120] "svchost.exe 15280 Services 0 22.276 K" [22:42:19.442] [121] "TextInputHost.exe 9672 3 45.324 K" [22:42:19.442] [122] "taskhostw.exe 2424 3 16.184 K" [22:42:19.442] [123] "svchost.exe 22048 Services 0 13.604 K" [22:42:19.442] [124] "svchost.exe 35608 Services 0 7.764 K" [22:42:19.442] [125] "SecurityHealthService.exe 3764 Services 0 12.260 K" [22:42:19.442] [126] "ShellExperienceHost.exe 84468 3 50.532 K" [22:42:19.442] [127] "RuntimeBroker.exe 32988 3 20.128 K" [22:42:19.442] [128] "MpDefenderCoreService.exe 25244 Services 0 38.364 K" [22:42:19.442] [129] "MsMpEng.exe 40528 Services 0 663.792 K" [22:42:19.442] [130] "NisSrv.exe 24492 Services 0 14.604 K" [22:42:19.442] [131] "MusNotifyIcon.exe 19620 2 14.104 K" [22:42:19.442] [132] "TextInputHost.exe 58268 2 44.128 K" [22:42:19.442] [133] "dllhost.exe 40964 2 13.908 K" [22:42:19.442] [134] "LogonUI.exe 27812 3 31.244 K" [22:42:19.442] [135] "explorer.exe 21576 3 196.644 K" [22:42:19.442] [136] "cmd.exe 108564 3 5.388 K" [22:42:19.442] [137] "conhost.exe 85480 3 17.532 K" [22:42:19.442] [138] "R.exe 101452 3 5.480 K" [22:42:19.442] [139] "Rterm.exe 43740 3 177.012 K" [22:42:19.442] [140] "cmd.exe 24744 3 4.576 K" [22:42:19.442] [141] "make.exe 68324 3 134.344 K" [22:42:19.442] [142] "sh.exe 30308 3 8.264 K" [22:42:19.442] [143] "R.exe 23244 3 5.360 K" [22:42:19.442] [144] "cmd.exe 53260 3 4.604 K" [22:42:19.442] [145] "Rterm.exe 100728 3 31.808 K" [22:42:19.442] [146] "cmd.exe 70268 3 4.592 K" [22:42:19.442] [147] "R.exe 36980 3 5.612 K" [22:42:19.442] [148] "cmd.exe 70744 3 4.608 K" [22:42:19.442] [149] "Rterm.exe 29068 3 118.408 K" [22:42:19.442] [150] "Rterm.exe 64412 3 63.748 K" [22:42:19.442] [151] "R.exe 88760 3 5.516 K" [22:42:19.442] [152] "Rterm.exe 23416 3 267.172 K" [22:42:19.442] [153] "mintty.exe 87976 2 17.964 K" [22:42:19.442] [154] "conhost.exe 46672 2 13.348 K" [22:42:19.442] [155] "bash.exe 30772 2 9.980 K" [22:42:19.442] [156] "LogonUI.exe 22296 2 31.268 K" [22:42:19.442] [157] "WmiPrvSE.exe 109392 Services 0 13.416 K" [22:42:19.442] [158] "cmd.exe 66024 3 5.708 K" [22:42:19.442] [159] "conhost.exe 13476 3 17.380 K" [22:42:19.442] [160] "R.exe 103880 3 5.528 K" [22:42:19.442] [161] "Rterm.exe 28512 3 115.696 K" [22:42:19.442] [162] "cmd.exe 35912 3 4.624 K" [22:42:19.442] [163] "make.exe 46664 3 8.372 K" [22:42:19.442] [164] "sh.exe 43912 3 8.336 K" [22:42:19.442] [165] "R.exe 61708 3 5.364 K" [22:42:19.442] [166] "cmd.exe 88080 3 4.628 K" [22:42:19.442] [167] "Rterm.exe 32712 3 22.020 K" [22:42:19.442] [168] "cmd.exe 33836 3 4.596 K" [22:42:19.442] [169] "R.exe 26832 3 5.596 K" [22:42:19.442] [170] "cmd.exe 60968 3 4.616 K" [22:42:19.442] [171] "Rterm.exe 33212 3 296.908 K" [22:42:19.442] [172] "Rterm.exe 3540 3 67.080 K" [22:42:19.442] [173] "WmiPrvSE.exe 65164 Services 0 16.072 K" [22:42:19.442] [174] "R.exe 102208 3 5.580 K" [22:42:19.442] [175] "Rterm.exe 84224 3 76.580 K" [22:42:19.442] [176] "tasklist.exe 22344 3 9.420 K" [22:42:19.447] chr [1:176] "" ... [22:42:19.450] Column widths: [22:42:19.451] [1] "========================= ======== ================ =========== ===============" [22:42:19.452] [,1] [,2] [,3] [,4] [,5] [22:42:19.452] from 1 27 36 53 65 [22:42:19.452] to 25 34 51 63 79 [22:42:19.453] [1] "=========================" "========" [22:42:19.453] [3] "================" "===========" [22:42:19.453] [5] "===============" [22:42:19.455] Trimmed: [22:42:19.455] [,1] [,2] [,3] [,4] [,5] [22:42:19.455] [1,] "System Idle Process" "0" "Services" "0" "8 K" [22:42:19.455] [2,] "System" "4" "Services" "0" "148 K" [22:42:19.455] [3,] "Registry" "1064" "Services" "0" "111.864 K" [22:42:19.455] [4,] "smss.exe" "1904" "Services" "0" "1.292 K" [22:42:19.455] [5,] "csrss.exe" "2000" "Services" "0" "6.880 K" [22:42:19.455] [6,] "wininit.exe" "1956" "Services" "0" "7.316 K" [22:42:19.455] [7,] "csrss.exe" "2044" "Console" "1" "6.076 K" [22:42:19.455] [8,] "services.exe" "2104" "Services" "0" "16.172 K" [22:42:19.455] [9,] "winlogon.exe" "2112" "Console" "1" "10.580 K" [22:42:19.455] [10,] "lsass.exe" "2168" "Services" "0" "87.292 K" [22:42:19.455] [11,] "svchost.exe" "2288" "Services" "0" "33.984 K" [22:42:19.455] [12,] "fontdrvhost.exe" "2316" "Services" "0" "4.528 K" [22:42:19.455] [13,] "svchost.exe" "2372" "Services" "0" "52.816 K" [22:42:19.455] [14,] "svchost.exe" "2416" "Services" "0" "13.220 K" [22:42:19.455] [15,] "fontdrvhost.exe" "2476" "Console" "1" "4.388 K" [22:42:19.455] [16,] "svchost.exe" "2552" "Services" "0" "44.472 K" [22:42:19.455] [17,] "svchost.exe" "2580" "Services" "0" "8.288 K" [22:42:19.455] [18,] "svchost.exe" "2584" "Services" "0" "9.656 K" [22:42:19.455] [19,] "svchost.exe" "2592" "Services" "0" "5.740 K" [22:42:19.455] [20,] "svchost.exe" "2676" "Services" "0" "9.088 K" [22:42:19.455] [21,] "svchost.exe" "2724" "Services" "0" "11.788 K" [22:42:19.455] [22,] "svchost.exe" "2736" "Services" "0" "10.656 K" [22:42:19.455] [23,] "svchost.exe" "2744" "Services" "0" "12.548 K" [22:42:19.455] [24,] "svchost.exe" "2896" "Services" "0" "22.504 K" [22:42:19.455] [25,] "svchost.exe" "2904" "Services" "0" "6.232 K" [22:42:19.455] [26,] "svchost.exe" "2940" "Services" "0" "21.612 K" [22:42:19.455] [27,] "svchost.exe" "1948" "Services" "0" "13.944 K" [22:42:19.455] [28,] "svchost.exe" "2388" "Services" "0" "21.052 K" [22:42:19.455] [29,] "LogonUI.exe" "1888" "Console" "1" "48.860 K" [22:42:19.455] [30,] "svchost.exe" "3076" "Services" "0" "12.052 K" [22:42:19.455] [31,] "svchost.exe" "3100" "Services" "0" "7.892 K" [22:42:19.455] [32,] "svchost.exe" "3132" "Services" "0" "19.160 K" [22:42:19.455] [33,] "dwm.exe" "3164" "Console" "1" "45.620 K" [22:42:19.455] [34,] "svchost.exe" "3248" "Services" "0" "11.852 K" [22:42:19.455] [35,] "svchost.exe" "3300" "Services" "0" "6.276 K" [22:42:19.455] [36,] "svchost.exe" "3304" "Services" "0" "14.832 K" [22:42:19.455] [37,] "svchost.exe" "3316" "Services" "0" "8.608 K" [22:42:19.455] [38,] "svchost.exe" "3524" "Services" "0" "9.092 K" [22:42:19.455] [39,] "svchost.exe" "3708" "Services" "0" "9.652 K" [22:42:19.455] [40,] "svchost.exe" "3732" "Services" "0" "10.260 K" [22:42:19.455] [41,] "svchost.exe" "3784" "Services" "0" "14.024 K" [22:42:19.455] [42,] "svchost.exe" "3856" "Services" "0" "7.880 K" [22:42:19.455] [43,] "svchost.exe" "3972" "Services" "0" "9.292 K" [22:42:19.455] [44,] "svchost.exe" "4184" "Services" "0" "8.200 K" [22:42:19.455] [45,] "svchost.exe" "4228" "Services" "0" "9.740 K" [22:42:19.455] [46,] "WUDFHost.exe" "4280" "Services" "0" "9.296 K" [22:42:19.455] [47,] "svchost.exe" "4296" "Services" "0" "10.276 K" [22:42:19.455] [48,] "spoolsv.exe" "4444" "Services" "0" "27.480 K" [22:42:19.455] [49,] "svchost.exe" "4552" "Services" "0" "7.056 K" [22:42:19.455] [50,] "svchost.exe" "4560" "Services" "0" "39.516 K" [22:42:19.455] [51,] "cvfwd.exe" "4568" "Services" "0" "26.652 K" [22:42:19.455] [52,] "svchost.exe" "4576" "Services" "0" "23.804 K" [22:42:19.455] [53,] "IpOverUsbSvc.exe" "4584" "Services" "0" "15.528 K" [22:42:19.455] [54,] "svchost.exe" "4592" "Services" "0" "8.064 K" [22:42:19.455] [55,] "svchost.exe" "4628" "Services" "0" "5.916 K" [22:42:19.455] [56,] "svchost.exe" "4644" "Services" "0" "30.220 K" [22:42:19.455] [57,] "svchost.exe" "4652" "Services" "0" "14.980 K" [22:42:19.455] [58,] "svchost.exe" "4664" "Services" "0" "12.120 K" [22:42:19.455] [59,] "svchost.exe" "4672" "Services" "0" "7.632 K" [22:42:19.455] [60,] "svchost.exe" "5124" "Services" "0" "10.172 K" [22:42:19.455] [61,] "cvd.exe" "5144" "Services" "0" "323.756 K" [22:42:19.455] [62,] "svchost.exe" "5216" "Services" "0" "14.172 K" [22:42:19.455] [63,] "AggregatorHost.exe" "6604" "Services" "0" "11.064 K" [22:42:19.455] [64,] "svchost.exe" "8184" "Services" "0" "8.048 K" [22:42:19.455] [65,] "ClMgrS.exe" "6616" "Services" "0" "48.616 K" [22:42:19.455] [66,] "dllhost.exe" "8248" "Services" "0" "13.760 K" [22:42:19.455] [67,] "svchost.exe" "8300" "Services" "0" "7.664 K" [22:42:19.455] [68,] "WmiPrvSE.exe" "9132" "Services" "0" "73.544 K" [22:42:19.455] [69,] "svchost.exe" "10552" "Services" "0" "17.532 K" [22:42:19.455] [70,] "svchost.exe" "4192" "Services" "0" "14.256 K" [22:42:19.455] [71,] "svchost.exe" "4624" "Services" "0" "38.456 K" [22:42:19.455] [72,] "svchost.exe" "4752" "Services" "0" "7.924 K" [22:42:19.455] [73,] "svchost.exe" "4548" "Services" "0" "13.436 K" [22:42:19.455] [74,] "msdtc.exe" "8824" "Services" "0" "11.264 K" [22:42:19.455] [75,] "svchost.exe" "836" "Services" "0" "24.136 K" [22:42:19.455] [76,] "svchost.exe" "4828" "Services" "0" "13.472 K" [22:42:19.455] [77,] "csrss.exe" "2304" "" "2" "13.092 K" [22:42:19.455] [78,] "winlogon.exe" "2328" "" "2" "10.980 K" [22:42:19.455] [79,] "fontdrvhost.exe" "2140" "" "2" "9.448 K" [22:42:19.455] [80,] "dwm.exe" "3428" "" "2" "41.288 K" [22:42:19.455] [81,] "svchost.exe" "8696" "Services" "0" "16.804 K" [22:42:19.455] [82,] "rdpclip.exe" "3988" "" "2" "11.996 K" [22:42:19.455] [83,] "svchost.exe" "8760" "" "2" "17.540 K" [22:42:19.455] [84,] "svchost.exe" "8168" "" "2" "28.364 K" [22:42:19.455] [85,] "sihost.exe" "3000" "" "2" "27.732 K" [22:42:19.455] [86,] "svchost.exe" "3828" "Services" "0" "16.900 K" [22:42:19.455] [87,] "svchost.exe" "4356" "Services" "0" "7.896 K" [22:42:19.455] [88,] "svchost.exe" "8440" "Services" "0" "11.036 K" [22:42:19.455] [89,] "ctfmon.exe" "4820" "" "2" "20.776 K" [22:42:19.455] [90,] "taskhostw.exe" "3152" "" "2" "15.324 K" [22:42:19.455] [91,] "explorer.exe" "11544" "" "2" "168.388 K" [22:42:19.455] [92,] "csrss.exe" "11788" "" "3" "10.272 K" [22:42:19.455] [93,] "winlogon.exe" "11840" "" "3" "11.184 K" [22:42:19.455] [94,] "StartMenuExperienceHost.e" "11980" "" "2" "64.092 K" [22:42:19.455] [95,] "RuntimeBroker.exe" "12064" "" "2" "22.932 K" [22:42:19.455] [96,] "fontdrvhost.exe" "12196" "" "3" "14.044 K" [22:42:19.455] [97,] "dwm.exe" "11884" "" "3" "52.036 K" [22:42:19.455] [98,] "SearchApp.exe" "12428" "" "2" "167.160 K" [22:42:19.455] [99,] "RuntimeBroker.exe" "12636" "" "2" "55.472 K" [22:42:19.455] [100,] "rdpclip.exe" "12788" "" "3" "13.824 K" [22:42:19.455] [101,] "sihost.exe" "12836" "" "3" "28.352 K" [22:42:19.455] [102,] "svchost.exe" "12872" "" "3" "17.836 K" [22:42:19.455] [103,] "svchost.exe" "12920" "" "3" "30.392 K" [22:42:19.455] [104,] "explorer.exe" "13232" "" "3" "665.256 K" [22:42:19.455] [105,] "taskhostw.exe" "11960" "" "3" "16.692 K" [22:42:19.455] [106,] "RuntimeBroker.exe" "13176" "" "2" "15.904 K" [22:42:19.455] [107,] "StartMenuExperienceHost.e" "13104" "" "3" "58.316 K" [22:42:19.455] [108,] "RuntimeBroker.exe" "13348" "" "3" "22.424 K" [22:42:19.455] [109,] "SearchApp.exe" "13428" "" "3" "86.596 K" [22:42:19.455] [110,] "RuntimeBroker.exe" "13652" "" "3" "32.000 K" [22:42:19.455] [111,] "ctfmon.exe" "13792" "" "3" "21.460 K" [22:42:19.455] [112,] "RuntimeBroker.exe" "13932" "" "3" "15.784 K" [22:42:19.455] [113,] "svchost.exe" "13252" "Services" "0" "10.132 K" [22:42:19.455] [114,] "svchost.exe" "3336" "" "2" "17.516 K" [22:42:19.455] [115,] "svchost.exe" "14464" "" "3" "17.396 K" [22:42:19.455] [116,] "svchost.exe" "11852" "Services" "0" "13.292 K" [22:42:19.455] [117,] "svchost.exe" "15280" "Services" "0" "22.276 K" [22:42:19.455] [118,] "TextInputHost.exe" "9672" "" "3" "45.324 K" [22:42:19.455] [119,] "taskhostw.exe" "2424" "" "3" "16.184 K" [22:42:19.455] [120,] "svchost.exe" "22048" "Services" "0" "13.604 K" [22:42:19.455] [121,] "svchost.exe" "35608" "Services" "0" "7.764 K" [22:42:19.455] [122,] "SecurityHealthService.exe" "3764" "Services" "0" "12.260 K" [22:42:19.455] [123,] "ShellExperienceHost.exe" "84468" "" "3" "50.532 K" [22:42:19.455] [124,] "RuntimeBroker.exe" "32988" "" "3" "20.128 K" [22:42:19.455] [125,] "MpDefenderCoreService.exe" "25244" "Services" "0" "38.364 K" [22:42:19.455] [126,] "MsMpEng.exe" "40528" "Services" "0" "663.792 K" [22:42:19.455] [127,] "NisSrv.exe" "24492" "Services" "0" "14.604 K" [22:42:19.455] [128,] "MusNotifyIcon.exe" "19620" "" "2" "14.104 K" [22:42:19.455] [129,] "TextInputHost.exe" "58268" "" "2" "44.128 K" [22:42:19.455] [130,] "dllhost.exe" "40964" "" "2" "13.908 K" [22:42:19.455] [131,] "LogonUI.exe" "27812" "" "3" "31.244 K" [22:42:19.455] [132,] "explorer.exe" "21576" "" "3" "196.644 K" [22:42:19.455] [133,] "cmd.exe" "108564" "" "3" "5.388 K" [22:42:19.455] [134,] "conhost.exe" "85480" "" "3" "17.532 K" [22:42:19.455] [135,] "R.exe" "101452" "" "3" "5.480 K" [22:42:19.455] [136,] "Rterm.exe" "43740" "" "3" "177.012 K" [22:42:19.455] [137,] "cmd.exe" "24744" "" "3" "4.576 K" [22:42:19.455] [138,] "make.exe" "68324" "" "3" "134.344 K" [22:42:19.455] [139,] "sh.exe" "30308" "" "3" "8.264 K" [22:42:19.455] [140,] "R.exe" "23244" "" "3" "5.360 K" [22:42:19.455] [141,] "cmd.exe" "53260" "" "3" "4.604 K" [22:42:19.455] [142,] "Rterm.exe" "100728" "" "3" "31.808 K" [22:42:19.455] [143,] "cmd.exe" "70268" "" "3" "4.592 K" [22:42:19.455] [144,] "R.exe" "36980" "" "3" "5.612 K" [22:42:19.455] [145,] "cmd.exe" "70744" "" "3" "4.608 K" [22:42:19.455] [146,] "Rterm.exe" "29068" "" "3" "118.408 K" [22:42:19.455] [147,] "Rterm.exe" "64412" "" "3" "63.748 K" [22:42:19.455] [148,] "R.exe" "88760" "" "3" "5.516 K" [22:42:19.455] [149,] "Rterm.exe" "23416" "" "3" "267.172 K" [22:42:19.455] [150,] "mintty.exe" "87976" "" "2" "17.964 K" [22:42:19.455] [151,] "conhost.exe" "46672" "" "2" "13.348 K" [22:42:19.455] [152,] "bash.exe" "30772" "" "2" "9.980 K" [22:42:19.455] [153,] "LogonUI.exe" "22296" "" "2" "31.268 K" [22:42:19.455] [154,] "WmiPrvSE.exe" "109392" "Services" "0" "13.416 K" [22:42:19.455] [155,] "cmd.exe" "66024" "" "3" "5.708 K" [22:42:19.455] [156,] "conhost.exe" "13476" "" "3" "17.380 K" [22:42:19.455] [157,] "R.exe" "103880" "" "3" "5.528 K" [22:42:19.455] [158,] "Rterm.exe" "28512" "" "3" "115.696 K" [22:42:19.455] [159,] "cmd.exe" "35912" "" "3" "4.624 K" [22:42:19.455] [160,] "make.exe" "46664" "" "3" "8.372 K" [22:42:19.455] [161,] "sh.exe" "43912" "" "3" "8.336 K" [22:42:19.455] [162,] "R.exe" "61708" "" "3" "5.364 K" [22:42:19.455] [163,] "cmd.exe" "88080" "" "3" "4.628 K" [22:42:19.455] [164,] "Rterm.exe" "32712" "" "3" "22.020 K" [22:42:19.455] [165,] "cmd.exe" "33836" "" "3" "4.596 K" [22:42:19.455] [166,] "R.exe" "26832" "" "3" "5.596 K" [22:42:19.455] [167,] "cmd.exe" "60968" "" "3" "4.616 K" [22:42:19.455] [168,] "Rterm.exe" "33212" "" "3" "296.908 K" [22:42:19.455] [169,] "Rterm.exe" "3540" "" "3" "67.080 K" [22:42:19.455] [170,] "WmiPrvSE.exe" "65164" "Services" "0" "16.072 K" [22:42:19.455] [171,] "R.exe" "102208" "" "3" "5.580 K" [22:42:19.455] [172,] "Rterm.exe" "84224" "" "3" "76.580 K" [22:42:19.455] [173,] "tasklist.exe" "22344" "" "3" "9.420 K" [22:42:19.458] Extracted: '0', '4', '1064', '1904', '2000', '1956', '2044', '2104', '2112', '2168', '2288', '2316', '2372', '2416', '2476', '2552', '2580', '2584', '2592', '2676', '2724', '2736', '2744', '2896', '2904', '2940', '1948', '2388', '1888', '3076', '3100', '3132', '3164', '3248', '3300', '3304', '3316', '3524', '3708', '3732', '3784', '3856', '3972', '4184', '4228', '4280', '4296', '4444', '4552', '4560', '4568', '4576', '4584', '4592', '4628', '4644', '4652', '4664', '4672', '5124', '5144', '5216', '6604', '8184', '6616', '8248', '8300', '9132', '10552', '4192', '4624', '4752', '4548', '8824', '836', '4828', '2304', '2328', '2140', '3428', '8696', '3988', '8760', '8168', '3000', '3828', '4356', '8440', '4820', '3152', '11544', '11788', '11840', '11980', '12064', '12196', '11884', '12428', '12636', '12788', '12836', '12872', '12920', '13232', '11960', '13176', '13104', '13348', '13428', '13652', '13792', '13932', '13252', '3336', '14464', '11852', '15280', '9672', '2424', '22048', '35608', '3764', '84468', '32988', '25244', '40528', '24492', '19620', '58268', '40964', '27812', '21576', '108564', '85480', '101452', '43740', '24744', '68324', '30308', '23244', '53260', '100728', '70268', '36980', '70744', '29068', '64412', '88760', '23416', '87976', '46672', '30772', '22296', '109392', '66024', '13476', '103880', '28512', '35912', '46664', '43912', '61708', '88080', '32712', '33836', '26832', '60968', '33212', '3540', '65164', '102208', '84224', '22344' [22:42:19.459] Parsed: '0', '4', '1064', '1904', '2000', '1956', '2044', '2104', '2112', '2168', '2288', '2316', '2372', '2416', '2476', '2552', '2580', '2584', '2592', '2676', '2724', '2736', '2744', '2896', '2904', '2940', '1948', '2388', '1888', '3076', '3100', '3132', '3164', '3248', '3300', '3304', '3316', '3524', '3708', '3732', '3784', '3856', '3972', '4184', '4228', '4280', '4296', '4444', '4552', '4560', '4568', '4576', '4584', '4592', '4628', '4644', '4652', '4664', '4672', '5124', '5144', '5216', '6604', '8184', '6616', '8248', '8300', '9132', '10552', '4192', '4624', '4752', '4548', '8824', '836', '4828', '2304', '2328', '2140', '3428', '8696', '3988', '8760', '8168', '3000', '3828', '4356', '8440', '4820', '3152', '11544', '11788', '11840', '11980', '12064', '12196', '11884', '12428', '12636', '12788', '12836', '12872', '12920', '13232', '11960', '13176', '13104', '13348', '13428', '13652', '13792', '13932', '13252', '3336', '14464', '11852', '15280', '9672', '2424', '22048', '35608', '3764', '84468', '32988', '25244', '40528', '24492', '19620', '58268', '40964', '27812', '21576', '108564', '85480', '101452', '43740', '24744', '68324', '30308', '23244', '53260', '100728', '70268', '36980', '70744', '29068', '64412', '88760', '23416', '87976', '46672', '30772', '22296', '109392', '66024', '13476', '103880', '28512', '35912', '46664', '43912', '61708', '88080', '32712', '33836', '26832', '60968', '33212', '3540', '65164', '102208', '84224', '22344' [22:42:19.460] Equals PID: 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE' [22:42:19.848] Call: tasklist [22:42:19.849] [1] "" [22:42:19.849] [2] "Abbildname PID Sitzungsname Sitz.-Nr. Speichernutzung" [22:42:19.849] [3] "========================= ======== ================ =========== ===============" [22:42:19.849] [4] "System Idle Process 0 Services 0 8 K" [22:42:19.849] [5] "System 4 Services 0 148 K" [22:42:19.849] [6] "Registry 1064 Services 0 111.864 K" [22:42:19.849] [7] "smss.exe 1904 Services 0 1.292 K" [22:42:19.849] [8] "csrss.exe 2000 Services 0 6.880 K" [22:42:19.849] [9] "wininit.exe 1956 Services 0 7.316 K" [22:42:19.849] [10] "csrss.exe 2044 Console 1 6.076 K" [22:42:19.849] [11] "services.exe 2104 Services 0 16.172 K" [22:42:19.849] [12] "winlogon.exe 2112 Console 1 10.580 K" [22:42:19.849] [13] "lsass.exe 2168 Services 0 87.292 K" [22:42:19.849] [14] "svchost.exe 2288 Services 0 33.984 K" [22:42:19.849] [15] "fontdrvhost.exe 2316 Services 0 4.528 K" [22:42:19.849] [16] "svchost.exe 2372 Services 0 52.816 K" [22:42:19.849] [17] "svchost.exe 2416 Services 0 13.220 K" [22:42:19.849] [18] "fontdrvhost.exe 2476 Console 1 4.388 K" [22:42:19.849] [19] "svchost.exe 2552 Services 0 44.472 K" [22:42:19.849] [20] "svchost.exe 2580 Services 0 8.288 K" [22:42:19.849] [21] "svchost.exe 2584 Services 0 9.656 K" [22:42:19.849] [22] "svchost.exe 2592 Services 0 5.740 K" [22:42:19.849] [23] "svchost.exe 2676 Services 0 9.088 K" [22:42:19.849] [24] "svchost.exe 2724 Services 0 11.788 K" [22:42:19.849] [25] "svchost.exe 2736 Services 0 10.656 K" [22:42:19.849] [26] "svchost.exe 2744 Services 0 12.548 K" [22:42:19.849] [27] "svchost.exe 2896 Services 0 22.504 K" [22:42:19.849] [28] "svchost.exe 2904 Services 0 6.232 K" [22:42:19.849] [29] "svchost.exe 2940 Services 0 21.612 K" [22:42:19.849] [30] "svchost.exe 1948 Services 0 13.944 K" [22:42:19.849] [31] "svchost.exe 2388 Services 0 21.052 K" [22:42:19.849] [32] "LogonUI.exe 1888 Console 1 48.860 K" [22:42:19.849] [33] "svchost.exe 3076 Services 0 12.052 K" [22:42:19.849] [34] "svchost.exe 3100 Services 0 7.892 K" [22:42:19.849] [35] "svchost.exe 3132 Services 0 19.160 K" [22:42:19.849] [36] "dwm.exe 3164 Console 1 45.620 K" [22:42:19.849] [37] "svchost.exe 3248 Services 0 11.852 K" [22:42:19.849] [38] "svchost.exe 3300 Services 0 6.276 K" [22:42:19.849] [39] "svchost.exe 3304 Services 0 14.832 K" [22:42:19.849] [40] "svchost.exe 3316 Services 0 8.608 K" [22:42:19.849] [41] "svchost.exe 3524 Services 0 9.092 K" [22:42:19.849] [42] "svchost.exe 3708 Services 0 9.652 K" [22:42:19.849] [43] "svchost.exe 3732 Services 0 10.260 K" [22:42:19.849] [44] "svchost.exe 3784 Services 0 14.024 K" [22:42:19.849] [45] "svchost.exe 3856 Services 0 7.880 K" [22:42:19.849] [46] "svchost.exe 3972 Services 0 9.292 K" [22:42:19.849] [47] "svchost.exe 4184 Services 0 8.200 K" [22:42:19.849] [48] "svchost.exe 4228 Services 0 9.740 K" [22:42:19.849] [49] "WUDFHost.exe 4280 Services 0 9.296 K" [22:42:19.849] [50] "svchost.exe 4296 Services 0 10.276 K" [22:42:19.849] [51] "spoolsv.exe 4444 Services 0 27.480 K" [22:42:19.849] [52] "svchost.exe 4552 Services 0 7.056 K" [22:42:19.849] [53] "svchost.exe 4560 Services 0 39.516 K" [22:42:19.849] [54] "cvfwd.exe 4568 Services 0 26.652 K" [22:42:19.849] [55] "svchost.exe 4576 Services 0 23.804 K" [22:42:19.849] [56] "IpOverUsbSvc.exe 4584 Services 0 15.528 K" [22:42:19.849] [57] "svchost.exe 4592 Services 0 8.064 K" [22:42:19.849] [58] "svchost.exe 4628 Services 0 5.916 K" [22:42:19.849] [59] "svchost.exe 4644 Services 0 30.488 K" [22:42:19.849] [60] "svchost.exe 4652 Services 0 14.980 K" [22:42:19.849] [61] "svchost.exe 4664 Services 0 12.120 K" [22:42:19.849] [62] "svchost.exe 4672 Services 0 7.632 K" [22:42:19.849] [63] "svchost.exe 5124 Services 0 10.172 K" [22:42:19.849] [64] "cvd.exe 5144 Services 0 323.756 K" [22:42:19.849] [65] "svchost.exe 5216 Services 0 14.172 K" [22:42:19.849] [66] "AggregatorHost.exe 6604 Services 0 11.064 K" [22:42:19.849] [67] "svchost.exe 8184 Services 0 8.048 K" [22:42:19.849] [68] "ClMgrS.exe 6616 Services 0 48.616 K" [22:42:19.849] [69] "dllhost.exe 8248 Services 0 13.760 K" [22:42:19.849] [70] "svchost.exe 8300 Services 0 7.664 K" [22:42:19.849] [71] "WmiPrvSE.exe 9132 Services 0 73.544 K" [22:42:19.849] [72] "svchost.exe 10552 Services 0 17.532 K" [22:42:19.849] [73] "svchost.exe 4192 Services 0 14.256 K" [22:42:19.849] [74] "svchost.exe 4624 Services 0 38.456 K" [22:42:19.849] [75] "svchost.exe 4752 Services 0 7.924 K" [22:42:19.849] [76] "svchost.exe 4548 Services 0 13.436 K" [22:42:19.849] [77] "msdtc.exe 8824 Services 0 11.264 K" [22:42:19.849] [78] "svchost.exe 836 Services 0 24.136 K" [22:42:19.849] [79] "svchost.exe 4828 Services 0 13.472 K" [22:42:19.849] [80] "csrss.exe 2304 2 13.092 K" [22:42:19.849] [81] "winlogon.exe 2328 2 10.980 K" [22:42:19.849] [82] "fontdrvhost.exe 2140 2 9.448 K" [22:42:19.849] [83] "dwm.exe 3428 2 41.288 K" [22:42:19.849] [84] "svchost.exe 8696 Services 0 16.804 K" [22:42:19.849] [85] "rdpclip.exe 3988 2 11.996 K" [22:42:19.849] [86] "svchost.exe 8760 2 17.540 K" [22:42:19.849] [87] "svchost.exe 8168 2 28.364 K" [22:42:19.849] [88] "sihost.exe 3000 2 27.732 K" [22:42:19.849] [89] "svchost.exe 3828 Services 0 16.900 K" [22:42:19.849] [90] "svchost.exe 4356 Services 0 7.896 K" [22:42:19.849] [91] "svchost.exe 8440 Services 0 11.036 K" [22:42:19.849] [92] "ctfmon.exe 4820 2 20.776 K" [22:42:19.849] [93] "taskhostw.exe 3152 2 15.324 K" [22:42:19.849] [94] "explorer.exe 11544 2 168.388 K" [22:42:19.849] [95] "csrss.exe 11788 3 10.272 K" [22:42:19.849] [96] "winlogon.exe 11840 3 11.184 K" [22:42:19.849] [97] "StartMenuExperienceHost.e 11980 2 64.092 K" [22:42:19.849] [98] "RuntimeBroker.exe 12064 2 22.932 K" [22:42:19.849] [99] "fontdrvhost.exe 12196 3 14.044 K" [22:42:19.849] [100] "dwm.exe 11884 3 52.036 K" [22:42:19.849] [101] "SearchApp.exe 12428 2 167.160 K" [22:42:19.849] [102] "RuntimeBroker.exe 12636 2 55.472 K" [22:42:19.849] [103] "rdpclip.exe 12788 3 13.824 K" [22:42:19.849] [104] "sihost.exe 12836 3 28.352 K" [22:42:19.849] [105] "svchost.exe 12872 3 17.836 K" [22:42:19.849] [106] "svchost.exe 12920 3 30.392 K" [22:42:19.849] [107] "explorer.exe 13232 3 665.256 K" [22:42:19.849] [108] "taskhostw.exe 11960 3 16.692 K" [22:42:19.849] [109] "RuntimeBroker.exe 13176 2 15.904 K" [22:42:19.849] [110] "StartMenuExperienceHost.e 13104 3 58.316 K" [22:42:19.849] [111] "RuntimeBroker.exe 13348 3 22.424 K" [22:42:19.849] [112] "SearchApp.exe 13428 3 86.596 K" [22:42:19.849] [113] "RuntimeBroker.exe 13652 3 32.000 K" [22:42:19.849] [114] "ctfmon.exe 13792 3 21.460 K" [22:42:19.849] [115] "RuntimeBroker.exe 13932 3 15.784 K" [22:42:19.849] [116] "svchost.exe 13252 Services 0 10.132 K" [22:42:19.849] [117] "svchost.exe 3336 2 17.516 K" [22:42:19.849] [118] "svchost.exe 14464 3 17.396 K" [22:42:19.849] [119] "svchost.exe 11852 Services 0 13.292 K" [22:42:19.849] [120] "svchost.exe 15280 Services 0 22.276 K" [22:42:19.849] [121] "TextInputHost.exe 9672 3 45.324 K" [22:42:19.849] [122] "taskhostw.exe 2424 3 16.184 K" [22:42:19.849] [123] "svchost.exe 22048 Services 0 13.604 K" [22:42:19.849] [124] "svchost.exe 35608 Services 0 7.764 K" [22:42:19.849] [125] "SecurityHealthService.exe 3764 Services 0 12.260 K" [22:42:19.849] [126] "ShellExperienceHost.exe 84468 3 50.532 K" [22:42:19.849] [127] "RuntimeBroker.exe 32988 3 20.128 K" [22:42:19.849] [128] "MpDefenderCoreService.exe 25244 Services 0 38.364 K" [22:42:19.849] [129] "MsMpEng.exe 40528 Services 0 663.792 K" [22:42:19.849] [130] "NisSrv.exe 24492 Services 0 14.604 K" [22:42:19.849] [131] "MusNotifyIcon.exe 19620 2 14.104 K" [22:42:19.849] [132] "TextInputHost.exe 58268 2 44.128 K" [22:42:19.849] [133] "dllhost.exe 40964 2 13.908 K" [22:42:19.849] [134] "LogonUI.exe 27812 3 31.244 K" [22:42:19.849] [135] "explorer.exe 21576 3 196.644 K" [22:42:19.849] [136] "cmd.exe 108564 3 5.388 K" [22:42:19.849] [137] "conhost.exe 85480 3 17.532 K" [22:42:19.849] [138] "R.exe 101452 3 5.480 K" [22:42:19.849] [139] "Rterm.exe 43740 3 177.012 K" [22:42:19.849] [140] "cmd.exe 24744 3 4.576 K" [22:42:19.849] [141] "make.exe 68324 3 134.344 K" [22:42:19.849] [142] "sh.exe 30308 3 8.264 K" [22:42:19.849] [143] "R.exe 23244 3 5.360 K" [22:42:19.849] [144] "cmd.exe 53260 3 4.604 K" [22:42:19.849] [145] "Rterm.exe 100728 3 31.808 K" [22:42:19.849] [146] "cmd.exe 70268 3 4.592 K" [22:42:19.849] [147] "R.exe 36980 3 5.612 K" [22:42:19.849] [148] "cmd.exe 70744 3 4.608 K" [22:42:19.849] [149] "Rterm.exe 29068 3 118.408 K" [22:42:19.849] [150] "Rterm.exe 64412 3 63.748 K" [22:42:19.849] [151] "R.exe 88760 3 5.516 K" [22:42:19.849] [152] "Rterm.exe 23416 3 267.172 K" [22:42:19.849] [153] "mintty.exe 87976 2 17.964 K" [22:42:19.849] [154] "conhost.exe 46672 2 13.348 K" [22:42:19.849] [155] "bash.exe 30772 2 9.980 K" [22:42:19.849] [156] "LogonUI.exe 22296 2 31.268 K" [22:42:19.849] [157] "WmiPrvSE.exe 109392 Services 0 13.416 K" [22:42:19.849] [158] "cmd.exe 66024 3 5.708 K" [22:42:19.849] [159] "conhost.exe 13476 3 17.380 K" [22:42:19.849] [160] "R.exe 103880 3 5.528 K" [22:42:19.849] [161] "Rterm.exe 28512 3 115.696 K" [22:42:19.849] [162] "cmd.exe 35912 3 4.624 K" [22:42:19.849] [163] "make.exe 46664 3 8.372 K" [22:42:19.849] [164] "sh.exe 43912 3 8.336 K" [22:42:19.849] [165] "R.exe 61708 3 5.364 K" [22:42:19.849] [166] "cmd.exe 88080 3 4.628 K" [22:42:19.849] [167] "Rterm.exe 32712 3 22.020 K" [22:42:19.849] [168] "cmd.exe 33836 3 4.596 K" [22:42:19.849] [169] "R.exe 26832 3 5.596 K" [22:42:19.849] [170] "cmd.exe 60968 3 4.616 K" [22:42:19.849] [171] "Rterm.exe 33212 3 296.908 K" [22:42:19.849] [172] "Rterm.exe 3540 3 67.080 K" [22:42:19.849] [173] "WmiPrvSE.exe 65164 Services 0 16.072 K" [22:42:19.849] [174] "R.exe 102208 3 5.580 K" [22:42:19.849] [175] "Rterm.exe 84224 3 76.628 K" [22:42:19.849] [176] "tasklist.exe 73208 3 9.432 K" [22:42:19.853] chr [1:176] "" ... [22:42:19.856] Column widths: [22:42:19.857] [1] "========================= ======== ================ =========== ===============" [22:42:19.858] [,1] [,2] [,3] [,4] [,5] [22:42:19.858] from 1 27 36 53 65 [22:42:19.858] to 25 34 51 63 79 [22:42:19.858] [1] "=========================" "========" [22:42:19.858] [3] "================" "===========" [22:42:19.858] [5] "===============" [22:42:19.860] Trimmed: [22:42:19.861] [,1] [,2] [,3] [,4] [,5] [22:42:19.861] [1,] "System Idle Process" "0" "Services" "0" "8 K" [22:42:19.861] [2,] "System" "4" "Services" "0" "148 K" [22:42:19.861] [3,] "Registry" "1064" "Services" "0" "111.864 K" [22:42:19.861] [4,] "smss.exe" "1904" "Services" "0" "1.292 K" [22:42:19.861] [5,] "csrss.exe" "2000" "Services" "0" "6.880 K" [22:42:19.861] [6,] "wininit.exe" "1956" "Services" "0" "7.316 K" [22:42:19.861] [7,] "csrss.exe" "2044" "Console" "1" "6.076 K" [22:42:19.861] [8,] "services.exe" "2104" "Services" "0" "16.172 K" [22:42:19.861] [9,] "winlogon.exe" "2112" "Console" "1" "10.580 K" [22:42:19.861] [10,] "lsass.exe" "2168" "Services" "0" "87.292 K" [22:42:19.861] [11,] "svchost.exe" "2288" "Services" "0" "33.984 K" [22:42:19.861] [12,] "fontdrvhost.exe" "2316" "Services" "0" "4.528 K" [22:42:19.861] [13,] "svchost.exe" "2372" "Services" "0" "52.816 K" [22:42:19.861] [14,] "svchost.exe" "2416" "Services" "0" "13.220 K" [22:42:19.861] [15,] "fontdrvhost.exe" "2476" "Console" "1" "4.388 K" [22:42:19.861] [16,] "svchost.exe" "2552" "Services" "0" "44.472 K" [22:42:19.861] [17,] "svchost.exe" "2580" "Services" "0" "8.288 K" [22:42:19.861] [18,] "svchost.exe" "2584" "Services" "0" "9.656 K" [22:42:19.861] [19,] "svchost.exe" "2592" "Services" "0" "5.740 K" [22:42:19.861] [20,] "svchost.exe" "2676" "Services" "0" "9.088 K" [22:42:19.861] [21,] "svchost.exe" "2724" "Services" "0" "11.788 K" [22:42:19.861] [22,] "svchost.exe" "2736" "Services" "0" "10.656 K" [22:42:19.861] [23,] "svchost.exe" "2744" "Services" "0" "12.548 K" [22:42:19.861] [24,] "svchost.exe" "2896" "Services" "0" "22.504 K" [22:42:19.861] [25,] "svchost.exe" "2904" "Services" "0" "6.232 K" [22:42:19.861] [26,] "svchost.exe" "2940" "Services" "0" "21.612 K" [22:42:19.861] [27,] "svchost.exe" "1948" "Services" "0" "13.944 K" [22:42:19.861] [28,] "svchost.exe" "2388" "Services" "0" "21.052 K" [22:42:19.861] [29,] "LogonUI.exe" "1888" "Console" "1" "48.860 K" [22:42:19.861] [30,] "svchost.exe" "3076" "Services" "0" "12.052 K" [22:42:19.861] [31,] "svchost.exe" "3100" "Services" "0" "7.892 K" [22:42:19.861] [32,] "svchost.exe" "3132" "Services" "0" "19.160 K" [22:42:19.861] [33,] "dwm.exe" "3164" "Console" "1" "45.620 K" [22:42:19.861] [34,] "svchost.exe" "3248" "Services" "0" "11.852 K" [22:42:19.861] [35,] "svchost.exe" "3300" "Services" "0" "6.276 K" [22:42:19.861] [36,] "svchost.exe" "3304" "Services" "0" "14.832 K" [22:42:19.861] [37,] "svchost.exe" "3316" "Services" "0" "8.608 K" [22:42:19.861] [38,] "svchost.exe" "3524" "Services" "0" "9.092 K" [22:42:19.861] [39,] "svchost.exe" "3708" "Services" "0" "9.652 K" [22:42:19.861] [40,] "svchost.exe" "3732" "Services" "0" "10.260 K" [22:42:19.861] [41,] "svchost.exe" "3784" "Services" "0" "14.024 K" [22:42:19.861] [42,] "svchost.exe" "3856" "Services" "0" "7.880 K" [22:42:19.861] [43,] "svchost.exe" "3972" "Services" "0" "9.292 K" [22:42:19.861] [44,] "svchost.exe" "4184" "Services" "0" "8.200 K" [22:42:19.861] [45,] "svchost.exe" "4228" "Services" "0" "9.740 K" [22:42:19.861] [46,] "WUDFHost.exe" "4280" "Services" "0" "9.296 K" [22:42:19.861] [47,] "svchost.exe" "4296" "Services" "0" "10.276 K" [22:42:19.861] [48,] "spoolsv.exe" "4444" "Services" "0" "27.480 K" [22:42:19.861] [49,] "svchost.exe" "4552" "Services" "0" "7.056 K" [22:42:19.861] [50,] "svchost.exe" "4560" "Services" "0" "39.516 K" [22:42:19.861] [51,] "cvfwd.exe" "4568" "Services" "0" "26.652 K" [22:42:19.861] [52,] "svchost.exe" "4576" "Services" "0" "23.804 K" [22:42:19.861] [53,] "IpOverUsbSvc.exe" "4584" "Services" "0" "15.528 K" [22:42:19.861] [54,] "svchost.exe" "4592" "Services" "0" "8.064 K" [22:42:19.861] [55,] "svchost.exe" "4628" "Services" "0" "5.916 K" [22:42:19.861] [56,] "svchost.exe" "4644" "Services" "0" "30.488 K" [22:42:19.861] [57,] "svchost.exe" "4652" "Services" "0" "14.980 K" [22:42:19.861] [58,] "svchost.exe" "4664" "Services" "0" "12.120 K" [22:42:19.861] [59,] "svchost.exe" "4672" "Services" "0" "7.632 K" [22:42:19.861] [60,] "svchost.exe" "5124" "Services" "0" "10.172 K" [22:42:19.861] [61,] "cvd.exe" "5144" "Services" "0" "323.756 K" [22:42:19.861] [62,] "svchost.exe" "5216" "Services" "0" "14.172 K" [22:42:19.861] [63,] "AggregatorHost.exe" "6604" "Services" "0" "11.064 K" [22:42:19.861] [64,] "svchost.exe" "8184" "Services" "0" "8.048 K" [22:42:19.861] [65,] "ClMgrS.exe" "6616" "Services" "0" "48.616 K" [22:42:19.861] [66,] "dllhost.exe" "8248" "Services" "0" "13.760 K" [22:42:19.861] [67,] "svchost.exe" "8300" "Services" "0" "7.664 K" [22:42:19.861] [68,] "WmiPrvSE.exe" "9132" "Services" "0" "73.544 K" [22:42:19.861] [69,] "svchost.exe" "10552" "Services" "0" "17.532 K" [22:42:19.861] [70,] "svchost.exe" "4192" "Services" "0" "14.256 K" [22:42:19.861] [71,] "svchost.exe" "4624" "Services" "0" "38.456 K" [22:42:19.861] [72,] "svchost.exe" "4752" "Services" "0" "7.924 K" [22:42:19.861] [73,] "svchost.exe" "4548" "Services" "0" "13.436 K" [22:42:19.861] [74,] "msdtc.exe" "8824" "Services" "0" "11.264 K" [22:42:19.861] [75,] "svchost.exe" "836" "Services" "0" "24.136 K" [22:42:19.861] [76,] "svchost.exe" "4828" "Services" "0" "13.472 K" [22:42:19.861] [77,] "csrss.exe" "2304" "" "2" "13.092 K" [22:42:19.861] [78,] "winlogon.exe" "2328" "" "2" "10.980 K" [22:42:19.861] [79,] "fontdrvhost.exe" "2140" "" "2" "9.448 K" [22:42:19.861] [80,] "dwm.exe" "3428" "" "2" "41.288 K" [22:42:19.861] [81,] "svchost.exe" "8696" "Services" "0" "16.804 K" [22:42:19.861] [82,] "rdpclip.exe" "3988" "" "2" "11.996 K" [22:42:19.861] [83,] "svchost.exe" "8760" "" "2" "17.540 K" [22:42:19.861] [84,] "svchost.exe" "8168" "" "2" "28.364 K" [22:42:19.861] [85,] "sihost.exe" "3000" "" "2" "27.732 K" [22:42:19.861] [86,] "svchost.exe" "3828" "Services" "0" "16.900 K" [22:42:19.861] [87,] "svchost.exe" "4356" "Services" "0" "7.896 K" [22:42:19.861] [88,] "svchost.exe" "8440" "Services" "0" "11.036 K" [22:42:19.861] [89,] "ctfmon.exe" "4820" "" "2" "20.776 K" [22:42:19.861] [90,] "taskhostw.exe" "3152" "" "2" "15.324 K" [22:42:19.861] [91,] "explorer.exe" "11544" "" "2" "168.388 K" [22:42:19.861] [92,] "csrss.exe" "11788" "" "3" "10.272 K" [22:42:19.861] [93,] "winlogon.exe" "11840" "" "3" "11.184 K" [22:42:19.861] [94,] "StartMenuExperienceHost.e" "11980" "" "2" "64.092 K" [22:42:19.861] [95,] "RuntimeBroker.exe" "12064" "" "2" "22.932 K" [22:42:19.861] [96,] "fontdrvhost.exe" "12196" "" "3" "14.044 K" [22:42:19.861] [97,] "dwm.exe" "11884" "" "3" "52.036 K" [22:42:19.861] [98,] "SearchApp.exe" "12428" "" "2" "167.160 K" [22:42:19.861] [99,] "RuntimeBroker.exe" "12636" "" "2" "55.472 K" [22:42:19.861] [100,] "rdpclip.exe" "12788" "" "3" "13.824 K" [22:42:19.861] [101,] "sihost.exe" "12836" "" "3" "28.352 K" [22:42:19.861] [102,] "svchost.exe" "12872" "" "3" "17.836 K" [22:42:19.861] [103,] "svchost.exe" "12920" "" "3" "30.392 K" [22:42:19.861] [104,] "explorer.exe" "13232" "" "3" "665.256 K" [22:42:19.861] [105,] "taskhostw.exe" "11960" "" "3" "16.692 K" [22:42:19.861] [106,] "RuntimeBroker.exe" "13176" "" "2" "15.904 K" [22:42:19.861] [107,] "StartMenuExperienceHost.e" "13104" "" "3" "58.316 K" [22:42:19.861] [108,] "RuntimeBroker.exe" "13348" "" "3" "22.424 K" [22:42:19.861] [109,] "SearchApp.exe" "13428" "" "3" "86.596 K" [22:42:19.861] [110,] "RuntimeBroker.exe" "13652" "" "3" "32.000 K" [22:42:19.861] [111,] "ctfmon.exe" "13792" "" "3" "21.460 K" [22:42:19.861] [112,] "RuntimeBroker.exe" "13932" "" "3" "15.784 K" [22:42:19.861] [113,] "svchost.exe" "13252" "Services" "0" "10.132 K" [22:42:19.861] [114,] "svchost.exe" "3336" "" "2" "17.516 K" [22:42:19.861] [115,] "svchost.exe" "14464" "" "3" "17.396 K" [22:42:19.861] [116,] "svchost.exe" "11852" "Services" "0" "13.292 K" [22:42:19.861] [117,] "svchost.exe" "15280" "Services" "0" "22.276 K" [22:42:19.861] [118,] "TextInputHost.exe" "9672" "" "3" "45.324 K" [22:42:19.861] [119,] "taskhostw.exe" "2424" "" "3" "16.184 K" [22:42:19.861] [120,] "svchost.exe" "22048" "Services" "0" "13.604 K" [22:42:19.861] [121,] "svchost.exe" "35608" "Services" "0" "7.764 K" [22:42:19.861] [122,] "SecurityHealthService.exe" "3764" "Services" "0" "12.260 K" [22:42:19.861] [123,] "ShellExperienceHost.exe" "84468" "" "3" "50.532 K" [22:42:19.861] [124,] "RuntimeBroker.exe" "32988" "" "3" "20.128 K" [22:42:19.861] [125,] "MpDefenderCoreService.exe" "25244" "Services" "0" "38.364 K" [22:42:19.861] [126,] "MsMpEng.exe" "40528" "Services" "0" "663.792 K" [22:42:19.861] [127,] "NisSrv.exe" "24492" "Services" "0" "14.604 K" [22:42:19.861] [128,] "MusNotifyIcon.exe" "19620" "" "2" "14.104 K" [22:42:19.861] [129,] "TextInputHost.exe" "58268" "" "2" "44.128 K" [22:42:19.861] [130,] "dllhost.exe" "40964" "" "2" "13.908 K" [22:42:19.861] [131,] "LogonUI.exe" "27812" "" "3" "31.244 K" [22:42:19.861] [132,] "explorer.exe" "21576" "" "3" "196.644 K" [22:42:19.861] [133,] "cmd.exe" "108564" "" "3" "5.388 K" [22:42:19.861] [134,] "conhost.exe" "85480" "" "3" "17.532 K" [22:42:19.861] [135,] "R.exe" "101452" "" "3" "5.480 K" [22:42:19.861] [136,] "Rterm.exe" "43740" "" "3" "177.012 K" [22:42:19.861] [137,] "cmd.exe" "24744" "" "3" "4.576 K" [22:42:19.861] [138,] "make.exe" "68324" "" "3" "134.344 K" [22:42:19.861] [139,] "sh.exe" "30308" "" "3" "8.264 K" [22:42:19.861] [140,] "R.exe" "23244" "" "3" "5.360 K" [22:42:19.861] [141,] "cmd.exe" "53260" "" "3" "4.604 K" [22:42:19.861] [142,] "Rterm.exe" "100728" "" "3" "31.808 K" [22:42:19.861] [143,] "cmd.exe" "70268" "" "3" "4.592 K" [22:42:19.861] [144,] "R.exe" "36980" "" "3" "5.612 K" [22:42:19.861] [145,] "cmd.exe" "70744" "" "3" "4.608 K" [22:42:19.861] [146,] "Rterm.exe" "29068" "" "3" "118.408 K" [22:42:19.861] [147,] "Rterm.exe" "64412" "" "3" "63.748 K" [22:42:19.861] [148,] "R.exe" "88760" "" "3" "5.516 K" [22:42:19.861] [149,] "Rterm.exe" "23416" "" "3" "267.172 K" [22:42:19.861] [150,] "mintty.exe" "87976" "" "2" "17.964 K" [22:42:19.861] [151,] "conhost.exe" "46672" "" "2" "13.348 K" [22:42:19.861] [152,] "bash.exe" "30772" "" "2" "9.980 K" [22:42:19.861] [153,] "LogonUI.exe" "22296" "" "2" "31.268 K" [22:42:19.861] [154,] "WmiPrvSE.exe" "109392" "Services" "0" "13.416 K" [22:42:19.861] [155,] "cmd.exe" "66024" "" "3" "5.708 K" [22:42:19.861] [156,] "conhost.exe" "13476" "" "3" "17.380 K" [22:42:19.861] [157,] "R.exe" "103880" "" "3" "5.528 K" [22:42:19.861] [158,] "Rterm.exe" "28512" "" "3" "115.696 K" [22:42:19.861] [159,] "cmd.exe" "35912" "" "3" "4.624 K" [22:42:19.861] [160,] "make.exe" "46664" "" "3" "8.372 K" [22:42:19.861] [161,] "sh.exe" "43912" "" "3" "8.336 K" [22:42:19.861] [162,] "R.exe" "61708" "" "3" "5.364 K" [22:42:19.861] [163,] "cmd.exe" "88080" "" "3" "4.628 K" [22:42:19.861] [164,] "Rterm.exe" "32712" "" "3" "22.020 K" [22:42:19.861] [165,] "cmd.exe" "33836" "" "3" "4.596 K" [22:42:19.861] [166,] "R.exe" "26832" "" "3" "5.596 K" [22:42:19.861] [167,] "cmd.exe" "60968" "" "3" "4.616 K" [22:42:19.861] [168,] "Rterm.exe" "33212" "" "3" "296.908 K" [22:42:19.861] [169,] "Rterm.exe" "3540" "" "3" "67.080 K" [22:42:19.861] [170,] "WmiPrvSE.exe" "65164" "Services" "0" "16.072 K" [22:42:19.861] [171,] "R.exe" "102208" "" "3" "5.580 K" [22:42:19.861] [172,] "Rterm.exe" "84224" "" "3" "76.628 K" [22:42:19.861] [173,] "tasklist.exe" "73208" "" "3" "9.432 K" [22:42:19.864] Extracted: '0', '4', '1064', '1904', '2000', '1956', '2044', '2104', '2112', '2168', '2288', '2316', '2372', '2416', '2476', '2552', '2580', '2584', '2592', '2676', '2724', '2736', '2744', '2896', '2904', '2940', '1948', '2388', '1888', '3076', '3100', '3132', '3164', '3248', '3300', '3304', '3316', '3524', '3708', '3732', '3784', '3856', '3972', '4184', '4228', '4280', '4296', '4444', '4552', '4560', '4568', '4576', '4584', '4592', '4628', '4644', '4652', '4664', '4672', '5124', '5144', '5216', '6604', '8184', '6616', '8248', '8300', '9132', '10552', '4192', '4624', '4752', '4548', '8824', '836', '4828', '2304', '2328', '2140', '3428', '8696', '3988', '8760', '8168', '3000', '3828', '4356', '8440', '4820', '3152', '11544', '11788', '11840', '11980', '12064', '12196', '11884', '12428', '12636', '12788', '12836', '12872', '12920', '13232', '11960', '13176', '13104', '13348', '13428', '13652', '13792', '13932', '13252', '3336', '14464', '11852', '15280', '9672', '2424', '22048', '35608', '3764', '84468', '32988', '25244', '40528', '24492', '19620', '58268', '40964', '27812', '21576', '108564', '85480', '101452', '43740', '24744', '68324', '30308', '23244', '53260', '100728', '70268', '36980', '70744', '29068', '64412', '88760', '23416', '87976', '46672', '30772', '22296', '109392', '66024', '13476', '103880', '28512', '35912', '46664', '43912', '61708', '88080', '32712', '33836', '26832', '60968', '33212', '3540', '65164', '102208', '84224', '73208' [22:42:19.864] Parsed: '0', '4', '1064', '1904', '2000', '1956', '2044', '2104', '2112', '2168', '2288', '2316', '2372', '2416', '2476', '2552', '2580', '2584', '2592', '2676', '2724', '2736', '2744', '2896', '2904', '2940', '1948', '2388', '1888', '3076', '3100', '3132', '3164', '3248', '3300', '3304', '3316', '3524', '3708', '3732', '3784', '3856', '3972', '4184', '4228', '4280', '4296', '4444', '4552', '4560', '4568', '4576', '4584', '4592', '4628', '4644', '4652', '4664', '4672', '5124', '5144', '5216', '6604', '8184', '6616', '8248', '8300', '9132', '10552', '4192', '4624', '4752', '4548', '8824', '836', '4828', '2304', '2328', '2140', '3428', '8696', '3988', '8760', '8168', '3000', '3828', '4356', '8440', '4820', '3152', '11544', '11788', '11840', '11980', '12064', '12196', '11884', '12428', '12636', '12788', '12836', '12872', '12920', '13232', '11960', '13176', '13104', '13348', '13428', '13652', '13792', '13932', '13252', '3336', '14464', '11852', '15280', '9672', '2424', '22048', '35608', '3764', '84468', '32988', '25244', '40528', '24492', '19620', '58268', '40964', '27812', '21576', '108564', '85480', '101452', '43740', '24744', '68324', '30308', '23244', '53260', '100728', '70268', '36980', '70744', '29068', '64412', '88760', '23416', '87976', '46672', '30772', '22296', '109392', '66024', '13476', '103880', '28512', '35912', '46664', '43912', '61708', '88080', '32712', '33836', '26832', '60968', '33212', '3540', '65164', '102208', '84224', '73208' [22:42:19.865] Equals PID: 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE', 'FALSE' > message("pid_exists(non-existent PID): ", result) pid_exists(non-existent PID): FALSE > stopifnot(is.logical(result), length(result) == 1, + isFALSE(result) || is.na(result)) > res <- tryCatch(pid_exists(-1), error = identity) > stopifnot(inherits(res, "error")) > res <- tryCatch(pid_exists(NA), error = identity) > stopifnot(inherits(res, "error")) > message("*** pid_exists() - argument validation ... DONE") *** pid_exists() - argument validation ... DONE > options(parallelly.debug = FALSE) > message("*** utils ... DONE") *** utils ... DONE Failed to undo environment variables: - Expected environment variables: [n=219] '!ExitCode', 'ALLUSERSPROFILE', 'APPDATA', 'BIBINPUTS', 'BINDIR', 'BSTINPUTS', 'COMMONPROGRAMFILES', 'COMPUTERNAME', 'COMSPEC', 'CURL_CA_BUNDLE', 'CV_Instance001', 'CYGWIN', 'CommonProgramFiles(x86)', 'CommonProgramW6432', 'DriverData', 'HOME', 'HOMEDRIVE', 'HOMEPATH', 'JAGS_ROOT', 'JAVA_HOME', 'LANGUAGE', 'LC_COLLATE', 'LC_MONETARY', 'LC_TIME', 'LOCALAPPDATA', 'LOGONSERVER', 'LS_HOME', 'LS_LICENSE_PATH', 'MAKE', 'MAKEFLAGS', 'MAKELEVEL', 'MFLAGS', 'MSMPI_BENCHMARKS', 'MSMPI_BIN', 'MSYS2_ENV_CONV_EXCL', 'NUMBER_OF_PROCESSORS', 'OCL', 'OMP_THREAD_LIMIT', 'OS', 'PATH', 'PATHEXT', 'PROCESSOR_ARCHITECTURE', 'PROCESSOR_IDENTIFIER', 'PROCESSOR_LEVEL', 'PROCESSOR_REVISION', 'PROGRAMFILES', 'PROMPT', 'PSModulePath', 'PUBLIC', 'PWD', 'ProgramData', 'ProgramFiles(x86)', 'ProgramW6432', 'RTOOLS44_HOME', 'RTOOLS45_HOME', 'R_ARCH', 'R_BROWSER', 'R_BZIPCMD', 'R_CMD', 'R_COMPILED_BY', 'R_CRAN_WEB', 'R_CUSTOM_TOOLS_PATH', 'R_CUSTOM_TOOLS_SOFT', 'R_DOC_DIR', 'R_ENVIRON_USER', 'R_GSCMD', 'R_GZIPCMD', 'R_HOME', 'R_INCLUDE_DIR', 'R_INSTALL_TAR', 'R_LIBS', 'R_LIBS_SITE', 'R_LIBS_USER', 'R_MAX_NUM_DLLS', 'R_OSTYPE', 'R_PAPERSIZE', 'R_PAPERSIZE_USER', 'R_PARALLELLY_MAKENODEPSOCK_AUTOKILL', 'R_PARALLELLY_MAKENODEPSOCK_CONNECTTIMEOUT', 'R_PARALLELLY_MAKENODEPSOCK_RSCRIPT_LABEL', 'R_PARALLELLY_MAKENODEPSOCK_SESSIONINFO_PKGS', 'R_PARALLELLY_MAKENODEPSOCK_TIMEOUT', 'R_PARALLELLY_RANDOM_PORTS', 'R_PARALLEL_PORT', 'R_RD4PDF', 'R_RTOOLS45_PATH', 'R_SCRIPT_LEGACY', 'R_SHARE_DIR', 'R_TESTME_NAME', 'R_TESTME_PACKAGE', 'R_TESTME_PATH', 'R_TESTS', 'R_UNZIPCMD', 'R_USER', 'R_VERSION', 'R_ZIPCMD', 'SED', 'SHLVL', 'SYSTEMDRIVE', 'SYSTEMROOT', 'TAR', 'TAR_OPTIONS', 'TEMP', 'TERM', 'TETRAD_DIR', 'TEXINPUTS', 'TMP', 'TMPDIR', 'USERDOMAIN', 'USERDOMAIN_ROAMINGPROFILE', 'USERNAME', 'USERPROFILE', 'WINDIR', '_', '_R_BIBTOOLS_CACHE_BIBENTRIES_', '_R_CHECK_AUTOCONF_', '_R_CHECK_BOGUS_RETURN_', '_R_CHECK_BROWSER_NONINTERACTIVE_', '_R_CHECK_BUILD_VIGNETTES_SEPARATELY_', '_R_CHECK_CODETOOLS_PROFILE_', '_R_CHECK_CODE_ASSIGN_TO_GLOBALENV_', '_R_CHECK_CODE_ATTACH_', '_R_CHECK_CODE_CLASS_IS_STRING_', '_R_CHECK_CODE_DATA_INTO_GLOBALENV_', '_R_CHECK_CODE_USAGE_VIA_NAMESPACES_', '_R_CHECK_CODE_USAGE_WITHOUT_LOADING_', '_R_CHECK_CODE_USAGE_WITH_ONLY_BASE_ATTACHED_', '_R_CHECK_CODOC_VARIABLES_IN_USAGES_', '_R_CHECK_COMPACT_DATA2_', '_R_CHECK_COMPILATION_FLAGS_', '_R_CHECK_CONNECTIONS_LEFT_OPEN_', '_R_CHECK_CRAN_INCOMING_', '_R_CHECK_CRAN_INCOMING_ASPELL_RECHECK_MAYBE_', '_R_CHECK_CRAN_INCOMING_ASPELL_RECHECK_START_', '_R_CHECK_CRAN_INCOMING_CHECK_FILE_URIS_', '_R_CHECK_CRAN_INCOMING_CHECK_URLS_IN_PARALLEL_', '_R_CHECK_CRAN_INCOMING_NOTE_GNU_MAKE_', '_R_CHECK_CRAN_INCOMING_REMOTE_', '_R_CHECK_CRAN_INCOMING_USE_ASPELL_', '_R_CHECK_DATALIST_', '_R_CHECK_DEPRECATED_DEFUNCT_', '_R_CHECK_DOC_SIZES2_', '_R_CHECK_DOT_FIRSTLIB_', '_R_CHECK_DOT_INTERNAL_', '_R_CHECK_EXAMPLE_TIMING_THRESHOLD_', '_R_CHECK_EXECUTABLES_', '_R_CHECK_EXECUTABLES_EXCLUSIONS_', '_R_CHECK_FF_CALLS_', '_R_CHECK_FF_DUP_', '_R_CHECK_FORCE_SUGGESTS_', '_R_CHECK_FUTURE_FILE_TIMESTAMPS_', '_R_CHECK_FUTURE_FILE_TIMESTAMPS_LEEWAY_', '_R_CHECK_HAVE_MYSQL_', '_R_CHECK_HAVE_ODBC_', '_R_CHECK_HAVE_PERL_', '_R_CHECK_HAVE_POSTGRES_', '_R_CHECK_INSTALL_DEPENDS_', '_R_CHECK_INTERNALS2_', '_R_CHECK_LENGTH_1_CONDITION_', '_R_CHECK_LICENSE_', '_R_CHECK_LIMIT_CORES_', '_R_CHECK_LOG_USE_INFO_', '_R_CHECK_MATRIX_DATA_', '_R_CHECK_MBCS_CONVERSION_FAILURE_', '_R_CHECK_NATIVE_ROUTINE_REGISTRATION_', '_R_CHECK_NEWS_IN_PLAIN_TEXT_', '_R_CHECK_NO_RECOMMENDED_', '_R_CHECK_NO_STOP_ON_TEST_ERROR_', '_R_CHECK_ORPHANED_', '_R_CHECK_OVERWRITE_REGISTERED_S3_METHODS_', '_R_CHECK_PACKAGES_USED_IGNORE_UNUSED_IMPORTS_', '_R_CHECK_PACKAGES_USED_IN_TESTS_USE_SUBDIRS_', '_R_CHECK_PACKAGE_DATASETS_SUPPRESS_NOTES_', '_R_CHECK_PACKAGE_NAME_', '_R_CHECK_PKG_SIZES_', '_R_CHECK_PKG_SIZES_THRESHOLD_', '_R_CHECK_PRAGMAS_', '_R_CHECK_RCPP_NOT_NEEDED_', '_R_CHECK_RD_BIBENTRIES_CITED_NOT_SHOWN_', '_R_CHECK_RD_EXAMPLES_T_AND_F_', '_R_CHECK_RD_LINE_WIDTHS_', '_R_CHECK_RD_MATH_RENDERING_', '_R_CHECK_RD_NOTE_LOST_BRACES_', '_R_CHECK_RD_VALIDATE_RD2HTML_', '_R_CHECK_REPLACING_IMPORTS_', '_R_CHECK_R_DEPENDS_', '_R_CHECK_S3_METHODS_SHOW_POSSIBLE_ISSUES_', '_R_CHECK_SCREEN_DEVICE_', '_R_CHECK_SERIALIZATION_', '_R_CHECK_SHLIB_OPENMP_FLAGS_', '_R_CHECK_SRC_MINUS_W_IMPLICIT_', '_R_CHECK_SUBDIRS_NOCASE_', '_R_CHECK_SUGGESTS_ONLY_', '_R_CHECK_SYSTEM_CLOCK_', '_R_CHECK_TESTS_NLINES_', '_R_CHECK_TEST_TIMING_', '_R_CHECK_TIMINGS_', '_R_CHECK_TOPLEVEL_FILES_', '_R_CHECK_UNDOC_USE_ALL_NAMES_', '_R_CHECK_UNSAFE_CALLS_', '_R_CHECK_URLS_RELATIVE_PATHS_', '_R_CHECK_URLS_SHOW_301_STATUS_', '_R_CHECK_VC_DIRS_', '_R_CHECK_VIGNETTES_NLINES_', '_R_CHECK_VIGNETTES_SKIP_RUN_MAYBE_', '_R_CHECK_VIGNETTE_TIMING_', '_R_CHECK_VIGNETTE_TITLES_', '_R_CHECK_WINDOWS_DEVICE_', '_R_CHECK_XREFS_NOTE_MISSING_PACKAGE_ANCHORS_', '_R_CHECK_XREFS_USE_ALIASES_FROM_CRAN_', '_R_CLASS_MATRIX_ARRAY_', '_R_DEPRECATED_IS_R_', '_R_S3_METHOD_LOOKUP_BASEENV_AFTER_GLOBALENV_', '_R_SHLIB_BUILD_OBJECTS_SYMBOL_TABLES_', '_R_USE_STRICT_R_HEADERS_', '__R_CHECK_DOC_FILES_NOTE_IF_ALL_INTERNAL__', 'maj.version', 'nextArg--timingsnextArg--install', 'tempdirname' - Environment variables still there: [n=0] - Environment variables missing: [n=1] 'MAKEFLAGS' Differences environment variable by environment variable: Test time: user.self=0.3s, sys.self=0.4s, elapsed=4s, user.child=NAs, sys.child=NAs Test 'tempdirname' ... success > > proc.time() user system elapsed 0.51 0.45 3.86