Category | Check Items |
OS Environment | |
| |
| |
| |
| |
| |
System Resource Usage | |
| |
| |
| |
| |
Remote Connection | |
| |
| |
| |
| |
| |
| |
| |
Network Configuration | |
| |
| |
| |
| |

resmon in the powershell window, and press Enter to open the Resource Monitor window.msconfig in the powershell window, and press Enter to open the "System Configuration" window.

msconfig in the powershell window, and press Enter to open the "System Configuration" window.
taskmgr.exe in the powershell window, and press Enter to open the "Task Manager" window.
sysdm.cpl in the powershell window, and press Enter to open the "System Properties" window.Path in "System Variables" to check the environment variables.
Make sure the following 4 environment variables exist, are in the correct order, and are placed at the top. If you have other custom environment variables, put them at the bottom. %SystemRoot%\\system32%SystemRoot%%SystemRoot%\\System32\\Wbem%SYSTEMROOT%\\System32\\WindowsPowerShell\\v1.0\\
resmon in the powershell window, and press Enter to open "Resource Monitor".
sysdm.cpl in the powershell window, and press Enter to open the "System Properties" window.
resmon in the powershell window, and press Enter to open "Resource Monitor".
Get-Service termservice |Start-Service -Verbose

sc.exe queryex termservice

taskkill.exe /f /pid "PID number"
taskkill.exe /f /pid 800
Start-Service TermService

Set-ItemProperty 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Terminal Server\\WinStations\\RDP-Tcp\\' -Name fEnableWinStation -Value "1" -Force

netsh.exe winsock reset

regedit in the powershell window, and press Enter to open "Registry Editor".WinStations file under the path HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Terminal Server\\WinStations.WinStations file, and select Export from the pop-up menu. As shown in the figure below:WinStations.reg in this example.WinStations.reg in the specified location.WinStations of the normal instance, and then import it to the abnormal instance. Double-click the WinStations.reg file to be imported, and click Yes in the pop-up window to import it.
Set-ItemProperty 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Terminal Server\\WinStations\\RDP-Tcp\\' -Name fEnableWinStation -Value "1" -Force

Set-ItemProperty 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Terminal Server\\' -Name "fDenyTSConnections" -Value 0 -Force

Remove-Item -Path 'Cert:\\LocalMachine\\Remote Desktop\\*' -Force -ErrorAction SilentlyContinue
Restart-Service TermService -Force

Remove-WindowsFeature Remote-Desktop-Services

Set-ItemProperty HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Lsa -Name forceguest -Value 0 -Force

wf in the powershell window, and press Enter to open the "Windows Firewall with Advanced Security" window.
netsh int ipv4 set dynamicport tcp start=10000 num=55536
netsh int ipv4 set dynamicport udp start=10000 num=55536
Set-ItemProperty HKLM:\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters\\ -Name TcpTimedWaitDelay -Value 30 -Force

Set-ItemProperty HKLM:\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters\\ -Name TcpTimedWaitDelay -Value 30 -Force

ncpa.cpl in the powershell window, and press Enter to open the "Network Connection" window.
ncpa.cpl in the powershell window, and press Enter to open the "Network Connection" window.
4 Right-click the NIC in the "Network Connection" window, and select Properties from the pop-up menu.
ncpa.cpl in the powershell window, and press Enter to open the "Network Connection" window.
4 Right-click the NIC in the "Network Connection" window, and select Properties from the pop-up menu.
5.Select "Internet Protocol Version 4 (TCP/IPv4)" in the "Ethernet X Properties" pop-up window, and then click Properties.183.60.83.19 and 183.60.82.98 for a private network).route print
route add 169.254.0.0 mask 255.255.128.0 $Gateway -p
$Gateway with your actual gateway address.Feedback