- Windows 2016 IIS not listen on external IP
- Find Windows Server version from command line
- Auto Start Nginx on Windows
- Enable TLS 1.2 on Windows Server 2008 R2
- Downloading a file with PowerShell
- How to install and use rdesktop
- How to uninstall the PowerShell Module?
- Enable Remote Connection in MS SQL Server
- EvlWatcher – fail2ban for windows.
- The best Windows backup software
- How to Reset Windows Password in Linux Rescue
- NTFS The disk contains an unclean file system
- Windows RDP Lockout
To check Windows OS health
dism /online /cleanup-image /checkhealth
If any errors are found, fix them with
dism /online /cleanup-image /restorehealth
check disk errors
chkdsk
Fix disk errors
chkdsk /f
check for system file corruption
sfc /scannow
Compress a file using powershell
Compress-Archive -Path "C:\mppcwin" -DestinationPath "C:\Downloads\mppcwin.zip"
To change hostname of a computer, run as Administrator in PowerShell. If you don’t want to restart, remove -Restart option.
Rename-Computer -NewName "new-host-name-here" -Restart
To stop/start a servce
sc start service_name
sc stop service_name
sc query service_name

Leave a Reply