Windows includes a number of troubleshooting packs. These are tools that you can use to diagnose and resolve common errors.
Using troubleshooting packs
Getting ready
You run this recipe on SRV1, a domain joined server in the Reskit.Org domain.
How to do it...
In this recipe, you see how to use the troubleshooting packs:
- Get troubleshooting packs:
$TSPackfolders = Get-ChildItem `
-Path C:\Windows\diagnostics\system -Directory
$TSPacks = Foreach ($TSPack in $TSPackfolders) {
Get-TroubleshootingPack -Path $TSPack.FullName...