Загрузка данных


PS C:\windows\system32> $Out="C:\OMEN_QUICK_ID.txt"; New-Item -ItemType Directory -Force -Path "C:\OMEN_TMP" | Out-Null; "=== OMEN QUICK ID ===" | Out-File $Out -Encoding UTF8; "Generated: $(Get-Date)" | Out-File $Out -Append -Encoding UTF8; "`n=== COMPUTER SYSTEM ===" | Out-File $Out -Append -Encoding UTF8; Get-CimInstance Win32_ComputerSystem | Select-Object Manufacturer,Model,SystemSKUNumber | Format-List | Out-File $Out -Append -Encoding UTF8; "`n=== CSPRODUCT ===" | Out-File $Out -Append -Encoding UTF8; Get-CimInstance Win32_ComputerSystemProduct | Select-Object Name,Vendor,Version,IdentifyingNumber,UUID | Format-List | Out-File $Out -Append -Encoding UTF8; "`n=== BIOS ===" | Out-File $Out -Append -Encoding UTF8; Get-CimInstance Win32_BIOS | Select-Object Manufacturer,SMBIOSBIOSVersion,SerialNumber,Version | Format-List | Out-File $Out -Append -Encoding UTF8; "`n=== BASEBOARD ===" | Out-File $Out -Append -Encoding UTF8; Get-CimInstance Win32_BaseBoard | Select-Object Manufacturer,Product,Version,SerialNumber | Format-List | Out-File $Out -Append -Encoding UTF8; "`n=== WINDOWS ===" | Out-File $Out -Append -Encoding UTF8; Get-CimInstance Win32_OperatingSystem | Select-Object Caption,Version,BuildNumber,OSArchitecture,InstallDate | Format-List | Out-File $Out -Append -Encoding UTF8; "`n=== GPU ===" | Out-File $Out -Append -Encoding UTF8; Get-CimInstance Win32_VideoController | Select-Object Name,PNPDeviceID,DriverVersion | Format-List | Out-File $Out -Append -Encoding UTF8; "`n=== NETWORK ADAPTERS ===" | Out-File $Out -Append -Encoding UTF8; Get-NetAdapter | Select-Object Name,InterfaceDescription,Status,LinkSpeed,MacAddress | Format-Table -AutoSize | Out-File $Out -Append -Encoding UTF8; "`n=== DISKS ===" | Out-File $Out -Append -Encoding UTF8; Get-Disk | Select-Object Number,FriendlyName,SerialNumber,PartitionStyle,@{Name='SizeGB';Expression={[math]::Round($_.Size/1GB,2)}} | Format-Table -AutoSize | Out-File $Out -Append -Encoding UTF8; "`n=== PARTITIONS ===" | Out-File $Out -Append -Encoding UTF8; Get-Partition | Select-Object DiskNumber,PartitionNumber,DriveLetter,Type,GptType,@{Name='SizeGB';Expression={[math]::Round($_.Size/1GB,2)}} | Format-Table -AutoSize | Out-File $Out -Append -Encoding UTF8; "`n=== HP / OEM / DRIVER SOFTWARE ===" | Out-File $Out -Append -Encoding UTF8; Get-ItemProperty 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*','HKLM:\Software\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*','HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' -ErrorAction SilentlyContinue | Where-Object { $_.DisplayName -match 'HP|OMEN|NVIDIA|Intel|Realtek|MediaTek|AMD|McAfee' } | Select-Object DisplayName,DisplayVersion,Publisher | Sort-Object DisplayName | Format-Table -AutoSize | Out-File $Out -Append -Encoding UTF8; "`n=== DONE ===" | Out-File $Out -Append -Encoding UTF8; Write-Host "Saved to: $Out"; notepad $Out
Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 124
+ ... -Null; "=== OMEN QUICK ID ===" | Out-File $Out -Encoding UTF8; "Gener ...
+                                      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 181
+ ... enerated: $(Get-Date)" | Out-File $Out -Append -Encoding UTF8; "`n=== ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 249
+ ... = COMPUTER SYSTEM ===" | Out-File $Out -Append -Encoding UTF8; Get-Ci ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 391
+ ... KUNumber | Format-List | Out-File $Out -Append -Encoding UTF8; "`n=== ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 453
+ ...  "`n=== CSPRODUCT ===" | Out-File $Out -Append -Encoding UTF8; Get-Ci ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 610
+ ... ber,UUID | Format-List | Out-File $Out -Append -Encoding UTF8; "`n=== ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 667
+ ... UTF8; "`n=== BIOS ===" | Out-File $Out -Append -Encoding UTF8; Get-Ci ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 816
+ ... ,Version | Format-List | Out-File $Out -Append -Encoding UTF8; "`n=== ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 878
+ ...  "`n=== BASEBOARD ===" | Out-File $Out -Append -Encoding UTF8; Get-Ci ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 1022
+ ... alNumber | Format-List | Out-File $Out -Append -Encoding UTF8; "`n=== ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 1082
+ ... 8; "`n=== WINDOWS ===" | Out-File $Out -Append -Encoding UTF8; Get-Ci ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 1245
+ ... tallDate | Format-List | Out-File $Out -Append -Encoding UTF8; "`n=== ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 1301
+ ...  UTF8; "`n=== GPU ===" | Out-File $Out -Append -Encoding UTF8; Get-Ci ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 1440
+ ... rVersion | Format-List | Out-File $Out -Append -Encoding UTF8; "`n=== ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 1509
+ ...  NETWORK ADAPTERS ===" | Out-File $Out -Append -Encoding UTF8; Get-Ne ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 1659
+ ... Format-Table -AutoSize | Out-File $Out -Append -Encoding UTF8; "`n=== ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 1717
+ ... TF8; "`n=== DISKS ===" | Out-File $Out -Append -Encoding UTF8; Get-Di ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 1914
+ ... Format-Table -AutoSize | Out-File $Out -Append -Encoding UTF8; "`n=== ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 1977
+ ... "`n=== PARTITIONS ===" | Out-File $Out -Append -Encoding UTF8; Get-Pa ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 2183
+ ... Format-Table -AutoSize | Out-File $Out -Append -Encoding UTF8; "`n=== ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 2262
+ ... / DRIVER SOFTWARE ===" | Out-File $Out -Append -Encoding UTF8; Get-It ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 2743
+ ... Format-Table -AutoSize | Out-File $Out -Append -Encoding UTF8; "`n=== ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Out-File : 对路径“C:\OMEN_QUICK_ID.txt”的访问被拒绝。
所在位置 行:1 字符: 2800
+ ... UTF8; "`n=== DONE ===" | Out-File $Out -Append -Encoding UTF8; Write- ...
+                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], UnauthorizedAccessException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

Saved to: C:\OMEN_QUICK_ID.txt
PS C:\windows\system32>