{"id":10632,"date":"2025-11-25T16:35:58","date_gmt":"2025-11-25T21:35:58","guid":{"rendered":"https:\/\/stevepedwards.today\/DebianAdmin\/?p=10632"},"modified":"2025-12-28T11:48:23","modified_gmt":"2025-12-28T16:48:23","slug":"powershell-it-support-pc-info-script","status":"publish","type":"post","link":"https:\/\/stevepedwards.today\/DebianAdmin\/powershell-it-support-pc-info-script\/","title":{"rendered":"Powershell IT Support PC Info Script"},"content":{"rendered":"<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_10632\" class=\"pvc_stats all  \" data-element-id=\"10632\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/stevepedwards.today\/DebianAdmin\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n<p>I developed this PS script requirements over time with AI to cover useful info about a PC state to aid fault finding - you can paste it straight into the Admin PS terminal:<\/p>\n<hr \/>\n<p>&nbsp;<\/p>\n<p># SCRIPT START: EXECUTE, FORMAT, AND SAVE OUTPUT<br \/>\n$ReportPath = \"$env:USERPROFILE\\Desktop\\System_Diagnostic_Report_$(Get-Date -Format 'yyyyMMdd_HHmm').txt\"<br \/>\n\"Starting automated diagnostic report creation...\" | Out-File $ReportPath<br \/>\n\"`r`n--- WARNING: Internet Throughput Test Blocked by Network Security ---\" | Out-File $ReportPath -Append<\/p>\n<p># --- 0. CURRENT USER AND IDENTITY ---<br \/>\n\"`r`n--- 0. CURRENT USER AND IDENTITY ---\" | Out-File $ReportPath -Append<br \/>\n$CurrentUser = [Security.Principal.WindowsIdentity]::GetCurrent()<br \/>\n$Principal = New-Object Security.Principal.WindowsPrincipal($CurrentUser)<br \/>\n$UserRole = if ($Principal.IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) { \"Administrator\/Privileged\" } else { \"Standard User\" }<br \/>\n$SysInfo = Get-CimInstance Win32_ComputerSystem<br \/>\n$NetworkStatus = if ($SysInfo.PartOfDomain) { \"Domain: $($SysInfo.Domain)\" } else { \"Workgroup: $($SysInfo.Workgroup)\" }<br \/>\n\"User Name: $($env:USERDOMAIN)\\$($env:USERNAME)\" | Out-File $ReportPath -Append<br \/>\n\"User Type: $($UserRole)\" | Out-File $ReportPath -Append<br \/>\n\"Network Membership: $($NetworkStatus)\" | Out-File $ReportPath -Append<\/p>\n<p># --- 1. SYSTEM CORE STATUS (V3 ORIGINAL) ---<br \/>\n\"`r`n--- 1. SYSTEM CORE STATUS ---\" | Out-File $ReportPath -Append<br \/>\n$FriendlyVersion = (Get-ItemProperty -Path \"HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" -ErrorAction SilentlyContinue).DisplayVersion<br \/>\nGet-ComputerInfo -Property OsName, OsVersion, CsProcessors, CsTotalPhysicalMemory |<br \/>\nSelect-Object OsName, OsVersion, @{Name='Update Version'; Expression={$FriendlyVersion}}, CsProcessors, CsTotalPhysicalMemory |<br \/>\nOut-File $ReportPath -Append<\/p>\n<p># BIOS\/Serial and TPM Status<br \/>\n\"`r`n--- BIOS \/ Serial Number ---\" | Out-File $ReportPath -Append<br \/>\nGet-CimInstance Win32_Bios | Select-Object Manufacturer, Name, SerialNumber | Out-File $ReportPath -Append<br \/>\n\"`r`n--- TPM Status ---\" | Out-File $ReportPath -Append<br \/>\nGet-Tpm -ErrorAction SilentlyContinue | Select-Object TpmPresent, TpmReady, TpmEnabled | Out-File $ReportPath -Append<\/p>\n<p>$OS = Get-CimInstance Win32_OperatingSystem<br \/>\n$TotalMB = [math]::Round($OS.TotalVisibleMemorySize \/ 1024, 0)<br \/>\n$FreeMB = [math]::Round($OS.FreePhysicalMemory \/ 1024, 0)<br \/>\n$UsedMB = $TotalMB - $FreeMB<br \/>\n\"Total RAM: $($TotalMB) MB | Used: $($UsedMB) MB ($([math]::Round(($UsedMB \/ $TotalMB) * 100, 1))%)\" | Out-File $ReportPath -Append<br \/>\n\"Last Boot Time: $($OS.LastBootUpTime)\" | Out-File $ReportPath -Append<\/p>\n<p># --- 2. STORAGE STATUS ---<br \/>\n\"`r`n--- 2. STORAGE STATUS ---\" | Out-File $ReportPath -Append<br \/>\nGet-Volume | Where-Object { $_.DriveLetter } | Select-Object DriveLetter, FileSystemLabel, @{Name='SizeGB'; Expression={[math]::Round($_.Size\/1GB,2)}}, @{Name='FreeGB'; Expression={[math]::Round($_.SizeRemaining\/1GB,2)}} | Out-File $ReportPath -Append<\/p>\n<p># --- 3. NETWORKING STATUS (AMENDED WITH IPCONFIG\/ADAPTER DETAILS) ---<br \/>\n\"`r`n--- 3. NETWORKING STATUS ---\" | Out-File $ReportPath -Append<br \/>\n$NetConfig = Get-NetIPConfiguration -All<br \/>\nforeach ($Interface in $NetConfig) {<br \/>\nif ($Interface.IPv4Address) {<br \/>\n\"Interface: $($Interface.InterfaceAlias)\" | Out-File $ReportPath -Append<br \/>\n\" Status: $($Interface.NetAdapter.Status)\" | Out-File $ReportPath -Append<br \/>\n\" IPv4 Address: $($Interface.IPv4Address.IPAddress)\" | Out-File $ReportPath -Append<br \/>\n\" Gateway: $($Interface.IPv4DefaultGateway.NextHop)\" | Out-File $ReportPath -Append<br \/>\n\" DNS Servers: $($Interface.DNSServer.ServerAddresses -join ', ')\" | Out-File $ReportPath -Append<br \/>\n\"--------------------------------------\" | Out-File $ReportPath -Append<br \/>\n}<br \/>\n}<br \/>\nTest-NetConnection -ComputerName google.com -InformationLevel Quiet | Out-File $ReportPath -Append<\/p>\n<p># --- 4. PERFORMANCE SETTINGS (V3 ORIGINAL) ---<br \/>\n\"`r`n--- 4. PERFORMANCE SETTINGS (Visual Effects) ---\" | Out-File $ReportPath -Append<br \/>\n$FXSetting = (Get-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VisualEffects\" -Name VisualFXSetting -ErrorAction SilentlyContinue).VisualFXSetting<br \/>\n$FXOutput = switch ($FXSetting) { 0 {\"Let Windows Choose\"}; 1 {\"Best Appearance\"}; 2 {\"Best Performance\"}; 3 {\"Custom\"}; Default {\"Unknown\"} }<br \/>\n\"Visual Effects: $FXOutput\" | Out-File $ReportPath -Append<\/p>\n<p># --- 5. DEVICE AND I\/O STATUS (V3 ORIGINAL) ---<br \/>\n\"`r`n--- 5. DEVICE AND I\/O STATUS ---\" | Out-File $ReportPath -Append<br \/>\nGet-PnpDevice -Class 'Display', 'Keyboard', 'Mouse', 'HIDClass', 'Image', 'USBDevice' -ErrorAction SilentlyContinue | Select-Object FriendlyName, Class, Status | Out-File $ReportPath -Append<\/p>\n<p># --- 6. STABILITY\/LOGS ---<br \/>\n\"`r`n--- 6. STABILITY\/LOGS ---\" | Out-File $ReportPath -Append<br \/>\ntry {<br \/>\nGet-WinEvent -FilterHashTable @{LogName='System'; Level=1,2; StartTime=(Get-Date -Hour 0 -Minute 0 -Second 0)} -ErrorAction Stop |<br \/>\nSelect-Object TimeCreated, Id, Message -First 10 | Out-File $ReportPath -Append<br \/>\n} catch { \"RESULT: [ACCESS DENIED] - Standard User\" | Out-File $ReportPath -Append }<\/p>\n<p># --- 7. SECURITY STATUS (V3 ORIGINAL) ---<br \/>\n\"`r`n--- 7. SECURITY STATUS ---\" | Out-File $ReportPath -Append<br \/>\ntry {<br \/>\n$BL = Get-BitLockerVolume -MountPoint C: -ErrorAction Stop<br \/>\n\"BitLocker C: $($BL.VolumeStatus)\" | Out-File $ReportPath -Append<br \/>\n} catch { \"BitLocker C: [ACCESS DENIED]\" | Out-File $ReportPath -Append }<\/p>\n<p># --- 8. ANTIVIRUS STATUS (V3 ORIGINAL) ---<br \/>\n\"`r`n--- 8. ANTIVIRUS STATUS ---\" | Out-File $ReportPath -Append<br \/>\n$Defender = Get-Service -Name WinDefend -ErrorAction SilentlyContinue<br \/>\nif ($Defender) { \"Defender Service: $($Defender.Status)\" | Out-File $ReportPath -Append }<br \/>\nGet-CimInstance -Namespace root\/SecurityCenter2 -ClassName AntiVirusProduct -ErrorAction SilentlyContinue | Select-Object displayName, productState | Out-File $ReportPath -Append<\/p>\n<p># --- 9. INSTALLED SOFTWARE (V3 ORIGINAL) ---<br \/>\n\"`r`n--- 9. INSTALLED SOFTWARE AND VERSIONS ---\" | Out-File $ReportPath -Append<br \/>\n$LegacyPaths = @(\"HKLM:\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\*\", \"HKLM:\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\*\", \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\*\")<br \/>\n$LegacyApps = Get-ItemProperty -Path $LegacyPaths -ErrorAction SilentlyContinue | Where-Object { $_.DisplayName -ne $null } | Select-Object @{Name='DisplayName'; Expression={$_.DisplayName}}, @{Name='DisplayVersion'; Expression={$_.DisplayVersion}}<br \/>\n$UWPApps = Get-AppxPackage | Where-Object { -not $_.IsFramework } | Select-Object @{Name='DisplayName'; Expression={$_.Name}}, @{Name='DisplayVersion'; Expression={$_.Version}}<br \/>\n($LegacyApps + $UWPApps) | Sort-Object DisplayName | Out-File $ReportPath -Append<\/p>\n<p># --- REPORT COMPLETION ---<br \/>\n\"`r`n--- Report Generation Complete ---\" | Out-File $ReportPath -Append<br \/>\nWrite-Output \"Diagnostic report saved to: $ReportPath\"<\/p>\n<p>&nbsp;<\/p>\n<p>This script give a text file output to the Desktop with PC details:<\/p>\n<hr \/>\n<p>Starting automated diagnostic report creation...<\/p>\n<p>--- WARNING: Internet Throughput Test Blocked by Network Security ---<\/p>\n<p>--- 0. CURRENT USER AND IDENTITY ---<br \/>\nUser Name: BABY\\steve<br \/>\nUser Type: Administrator\/Privileged<br \/>\nNetwork Membership: Workgroup: WORKGROUP<\/p>\n<p>--- 1. SYSTEM CORE STATUS ---<\/p>\n<p>OsName : Microsoft Windows 11 Pro<br \/>\nOsVersion : 10.0.26100<br \/>\nUpdate Version : 24H2<br \/>\nCsProcessors : {12th Gen Intel(R) Core(TM) i3-1215U}<br \/>\nCsTotalPhysicalMemory : 12581920768<\/p>\n<p>&nbsp;<\/p>\n<p>--- BIOS \/ Serial Number ---<\/p>\n<p>Manufacturer Name SerialNumber<br \/>\n------------ ---- ------------<br \/>\nInsyde F.17 1H945108LJ<\/p>\n<p>&nbsp;<\/p>\n<p>--- TPM Status ---<\/p>\n<p>TpmPresent TpmReady TpmEnabled<br \/>\n---------- -------- ----------<br \/>\nTrue True True<\/p>\n<p>Total RAM: 11999 MB | Used: 6672 MB (55.6%)<br \/>\nLast Boot Time: 12\/27\/2025 15:27:14<\/p>\n<p>--- 2. STORAGE STATUS ---<\/p>\n<p>DriveLetter FileSystemLabel SizeGB FreeGB<br \/>\n----------- --------------- ------ ------<br \/>\nC WINDOWS 475.87 194.01<\/p>\n<p>&nbsp;<\/p>\n<p>--- 3. NETWORKING STATUS ---<br \/>\nInterface: WiFi 2<br \/>\nStatus: Up<br \/>\nIPv4 Address: 192.168.1.102<br \/>\nGateway: 192.168.1.1<br \/>\nDNS Servers: 192.168.1.1<br \/>\n--------------------------------------<br \/>\nInterface: Local Area Connection* 2<br \/>\nStatus: Disconnected<br \/>\nIPv4 Address: 169.254.49.7<br \/>\nGateway:<br \/>\nDNS Servers: fec0:0:0:ffff::1, fec0:0:0:ffff::2, fec0:0:0:ffff::3<br \/>\n--------------------------------------<br \/>\nInterface: Local Area Connection* 1<br \/>\nStatus: Disconnected<br \/>\nIPv4 Address: 169.254.185.104<br \/>\nGateway:<br \/>\nDNS Servers: fec0:0:0:ffff::1, fec0:0:0:ffff::2, fec0:0:0:ffff::3<br \/>\n--------------------------------------<br \/>\nTrue<\/p>\n<p>--- 4. PERFORMANCE SETTINGS (Visual Effects) ---<br \/>\nVisual Effects: Unknown<\/p>\n<p>--- 5. DEVICE AND I\/O STATUS ---<\/p>\n<p>FriendlyName Class Status<br \/>\n------------ ----- ------<br \/>\nELAN Input Device Mouse OK<br \/>\nIntel(R) UHD Graphics Display OK<br \/>\nI2C HID Device HIDClass OK<br \/>\nCamera DFU Device USBDevice OK<br \/>\nELAN HID Class Filter Driver HIDClass OK<br \/>\nStandard PS\/2 Keyboard Keyboard OK<br \/>\nELAN PrecisionTouchpad Filter Driver HIDClass OK<br \/>\nMicrosoft Input Configuration Device HIDClass OK<\/p>\n<p>&nbsp;<\/p>\n<p>--- 6. STABILITY\/LOGS ---<\/p>\n<p>TimeCreated Id Message<br \/>\n----------- -- -------<br \/>\n28\/12\/2025 11:01:26 1796 The Secure Boot update failed to update a Secure Boot variable with error Unknown HResult ...<br \/>\n28\/12\/2025 11:01:24 10317 Miniport Microsoft Wi-Fi Direct Virtual Adapter #2, {2c0bc924-0f20-471b-9317-d743d7318bbb}...<br \/>\n28\/12\/2025 01:23:29 10317 Miniport Microsoft Wi-Fi Direct Virtual Adapter #2, {2c0bc924-0f20-471b-9317-d743d7318bbb}...<\/p>\n<p>&nbsp;<\/p>\n<p>--- 7. SECURITY STATUS ---<br \/>\nBitLocker C: FullyEncrypted<\/p>\n<p>--- 8. ANTIVIRUS STATUS ---<br \/>\nDefender Service: Running<\/p>\n<p>displayName productState<br \/>\n----------- ------------<br \/>\nWindows Defender 397568<\/p>\n<p>&nbsp;<\/p>\n<p>--- 9. INSTALLED SOFTWARE AND VERSIONS ---<\/p>\n<p>DisplayName DisplayVersion<br \/>\n----------- --------------<br \/>\n1527c705-839a-4832-9118-54d4Bd6a0c89 10.0.19640.1000<br \/>\n5319275A.WhatsAppDesktop 2.2587.9.0<br \/>\nAD2F1837.HPAudioCenter 1.47.308.0<br \/>\nAD2F1837.HPPCHardwareDiagnosticsWindows 2.9.0.0<br \/>\nAD2F1837.HPSystemEventUtility 3.2.15.0<br \/>\naimgr 0.20.34.0<br \/>\nAppUp.IntelGraphicsExperience 1.100.5688.0<br \/>\nAppUp.IntelOptaneMemoryandStorageManagement 20.0.1021.0<br \/>\nc5e2524a-ea46-4f67-841f-6a9465d9d515 10.0.26100.1<br \/>\nE2A4F912-2574-4A75-9BB0-0D023378592B 10.0.19640.1000<br \/>\nF46D4000-FD22-4DB4-AC8E-4E1DDDE828FE 10.0.26100.1<br \/>\nGoogle Chrome 143.0.7499.170<br \/>\nGoogle Drive 118.0.1.0<br \/>\nGoogle Update Helper 1.3.35.451<br \/>\nHP Audio Switch 1.0.211.0<br \/>\nHP Connection Optimizer 2.0.19.0<br \/>\nMicrosoft 365 - en-us 16.0.19426.20218<br \/>\nMicrosoft 365 - es-es 16.0.19426.20218<br \/>\nMicrosoft Edge 143.0.3650.96<br \/>\nMicrosoft Edge WebView2 Runtime 143.0.3650.96<br \/>\nMicrosoft OneNote - en-us 16.0.19426.20218<br \/>\nMicrosoft OneNote - es-es 16.0.19426.20218<br \/>\nMicrosoft.AAD.BrokerPlugin 1000.19580.1000.2<br \/>\nMicrosoft.AccountsControl 10.0.26100.1<br \/>\nMicrosoft.ApplicationCompatibilityEnhancements 1.2511.9.0<br \/>\nMicrosoft.AsyncTextService 10.0.26100.1<br \/>\nMicrosoft.AV1VideoExtension 2.0.6.0<br \/>\nMicrosoft.AVCEncoderVideoExtension 1.1.21.0<br \/>\nMicrosoft.BingSearch 1.1.40.0<br \/>\nMicrosoft.BingWeather 4.54.63029.0<br \/>\nMicrosoft.BioEnrollment 10.0.19587.1000<br \/>\nMicrosoft.CredDialogHost 10.0.19595.1001<br \/>\nMicrosoft.DesktopAppInstaller 1.27.350.0<br \/>\nMicrosoft.ECApp 10.0.26100.4061<br \/>\nMicrosoft.GetHelp 10.2409.33293.0<br \/>\nMicrosoft.HEIFImageExtension 1.2.28.0<br \/>\nMicrosoft.LanguageExperiencePacken-GB 26100.118.226.0<br \/>\nMicrosoft.LanguageExperiencePackes-MX 26100.111.215.0<br \/>\nMicrosoft.LockApp 10.0.26100.3323<br \/>\nMicrosoft.MicrosoftEdge.Stable 142.0.3595.94<br \/>\nMicrosoft.MicrosoftEdgeDevToolsClient 1000.25128.1000.0<br \/>\nMicrosoft.MixedReality.Portal 2000.21051.1282.0<br \/>\nMicrosoft.MPEG2VideoExtension 1.2.13.0<br \/>\nMicrosoft.Office.ActionsServer 16.0.19426.20218<br \/>\nMicrosoft.OfficePushNotificationUtility 16.0.19426.20218<br \/>\nMicrosoft.OneDriveSync 25209.1026.2.0<br \/>\nMicrosoft.OutlookForWindows 1.2024.103.100<br \/>\nMicrosoft.Paint 11.2510.311.0<br \/>\nMicrosoft.PowerAutomateDesktop 11.2512.163.0<br \/>\nMicrosoft.ScreenSketch 11.2510.31.0<br \/>\nMicrosoft.SecHealthUI 1000.29429.1000.0<br \/>\nMicrosoft.StartExperiencesApp 1.195.0.0<br \/>\nMicrosoft.StorePurchaseApp 22510.1401.4.0<br \/>\nMicrosoft.VP9VideoExtensions 1.2.12.0<br \/>\nMicrosoft.WebMediaExtensions 1.2.17.0<br \/>\nMicrosoft.WebpImageExtension 1.2.14.0<br \/>\nMicrosoft.Whiteboard 55.20610.576.0<br \/>\nMicrosoft.WidgetsPlatformRuntime 1.6.14.0<br \/>\nMicrosoft.Win32WebViewHost 10.0.26100.1<br \/>\nMicrosoft.WinAppRuntime.DDLM.4000.964.11.0-x6 4000.964.11.0<br \/>\nMicrosoft.WinAppRuntime.DDLM.4000.964.11.0-x8 4000.964.11.0<br \/>\nMicrosoft.Windows.Apprep.ChxApp 1000.25128.1000.0<br \/>\nMicrosoft.Windows.AssignedAccessLockApp 1000.25128.1000.0<br \/>\nMicrosoft.Windows.CapturePicker 10.0.19580.1000<br \/>\nMicrosoft.Windows.CloudExperienceHost 10.0.26100.1<br \/>\nMicrosoft.Windows.ContentDeliveryManager 10.0.26100.1<br \/>\nMicrosoft.Windows.DevHome 0.2101.858.0<br \/>\nMicrosoft.Windows.NarratorQuickStart 10.0.26100.1<br \/>\nMicrosoft.Windows.OOBENetworkCaptivePortal 10.0.26100.1000<br \/>\nMicrosoft.Windows.OOBENetworkConnectionFlow 10.0.21302.1000<br \/>\nMicrosoft.Windows.ParentalControls 1000.25128.1000.0<br \/>\nMicrosoft.Windows.PeopleExperienceHost 10.0.26100.1<br \/>\nMicrosoft.Windows.Photos 2025.11120.5001.0<br \/>\nMicrosoft.Windows.PinningConfirmationDialog 1000.25140.1001.0<br \/>\nMicrosoft.Windows.PrintQueueActionCenter 1.0.2.0<br \/>\nMicrosoft.Windows.SecureAssessmentBrowser 10.0.26100.1<br \/>\nMicrosoft.Windows.ShellExperienceHost 10.0.26100.3624<br \/>\nMicrosoft.Windows.StartMenuExperienceHost 10.0.26100.3323<br \/>\nMicrosoft.Windows.XGpuEjectDialog 10.0.26100.1<br \/>\nMicrosoft.WindowsAlarms 11.2510.4.0<br \/>\nMicrosoft.WindowsCamera 2025.2510.2.0<br \/>\nmicrosoft.windowscommunicationsapps 16005.14326.22342.0<br \/>\nMicrosoft.WindowsNotepad 11.2508.38.0<br \/>\nMicrosoft.WindowsSoundRecorder 11.2510.0.0<br \/>\nMicrosoft.WindowsStore 22511.1401.5.0<br \/>\nMicrosoft.WindowsTerminal 1.23.13503.0<br \/>\nMicrosoft.XboxGameCallableUI 1000.25128.1000.0<br \/>\nMicrosoft.XboxGameOverlay 1.54.4001.0<br \/>\nMicrosoft.XboxGamingOverlay 7.325.11061.0<br \/>\nMicrosoft.XboxIdentityProvider 12.130.16001.0<br \/>\nMicrosoft.XboxSpeechToTextOverlay 1.97.17002.0<br \/>\nMicrosoft.YourPhone 1.25112.36.0<br \/>\nMicrosoft.ZuneMusic 11.2510.7.0<br \/>\nMicrosoftCorporationII.QuickAssist 2.0.29.0<br \/>\nMicrosoftCorporationII.WinAppRuntime.Main.1.4 4000.1309.2056.0<br \/>\nMicrosoftCorporationII.WinAppRuntime.Singleton 8000.675.1142.0<br \/>\nMicrosoftCorporationII.WindowsSubsystemForLinux 2.6.3.0<br \/>\nMicrosoftTeams 23285.3703.2471.4627<br \/>\nMicrosoftWindows.55182690.Taskbar 1000.26100.4061.0<br \/>\nMicrosoftWindows.Client.CBS 1000.26100.84.0<br \/>\nMicrosoftWindows.Client.Core 1000.26100.39.0<br \/>\nMicrosoftWindows.Client.CoreAI 1000.26100.4061.0<br \/>\nMicrosoftWindows.Client.FileExp 1000.26100.3.0<br \/>\nMicrosoftWindows.Client.OOBE 1000.26100.4.0<br \/>\nMicrosoftWindows.Client.Photon 1000.26100.8.0<br \/>\nMicrosoftWindows.Client.WebExperience 525.31002.150.0<br \/>\nMicrosoftWindows.CrossDevice 1.25112.60.0<br \/>\nMicrosoftWindows.LKG.TwinSxS 1000.26100.4061.0<br \/>\nMicrosoftWindows.UndockedDevKit 10.0.26100.1<br \/>\nMSTeams 24295.605.3225.8804<br \/>\nOffice 16 Click-to-Run Extensibility Component 16.0.19426.20170<br \/>\nOffice 16 Click-to-Run Licensing Component 16.0.14326.20454<br \/>\nOffice 16 Click-to-Run Localization Component 16.0.19426.20170<br \/>\nWindows Subsystem for Linux 2.6.3.0<br \/>\nWindows.CBSPreview 10.0.19580.1000<br \/>\nwindows.immersivecontrolpanel 10.0.8.1000<br \/>\nWindows.PrintDialog 6.2.3.0<\/p>\n<p>&nbsp;<\/p>\n<p>--- Report Generation Complete ---<\/p>\n","protected":false},"excerpt":{"rendered":"<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_10632\" class=\"pvc_stats all  \" data-element-id=\"10632\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/stevepedwards.today\/DebianAdmin\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n<p>I developed this PS script requirements over time with AI to cover useful info about a PC state to aid fault finding - you can paste it straight into the Admin PS terminal: &nbsp; # SCRIPT START: EXECUTE, FORMAT, AND SAVE OUTPUT $ReportPath = \"$env:USERPROFILE\\Desktop\\System_Diagnostic_Report_$(Get-Date -Format 'yyyyMMdd_HHmm').txt\" \"Starting automated diagnostic report creation...\" | Out-File $ReportPath <a href=\"https:\/\/stevepedwards.today\/DebianAdmin\/powershell-it-support-pc-info-script\/\" class=\"more-link\">...<span class=\"screen-reader-text\">\u00a0 Powershell IT Support PC Info Script<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[],"class_list":["post-10632","post","type-post","status-publish","format-standard","hentry","category-post"],"a3_pvc":{"activated":true,"total_views":4,"today_views":0},"_links":{"self":[{"href":"https:\/\/stevepedwards.today\/DebianAdmin\/wp-json\/wp\/v2\/posts\/10632","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/stevepedwards.today\/DebianAdmin\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/stevepedwards.today\/DebianAdmin\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/stevepedwards.today\/DebianAdmin\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/stevepedwards.today\/DebianAdmin\/wp-json\/wp\/v2\/comments?post=10632"}],"version-history":[{"count":6,"href":"https:\/\/stevepedwards.today\/DebianAdmin\/wp-json\/wp\/v2\/posts\/10632\/revisions"}],"predecessor-version":[{"id":11074,"href":"https:\/\/stevepedwards.today\/DebianAdmin\/wp-json\/wp\/v2\/posts\/10632\/revisions\/11074"}],"wp:attachment":[{"href":"https:\/\/stevepedwards.today\/DebianAdmin\/wp-json\/wp\/v2\/media?parent=10632"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/stevepedwards.today\/DebianAdmin\/wp-json\/wp\/v2\/categories?post=10632"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/stevepedwards.today\/DebianAdmin\/wp-json\/wp\/v2\/tags?post=10632"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}