R Under development (unstable) (2026-01-06 r89281 ucrt) -- "Unsuffered Consequences" 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) [20:07:23.061] Hello #2 > mdebugf("Hello #%d", 2) [20:07:23.063] 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: 12324 > exists <- pid_exists(pid) [20:07:23.065] Attempting to find a working pid_exists_*() function ... [20:07:23.340] Call: tasklist [20:07:23.340] [1] "" [20:07:23.340] [2] "Abbildname PID Sitzungsname Sitz.-Nr. Speichernutzung" [20:07:23.340] [3] "========================= ======== ================ =========== ===============" [20:07:23.340] [4] "System Idle Process 0 Services 0 8 K" [20:07:23.340] [5] "System 4 Services 0 776 K" [20:07:23.340] [6] "Registry 1064 Services 0 114.600 K" [20:07:23.340] [7] "smss.exe 1904 Services 0 1.352 K" [20:07:23.340] [8] "csrss.exe 2000 Services 0 6.952 K" [20:07:23.340] [9] "wininit.exe 1892 Services 0 7.440 K" [20:07:23.340] [10] "csrss.exe 1916 Console 1 6.128 K" [20:07:23.340] [11] "services.exe 2076 Services 0 16.700 K" [20:07:23.340] [12] "winlogon.exe 2104 Console 1 10.620 K" [20:07:23.340] [13] "lsass.exe 2148 Services 0 57.524 K" [20:07:23.340] [14] "svchost.exe 2280 Services 0 33.800 K" [20:07:23.340] [15] "fontdrvhost.exe 2308 Services 0 4.560 K" [20:07:23.340] [16] "svchost.exe 2364 Services 0 54.164 K" [20:07:23.340] [17] "svchost.exe 2408 Services 0 13.884 K" [20:07:23.340] [18] "fontdrvhost.exe 2468 Console 1 4.416 K" [20:07:23.340] [19] "svchost.exe 2544 Services 0 75.164 K" [20:07:23.340] [20] "svchost.exe 2568 Services 0 9.444 K" [20:07:23.340] [21] "svchost.exe 2580 Services 0 8.208 K" [20:07:23.340] [22] "svchost.exe 2688 Services 0 8.864 K" [20:07:23.340] [23] "svchost.exe 2728 Services 0 11.976 K" [20:07:23.340] [24] "svchost.exe 2740 Services 0 10.880 K" [20:07:23.340] [25] "svchost.exe 2748 Services 0 12.776 K" [20:07:23.340] [26] "svchost.exe 2888 Services 0 6.372 K" [20:07:23.340] [27] "svchost.exe 2904 Services 0 23.088 K" [20:07:23.340] [28] "svchost.exe 2940 Services 0 21.744 K" [20:07:23.340] [29] "LogonUI.exe 1960 Console 1 49.284 K" [20:07:23.340] [30] "svchost.exe 2268 Services 0 14.852 K" [20:07:23.340] [31] "svchost.exe 2808 Services 0 20.412 K" [20:07:23.340] [32] "dwm.exe 3052 Console 1 45.892 K" [20:07:23.340] [33] "svchost.exe 3084 Services 0 12.336 K" [20:07:23.340] [34] "svchost.exe 3128 Services 0 8.072 K" [20:07:23.340] [35] "svchost.exe 3140 Services 0 18.912 K" [20:07:23.340] [36] "svchost.exe 3268 Services 0 13.028 K" [20:07:23.340] [37] "svchost.exe 3320 Services 0 15.072 K" [20:07:23.340] [38] "svchost.exe 3328 Services 0 6.368 K" [20:07:23.340] [39] "svchost.exe 3336 Services 0 8.984 K" [20:07:23.340] [40] "svchost.exe 3552 Services 0 9.364 K" [20:07:23.340] [41] "svchost.exe 3744 Services 0 9.600 K" [20:07:23.340] [42] "svchost.exe 3760 Services 0 10.800 K" [20:07:23.340] [43] "svchost.exe 3784 Services 0 14.080 K" [20:07:23.340] [44] "svchost.exe 3844 Services 0 7.772 K" [20:07:23.340] [45] "svchost.exe 3916 Services 0 9.436 K" [20:07:23.340] [46] "svchost.exe 4204 Services 0 8.436 K" [20:07:23.340] [47] "svchost.exe 4260 Services 0 9.588 K" [20:07:23.340] [48] "WUDFHost.exe 4312 Services 0 9.316 K" [20:07:23.340] [49] "svchost.exe 4328 Services 0 10.236 K" [20:07:23.340] [50] "svchost.exe 4568 Services 0 8.088 K" [20:07:23.340] [51] "spoolsv.exe 4576 Services 0 27.964 K" [20:07:23.340] [52] "svchost.exe 4716 Services 0 7.244 K" [20:07:23.340] [53] "svchost.exe 4712 Services 0 22.572 K" [20:07:23.340] [54] "svchost.exe 4728 Services 0 40.508 K" [20:07:23.340] [55] "cvfwd.exe 4740 Services 0 27.708 K" [20:07:23.340] [56] "IpOverUsbSvc.exe 4748 Services 0 15.616 K" [20:07:23.340] [57] "svchost.exe 4752 Services 0 8.256 K" [20:07:23.340] [58] "svchost.exe 4764 Services 0 7.772 K" [20:07:23.340] [59] "svchost.exe 4776 Services 0 6.056 K" [20:07:23.340] [60] "svchost.exe 4812 Services 0 15.428 K" [20:07:23.340] [61] "svchost.exe 4808 Services 0 13.236 K" [20:07:23.340] [62] "svchost.exe 4832 Services 0 30.724 K" [20:07:23.340] [63] "cvd.exe 5248 Services 0 314.784 K" [20:07:23.340] [64] "svchost.exe 5296 Services 0 10.136 K" [20:07:23.340] [65] "svchost.exe 5424 Services 0 14.364 K" [20:07:23.340] [66] "AggregatorHost.exe 6760 Services 0 10.632 K" [20:07:23.340] [67] "svchost.exe 6792 Services 0 7.772 K" [20:07:23.340] [68] "ClMgrS.exe 8288 Services 0 48.548 K" [20:07:23.340] [69] "dllhost.exe 8432 Services 0 13.460 K" [20:07:23.340] [70] "WmiPrvSE.exe 9244 Services 0 71.972 K" [20:07:23.340] [71] "svchost.exe 8920 Services 0 17.884 K" [20:07:23.340] [72] "svchost.exe 6820 Services 0 14.728 K" [20:07:23.340] [73] "svchost.exe 4696 Services 0 32.164 K" [20:07:23.340] [74] "svchost.exe 4652 Services 0 7.612 K" [20:07:23.340] [75] "svchost.exe 8020 Services 0 13.316 K" [20:07:23.340] [76] "msdtc.exe 2020 Services 0 11.300 K" [20:07:23.340] [77] "svchost.exe 2556 Services 0 25.584 K" [20:07:23.340] [78] "svchost.exe 2416 Services 0 13.192 K" [20:07:23.340] [79] "csrss.exe 8700 RDP-Tcp#0 2 8.912 K" [20:07:23.340] [80] "winlogon.exe 8484 RDP-Tcp#0 2 11.184 K" [20:07:23.340] [81] "fontdrvhost.exe 8252 RDP-Tcp#0 2 13.664 K" [20:07:23.340] [82] "dwm.exe 9048 RDP-Tcp#0 2 73.452 K" [20:07:23.340] [83] "svchost.exe 9572 Services 0 20.708 K" [20:07:23.340] [84] "rdpclip.exe 2372 RDP-Tcp#0 2 14.624 K" [20:07:23.340] [85] "svchost.exe 8680 RDP-Tcp#0 2 17.640 K" [20:07:23.340] [86] "svchost.exe 3648 RDP-Tcp#0 2 34.760 K" [20:07:23.340] [87] "svchost.exe 9080 Services 0 16.636 K" [20:07:23.340] [88] "sihost.exe 11312 RDP-Tcp#0 2 28.452 K" [20:07:23.340] [89] "svchost.exe 11344 Services 0 8.020 K" [20:07:23.340] [90] "taskhostw.exe 11420 RDP-Tcp#0 2 17.624 K" [20:07:23.340] [91] "ctfmon.exe 11500 RDP-Tcp#0 2 21.968 K" [20:07:23.340] [92] "svchost.exe 11776 Services 0 9.584 K" [20:07:23.340] [93] "explorer.exe 11900 RDP-Tcp#0 2 677.304 K" [20:07:23.340] [94] "TextInputHost.exe 2356 RDP-Tcp#0 2 46.328 K" [20:07:23.340] [95] "StartMenuExperienceHost.e 8408 RDP-Tcp#0 2 65.812 K" [20:07:23.340] [96] "RuntimeBroker.exe 11924 RDP-Tcp#0 2 22.712 K" [20:07:23.340] [97] "SearchApp.exe 12084 RDP-Tcp#0 2 166.148 K" [20:07:23.340] [98] "RuntimeBroker.exe 12304 RDP-Tcp#0 2 32.640 K" [20:07:23.340] [99] "RuntimeBroker.exe 12432 RDP-Tcp#0 2 15.712 K" [20:07:23.340] [100] "csrss.exe 12504 3 9.036 K" [20:07:23.340] [101] "winlogon.exe 12552 3 11.120 K" [20:07:23.340] [102] "fontdrvhost.exe 12660 3 9.480 K" [20:07:23.340] [103] "dwm.exe 12812 3 45.264 K" [20:07:23.340] [104] "rdpclip.exe 13088 3 12.496 K" [20:07:23.340] [105] "sihost.exe 13128 3 28.112 K" [20:07:23.340] [106] "svchost.exe 13164 3 17.688 K" [20:07:23.340] [107] "svchost.exe 13212 3 32.748 K" [20:07:23.340] [108] "taskhostw.exe 12856 3 13.352 K" [20:07:23.340] [109] "explorer.exe 13648 3 296.756 K" [20:07:23.340] [110] "StartMenuExperienceHost.e 13832 3 67.076 K" [20:07:23.340] [111] "RuntimeBroker.exe 13900 3 23.076 K" [20:07:23.340] [112] "SearchApp.exe 13968 3 86.504 K" [20:07:23.340] [113] "RuntimeBroker.exe 14140 3 25.080 K" [20:07:23.340] [114] "ctfmon.exe 14228 3 20.612 K" [20:07:23.340] [115] "RuntimeBroker.exe 14332 3 15.904 K" [20:07:23.340] [116] "svchost.exe 5256 RDP-Tcp#0 2 18.200 K" [20:07:23.340] [117] "svchost.exe 4352 3 17.008 K" [20:07:23.340] [118] "TextInputHost.exe 13692 3 44.600 K" [20:07:23.340] [119] "svchost.exe 12960 Services 0 9.320 K" [20:07:23.340] [120] "ApplicationFrameHost.exe 14864 3 25.628 K" [20:07:23.340] [121] "svchost.exe 2620 Services 0 13.380 K" [20:07:23.340] [122] "svchost.exe 4608 Services 0 22.224 K" [20:07:23.340] [123] "svchost.exe 11588 Services 0 13.512 K" [20:07:23.340] [124] "svchost.exe 16668 Services 0 6.936 K" [20:07:23.340] [125] "MpDefenderCoreService.exe 72500 Services 0 40.364 K" [20:07:23.340] [126] "MsMpEng.exe 78672 Services 0 469.724 K" [20:07:23.340] [127] "NisSrv.exe 9612 Services 0 14.880 K" [20:07:23.340] [128] "SecurityHealthService.exe 68464 Services 0 12.068 K" [20:07:23.340] [129] "dllhost.exe 58808 RDP-Tcp#0 2 13.832 K" [20:07:23.340] [130] "svchost.exe 71072 Services 0 7.000 K" [20:07:23.340] [131] "ApplicationFrameHost.exe 79272 RDP-Tcp#0 2 25.840 K" [20:07:23.340] [132] "LogonUI.exe 65016 3 31.132 K" [20:07:23.340] [133] "taskhostw.exe 93016 RDP-Tcp#0 2 15.152 K" [20:07:23.340] [134] "WmiPrvSE.exe 21788 Services 0 16.032 K" [20:07:23.340] [135] "WmiPrvSE.exe 33932 Services 0 12.056 K" [20:07:23.340] [136] "WUDFHost.exe 67744 Services 0 26.456 K" [20:07:23.340] [137] "svchost.exe 60376 Services 0 7.792 K" [20:07:23.340] [138] "cmd.exe 86260 RDP-Tcp#0 2 5.572 K" [20:07:23.340] [139] "conhost.exe 87832 RDP-Tcp#0 2 16.752 K" [20:07:23.340] [140] "R.exe 88436 RDP-Tcp#0 2 5.476 K" [20:07:23.340] [141] "Rterm.exe 100040 RDP-Tcp#0 2 113.452 K" [20:07:23.340] [142] "explorer.exe 66460 RDP-Tcp#0 2 72.304 K" [20:07:23.340] [143] "cmd.exe 39036 RDP-Tcp#0 2 4.460 K" [20:07:23.340] [144] "make.exe 96928 RDP-Tcp#0 2 8.232 K" [20:07:23.340] [145] "sh.exe 80668 RDP-Tcp#0 2 7.856 K" [20:07:23.340] [146] "R.exe 80132 RDP-Tcp#0 2 5.348 K" [20:07:23.340] [147] "cmd.exe 108952 RDP-Tcp#0 2 4.500 K" [20:07:23.340] [148] "Rterm.exe 16812 RDP-Tcp#0 2 21.820 K" [20:07:23.340] [149] "cmd.exe 38576 RDP-Tcp#0 2 4.448 K" [20:07:23.340] [150] "R.exe 56708 RDP-Tcp#0 2 5.572 K" [20:07:23.340] [151] "cmd.exe 106568 RDP-Tcp#0 2 4.488 K" [20:07:23.340] [152] "Rterm.exe 12512 RDP-Tcp#0 2 287.332 K" [20:07:23.340] [153] "Rterm.exe 42184 RDP-Tcp#0 2 68.468 K" [20:07:23.340] [154] "R.exe 21556 RDP-Tcp#0 2 5.540 K" [20:07:23.340] [155] "Rterm.exe 12324 RDP-Tcp#0 2 77.040 K" [20:07:23.340] [156] "tasklist.exe 24668 RDP-Tcp#0 2 9.380 K" [20:07:23.345] chr [1:156] "" ... [20:07:23.350] Column widths: [20:07:23.350] [1] "========================= ======== ================ =========== ===============" [20:07:23.351] [,1] [,2] [,3] [,4] [,5] [20:07:23.351] from 1 27 36 53 65 [20:07:23.351] to 25 34 51 63 79 [20:07:23.351] [1] "=========================" "========" [20:07:23.351] [3] "================" "===========" [20:07:23.351] [5] "===============" [20:07:23.353] Trimmed: [20:07:23.353] [,1] [,2] [,3] [,4] [,5] [20:07:23.353] [1,] "System Idle Process" "0" "Services" "0" "8 K" [20:07:23.353] [2,] "System" "4" "Services" "0" "776 K" [20:07:23.353] [3,] "Registry" "1064" "Services" "0" "114.600 K" [20:07:23.353] [4,] "smss.exe" "1904" "Services" "0" "1.352 K" [20:07:23.353] [5,] "csrss.exe" "2000" "Services" "0" "6.952 K" [20:07:23.353] [6,] "wininit.exe" "1892" "Services" "0" "7.440 K" [20:07:23.353] [7,] "csrss.exe" "1916" "Console" "1" "6.128 K" [20:07:23.353] [8,] "services.exe" "2076" "Services" "0" "16.700 K" [20:07:23.353] [9,] "winlogon.exe" "2104" "Console" "1" "10.620 K" [20:07:23.353] [10,] "lsass.exe" "2148" "Services" "0" "57.524 K" [20:07:23.353] [11,] "svchost.exe" "2280" "Services" "0" "33.800 K" [20:07:23.353] [12,] "fontdrvhost.exe" "2308" "Services" "0" "4.560 K" [20:07:23.353] [13,] "svchost.exe" "2364" "Services" "0" "54.164 K" [20:07:23.353] [14,] "svchost.exe" "2408" "Services" "0" "13.884 K" [20:07:23.353] [15,] "fontdrvhost.exe" "2468" "Console" "1" "4.416 K" [20:07:23.353] [16,] "svchost.exe" "2544" "Services" "0" "75.164 K" [20:07:23.353] [17,] "svchost.exe" "2568" "Services" "0" "9.444 K" [20:07:23.353] [18,] "svchost.exe" "2580" "Services" "0" "8.208 K" [20:07:23.353] [19,] "svchost.exe" "2688" "Services" "0" "8.864 K" [20:07:23.353] [20,] "svchost.exe" "2728" "Services" "0" "11.976 K" [20:07:23.353] [21,] "svchost.exe" "2740" "Services" "0" "10.880 K" [20:07:23.353] [22,] "svchost.exe" "2748" "Services" "0" "12.776 K" [20:07:23.353] [23,] "svchost.exe" "2888" "Services" "0" "6.372 K" [20:07:23.353] [24,] "svchost.exe" "2904" "Services" "0" "23.088 K" [20:07:23.353] [25,] "svchost.exe" "2940" "Services" "0" "21.744 K" [20:07:23.353] [26,] "LogonUI.exe" "1960" "Console" "1" "49.284 K" [20:07:23.353] [27,] "svchost.exe" "2268" "Services" "0" "14.852 K" [20:07:23.353] [28,] "svchost.exe" "2808" "Services" "0" "20.412 K" [20:07:23.353] [29,] "dwm.exe" "3052" "Console" "1" "45.892 K" [20:07:23.353] [30,] "svchost.exe" "3084" "Services" "0" "12.336 K" [20:07:23.353] [31,] "svchost.exe" "3128" "Services" "0" "8.072 K" [20:07:23.353] [32,] "svchost.exe" "3140" "Services" "0" "18.912 K" [20:07:23.353] [33,] "svchost.exe" "3268" "Services" "0" "13.028 K" [20:07:23.353] [34,] "svchost.exe" "3320" "Services" "0" "15.072 K" [20:07:23.353] [35,] "svchost.exe" "3328" "Services" "0" "6.368 K" [20:07:23.353] [36,] "svchost.exe" "3336" "Services" "0" "8.984 K" [20:07:23.353] [37,] "svchost.exe" "3552" "Services" "0" "9.364 K" [20:07:23.353] [38,] "svchost.exe" "3744" "Services" "0" "9.600 K" [20:07:23.353] [39,] "svchost.exe" "3760" "Services" "0" "10.800 K" [20:07:23.353] [40,] "svchost.exe" "3784" "Services" "0" "14.080 K" [20:07:23.353] [41,] "svchost.exe" "3844" "Services" "0" "7.772 K" [20:07:23.353] [42,] "svchost.exe" "3916" "Services" "0" "9.436 K" [20:07:23.353] [43,] "svchost.exe" "4204" "Services" "0" "8.436 K" [20:07:23.353] [44,] "svchost.exe" "4260" "Services" "0" "9.588 K" [20:07:23.353] [45,] "WUDFHost.exe" "4312" "Services" "0" "9.316 K" [20:07:23.353] [46,] "svchost.exe" "4328" "Services" "0" "10.236 K" [20:07:23.353] [47,] "svchost.exe" "4568" "Services" "0" "8.088 K" [20:07:23.353] [48,] "spoolsv.exe" "4576" "Services" "0" "27.964 K" [20:07:23.353] [49,] "svchost.exe" "4716" "Services" "0" "7.244 K" [20:07:23.353] [50,] "svchost.exe" "4712" "Services" "0" "22.572 K" [20:07:23.353] [51,] "svchost.exe" "4728" "Services" "0" "40.508 K" [20:07:23.353] [52,] "cvfwd.exe" "4740" "Services" "0" "27.708 K" [20:07:23.353] [53,] "IpOverUsbSvc.exe" "4748" "Services" "0" "15.616 K" [20:07:23.353] [54,] "svchost.exe" "4752" "Services" "0" "8.256 K" [20:07:23.353] [55,] "svchost.exe" "4764" "Services" "0" "7.772 K" [20:07:23.353] [56,] "svchost.exe" "4776" "Services" "0" "6.056 K" [20:07:23.353] [57,] "svchost.exe" "4812" "Services" "0" "15.428 K" [20:07:23.353] [58,] "svchost.exe" "4808" "Services" "0" "13.236 K" [20:07:23.353] [59,] "svchost.exe" "4832" "Services" "0" "30.724 K" [20:07:23.353] [60,] "cvd.exe" "5248" "Services" "0" "314.784 K" [20:07:23.353] [61,] "svchost.exe" "5296" "Services" "0" "10.136 K" [20:07:23.353] [62,] "svchost.exe" "5424" "Services" "0" "14.364 K" [20:07:23.353] [63,] "AggregatorHost.exe" "6760" "Services" "0" "10.632 K" [20:07:23.353] [64,] "svchost.exe" "6792" "Services" "0" "7.772 K" [20:07:23.353] [65,] "ClMgrS.exe" "8288" "Services" "0" "48.548 K" [20:07:23.353] [66,] "dllhost.exe" "8432" "Services" "0" "13.460 K" [20:07:23.353] [67,] "WmiPrvSE.exe" "9244" "Services" "0" "71.972 K" [20:07:23.353] [68,] "svchost.exe" "8920" "Services" "0" "17.884 K" [20:07:23.353] [69,] "svchost.exe" "6820" "Services" "0" "14.728 K" [20:07:23.353] [70,] "svchost.exe" "4696" "Services" "0" "32.164 K" [20:07:23.353] [71,] "svchost.exe" "4652" "Services" "0" "7.612 K" [20:07:23.353] [72,] "svchost.exe" "8020" "Services" "0" "13.316 K" [20:07:23.353] [73,] "msdtc.exe" "2020" "Services" "0" "11.300 K" [20:07:23.353] [74,] "svchost.exe" "2556" "Services" "0" "25.584 K" [20:07:23.353] [75,] "svchost.exe" "2416" "Services" "0" "13.192 K" [20:07:23.353] [76,] "csrss.exe" "8700" "RDP-Tcp#0" "2" "8.912 K" [20:07:23.353] [77,] "winlogon.exe" "8484" "RDP-Tcp#0" "2" "11.184 K" [20:07:23.353] [78,] "fontdrvhost.exe" "8252" "RDP-Tcp#0" "2" "13.664 K" [20:07:23.353] [79,] "dwm.exe" "9048" "RDP-Tcp#0" "2" "73.452 K" [20:07:23.353] [80,] "svchost.exe" "9572" "Services" "0" "20.708 K" [20:07:23.353] [81,] "rdpclip.exe" "2372" "RDP-Tcp#0" "2" "14.624 K" [20:07:23.353] [82,] "svchost.exe" "8680" "RDP-Tcp#0" "2" "17.640 K" [20:07:23.353] [83,] "svchost.exe" "3648" "RDP-Tcp#0" "2" "34.760 K" [20:07:23.353] [84,] "svchost.exe" "9080" "Services" "0" "16.636 K" [20:07:23.353] [85,] "sihost.exe" "11312" "RDP-Tcp#0" "2" "28.452 K" [20:07:23.353] [86,] "svchost.exe" "11344" "Services" "0" "8.020 K" [20:07:23.353] [87,] "taskhostw.exe" "11420" "RDP-Tcp#0" "2" "17.624 K" [20:07:23.353] [88,] "ctfmon.exe" "11500" "RDP-Tcp#0" "2" "21.968 K" [20:07:23.353] [89,] "svchost.exe" "11776" "Services" "0" "9.584 K" [20:07:23.353] [90,] "explorer.exe" "11900" "RDP-Tcp#0" "2" "677.304 K" [20:07:23.353] [91,] "TextInputHost.exe" "2356" "RDP-Tcp#0" "2" "46.328 K" [20:07:23.353] [92,] "StartMenuExperienceHost.e" "8408" "RDP-Tcp#0" "2" "65.812 K" [20:07:23.353] [93,] "RuntimeBroker.exe" "11924" "RDP-Tcp#0" "2" "22.712 K" [20:07:23.353] [94,] "SearchApp.exe" "12084" "RDP-Tcp#0" "2" "166.148 K" [20:07:23.353] [95,] "RuntimeBroker.exe" "12304" "RDP-Tcp#0" "2" "32.640 K" [20:07:23.353] [96,] "RuntimeBroker.exe" "12432" "RDP-Tcp#0" "2" "15.712 K" [20:07:23.353] [97,] "csrss.exe" "12504" "" "3" "9.036 K" [20:07:23.353] [98,] "winlogon.exe" "12552" "" "3" "11.120 K" [20:07:23.353] [99,] "fontdrvhost.exe" "12660" "" "3" "9.480 K" [20:07:23.353] [100,] "dwm.exe" "12812" "" "3" "45.264 K" [20:07:23.353] [101,] "rdpclip.exe" "13088" "" "3" "12.496 K" [20:07:23.353] [102,] "sihost.exe" "13128" "" "3" "28.112 K" [20:07:23.353] [103,] "svchost.exe" "13164" "" "3" "17.688 K" [20:07:23.353] [104,] "svchost.exe" "13212" "" "3" "32.748 K" [20:07:23.353] [105,] "taskhostw.exe" "12856" "" "3" "13.352 K" [20:07:23.353] [106,] "explorer.exe" "13648" "" "3" "296.756 K" [20:07:23.353] [107,] "StartMenuExperienceHost.e" "13832" "" "3" "67.076 K" [20:07:23.353] [108,] "RuntimeBroker.exe" "13900" "" "3" "23.076 K" [20:07:23.353] [109,] "SearchApp.exe" "13968" "" "3" "86.504 K" [20:07:23.353] [110,] "RuntimeBroker.exe" "14140" "" "3" "25.080 K" [20:07:23.353] [111,] "ctfmon.exe" "14228" "" "3" "20.612 K" [20:07:23.353] [112,] "RuntimeBroker.exe" "14332" "" "3" "15.904 K" [20:07:23.353] [113,] "svchost.exe" "5256" "RDP-Tcp#0" "2" "18.200 K" [20:07:23.353] [114,] "svchost.exe" "4352" "" "3" "17.008 K" [20:07:23.353] [115,] "TextInputHost.exe" "13692" "" "3" "44.600 K" [20:07:23.353] [116,] "svchost.exe" "12960" "Services" "0" "9.320 K" [20:07:23.353] [117,] "ApplicationFrameHost.exe" "14864" "" "3" "25.628 K" [20:07:23.353] [118,] "svchost.exe" "2620" "Services" "0" "13.380 K" [20:07:23.353] [119,] "svchost.exe" "4608" "Services" "0" "22.224 K" [20:07:23.353] [120,] "svchost.exe" "11588" "Services" "0" "13.512 K" [20:07:23.353] [121,] "svchost.exe" "16668" "Services" "0" "6.936 K" [20:07:23.353] [122,] "MpDefenderCoreService.exe" "72500" "Services" "0" "40.364 K" [20:07:23.353] [123,] "MsMpEng.exe" "78672" "Services" "0" "469.724 K" [20:07:23.353] [124,] "NisSrv.exe" "9612" "Services" "0" "14.880 K" [20:07:23.353] [125,] "SecurityHealthService.exe" "68464" "Services" "0" "12.068 K" [20:07:23.353] [126,] "dllhost.exe" "58808" "RDP-Tcp#0" "2" "13.832 K" [20:07:23.353] [127,] "svchost.exe" "71072" "Services" "0" "7.000 K" [20:07:23.353] [128,] "ApplicationFrameHost.exe" "79272" "RDP-Tcp#0" "2" "25.840 K" [20:07:23.353] [129,] "LogonUI.exe" "65016" "" "3" "31.132 K" [20:07:23.353] [130,] "taskhostw.exe" "93016" "RDP-Tcp#0" "2" "15.152 K" [20:07:23.353] [131,] "WmiPrvSE.exe" "21788" "Services" "0" "16.032 K" [20:07:23.353] [132,] "WmiPrvSE.exe" "33932" "Services" "0" "12.056 K" [20:07:23.353] [133,] "WUDFHost.exe" "67744" "Services" "0" "26.456 K" [20:07:23.353] [134,] "svchost.exe" "60376" "Services" "0" "7.792 K" [20:07:23.353] [135,] "cmd.exe" "86260" "RDP-Tcp#0" "2" "5.572 K" [20:07:23.353] [136,] "conhost.exe" "87832" "RDP-Tcp#0" "2" "16.752 K" [20:07:23.353] [137,] "R.exe" "88436" "RDP-Tcp#0" "2" "5.476 K" [20:07:23.353] [138,] "Rterm.exe" "100040" "RDP-Tcp#0" "2" "113.452 K" [20:07:23.353] [139,] "explorer.exe" "66460" "RDP-Tcp#0" "2" "72.304 K" [20:07:23.353] [140,] "cmd.exe" "39036" "RDP-Tcp#0" "2" "4.460 K" [20:07:23.353] [141,] "make.exe" "96928" "RDP-Tcp#0" "2" "8.232 K" [20:07:23.353] [142,] "sh.exe" "80668" "RDP-Tcp#0" "2" "7.856 K" [20:07:23.353] [143,] "R.exe" "80132" "RDP-Tcp#0" "2" "5.348 K" [20:07:23.353] [144,] "cmd.exe" "108952" "RDP-Tcp#0" "2" "4.500 K" [20:07:23.353] [145,] "Rterm.exe" "16812" "RDP-Tcp#0" "2" "21.820 K" [20:07:23.353] [146,] "cmd.exe" "38576" "RDP-Tcp#0" "2" "4.448 K" [20:07:23.353] [147,] "R.exe" "56708" "RDP-Tcp#0" "2" "5.572 K" [20:07:23.353] [148,] "cmd.exe" "106568" "RDP-Tcp#0" "2" "4.488 K" [20:07:23.353] [149,] "Rterm.exe" "12512" "RDP-Tcp#0" "2" "287.332 K" [20:07:23.353] [150,] "Rterm.exe" "42184" "RDP-Tcp#0" "2" "68.468 K" [20:07:23.353] [151,] "R.exe" "21556" "RDP-Tcp#0" "2" "5.540 K" [20:07:23.353] [152,] "Rterm.exe" "12324" "RDP-Tcp#0" "2" "77.040 K" [20:07:23.353] [153,] "tasklist.exe" "24668" "RDP-Tcp#0" "2" "9.380 K" [20:07:23.355] Extracted: '0', '4', '1064', '1904', '2000', '1892', '1916', '2076', '2104', '2148', '2280', '2308', '2364', '2408', '2468', '2544', '2568', '2580', '2688', '2728', '2740', '2748', '2888', '2904', '2940', '1960', '2268', '2808', '3052', '3084', '3128', '3140', '3268', '3320', '3328', '3336', '3552', '3744', '3760', '3784', '3844', '3916', '4204', '4260', '4312', '4328', '4568', '4576', '4716', '4712', '4728', '4740', '4748', '4752', '4764', '4776', '4812', '4808', '4832', '5248', '5296', '5424', '6760', '6792', '8288', '8432', '9244', '8920', '6820', '4696', '4652', '8020', '2020', '2556', '2416', '8700', '8484', '8252', '9048', '9572', '2372', '8680', '3648', '9080', '11312', '11344', '11420', '11500', '11776', '11900', '2356', '8408', '11924', '12084', '12304', '12432', '12504', '12552', '12660', '12812', '13088', '13128', '13164', '13212', '12856', '13648', '13832', '13900', '13968', '14140', '14228', '14332', '5256', '4352', '13692', '12960', '14864', '2620', '4608', '11588', '16668', '72500', '78672', '9612', '68464', '58808', '71072', '79272', '65016', '93016', '21788', '33932', '67744', '60376', '86260', '87832', '88436', '100040', '66460', '39036', '96928', '80668', '80132', '108952', '16812', '38576', '56708', '106568', '12512', '42184', '21556', '12324', '24668' [20:07:23.356] Parsed: '0', '4', '1064', '1904', '2000', '1892', '1916', '2076', '2104', '2148', '2280', '2308', '2364', '2408', '2468', '2544', '2568', '2580', '2688', '2728', '2740', '2748', '2888', '2904', '2940', '1960', '2268', '2808', '3052', '3084', '3128', '3140', '3268', '3320', '3328', '3336', '3552', '3744', '3760', '3784', '3844', '3916', '4204', '4260', '4312', '4328', '4568', '4576', '4716', '4712', '4728', '4740', '4748', '4752', '4764', '4776', '4812', '4808', '4832', '5248', '5296', '5424', '6760', '6792', '8288', '8432', '9244', '8920', '6820', '4696', '4652', '8020', '2020', '2556', '2416', '8700', '8484', '8252', '9048', '9572', '2372', '8680', '3648', '9080', '11312', '11344', '11420', '11500', '11776', '11900', '2356', '8408', '11924', '12084', '12304', '12432', '12504', '12552', '12660', '12812', '13088', '13128', '13164', '13212', '12856', '13648', '13832', '13900', '13968', '14140', '14228', '14332', '5256', '4352', '13692', '12960', '14864', '2620', '4608', '11588', '16668', '72500', '78672', '9612', '68464', '58808', '71072', '79272', '65016', '93016', '21788', '33932', '67744', '60376', '86260', '87832', '88436', '100040', '66460', '39036', '96928', '80668', '80132', '108952', '16812', '38576', '56708', '106568', '12512', '42184', '21556', '12324', '24668' [20:07:23.356] 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', 'TRUE', 'FALSE' [20:07:23.762] Call: tasklist [20:07:23.762] [1] "" [20:07:23.762] [2] "Abbildname PID Sitzungsname Sitz.-Nr. Speichernutzung" [20:07:23.762] [3] "========================= ======== ================ =========== ===============" [20:07:23.762] [4] "System Idle Process 0 Services 0 8 K" [20:07:23.762] [5] "System 4 Services 0 776 K" [20:07:23.762] [6] "Registry 1064 Services 0 114.600 K" [20:07:23.762] [7] "smss.exe 1904 Services 0 1.352 K" [20:07:23.762] [8] "csrss.exe 2000 Services 0 6.952 K" [20:07:23.762] [9] "wininit.exe 1892 Services 0 7.440 K" [20:07:23.762] [10] "csrss.exe 1916 Console 1 6.128 K" [20:07:23.762] [11] "services.exe 2076 Services 0 16.700 K" [20:07:23.762] [12] "winlogon.exe 2104 Console 1 10.620 K" [20:07:23.762] [13] "lsass.exe 2148 Services 0 57.524 K" [20:07:23.762] [14] "svchost.exe 2280 Services 0 33.800 K" [20:07:23.762] [15] "fontdrvhost.exe 2308 Services 0 4.560 K" [20:07:23.762] [16] "svchost.exe 2364 Services 0 54.164 K" [20:07:23.762] [17] "svchost.exe 2408 Services 0 13.884 K" [20:07:23.762] [18] "fontdrvhost.exe 2468 Console 1 4.416 K" [20:07:23.762] [19] "svchost.exe 2544 Services 0 75.164 K" [20:07:23.762] [20] "svchost.exe 2568 Services 0 9.444 K" [20:07:23.762] [21] "svchost.exe 2580 Services 0 8.208 K" [20:07:23.762] [22] "svchost.exe 2688 Services 0 8.864 K" [20:07:23.762] [23] "svchost.exe 2728 Services 0 11.976 K" [20:07:23.762] [24] "svchost.exe 2740 Services 0 10.880 K" [20:07:23.762] [25] "svchost.exe 2748 Services 0 12.776 K" [20:07:23.762] [26] "svchost.exe 2888 Services 0 6.372 K" [20:07:23.762] [27] "svchost.exe 2904 Services 0 23.088 K" [20:07:23.762] [28] "svchost.exe 2940 Services 0 21.744 K" [20:07:23.762] [29] "LogonUI.exe 1960 Console 1 49.284 K" [20:07:23.762] [30] "svchost.exe 2268 Services 0 14.852 K" [20:07:23.762] [31] "svchost.exe 2808 Services 0 20.412 K" [20:07:23.762] [32] "dwm.exe 3052 Console 1 45.892 K" [20:07:23.762] [33] "svchost.exe 3084 Services 0 12.336 K" [20:07:23.762] [34] "svchost.exe 3128 Services 0 8.072 K" [20:07:23.762] [35] "svchost.exe 3140 Services 0 18.912 K" [20:07:23.762] [36] "svchost.exe 3268 Services 0 13.028 K" [20:07:23.762] [37] "svchost.exe 3320 Services 0 15.072 K" [20:07:23.762] [38] "svchost.exe 3328 Services 0 6.368 K" [20:07:23.762] [39] "svchost.exe 3336 Services 0 8.984 K" [20:07:23.762] [40] "svchost.exe 3552 Services 0 9.364 K" [20:07:23.762] [41] "svchost.exe 3744 Services 0 9.600 K" [20:07:23.762] [42] "svchost.exe 3760 Services 0 10.800 K" [20:07:23.762] [43] "svchost.exe 3784 Services 0 14.080 K" [20:07:23.762] [44] "svchost.exe 3844 Services 0 7.772 K" [20:07:23.762] [45] "svchost.exe 3916 Services 0 9.436 K" [20:07:23.762] [46] "svchost.exe 4204 Services 0 8.436 K" [20:07:23.762] [47] "svchost.exe 4260 Services 0 9.588 K" [20:07:23.762] [48] "WUDFHost.exe 4312 Services 0 9.316 K" [20:07:23.762] [49] "svchost.exe 4328 Services 0 10.236 K" [20:07:23.762] [50] "svchost.exe 4568 Services 0 8.088 K" [20:07:23.762] [51] "spoolsv.exe 4576 Services 0 27.964 K" [20:07:23.762] [52] "svchost.exe 4716 Services 0 7.244 K" [20:07:23.762] [53] "svchost.exe 4712 Services 0 22.572 K" [20:07:23.762] [54] "svchost.exe 4728 Services 0 40.508 K" [20:07:23.762] [55] "cvfwd.exe 4740 Services 0 27.708 K" [20:07:23.762] [56] "IpOverUsbSvc.exe 4748 Services 0 15.616 K" [20:07:23.762] [57] "svchost.exe 4752 Services 0 8.256 K" [20:07:23.762] [58] "svchost.exe 4764 Services 0 7.772 K" [20:07:23.762] [59] "svchost.exe 4776 Services 0 6.056 K" [20:07:23.762] [60] "svchost.exe 4812 Services 0 15.428 K" [20:07:23.762] [61] "svchost.exe 4808 Services 0 13.236 K" [20:07:23.762] [62] "svchost.exe 4832 Services 0 30.600 K" [20:07:23.762] [63] "cvd.exe 5248 Services 0 314.784 K" [20:07:23.762] [64] "svchost.exe 5296 Services 0 10.136 K" [20:07:23.762] [65] "svchost.exe 5424 Services 0 14.364 K" [20:07:23.762] [66] "AggregatorHost.exe 6760 Services 0 10.632 K" [20:07:23.762] [67] "svchost.exe 6792 Services 0 7.772 K" [20:07:23.762] [68] "ClMgrS.exe 8288 Services 0 48.548 K" [20:07:23.762] [69] "dllhost.exe 8432 Services 0 13.460 K" [20:07:23.762] [70] "WmiPrvSE.exe 9244 Services 0 71.972 K" [20:07:23.762] [71] "svchost.exe 8920 Services 0 17.884 K" [20:07:23.762] [72] "svchost.exe 6820 Services 0 14.728 K" [20:07:23.762] [73] "svchost.exe 4696 Services 0 32.164 K" [20:07:23.762] [74] "svchost.exe 4652 Services 0 7.612 K" [20:07:23.762] [75] "svchost.exe 8020 Services 0 13.316 K" [20:07:23.762] [76] "msdtc.exe 2020 Services 0 11.300 K" [20:07:23.762] [77] "svchost.exe 2556 Services 0 25.584 K" [20:07:23.762] [78] "svchost.exe 2416 Services 0 13.192 K" [20:07:23.762] [79] "csrss.exe 8700 RDP-Tcp#0 2 8.912 K" [20:07:23.762] [80] "winlogon.exe 8484 RDP-Tcp#0 2 11.184 K" [20:07:23.762] [81] "fontdrvhost.exe 8252 RDP-Tcp#0 2 13.664 K" [20:07:23.762] [82] "dwm.exe 9048 RDP-Tcp#0 2 73.452 K" [20:07:23.762] [83] "svchost.exe 9572 Services 0 20.708 K" [20:07:23.762] [84] "rdpclip.exe 2372 RDP-Tcp#0 2 14.624 K" [20:07:23.762] [85] "svchost.exe 8680 RDP-Tcp#0 2 17.640 K" [20:07:23.762] [86] "svchost.exe 3648 RDP-Tcp#0 2 34.760 K" [20:07:23.762] [87] "svchost.exe 9080 Services 0 16.636 K" [20:07:23.762] [88] "sihost.exe 11312 RDP-Tcp#0 2 28.452 K" [20:07:23.762] [89] "svchost.exe 11344 Services 0 8.020 K" [20:07:23.762] [90] "taskhostw.exe 11420 RDP-Tcp#0 2 17.624 K" [20:07:23.762] [91] "ctfmon.exe 11500 RDP-Tcp#0 2 21.968 K" [20:07:23.762] [92] "svchost.exe 11776 Services 0 9.584 K" [20:07:23.762] [93] "explorer.exe 11900 RDP-Tcp#0 2 677.304 K" [20:07:23.762] [94] "TextInputHost.exe 2356 RDP-Tcp#0 2 46.328 K" [20:07:23.762] [95] "StartMenuExperienceHost.e 8408 RDP-Tcp#0 2 65.812 K" [20:07:23.762] [96] "RuntimeBroker.exe 11924 RDP-Tcp#0 2 22.712 K" [20:07:23.762] [97] "SearchApp.exe 12084 RDP-Tcp#0 2 166.148 K" [20:07:23.762] [98] "RuntimeBroker.exe 12304 RDP-Tcp#0 2 32.640 K" [20:07:23.762] [99] "RuntimeBroker.exe 12432 RDP-Tcp#0 2 15.712 K" [20:07:23.762] [100] "csrss.exe 12504 3 9.036 K" [20:07:23.762] [101] "winlogon.exe 12552 3 11.120 K" [20:07:23.762] [102] "fontdrvhost.exe 12660 3 9.480 K" [20:07:23.762] [103] "dwm.exe 12812 3 45.264 K" [20:07:23.762] [104] "rdpclip.exe 13088 3 12.496 K" [20:07:23.762] [105] "sihost.exe 13128 3 28.112 K" [20:07:23.762] [106] "svchost.exe 13164 3 17.688 K" [20:07:23.762] [107] "svchost.exe 13212 3 32.748 K" [20:07:23.762] [108] "taskhostw.exe 12856 3 13.352 K" [20:07:23.762] [109] "explorer.exe 13648 3 296.756 K" [20:07:23.762] [110] "StartMenuExperienceHost.e 13832 3 67.076 K" [20:07:23.762] [111] "RuntimeBroker.exe 13900 3 23.076 K" [20:07:23.762] [112] "SearchApp.exe 13968 3 86.504 K" [20:07:23.762] [113] "RuntimeBroker.exe 14140 3 25.080 K" [20:07:23.762] [114] "ctfmon.exe 14228 3 20.612 K" [20:07:23.762] [115] "RuntimeBroker.exe 14332 3 15.904 K" [20:07:23.762] [116] "svchost.exe 5256 RDP-Tcp#0 2 18.200 K" [20:07:23.762] [117] "svchost.exe 4352 3 17.008 K" [20:07:23.762] [118] "TextInputHost.exe 13692 3 44.600 K" [20:07:23.762] [119] "svchost.exe 12960 Services 0 9.320 K" [20:07:23.762] [120] "ApplicationFrameHost.exe 14864 3 25.628 K" [20:07:23.762] [121] "svchost.exe 2620 Services 0 13.380 K" [20:07:23.762] [122] "svchost.exe 4608 Services 0 22.224 K" [20:07:23.762] [123] "svchost.exe 11588 Services 0 13.512 K" [20:07:23.762] [124] "svchost.exe 16668 Services 0 6.936 K" [20:07:23.762] [125] "MpDefenderCoreService.exe 72500 Services 0 40.364 K" [20:07:23.762] [126] "MsMpEng.exe 78672 Services 0 469.728 K" [20:07:23.762] [127] "NisSrv.exe 9612 Services 0 14.880 K" [20:07:23.762] [128] "SecurityHealthService.exe 68464 Services 0 12.068 K" [20:07:23.762] [129] "dllhost.exe 58808 RDP-Tcp#0 2 13.832 K" [20:07:23.762] [130] "svchost.exe 71072 Services 0 7.000 K" [20:07:23.762] [131] "ApplicationFrameHost.exe 79272 RDP-Tcp#0 2 25.840 K" [20:07:23.762] [132] "LogonUI.exe 65016 3 31.132 K" [20:07:23.762] [133] "taskhostw.exe 93016 RDP-Tcp#0 2 15.152 K" [20:07:23.762] [134] "WmiPrvSE.exe 21788 Services 0 16.032 K" [20:07:23.762] [135] "WmiPrvSE.exe 33932 Services 0 12.056 K" [20:07:23.762] [136] "WUDFHost.exe 67744 Services 0 26.456 K" [20:07:23.762] [137] "svchost.exe 60376 Services 0 7.792 K" [20:07:23.762] [138] "cmd.exe 86260 RDP-Tcp#0 2 5.572 K" [20:07:23.762] [139] "conhost.exe 87832 RDP-Tcp#0 2 16.752 K" [20:07:23.762] [140] "R.exe 88436 RDP-Tcp#0 2 5.476 K" [20:07:23.762] [141] "Rterm.exe 100040 RDP-Tcp#0 2 113.452 K" [20:07:23.762] [142] "explorer.exe 66460 RDP-Tcp#0 2 72.304 K" [20:07:23.762] [143] "cmd.exe 39036 RDP-Tcp#0 2 4.460 K" [20:07:23.762] [144] "make.exe 96928 RDP-Tcp#0 2 8.232 K" [20:07:23.762] [145] "sh.exe 80668 RDP-Tcp#0 2 7.856 K" [20:07:23.762] [146] "R.exe 80132 RDP-Tcp#0 2 5.348 K" [20:07:23.762] [147] "cmd.exe 108952 RDP-Tcp#0 2 4.500 K" [20:07:23.762] [148] "Rterm.exe 16812 RDP-Tcp#0 2 21.820 K" [20:07:23.762] [149] "cmd.exe 38576 RDP-Tcp#0 2 4.448 K" [20:07:23.762] [150] "R.exe 56708 RDP-Tcp#0 2 5.572 K" [20:07:23.762] [151] "cmd.exe 106568 RDP-Tcp#0 2 4.488 K" [20:07:23.762] [152] "Rterm.exe 12512 RDP-Tcp#0 2 287.332 K" [20:07:23.762] [153] "Rterm.exe 42184 RDP-Tcp#0 2 68.468 K" [20:07:23.762] [154] "R.exe 21556 RDP-Tcp#0 2 5.540 K" [20:07:23.762] [155] "Rterm.exe 12324 RDP-Tcp#0 2 78.012 K" [20:07:23.762] [156] "tasklist.exe 107920 RDP-Tcp#0 2 9.364 K" [20:07:23.766] chr [1:156] "" ... [20:07:23.770] Column widths: [20:07:23.770] [1] "========================= ======== ================ =========== ===============" [20:07:23.770] [,1] [,2] [,3] [,4] [,5] [20:07:23.770] from 1 27 36 53 65 [20:07:23.770] to 25 34 51 63 79 [20:07:23.770] [1] "=========================" "========" [20:07:23.770] [3] "================" "===========" [20:07:23.770] [5] "===============" [20:07:23.772] Trimmed: [20:07:23.772] [,1] [,2] [,3] [,4] [,5] [20:07:23.772] [1,] "System Idle Process" "0" "Services" "0" "8 K" [20:07:23.772] [2,] "System" "4" "Services" "0" "776 K" [20:07:23.772] [3,] "Registry" "1064" "Services" "0" "114.600 K" [20:07:23.772] [4,] "smss.exe" "1904" "Services" "0" "1.352 K" [20:07:23.772] [5,] "csrss.exe" "2000" "Services" "0" "6.952 K" [20:07:23.772] [6,] "wininit.exe" "1892" "Services" "0" "7.440 K" [20:07:23.772] [7,] "csrss.exe" "1916" "Console" "1" "6.128 K" [20:07:23.772] [8,] "services.exe" "2076" "Services" "0" "16.700 K" [20:07:23.772] [9,] "winlogon.exe" "2104" "Console" "1" "10.620 K" [20:07:23.772] [10,] "lsass.exe" "2148" "Services" "0" "57.524 K" [20:07:23.772] [11,] "svchost.exe" "2280" "Services" "0" "33.800 K" [20:07:23.772] [12,] "fontdrvhost.exe" "2308" "Services" "0" "4.560 K" [20:07:23.772] [13,] "svchost.exe" "2364" "Services" "0" "54.164 K" [20:07:23.772] [14,] "svchost.exe" "2408" "Services" "0" "13.884 K" [20:07:23.772] [15,] "fontdrvhost.exe" "2468" "Console" "1" "4.416 K" [20:07:23.772] [16,] "svchost.exe" "2544" "Services" "0" "75.164 K" [20:07:23.772] [17,] "svchost.exe" "2568" "Services" "0" "9.444 K" [20:07:23.772] [18,] "svchost.exe" "2580" "Services" "0" "8.208 K" [20:07:23.772] [19,] "svchost.exe" "2688" "Services" "0" "8.864 K" [20:07:23.772] [20,] "svchost.exe" "2728" "Services" "0" "11.976 K" [20:07:23.772] [21,] "svchost.exe" "2740" "Services" "0" "10.880 K" [20:07:23.772] [22,] "svchost.exe" "2748" "Services" "0" "12.776 K" [20:07:23.772] [23,] "svchost.exe" "2888" "Services" "0" "6.372 K" [20:07:23.772] [24,] "svchost.exe" "2904" "Services" "0" "23.088 K" [20:07:23.772] [25,] "svchost.exe" "2940" "Services" "0" "21.744 K" [20:07:23.772] [26,] "LogonUI.exe" "1960" "Console" "1" "49.284 K" [20:07:23.772] [27,] "svchost.exe" "2268" "Services" "0" "14.852 K" [20:07:23.772] [28,] "svchost.exe" "2808" "Services" "0" "20.412 K" [20:07:23.772] [29,] "dwm.exe" "3052" "Console" "1" "45.892 K" [20:07:23.772] [30,] "svchost.exe" "3084" "Services" "0" "12.336 K" [20:07:23.772] [31,] "svchost.exe" "3128" "Services" "0" "8.072 K" [20:07:23.772] [32,] "svchost.exe" "3140" "Services" "0" "18.912 K" [20:07:23.772] [33,] "svchost.exe" "3268" "Services" "0" "13.028 K" [20:07:23.772] [34,] "svchost.exe" "3320" "Services" "0" "15.072 K" [20:07:23.772] [35,] "svchost.exe" "3328" "Services" "0" "6.368 K" [20:07:23.772] [36,] "svchost.exe" "3336" "Services" "0" "8.984 K" [20:07:23.772] [37,] "svchost.exe" "3552" "Services" "0" "9.364 K" [20:07:23.772] [38,] "svchost.exe" "3744" "Services" "0" "9.600 K" [20:07:23.772] [39,] "svchost.exe" "3760" "Services" "0" "10.800 K" [20:07:23.772] [40,] "svchost.exe" "3784" "Services" "0" "14.080 K" [20:07:23.772] [41,] "svchost.exe" "3844" "Services" "0" "7.772 K" [20:07:23.772] [42,] "svchost.exe" "3916" "Services" "0" "9.436 K" [20:07:23.772] [43,] "svchost.exe" "4204" "Services" "0" "8.436 K" [20:07:23.772] [44,] "svchost.exe" "4260" "Services" "0" "9.588 K" [20:07:23.772] [45,] "WUDFHost.exe" "4312" "Services" "0" "9.316 K" [20:07:23.772] [46,] "svchost.exe" "4328" "Services" "0" "10.236 K" [20:07:23.772] [47,] "svchost.exe" "4568" "Services" "0" "8.088 K" [20:07:23.772] [48,] "spoolsv.exe" "4576" "Services" "0" "27.964 K" [20:07:23.772] [49,] "svchost.exe" "4716" "Services" "0" "7.244 K" [20:07:23.772] [50,] "svchost.exe" "4712" "Services" "0" "22.572 K" [20:07:23.772] [51,] "svchost.exe" "4728" "Services" "0" "40.508 K" [20:07:23.772] [52,] "cvfwd.exe" "4740" "Services" "0" "27.708 K" [20:07:23.772] [53,] "IpOverUsbSvc.exe" "4748" "Services" "0" "15.616 K" [20:07:23.772] [54,] "svchost.exe" "4752" "Services" "0" "8.256 K" [20:07:23.772] [55,] "svchost.exe" "4764" "Services" "0" "7.772 K" [20:07:23.772] [56,] "svchost.exe" "4776" "Services" "0" "6.056 K" [20:07:23.772] [57,] "svchost.exe" "4812" "Services" "0" "15.428 K" [20:07:23.772] [58,] "svchost.exe" "4808" "Services" "0" "13.236 K" [20:07:23.772] [59,] "svchost.exe" "4832" "Services" "0" "30.600 K" [20:07:23.772] [60,] "cvd.exe" "5248" "Services" "0" "314.784 K" [20:07:23.772] [61,] "svchost.exe" "5296" "Services" "0" "10.136 K" [20:07:23.772] [62,] "svchost.exe" "5424" "Services" "0" "14.364 K" [20:07:23.772] [63,] "AggregatorHost.exe" "6760" "Services" "0" "10.632 K" [20:07:23.772] [64,] "svchost.exe" "6792" "Services" "0" "7.772 K" [20:07:23.772] [65,] "ClMgrS.exe" "8288" "Services" "0" "48.548 K" [20:07:23.772] [66,] "dllhost.exe" "8432" "Services" "0" "13.460 K" [20:07:23.772] [67,] "WmiPrvSE.exe" "9244" "Services" "0" "71.972 K" [20:07:23.772] [68,] "svchost.exe" "8920" "Services" "0" "17.884 K" [20:07:23.772] [69,] "svchost.exe" "6820" "Services" "0" "14.728 K" [20:07:23.772] [70,] "svchost.exe" "4696" "Services" "0" "32.164 K" [20:07:23.772] [71,] "svchost.exe" "4652" "Services" "0" "7.612 K" [20:07:23.772] [72,] "svchost.exe" "8020" "Services" "0" "13.316 K" [20:07:23.772] [73,] "msdtc.exe" "2020" "Services" "0" "11.300 K" [20:07:23.772] [74,] "svchost.exe" "2556" "Services" "0" "25.584 K" [20:07:23.772] [75,] "svchost.exe" "2416" "Services" "0" "13.192 K" [20:07:23.772] [76,] "csrss.exe" "8700" "RDP-Tcp#0" "2" "8.912 K" [20:07:23.772] [77,] "winlogon.exe" "8484" "RDP-Tcp#0" "2" "11.184 K" [20:07:23.772] [78,] "fontdrvhost.exe" "8252" "RDP-Tcp#0" "2" "13.664 K" [20:07:23.772] [79,] "dwm.exe" "9048" "RDP-Tcp#0" "2" "73.452 K" [20:07:23.772] [80,] "svchost.exe" "9572" "Services" "0" "20.708 K" [20:07:23.772] [81,] "rdpclip.exe" "2372" "RDP-Tcp#0" "2" "14.624 K" [20:07:23.772] [82,] "svchost.exe" "8680" "RDP-Tcp#0" "2" "17.640 K" [20:07:23.772] [83,] "svchost.exe" "3648" "RDP-Tcp#0" "2" "34.760 K" [20:07:23.772] [84,] "svchost.exe" "9080" "Services" "0" "16.636 K" [20:07:23.772] [85,] "sihost.exe" "11312" "RDP-Tcp#0" "2" "28.452 K" [20:07:23.772] [86,] "svchost.exe" "11344" "Services" "0" "8.020 K" [20:07:23.772] [87,] "taskhostw.exe" "11420" "RDP-Tcp#0" "2" "17.624 K" [20:07:23.772] [88,] "ctfmon.exe" "11500" "RDP-Tcp#0" "2" "21.968 K" [20:07:23.772] [89,] "svchost.exe" "11776" "Services" "0" "9.584 K" [20:07:23.772] [90,] "explorer.exe" "11900" "RDP-Tcp#0" "2" "677.304 K" [20:07:23.772] [91,] "TextInputHost.exe" "2356" "RDP-Tcp#0" "2" "46.328 K" [20:07:23.772] [92,] "StartMenuExperienceHost.e" "8408" "RDP-Tcp#0" "2" "65.812 K" [20:07:23.772] [93,] "RuntimeBroker.exe" "11924" "RDP-Tcp#0" "2" "22.712 K" [20:07:23.772] [94,] "SearchApp.exe" "12084" "RDP-Tcp#0" "2" "166.148 K" [20:07:23.772] [95,] "RuntimeBroker.exe" "12304" "RDP-Tcp#0" "2" "32.640 K" [20:07:23.772] [96,] "RuntimeBroker.exe" "12432" "RDP-Tcp#0" "2" "15.712 K" [20:07:23.772] [97,] "csrss.exe" "12504" "" "3" "9.036 K" [20:07:23.772] [98,] "winlogon.exe" "12552" "" "3" "11.120 K" [20:07:23.772] [99,] "fontdrvhost.exe" "12660" "" "3" "9.480 K" [20:07:23.772] [100,] "dwm.exe" "12812" "" "3" "45.264 K" [20:07:23.772] [101,] "rdpclip.exe" "13088" "" "3" "12.496 K" [20:07:23.772] [102,] "sihost.exe" "13128" "" "3" "28.112 K" [20:07:23.772] [103,] "svchost.exe" "13164" "" "3" "17.688 K" [20:07:23.772] [104,] "svchost.exe" "13212" "" "3" "32.748 K" [20:07:23.772] [105,] "taskhostw.exe" "12856" "" "3" "13.352 K" [20:07:23.772] [106,] "explorer.exe" "13648" "" "3" "296.756 K" [20:07:23.772] [107,] "StartMenuExperienceHost.e" "13832" "" "3" "67.076 K" [20:07:23.772] [108,] "RuntimeBroker.exe" "13900" "" "3" "23.076 K" [20:07:23.772] [109,] "SearchApp.exe" "13968" "" "3" "86.504 K" [20:07:23.772] [110,] "RuntimeBroker.exe" "14140" "" "3" "25.080 K" [20:07:23.772] [111,] "ctfmon.exe" "14228" "" "3" "20.612 K" [20:07:23.772] [112,] "RuntimeBroker.exe" "14332" "" "3" "15.904 K" [20:07:23.772] [113,] "svchost.exe" "5256" "RDP-Tcp#0" "2" "18.200 K" [20:07:23.772] [114,] "svchost.exe" "4352" "" "3" "17.008 K" [20:07:23.772] [115,] "TextInputHost.exe" "13692" "" "3" "44.600 K" [20:07:23.772] [116,] "svchost.exe" "12960" "Services" "0" "9.320 K" [20:07:23.772] [117,] "ApplicationFrameHost.exe" "14864" "" "3" "25.628 K" [20:07:23.772] [118,] "svchost.exe" "2620" "Services" "0" "13.380 K" [20:07:23.772] [119,] "svchost.exe" "4608" "Services" "0" "22.224 K" [20:07:23.772] [120,] "svchost.exe" "11588" "Services" "0" "13.512 K" [20:07:23.772] [121,] "svchost.exe" "16668" "Services" "0" "6.936 K" [20:07:23.772] [122,] "MpDefenderCoreService.exe" "72500" "Services" "0" "40.364 K" [20:07:23.772] [123,] "MsMpEng.exe" "78672" "Services" "0" "469.728 K" [20:07:23.772] [124,] "NisSrv.exe" "9612" "Services" "0" "14.880 K" [20:07:23.772] [125,] "SecurityHealthService.exe" "68464" "Services" "0" "12.068 K" [20:07:23.772] [126,] "dllhost.exe" "58808" "RDP-Tcp#0" "2" "13.832 K" [20:07:23.772] [127,] "svchost.exe" "71072" "Services" "0" "7.000 K" [20:07:23.772] [128,] "ApplicationFrameHost.exe" "79272" "RDP-Tcp#0" "2" "25.840 K" [20:07:23.772] [129,] "LogonUI.exe" "65016" "" "3" "31.132 K" [20:07:23.772] [130,] "taskhostw.exe" "93016" "RDP-Tcp#0" "2" "15.152 K" [20:07:23.772] [131,] "WmiPrvSE.exe" "21788" "Services" "0" "16.032 K" [20:07:23.772] [132,] "WmiPrvSE.exe" "33932" "Services" "0" "12.056 K" [20:07:23.772] [133,] "WUDFHost.exe" "67744" "Services" "0" "26.456 K" [20:07:23.772] [134,] "svchost.exe" "60376" "Services" "0" "7.792 K" [20:07:23.772] [135,] "cmd.exe" "86260" "RDP-Tcp#0" "2" "5.572 K" [20:07:23.772] [136,] "conhost.exe" "87832" "RDP-Tcp#0" "2" "16.752 K" [20:07:23.772] [137,] "R.exe" "88436" "RDP-Tcp#0" "2" "5.476 K" [20:07:23.772] [138,] "Rterm.exe" "100040" "RDP-Tcp#0" "2" "113.452 K" [20:07:23.772] [139,] "explorer.exe" "66460" "RDP-Tcp#0" "2" "72.304 K" [20:07:23.772] [140,] "cmd.exe" "39036" "RDP-Tcp#0" "2" "4.460 K" [20:07:23.772] [141,] "make.exe" "96928" "RDP-Tcp#0" "2" "8.232 K" [20:07:23.772] [142,] "sh.exe" "80668" "RDP-Tcp#0" "2" "7.856 K" [20:07:23.772] [143,] "R.exe" "80132" "RDP-Tcp#0" "2" "5.348 K" [20:07:23.772] [144,] "cmd.exe" "108952" "RDP-Tcp#0" "2" "4.500 K" [20:07:23.772] [145,] "Rterm.exe" "16812" "RDP-Tcp#0" "2" "21.820 K" [20:07:23.772] [146,] "cmd.exe" "38576" "RDP-Tcp#0" "2" "4.448 K" [20:07:23.772] [147,] "R.exe" "56708" "RDP-Tcp#0" "2" "5.572 K" [20:07:23.772] [148,] "cmd.exe" "106568" "RDP-Tcp#0" "2" "4.488 K" [20:07:23.772] [149,] "Rterm.exe" "12512" "RDP-Tcp#0" "2" "287.332 K" [20:07:23.772] [150,] "Rterm.exe" "42184" "RDP-Tcp#0" "2" "68.468 K" [20:07:23.772] [151,] "R.exe" "21556" "RDP-Tcp#0" "2" "5.540 K" [20:07:23.772] [152,] "Rterm.exe" "12324" "RDP-Tcp#0" "2" "78.012 K" [20:07:23.772] [153,] "tasklist.exe" "107920" "RDP-Tcp#0" "2" "9.364 K" [20:07:23.775] Extracted: '0', '4', '1064', '1904', '2000', '1892', '1916', '2076', '2104', '2148', '2280', '2308', '2364', '2408', '2468', '2544', '2568', '2580', '2688', '2728', '2740', '2748', '2888', '2904', '2940', '1960', '2268', '2808', '3052', '3084', '3128', '3140', '3268', '3320', '3328', '3336', '3552', '3744', '3760', '3784', '3844', '3916', '4204', '4260', '4312', '4328', '4568', '4576', '4716', '4712', '4728', '4740', '4748', '4752', '4764', '4776', '4812', '4808', '4832', '5248', '5296', '5424', '6760', '6792', '8288', '8432', '9244', '8920', '6820', '4696', '4652', '8020', '2020', '2556', '2416', '8700', '8484', '8252', '9048', '9572', '2372', '8680', '3648', '9080', '11312', '11344', '11420', '11500', '11776', '11900', '2356', '8408', '11924', '12084', '12304', '12432', '12504', '12552', '12660', '12812', '13088', '13128', '13164', '13212', '12856', '13648', '13832', '13900', '13968', '14140', '14228', '14332', '5256', '4352', '13692', '12960', '14864', '2620', '4608', '11588', '16668', '72500', '78672', '9612', '68464', '58808', '71072', '79272', '65016', '93016', '21788', '33932', '67744', '60376', '86260', '87832', '88436', '100040', '66460', '39036', '96928', '80668', '80132', '108952', '16812', '38576', '56708', '106568', '12512', '42184', '21556', '12324', '107920' [20:07:23.775] Parsed: '0', '4', '1064', '1904', '2000', '1892', '1916', '2076', '2104', '2148', '2280', '2308', '2364', '2408', '2468', '2544', '2568', '2580', '2688', '2728', '2740', '2748', '2888', '2904', '2940', '1960', '2268', '2808', '3052', '3084', '3128', '3140', '3268', '3320', '3328', '3336', '3552', '3744', '3760', '3784', '3844', '3916', '4204', '4260', '4312', '4328', '4568', '4576', '4716', '4712', '4728', '4740', '4748', '4752', '4764', '4776', '4812', '4808', '4832', '5248', '5296', '5424', '6760', '6792', '8288', '8432', '9244', '8920', '6820', '4696', '4652', '8020', '2020', '2556', '2416', '8700', '8484', '8252', '9048', '9572', '2372', '8680', '3648', '9080', '11312', '11344', '11420', '11500', '11776', '11900', '2356', '8408', '11924', '12084', '12304', '12432', '12504', '12552', '12660', '12812', '13088', '13128', '13164', '13212', '12856', '13648', '13832', '13900', '13968', '14140', '14228', '14332', '5256', '4352', '13692', '12960', '14864', '2620', '4608', '11588', '16668', '72500', '78672', '9612', '68464', '58808', '71072', '79272', '65016', '93016', '21788', '33932', '67744', '60376', '86260', '87832', '88436', '100040', '66460', '39036', '96928', '80668', '80132', '108952', '16812', '38576', '56708', '106568', '12512', '42184', '21556', '12324', '107920' [20:07:23.775] 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', 'TRUE', 'FALSE' [20:07:23.776] - success [20:07:23.776] 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("*** utils ... DONE") *** utils ... DONE Failed to undo environment variables: - Expected environment variables: [n=215] '!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_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_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_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.1s, sys.self=0.1s, elapsed=1s, user.child=NAs, sys.child=NAs Test 'tempdirname' ... success > > proc.time() user system elapsed 0.35 0.17 1.46