-
Notifications
You must be signed in to change notification settings - Fork 1
/
Report.ps1
131 lines (111 loc) · 4.42 KB
/
Report.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<#
.SYNOPSIS
Create reports on computer status and health
.PARAMETER NoArchive
Do not generate the zip archive. This is useful if you want to generate additional reports after this script.
.PARAMETER OnlyArchive
Only create the archive from existing reports. This is useful if you have generated additional reports after this script.
#>
param(
[switch]$Elevated,
[switch]$NoArchive
)
. "${PSScriptRoot}\Utils.ps1"
Elevate($myinvocation.MyCommand.Definition)
$host.ui.RawUI.WindowTitle = "Mika's reporting script"
# $Downloads = ".\Downloads"
$Reports = ".\Reports"
function Compress-ReportArchive {
Show-Output "Creating the report archive"
$Timestamp = Get-Date -Format "yyyy-MM-dd_HH-mm"
Compress-Archive -Path "${Reports}" -DestinationPath ".\Reports_${Timestamp}.zip" -CompressionLevel Optimal
}
if ($OnlyArchive) {
Compress-ReportArchive
exit
}
# -----
# Initialization
# -----
Show-Output "Running Mika's reporting script"
New-Item -Path "." -Name "Reports" -ItemType "directory" -Force | Out-Null
Show-Output "Removing old reports"
Get-ChildItem "${Reports}/*" -Recurse | Remove-Item
# -----
# Getter commands (in alphabetical order)
# -----
Show-Output "Creating report of installed Windows Store apps."
Get-AppxPackage > "${Reports}\appx_packages.txt"
Show-Output "Checking Windows Experience Index"
Get-CimInstance Win32_WinSat > "${Reports}\windows_experience_index.txt"
Show-Output "Creating report of basic computer info."
Get-ComputerInfo > "${Reports}\computer_info.txt"
Show-Output "Creating report of SSD/HDD SMART data."
Get-Disk | Get-StorageReliabilityCounter | Select-Object -Property "*" > "${Reports}\smart.txt"
Show-Output "Creating report of Plug and Play devices."
Get-PnPDevice > "${Reports}\pnp_devices.txt"
# -----
# External commands (in alphabetical order)
# -----
if (Test-CommandExists "choco") {
Show-Output "Creating report of installed Chocolatey apps."
choco --local > "${Reports}\choco.txt"
} else {
Show-Output "The command `"choco`" was not found."
}
if (Test-CommandExists "dxdiag") {
Show-Output "Creating DirectX reports"
dxdiag /x "${Reports}\dxdiag.xml"
dxdiag /t "${Reports}\dxdiag.txt"
dxdiag /x "${Reports}\dxdiag-whql.xml" /whql:on
dxdiag /t "${Reports}\dxdiag-whql.txt" /whql:on
} else {
Show-Output "The command `"dxdiag`" was not found."
}
if (Test-CommandExists "gpresult") {
Show-Output "Creating report of group policies."
gpresult /h "${Reports}\gpresult.html" /f
} else {
Show-Output "The command `"gpresult`" was not found."
}
if (Test-CommandExists "netsh") {
Show-Output "Creating WiFi report"
netsh wlan show wlanreport
Copy-Item "C:\ProgramData\Microsoft\Windows\WlanReport\wlan_report_latest.html" "${Reports}"
}
if (Test-CommandExists "powercfg") {
Show-Output "Creating battery report"
powercfg /batteryreport /output "${Reports}\powercfg_battery.html"
powercfg /devicequery wake_armed > "${Reports}\powercfg_devicequery_wake_armed.txt"
powercfg /energy /output "${Reports}\powercfg_energy.html"
powercfg /sleepstudy /output "${Reports}\powercfg_sleepstudy.html"
powercfg /srumutil /output "${Reports}\powercfg_srumutil.csv" /csv
powercfg /systempowerreport /output "${Reports}\powercfg_systempowerreport.html"
powercfg /waketimers > "${Reports}\powercfg_waketimers.txt"
} else {
Show-Output "The command `"powercfg`" was not found."
}
# -----
# Complex external programs
# -----
$PTS = "${Env:SystemDrive}\phoronix-test-suite\phoronix-test-suite.bat"
if (Test-Path $PTS) {
Show-Output "Creating Phoronix Test Suite (PTS) reports"
& "$PTS" diagnostics > "${Reports}\pts_diagnostics.txt"
& "$PTS" system-info > "${Reports}\pts_system_info.txt"
& "$PTS" system-properties > "${Reports}\pts_system_properties.txt"
& "$PTS" system-sensors > "${Reports}\pts_system_sensors.txt"
& "$PTS" network-info > "${Reports}\pts_network_info.txt"
} else {
Show-Output "Phoronix Test Suite (PTS) was not found."
}
# -----
# Packaging
# -----
if (-not $NoArchive) {
Compress-ReportArchive
Show-Output "The reporting script is ready." -ForegroundColor Green
Show-Output 'The reports can be found in the "reports" subfolder, and in the corresponding zip file.' -ForegroundColor Green
Show-Output "If Mika requested you to run this script, please send the reports.zip file to him." -ForegroundColor Green
Show-Output "You can close this window now." -ForegroundColor Green
}