System/Kernel


PS C:\Users\Jeff> cmd /c ver                                                                                                            
 
Microsoft Windows [Version 10.0.19042.1586]
 
PS C:\Users\Jeff> systeminfo ; Get-ComputerInfo
ERROR: Access denied
 
 
WindowsBuildLabEx                                       : 19041.1.amd64fre.vb_release.191206-1406
WindowsCurrentVersion                                   : 6.3
WindowsEditionId                                        : Professional
WindowsInstallationType                                 : Client
WindowsInstallDateFromRegistry                          : 6/18/2021 12:06:17 PM
WindowsProductId                                        : 00331-10000-00001-AA924
WindowsProductName                                      : Windows 10 Pro
WindowsRegisteredOrganization                           :
WindowsRegisteredOwner                                  : admin
WindowsSystemRoot                                       : C:\WINDOWS
WindowsVersion                                          : 2009
TimeZone                                                : (UTC-08:00) Pacific Time (US & Canada)
PowerPlatformRole                                       : Desktop
DeviceGuardSmartStatus                                  : Off
  • Microsoft Windows [Version 10.0.19042.1586]
  • WindowsProductName : Windows 10 Pro
  • PowerPlatformRole : Desktop

Networks


PS C:\Users\Jeff> ipconfig /all ; arp -a ; print route
 
Windows IP Configuration
 
   Host Name . . . . . . . . . . . . : ROBUST
   Primary Dns Suffix  . . . . . . . :
   Node Type . . . . . . . . . . . . : Hybrid
   IP Routing Enabled. . . . . . . . : No
   WINS Proxy Enabled. . . . . . . . : No
 
