Guest User

trãbol shuting

a guest
Oct 20th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.32 KB | None | 0 0
  1. If your PC isn't running well, here are some steps to try in order.
  2.  
  3. 1. Performing a DISM (Windows Image) check. This will essentially check the system's image integrity and repair it if any corruption is found. Write these two commands in Command Prompt or Windows Powershell AS AN ADMINISTRATOR (otherwise it will not work) in sequence:
  4.  
  5. DISM /Online /Cleanup-Image /ScanHealth
  6. DISM /Online /Cleanup-Image /RestoreHealth
  7.  
  8. 2. System file check scan. Scans the system's files and also repairs corruption if any is found. Same as above, write the following command in CMD or Powershell as admin:
  9.  
  10. sfc /scannow
  11.  
  12. 3. Disk check. Checks your drives for errors and repairs them if possible. This is also a CMD/Powershell command and requires the use of Admin privileges. Here's how:
  13.  
  14. chkdsk /r /f
  15.  
  16. NOTE; This command defaults to your OS Drive (primary drive, usually C:). If you would like to perform the test on a different drive, simply add the relevant letter+colon and then the other commands.
  17.  
  18. PRACTICAL EXAMPLE: chkdsk E: /r /f
  19.  
  20. NOTE 2 (Very important); If you are not scanning your main drive, a prompt to dismount this volume will appear. DO NOT PRESS Y (Yes) FOR THIS STEP. After pressing no, you will be prompted to run the checking process after rebooting the system. You can now press yes for this step and everything will work as it should. A screenshot example of a successful and correct scheduling of a drive check follows below:
  21.  
  22. https://i.imgur.com/MRwQpDm.png
  23.  
  24. You can also do this by going to the drive's properties and choosing the disk check option, however, it is not as thorough.
  25.  
  26. ============== Game related stuff =================
  27.  
  28. 1. Validating game files. If for whatever reason you are experiencing problems with a specific game on Steam, instead of re-installing it straight away, you can validate the game's files. This will compare your local files to Steam's and if any corruption is found, the relevant files will be reacquired. Here's how:
  29.  
  30. Right-click on the game in the Steam library
  31. Select Properties
  32. Click on the local files tab
  33. Click the Verify integrity of game files button
  34. Allow the validation process to complete
  35.  
  36. 2. Flushing the Steam file cache. This is useful to get rid of old cached data in your Steam client that might be conflicting with apps and/or the well-functioning of the program. Steps:
  37.  
  38. Completely exit the Steam client.
  39. Open the run dialogue by pressing windows key + R
  40. Type steam://flushconfig then press enter. (If asked to allow this website to open a program, please click Allow or OK).
  41. Start Steam once again and accept the prompt explaining it will clear the local cache, etc.
  42.  
  43. 3. Flushing the DNS cache. Gets rid of old data in your DNS resolver and solves simple connectivity issues. Enter CMD or Powershell and type the following:
  44.  
  45. ipconfig /release
  46. ipconfig /renew
  47. ipconfig /flushdns
  48.  
  49. 4. Optimizing drives. Press the windows key and look for "optimize" (or your Windows language equivalent) and you should be greeted with a screen containing all of your drives. This will scan and optimize drives, keeping them in top shape. Click the drive in question to select it, then click "Optimize" and let it do its thing. NOTE; it is not necessary to click "Analyze" as when optimizing a drive, it is obligated to analyze itself first. Example screenshot below:
  50.  
  51. https://i.imgur.com/XkyXMal.png
Add Comment
Please, Sign In to add comment