Ethernet adapter Ethernet0 2:
 
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : vmxnet3 Ethernet Adapter
   Physical Address. . . . . . . . . : 00-50-56-9E-CC-D5
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes
   IPv4 Address. . . . . . . . . . . : 192.168.107.200(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . : 192.168.107.254
   DNS Servers . . . . . . . . . . . : 192.168.107.254
   NetBIOS over Tcpip. . . . . . . . : Enabled
 
Interface: 192.168.107.200 --- 0x7
  Internet Address      Physical Address      Type
  192.168.107.254       00-50-56-9e-0f-31     dynamic
  192.168.107.255       ff-ff-ff-ff-ff-ff     static
  224.0.0.22            01-00-5e-00-00-16     static
  224.0.0.251           01-00-5e-00-00-fb     static
  224.0.0.252           01-00-5e-00-00-fc     static
  255.255.255.255       ff-ff-ff-ff-ff-ff     static
Unable to initialize device PRN
PS C:\Users\Jeff> netstat -ano | Select-String LIST   
 
  TCP    0.0.0.0:22             0.0.0.0:0              LISTENING       2136
  TCP    0.0.0.0:80             0.0.0.0:0              LISTENING       3068
  TCP    0.0.0.0:135            0.0.0.0:0              LISTENING       920
  TCP    0.0.0.0:445            0.0.0.0:0              LISTENING       4
  TCP    0.0.0.0:5040           0.0.0.0:0              LISTENING       1012
  TCP    0.0.0.0:7680           0.0.0.0:0              LISTENING       3292
  TCP    0.0.0.0:49664          0.0.0.0:0              LISTENING       704
  TCP    0.0.0.0:49665          0.0.0.0:0              LISTENING       552
  TCP    0.0.0.0:49666          0.0.0.0:0              LISTENING       1188
  TCP    0.0.0.0:49667          0.0.0.0:0              LISTENING       1832
  TCP    0.0.0.0:49668          0.0.0.0:0              LISTENING       1128
  TCP    0.0.0.0:49669          0.0.0.0:0              LISTENING       676
  TCP    192.168.107.200:139    0.0.0.0:0              LISTENING       4
  TCP    [::]:22                [::]:0                 LISTENING       2136
  TCP    [::]:135               [::]:0                 LISTENING       920
  TCP    [::]:445               [::]:0                 LISTENING       4
  TCP    [::]:7680              [::]:0                 LISTENING       3292
  TCP    [::]:49664             [::]:0                 LISTENING       704
  TCP    [::]:49665             [::]:0                 LISTENING       552
  TCP    [::]:49666             [::]:0                 LISTENING       1188
  TCP    [::]:49667             [::]:0                 LISTENING       1832
  TCP    [::]:49668             [::]:0                 LISTENING       1128
  TCP    [::]:49669             [::]:0                 LISTENING       676

TCP 0.0.0.0:5040 0.0.0.0:0 LISTENING 1012

Users & Groups


PS C:\Users\Jeff> net users ; net user /DOMAIN ; ls C:\Users
 
User accounts for \\ROBUST
 
-------------------------------------------------------------------------------
Administrator            DefaultAccount           Guest
Jeff                     WDAGUtilityAccount
The command completed successfully.
 
The request will be processed at a domain controller for domain WORKGROUP.
 
System error 1355 has occurred.
 
The specified domain either does not exist or could not be contacted.
 
 
 
    Directory: C:\Users
 
 
Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d-----         6/21/2021   3:48 AM                Administrator
d-----         3/21/2022  10:22 PM                Jeff
d-r---         6/18/2021   5:55 AM                Public
PS C:\Users\Jeff> net localgroup ; net group /DOMAIN
 
Aliases for \\ROBUST
 
-------------------------------------------------------------------------------
*Access Control Assistance Operators
*Administrators
*Backup Operators
*Cryptographic Operators
*Device Owners
*Distributed COM Users
*Event Log Readers
*Guests
*Hyper-V Administrators
*IIS_IUSRS
*Network Configuration Operators
*Performance Log Users
*Performance Monitor Users
*Power Users
*Remote Desktop Users
*Remote Management Users
*Replicator
*System Managed Accounts Group
*Users
The command completed successfully.
 
The request will be processed at a domain controller for domain WORKGROUP.
 
System error 1355 has occurred.
 
The specified domain either does not exist or could not be contacted.

Processes


PS C:\Users\Jeff> Get-WmiObject Win32_Process | % { $s = (Get-CimInstance Win32_Service | ? { $_.ProcessId -eq $_.ProcessId }).Name -joi
n ", "; $u = $_.GetOwner(); [PSCustomObject]@{ Name = $_.Name; PID = $_.ProcessId; User = "$($u.Domain)$($u.User)"} } | ft -AutoSize    
Get-WmiObject : Access denied 
At line:1 char:1
+ Get-WmiObject Win32_Process | % { $s = (Get-CimInstance Win32_Service ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (:) [Get-WmiObject], ManagementException
    + FullyQualifiedErrorId : GetWMIManagementException,Microsoft.PowerShell.Commands.GetWmiObjectCommand
 
PS C:\Users\Jeff> cmd /c tasklist /svc ; ps
ERROR: Access denied
 
Handles  NPM(K)    PM(K)      WS(K)     CPU(s)     Id  SI ProcessName
-------  ------    -----      -----     ------     --  -- -----------
     76       5     2332       3944       0.03   4532   0 cmd
    113       7     1320       5688       0.56   1648   0 conhost
    113       8     6136        956              3064   0 conhost
    431      15     1724       4892               448   0 csrss
    172      10     1588       4708               564   1 csrss
    257      14     3872      12856              2664   0 dllhost
    693      24    21464      40644               300   1 dwm
     32       5     1376       4084               812   0 fontdrvhost
     32       5     1484       3956               820   1 fontdrvhost
      0       0       60          8                 0   0 Idle
    600      32    15700      56156              3224   1 LogonUI
    945      23     5512      15268               704   0 lsass
      0       0      212      33420              1392   0 Memory Compression
    213      13     2000        372               456   0 MicrosoftEdgeUpdate
    335      19    21768      34996              3712   0 MoUsoCoreWorker
    223      13     3032       9184              1296   0 msdtc
    597      76   173920     142024              2224   0 MsMpEng
    136      12     6236        580              3068   0 php
    702      32   116468     130316       1.53   4976   0 powershell
      0      12     2992      15088                92   0 Registry
    687      35    16896      18956              3536   0 SearchIndexer
    272      13     2872      11860              3828   0 SecurityHealthService
    355      10     3548       7820               676   0 services
    105       7     3728       6660              1080   0 SgrmBroker
     53       3     1064       1116               340   0 smss
    435      21     5324      14432              1832   0 spoolsv
    123       9     2468       7680              1712   0 sshd
    117      11     1884       6364              2136   0 sshd
    132      10     2580       7700       0.13   3024   0 sshd
    359      16    14288      18804               404   0 svchost
    208      12     1728       7808               572   0 svchost
   1144      18     6856      17732               804   0 svchost
    673      15     4136      10380               920   0 svchost
    907      36     9748      29776              1012   0 svchost
   1680     106    41816      73156              1128   0 svchost
    607      32    48532      59652              1180   0 svchost
    666      18    12904      18644              1188   0 svchost
    216      13     2676      11664              1284   0 svchost
    684      35     7128      19068              1316   0 svchost
    175      13     4616      16332              1360   0 svchost
    190      10     1856       8312              1472   0 svchost
    127       9     1512       6384              1632   0 svchost
    362      12     2204       9512              1640   0 svchost
    406      32    10572      19056              1900   0 svchost
    501      24    16792      32428              2068   0 svchost
    212      13     2556      10164              2684   0 svchost
    162      10     1936       7924              2952   0 svchost
    214      13     1972       7724              3284   0 svchost
    295      18     4048      16000              3292   0 svchost
    206      11     1892       8576              3508   0 svchost
    231      14     4900      17736              4736   0 svchost
   1485       0      196        136                 4   0 System
    176      11     3200       8908              2156   0 VGAuthService
    117       7     1420       6032              2184   0 vm3dservice
    116       8     1532       6452              2404   1 vm3dservice
    383      21     9280      19356              2176   0 vmtoolsd
    162      11     1368       6568               552   0 wininit
    246      12     2724      19432               644   1 winlogon
    500      23    11048      27532              2804   0 WmiPrvSE
  • 136 12 6236 580 3068 0 php
  • 435 21 5324 14432 1832 0 spoolsv

Tasks


PS C:\Users\Jeff> Get-ScheduledTask | where {$_.TaskPath -notlike "\Microsoft*" } | ft TaskName,TaskPath,State
Get-ScheduledTask : Cannot connect to CIM server. Access denied 
At line:1 char:1
+ Get-ScheduledTask | where {$_.TaskPath -notlike "\Microsoft*" } | ft  ...
+ ~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ResourceUnavailable: (MSFT_ScheduledTask:String) [Get-ScheduledTask], CimJobException
    + FullyQualifiedErrorId : CimJob_BrokenCimSession,Get-ScheduledTask
 
PS C:\Users\Jeff> cmd /c schtasks /QUERY /FO TABLE
 
Folder: \
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
OneDrive Reporting Task-S-1-5-21-2619112 6/30/2025 2:36:53 AM   Ready
OneDrive Standalone Update Task-S-1-5-21 6/30/2025 3:50:48 AM   Ready
 
Folder: \Microsoft
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
INFO: There are no scheduled tasks presently available at your access level.
 
Folder: \Microsoft\OneCore
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
INFO: There are no scheduled tasks presently available at your access level.
 
Folder: \Microsoft\Windows
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
INFO: There are no scheduled tasks presently available at your access level.
 
Folder: \Microsoft\Windows\.NET Framework
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
.NET Framework NGEN v4.0.30319           N/A                    Ready
.NET Framework NGEN v4.0.30319 64        N/A                    Ready
.NET Framework NGEN v4.0.30319 64 Critic N/A                    Disabled
.NET Framework NGEN v4.0.30319 Critical  N/A                    Disabled
 
Folder: \Microsoft\Windows\Active Directory Rights Management Services Client
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
AD RMS Rights Policy Template Management N/A                    Disabled
AD RMS Rights Policy Template Management N/A                    Ready
 
Folder: \Microsoft\Windows\AppID
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
PolicyConverter                          N/A                    Disabled
VerifiedPublisherCertStoreCheck          N/A                    Disabled
 
Folder: \Microsoft\Windows\Application Experience
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Microsoft Compatibility Appraiser        6/30/2025 4:51:34 AM   Ready
PcaPatchDbTask                           6/29/2025 4:09:06 PM   Ready
ProgramDataUpdater                       N/A                    Ready
StartupAppTask                           N/A                    Ready
 
Folder: \Microsoft\Windows\ApplicationData
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
appuriverifierdaily                      N/A                    Ready
appuriverifierinstall                    N/A                    Ready
CleanupTemporaryState                    N/A                    Ready
DsSvcCleanup                             N/A                    Ready
 
Folder: \Microsoft\Windows\AppListBackup
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Backup                                   N/A                    Ready
 
Folder: \Microsoft\Windows\AppxDeploymentClient
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Pre-staged app cleanup                   N/A                    Disabled
 
Folder: \Microsoft\Windows\Autochk
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Proxy                                    N/A                    Ready
 
Folder: \Microsoft\Windows\BitLocker
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
BitLocker Encrypt All Drives             N/A                    Ready
BitLocker MDM policy Refresh             N/A                    Ready
 
Folder: \Microsoft\Windows\Bluetooth
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
UninstallDeviceTask                      N/A                    Ready
 
Folder: \Microsoft\Windows\BrokerInfrastructure
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
BgTaskRegistrationMaintenanceTask        N/A                    Ready
 
Folder: \Microsoft\Windows\Chkdsk
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
ProactiveScan                            N/A                    Ready
SyspartRepair                            N/A                    Ready
 
Folder: \Microsoft\Windows\CloudExperienceHost
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
CreateObjectTask                         N/A                    Ready
 
Folder: \Microsoft\Windows\Customer Experience Improvement Program
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Consolidator                             6/29/2025 12:00:00 PM  Ready
UsbCeip                                  N/A                    Ready
 
Folder: \Microsoft\Windows\Data Integrity Scan
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Data Integrity Check And Scan            6/29/2025 11:51:24 PM  Ready
Data Integrity Scan                      N/A                    Ready
Data Integrity Scan for Crash Recovery   N/A                    Ready
 
Folder: \Microsoft\Windows\Defrag
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
ScheduledDefrag                          N/A                    Ready
 
Folder: \Microsoft\Windows\Device Information
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Device                                   6/30/2025 3:27:32 AM   Ready
Device User                              N/A                    Ready
 
Folder: \Microsoft\Windows\Diagnosis
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
RecommendedTroubleshootingScanner        N/A                    Ready
Scheduled                                N/A                    Ready
 
Folder: \Microsoft\Windows\DirectX
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
DirectXDatabaseUpdater                   N/A                    Ready
DXGIAdapterCache                         N/A                    Ready
 
Folder: \Microsoft\Windows\DiskCleanup
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
SilentCleanup                            N/A                    Ready
 
Folder: \Microsoft\Windows\DiskDiagnostic
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Microsoft-Windows-DiskDiagnosticDataColl N/A                    Disabled
Microsoft-Windows-DiskDiagnosticResolver N/A                    Disabled
 
Folder: \Microsoft\Windows\DiskFootprint
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Diagnostics                              N/A                    Ready
StorageSense                             N/A                    Ready
 
Folder: \Microsoft\Windows\DUSM
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
dusmtask                                 N/A                    Ready
 
Folder: \Microsoft\Windows\EDP
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
EDP App Launch Task                      N/A                    Ready
EDP Auth Task                            N/A                    Ready
EDP Inaccessible Credentials Task        N/A                    Ready
StorageCardEncryption Task               N/A                    Ready
 
Folder: \Microsoft\Windows\ExploitGuard
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
ExploitGuard MDM policy Refresh          N/A                    Ready
 
Folder: \Microsoft\Windows\Feedback
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
INFO: There are no scheduled tasks presently available at your access level.
 
Folder: \Microsoft\Windows\Feedback\Siuf
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
DmClient                                 N/A                    Ready
DmClientOnScenarioDownload               N/A                    Ready
 
Folder: \Microsoft\Windows\File Classification Infrastructure
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Property Definition Sync                 N/A                    Disabled
 
Folder: \Microsoft\Windows\FileHistory
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
File History (maintenance mode)          N/A                    Ready
 
Folder: \Microsoft\Windows\Flighting
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
INFO: There are no scheduled tasks presently available at your access level.
 
Folder: \Microsoft\Windows\Flighting\FeatureConfig
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
ReconcileFeatures                        N/A                    Ready
UsageDataFlushing                        N/A                    Ready
UsageDataReporting                       N/A                    Ready
 
Folder: \Microsoft\Windows\Flighting\OneSettings
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
RefreshCache                             6/29/2025 2:32:06 PM   Ready
 
Folder: \Microsoft\Windows\HelloFace
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
FODCleanupTask                           N/A                    Ready
 
Folder: \Microsoft\Windows\Input
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
LocalUserSyncDataAvailable               N/A                    Ready
MouseSyncDataAvailable                   N/A                    Ready
PenSyncDataAvailable                     N/A                    Ready
TouchpadSyncDataAvailable                N/A                    Ready
 
Folder: \Microsoft\Windows\InstallService
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
ScanForUpdates                           6/29/2025 7:08:52 PM   Ready
ScanForUpdatesAsUser                     N/A                    Ready
WakeUpAndContinueUpdates                 N/A                    Disabled
WakeUpAndScanForUpdates                  N/A                    Disabled
 
Folder: \Microsoft\Windows\Live
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
INFO: There are no scheduled tasks presently available at your access level.
 
Folder: \Microsoft\Windows\Location
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Notifications                            N/A                    Ready
WindowsActionDialog                      N/A                    Ready
 
Folder: \Microsoft\Windows\Maintenance
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
WinSAT                                   N/A                    Ready
 
Folder: \Microsoft\Windows\Management
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
INFO: There are no scheduled tasks presently available at your access level.
 
Folder: \Microsoft\Windows\Management\Provisioning
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Cellular                                 N/A                    Ready
Logon                                    N/A                    Ready
Retry                                    N/A                    Disabled
RunOnReboot                              N/A                    Disabled
 
Folder: \Microsoft\Windows\Maps
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
MapsToastTask                            N/A                    Ready
MapsUpdateTask                           N/A                    Disabled
 
Folder: \Microsoft\Windows\MemoryDiagnostic
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
ProcessMemoryDiagnosticEvents            N/A                    Ready
RunFullMemoryDiagnostic                  N/A                    Ready
 
Folder: \Microsoft\Windows\Mobile Broadband Accounts
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
MNO Metadata Parser                      N/A                    Ready
 
Folder: \Microsoft\Windows\MUI
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
LPRemove                                 N/A                    Ready
 
Folder: \Microsoft\Windows\Multimedia
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
SystemSoundsService                      N/A                    Ready
 
Folder: \Microsoft\Windows\NetTrace
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
GatherNetworkInfo                        N/A                    Ready
 
Folder: \Microsoft\Windows\NlaSvc
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
WiFiTask                                 N/A                    Ready
 
Folder: \Microsoft\Windows\Offline Files
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Background Synchronization               N/A                    Disabled
Logon Synchronization                    N/A                    Disabled
 
Folder: \Microsoft\Windows\PLA
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
INFO: There are no scheduled tasks presently available at your access level.
 
Folder: \Microsoft\Windows\Plug and Play
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Device Install Group Policy              N/A                    Ready
Device Install Reboot Required           N/A                    Ready
Sysprep Generalize Drivers               N/A                    Ready
 
Folder: \Microsoft\Windows\Power Efficiency Diagnostics
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
AnalyzeSystem                            N/A                    Ready
 
Folder: \Microsoft\Windows\Printing
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
EduPrintProv                             N/A                    Ready
 
Folder: \Microsoft\Windows\RecoveryEnvironment
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
VerifyWinRE                              N/A                    Disabled
 
Folder: \Microsoft\Windows\Servicing
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
StartComponentCleanup                    N/A                    Ready
 
Folder: \Microsoft\Windows\SettingSync
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
BackgroundUploadTask                     N/A                    Ready
NetworkStateChangeTask                   N/A                    Ready
 
Folder: \Microsoft\Windows\SharedPC
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Account Cleanup                          N/A                    Disabled
 
Folder: \Microsoft\Windows\Shell
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
CreateObjectTask                         N/A                    Ready
FamilySafetyMonitor                      N/A                    Ready
FamilySafetyRefreshTask                  N/A                    Ready
IndexerAutomaticMaintenance              N/A                    Ready
 
Folder: \Microsoft\Windows\SpacePort
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
SpaceAgentTask                           N/A                    Ready
SpaceManagerTask                         N/A                    Ready
 
Folder: \Microsoft\Windows\Speech
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
HeadsetButtonPress                       N/A                    Ready
SpeechModelDownloadTask                  6/30/2025 12:24:39 AM  Ready
 
Folder: \Microsoft\Windows\StateRepository
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
MaintenanceTasks                         N/A                    Ready
 
Folder: \Microsoft\Windows\Storage Tiers Management
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Storage Tiers Management Initialization  N/A                    Ready
Storage Tiers Optimization               N/A                    Disabled
 
Folder: \Microsoft\Windows\Subscription
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
EnableLicenseAcquisition                 N/A                    Ready
LicenseAcquisition                       N/A                    Disabled
 
Folder: \Microsoft\Windows\Sysmain
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
HybridDriveCachePrepopulate              N/A                    Disabled
HybridDriveCacheRebalance                N/A                    Disabled
ResPriStaticDbSync                       N/A                    Ready
WsSwapAssessmentTask                     N/A                    Ready
 
Folder: \Microsoft\Windows\SystemRestore
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
SR                                       N/A                    Ready
 
Folder: \Microsoft\Windows\TextServicesFramework
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
MsCtfMonitor                             N/A                    Ready
 
Folder: \Microsoft\Windows\Time Synchronization
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
ForceSynchronizeTime                     N/A                    Ready
SynchronizeTime                          N/A                    Ready
 
Folder: \Microsoft\Windows\Time Zone
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
SynchronizeTimeZone                      N/A                    Ready
 
Folder: \Microsoft\Windows\UNP
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
RunUpdateNotificationMgr                 N/A                    Disabled
 
Folder: \Microsoft\Windows\UPnP
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
UPnPHostConfig                           N/A                    Ready
 
Folder: \Microsoft\Windows\USB
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Usb-Notifications                        N/A                    Ready
 
Folder: \Microsoft\Windows\WCM
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
WiFiTask                                 N/A                    Ready
 
Folder: \Microsoft\Windows\Windows Defender
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Windows Defender Cache Maintenance       N/A                    Ready
Windows Defender Cleanup                 N/A                    Ready
Windows Defender Scheduled Scan          N/A                    Ready
Windows Defender Verification            N/A                    Ready
 
Folder: \Microsoft\Windows\Windows Error Reporting
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
QueueReporting                           6/29/2025 1:03:08 PM   Ready
 
Folder: \Microsoft\Windows\Windows Filtering Platform
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
BfeOnServiceStartTypeChange              N/A                    Ready
 
Folder: \Microsoft\Windows\Windows Media Sharing
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
UpdateLibrary                            N/A                    Ready
 
Folder: \Microsoft\Windows\WindowsColorSystem
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Calibration Loader                       N/A                    Ready
 
Folder: \Microsoft\Windows\WindowsUpdate
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Scheduled Start                          N/A                    Ready
 
Folder: \Microsoft\Windows\WindowsUpdate\RUXIM
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
PLUGScheduler                            6/30/2025 8:19:18 AM   Ready
 
Folder: \Microsoft\Windows\Wininet
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
CacheTask                                N/A                    Ready
 
Folder: \Microsoft\Windows\WlanSvc
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
CDSSync                                  N/A                    Ready
 
Folder: \Microsoft\Windows\Work Folders
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Work Folders Logon Synchronization       N/A                    Ready
Work Folders Maintenance Work            N/A                    Ready
 
Folder: \Microsoft\Windows\Workplace Join
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
Automatic-Device-Join                    N/A                    Disabled
Device-Sync                              N/A                    Disabled
Recovery-Check                           N/A                    Disabled
 
Folder: \Microsoft\Windows\WwanSvc
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
NotificationTask                         N/A                    Ready
OobeDiscovery                            N/A                    Ready
 
Folder: \Microsoft\XblGameSave
TaskName                                 Next Run Time          Status
======================================== ====================== ===============
XblGameSaveTask                          N/A                    Ready

Services


PS C:\Users\Jeff> wmic service where "State='Running'" get Name,PathName,StartName | Out-String -Stream | Where-Object { $_ -match 'S' -
and $_ -notmatch 'C:\Windows\System32' } | Select-Object
ERROR:
Description = Access denied
PS C:\Users\Jeff> Get-Service
Get-Service : Cannot open Service Control Manager on computer '.'. This operation might require other privileges.
At line:1 char:1
+ Get-Service
+ ~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Get-Service], InvalidOperationException
    + FullyQualifiedErrorId : System.InvalidOperationException,Microsoft.PowerShell.Commands.GetServiceCommand
 
PS C:\Users\Jeff> Get-CimInstance -ClassName win32_service | Select Name,State,PathName | Where-Object {$_.State -like 'Running'}       
Get-CimInstance : Access denied 
At line:1 char:1
+ Get-CimInstance -ClassName win32_service | Select Name,State,PathName ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : PermissionDenied: (root\cimv2:win32_service:String) [Get-CimInstance], CimException
    + FullyQualifiedErrorId : HRESULT 0x80041003,Microsoft.Management.Infrastructure.CimCmdlets.GetCimInstanceCommand
 
PS C:\Users\Jeff> net start
System error 5 has occurred.
 
Access is denied.

Installed Programs


PS C:\Users\Jeff> Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*", "HKLM:\SOFTWARE\Wow6432Node\Microsoft\
Windows\CurrentVersion\Uninstall\*", "HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*" -ErrorAction SilentlyContinue | Selec
t-Object -ExpandProperty DisplayName -ErrorAction SilentlyContinue | Where-Object { $_ } | Sort-Object -Unique ; ls "C:\Program Files" ;
 ls "C:\Program Files (x86)"
Microsoft Edge
Microsoft Edge Update
Microsoft OneDrive
Microsoft Update Health Tools
Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.29.30139
Microsoft Visual C++ 2015-2019 Redistributable (x86) - 14.24.28127
Microsoft Visual C++ 2019 X64 Additional Runtime - 14.29.30139
Microsoft Visual C++ 2019 X64 Minimum Runtime - 14.29.30139
Microsoft Visual C++ 2019 X86 Additional Runtime - 14.24.28127
Microsoft Visual C++ 2019 X86 Minimum Runtime - 14.24.28127
Update for Windows 10 for x64-based Systems (KB5001716)
VMware Tools
 
 
    Directory: C:\Program Files
 
 
Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d-----         6/21/2021   3:33 AM                Common Files
d-----         3/21/2022   9:40 PM                Internet Explorer
d-----         5/11/2022  12:59 PM                Microsoft Update Health Tools
d-----         12/7/2019   1:14 AM                ModifiableWindowsApps
d-----         5/13/2022   8:05 AM                RUXIM
d-----         6/21/2021   3:34 AM                VMware
d-----         6/21/2021   3:33 AM                Windows Defender
d-----         3/21/2022   9:40 PM                Windows Defender Advanced Threat Protection
d-----          9/1/2021   8:40 AM                Windows Mail
d-----        10/19/2021   6:48 AM                Windows Media Player
d-----         12/7/2019   1:54 AM                Windows Multimedia Platform
d-----         12/7/2019   1:50 AM                Windows NT
d-----         6/18/2021   5:50 AM                Windows Photo Viewer
d-----         12/7/2019   1:54 AM                Windows Portable Devices
d-----         12/7/2019   1:31 AM                Windows Security
d-----         12/7/2019   1:31 AM                WindowsPowerShell
 
 
    Directory: C:\Program Files (x86)
 
 
Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d-----         12/7/2019   1:31 AM                Common Files
d-----         3/21/2022   9:40 PM                Internet Explorer
d-----         6/18/2021   5:57 AM                Microsoft
d-----         12/7/2019   1:31 AM                Microsoft.NET
d-----         6/18/2021   5:55 AM                Reference Assemblies
d-----         6/18/2021   5:50 AM                Windows Defender
d-----          9/1/2021   8:40 AM                Windows Mail
d-----        10/19/2021   6:48 AM                Windows Media Player
d-----         12/7/2019   1:54 AM                Windows Multimedia Platform
d-----         12/7/2019   1:50 AM                Windows NT
d-----         6/18/2021   5:50 AM                Windows Photo Viewer
d-----         12/7/2019   1:54 AM                Windows Portable Devices
d-----         12/7/2019   1:31 AM                WindowsPowerShell

Firewall & AV


PS C:\Users\Jeff> netsh firewall show config
 
Domain profile configuration:
-------------------------------------------------------------------
Operational mode                  = Enable
Exception mode                    = Enable
Multicast/broadcast response mode = Enable
Notification mode                 = Enable
 
Allowed programs configuration for Domain profile:
Mode     Traffic direction    Name / Program
-------------------------------------------------------------------
 
Port configuration for Domain profile:
Port   Protocol  Mode    Traffic direction     Name
-------------------------------------------------------------------
 
Standard profile configuration (current):
-------------------------------------------------------------------
Operational mode                  = Enable
Exception mode                    = Enable
Multicast/broadcast response mode = Enable
Notification mode                 = Enable
 
Service configuration for Standard profile:
Mode     Customized  Name
-------------------------------------------------------------------
Enable   No          Network Discovery
 
Allowed programs configuration for Standard profile:
Mode     Traffic direction    Name / Program
-------------------------------------------------------------------
 
Port configuration for Standard profile:
Port   Protocol  Mode    Traffic direction     Name
-------------------------------------------------------------------
 
Log configuration:
-------------------------------------------------------------------
File location   = C:\WINDOWS\system32\LogFiles\Firewall\pfirewall.log
Max file size   = 4096 KB
Dropped packets = Disable
Connections     = Disable
 
IMPORTANT: Command executed successfully.
However, "netsh firewall" is deprecated;
use "netsh advfirewall firewall" instead.
For more information on using "netsh advfirewall firewall" commands
instead of "netsh firewall", see KB article 947709
at https://go.microsoft.com/fwlink/?linkid=121488 .
PS C:\Users\Jeff> Get-MpComputerStatus ; Get-MpPreference | Select-Object -Property ExclusionPath
Get-MpComputerStatus : Cannot connect to CIM server. Access denied 
At line:1 char:1
+ Get-MpComputerStatus ; Get-MpPreference | Select-Object -Property Exc ...
+ ~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ResourceUnavailable: (MSFT_MpComputerStatus:String) [Get-MpComputerStatus], CimJobException
    + FullyQualifiedErrorId : CimJob_BrokenCimSession,Get-MpComputerStatus
 
Get-MpPreference : Cannot connect to CIM server. Access denied 
At line:1 char:24
+ Get-MpComputerStatus ; Get-MpPreference | Select-Object -Property Exc ...
+                        ~~~~~~~~~~~~~~~~
    + CategoryInfo          : ResourceUnavailable: (MSFT_MpPreference:String) [Get-MpPreference], CimJobException
    + FullyQualifiedErrorId : CimJob_BrokenCimSession,Get-MpPreference

Session Architecture


PS C:\Users\Jeff> [Environment]::Is64BitProcess
True

Installed .NET Frameworks


PS C:\Users\Jeff> cmd /c dir /A:D C:\Windows\Microsoft.NET\Framework ; cmd /c reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Frame
work Setup\NDP" ; cmd /c reg query "HKLM\SOFTWARE\Microsoft\Net Framework Setup\NDP" /s
 Volume in drive C has no label.
 Volume Serial Number is 08DF-534D
 
 Directory of C:\Windows\Microsoft.NET\Framework
 
12/07/2019  02:31 AM    <DIR>          .
12/07/2019  02:31 AM    <DIR>          ..
06/18/2021  05:57 AM    <DIR>          v1.0.3705
06/18/2021  05:57 AM    <DIR>          v1.1.4322
12/07/2019  02:14 AM    <DIR>          v2.0.50727
06/29/2025  06:01 AM    <DIR>          v4.0.30319
               0 File(s)              0 bytes
               6 Dir(s)   3,981,729,792 bytes free
 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\CDF
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4.0
 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Net Framework Setup\NDP\CDF
 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Net Framework Setup\NDP\CDF\v4.0
    HttpNamespaceReservationInstalled    REG_DWORD    0x1
    NetTcpPortSharingInstalled    REG_DWORD    0x1
    NonHttpActivationInstalled    REG_DWORD    0x1
    SMSvcHostPath    REG_SZ    C:\Windows\Microsoft.NET\Framework64\v4.0.30319\
    WMIInstalled    REG_DWORD    0x1
 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Net Framework Setup\NDP\v4
 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Net Framework Setup\NDP\v4\Client
    CBS    REG_DWORD    0x1
    Install    REG_DWORD    0x1
    InstallPath    REG_SZ    C:\Windows\Microsoft.NET\Framework64\v4.0.30319\
    Release    REG_DWORD    0x80ff4
    Servicing    REG_DWORD    0x0
    TargetVersion    REG_SZ    4.0.0
    Version    REG_SZ    4.8.04084
 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Net Framework Setup\NDP\v4\Client\1033
    CBS    REG_DWORD    0x1
    Install    REG_DWORD    0x1
    Release    REG_DWORD    0x80ff4
    Servicing    REG_DWORD    0x0
    TargetVersion    REG_SZ    4.0.0
    Version    REG_SZ    4.8.04084
 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Net Framework Setup\NDP\v4\Full
    CBS    REG_DWORD    0x1
    Install    REG_DWORD    0x1
    InstallPath    REG_SZ    C:\Windows\Microsoft.NET\Framework64\v4.0.30319\
    Release    REG_DWORD    0x80ff4
    Servicing    REG_DWORD    0x0
    TargetVersion    REG_SZ    4.0.0
    Version    REG_SZ    4.8.04084
 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Net Framework Setup\NDP\v4\Full\1033
    CBS    REG_DWORD    0x1
    Install    REG_DWORD    0x1
    Release    REG_DWORD    0x80ff4
    Servicing    REG_DWORD    0x0
    TargetVersion    REG_SZ    4.0.0
    Version    REG_SZ    4.8.04084
 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Net Framework Setup\NDP\v4.0
    (Default)    REG_SZ    deprecated
 
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Net Framework Setup\NDP\v4.0\Client
    Install    REG_DWORD    0x1
    Version    REG_SZ    4.0.0.0

.NET 4.8.04084