Saturday, 21 January 2023

How to use DISM command tool to repair Windows 10 image

 

How to use DISM command tool to repair Windows 10 image

If Windows 10 has missing or corrupted files, this guide will show you how to repair the setup using the DISM and SFC command tools.


On Windows 10, the Deployment Image Servicing and Management is a command-line tool that allows administrators to prepare, modify, and repair system images, including Windows Recovery Environment, Windows Setup, and Windows PE (WinPE). However, you can also use it with the local recovery image to fix system problems.

Typically, when you need to troubleshoot a specific error, figure out why the computer no longer boots correctly, or resolve performance issues, you can use the System File Checker tool to replace missing or corrupted system files using the recovery image. The caveat utilizing this approach is that if one or more Windows 10 files in the local image are damaged, the SFC command won't work. In this scenario, you can use the "install.wim" image with DISM to repair the image and then use the SFC tool to fix the setup without having to reinstall Windows.

In this Windows 10 guide, we will walk you through the steps to use the DISM and SFC tools to bring a computer back to a healthy working state without the need for reinstallation.

Warning: The commands outlined in this guide are non-destructive, but since you will be making system changes, it is still recommended to create a temporary 

PLAY SOUND

How to use DISM to repair image of Windows 10

On Windows 10, the DISM command tool includes three options to repair an image, including "CheckHealth," "ScanHealth," and "RestoreHealth," which you want to use in order. Also, depending on the issue, you can use the "RestoreHealth" option to fix the locally available image using different source files.

DISM command with CheckHealth option

The CheckHealth option with the DISM tool allows you to determine any corruptions inside the local Windows 10 image. However, the option does not perform any repairs.

To check the Windows 10 image for issues with DISM, use these steps:

1.      Open Start.

2.      Search for Command Prompt, right-click the top result, and select the Run as administrator option.

3.      Type the following command to perform a quick check and press Enter:DISM /Online /Cleanup-Image /CheckHealth

Source: Windows Central (Image credit: Source: Windows Central)

Once you complete the steps, the Deployment Image Servicing and Management tool will run and verify any data corruption that may require fixing.

DISM command with ScanHealth option

The ScanHealth option does a more advanced scan to find out whether the image has any problems.

To check image problems with the ScanHealth option, use these steps:

1.      Open Start.

2.      Search for Command Prompt, right-click the top result, and select the Run as administrator option.

3.      Type the following command to perform an advanced DISM scan and press Enter:DISM /Online /Cleanup-Image /ScanHealth

Source: Windows Central (Image credit: Source: Windows Central)

After you complete the steps, the scan may take several minutes to check whether the Windows 10 image needs repairing.

DISM command with RestoreHealth option

If there are problems with the system image, use DISM with the RestoreHealth option to automatically scan and repair common issues.

To repair Windows 10 image problems with the DISM command tool, use these steps:

1.      Open Start.

2.      Search for Command Prompt, right-click the top result, and select the Run as administrator option.

3.      Type the following command to repair the Windows 10 image and press Enter:DISM /Online /Cleanup-Image /RestoreHealthQuick note: If the command appears stuck, this is normal behavior. After a few minutes, the process will complete successfully.

Source: Windows Central (Image credit: Source: Windows Central)

Once you complete the steps, the tool will connect to Windows Update online to download and replace damaged files (as necessary).

Fix problems with DISM using install.wim image

The Deployment Image Servicing and Management command usually doesn't cause issues. However, if the tool finds problems replacing the damaged files or the computer isn't connected to the internet, you will need to provide another image using the Source option. Typically, you can use an "install.wim" or "install.esd" file from another device, bootable install media, or Windows 10 ISO file. You only need to make sure that the files match the version, edition, and language of the version of Windows 10 you are trying to fix.

Download Windows 10 ISO file

If you need to use another file source, it is recommended to use the Media Creation Tool to download a fresh copy of Windows 10.

To download the ISO file of Windows 10, use these steps:

1.      Open this Microsoft support website(opens in new tab).

2.      Click the Download tool now button.

3.      Double-click the MediaCreationToolxxxx.exe file to launch the setup.

4.      Click the Accept button to agree to the terms.

5.      Select the Create installation media (USB flash drive, DVD, or ISO file) for another PC option.

Source: Windows Central (Image credit: Source: Windows Central)

6.                  Click the Next button.

7.                  Click the Next button again.

Source: Windows Central (Image credit: Source: Windows Central)

8.                  Select the ISO file option.

Source: Windows Central (Image credit: Source: Windows Central)

9.                  Click the Next button.

10.              Select the destination to store the Windows 10 ISO file.

11.              Click the Save button.

12.              Click the link to open the file location with File Explorer.

Source: Windows Central (Image credit: Source: Windows Central)

13.              Click the Finish button.

14.              Double-click the Windows.iso file to mount the image.

15.              Under the "This PC" section, confirm the drive letter for the mount point.

Source: Windows Central (Image credit: Source: Windows Central)

After you complete the steps, you can continue with the DISM tool using the "Source" option to repair the local image.

Fix Windows 10 recovery image

To run Deployment Image Servicing and Management tool with an alternate source (install.wim) image, use these steps:

1.      Open Start.

2.      Search for Command Prompt, right-click the top result, and select the Run as administrator option.

3.      Type the following command to repair the Windows 10 image and press Enter:DISM /Online /Cleanup-Image /RestoreHealth /Source:E:\Sources\install.wimIn the command, replace "F" with the ISO mount point drive letter in File Explorer.

Source: Windows Central (Image credit: Source: Windows Central)

4.                  (Optional) Type the following command to limit the use of Windows Update and press Enter:DISM /Online /Cleanup-Image /RestoreHealth /Source:E\Sources\install.wim /LimitAccess

5.                  (Optional) Type the following variant of the previous command to accomplish the same task and press Enter:DISM /Online /Cleanup-Image /RestoreHealth /Source:wim:E:\Sources\install.wim:1 /LimitAccessIn the command, change E:\Sources, for the path to the "install.wim" file.

Once you complete the steps, the command will scan and repair the problems using the "install.wim" file you specified as the alternative source.

Fix problems with DISM using ESD image

If you have an encrypted "install.esd" image, it's possible to use it to repair the damaged files on Windows 10.

To use DISM with an "install.esd" image file as the source to repair Windows 10, use these steps:

1.      Open Start.

2.      Search for Command Prompt, right-click the top result, and select the Run as administrator option.

3.      Type the following command to repair the image with an "install.esd" file and press Enter:DISM /Online /Cleanup-Image /RestoreHealth /Source:C:\ESD\Windows\sources\install.esdIn the command, change C:\ESD\Windows\sources with the path to the location of the ".esd" file (if different).

Source: Windows Central (Image credit: Source: Windows Central)

4.                  (Optional) Type the following command to limit the use of Windows Update and press Enter:DISM /Online /Cleanup-Image /RestoreHealth /Source:C:\ESD\Windows\sources\install.esd /LimitAccess

5.                  (Optional) Type the following variant of the previous command to accomplish the same task and press Enter:DISM /Online /Cleanup-Image /RestoreHealth /Source:esd:C:\ESD\Windows\sources\install.esd:1 /LimitAccess

6.                  (Optional) Type the following command to use an install.esd file located in another drive and press Enter:DISM /Online /Cleanup-Image /RestoreHealth /Source:E:\Sources\install.esdIn the command, replace E:\Sources with the path to the location of the "install.esd" file.

After you complete the steps, the tool will repair the damaged files using the files included in the "install.esd" image.

How to run SFC to repair problems on Windows 10

The above instructions will resolve problems with the system image, not the issues with the Windows 10 installation. After restoring the image to a healthy state, use the System File Checker (SFC) command tool to repair the current setup.

To use the SFC command tool to repair Windows 10 problems, use these steps:

1.      Open Start.

2.      Search for Command Prompt, right-click the top result, and select the Run as administrator option.

3.      Type the following command to repair the installation and press Enter:SFC /scannowQuick tip: If errors are found, you may want to run the command around three times to ensure that everything was fixed correctly.

Source: Windows Central (Image credit: Source: Windows Central)

Once you complete the steps, the System File Checker tool will repair the system files using the local image files, and the log files will be saved on

%windir%/Logs/CBS/CBS.log

and

%windir%\Logs\DISM\dism.log

, which you can view to get more details about the process.

You can use this guide to learn more ways to use the SFC tool to fix problems on Windows 10.

 

Monday, 12 December 2022

All Windows CMD Commands are Bellow 👇

 All CMD Commands are Bellow 👇

1. Accessibility Controls ==> uj access.cpl 2. Accessibility Wizard ==> accwiz 3. Add Hardware Wizard ==> hdwwiz.cpl 4. Add/Remove Programs ==> appwiz.cpl 5. Administrative Tools ==> control admintools 6. Automatic Updates ==> wuaucpl.cpl 7. Bluetooth Transfer Wizard ==> fsquirt 8. Calculator ==> calc 9. Certificate Manager ==> certmgr.msc 10. Character Map ==> charmap 11. Check Disk Utility ==> chkdsk 12. Clipboard Viewer ==> clipbrd 13. Command Prompt info ==> cmd 14. Component Services ==> dcomcnfg 15. Computer Management ==> compmgmt.msc 16. Control Panel ==> control 17. Date and Time Properties ==> timedate.cpl 18. DDE Shares ==> ddeshare 19. Device Manager ==> devmgmt.msc 20. Direct X Troubleshooter ==> dxdiag 21. Disk Cleanup Utility ==> cleanmgr 22. Disk Defragment ==> dfrg.msc 23. Disk Management ==> diskmgmt.msc 24. Disk Partition Manager ==> diskpart 25. Display Properties ==> control desktop 26. Display Properties ==> desk.cpl 27. Dr. Watson System Troubleshooting Utility ==> drwtsn32 28. Driver Verifier Utility ==> verifier 29. Event Viewer ==> eventvwr.msc 30. Files and Settings Transfer Tool ==> migwiz 31. File Signature Verification Tool ==> sigverif 32. Findfast ==> findfast.cpl 33. Firefox ==> firefox 34. Folders Properties ==> control folders 35. Fonts ==> control fonts 36. Fonts Folder ==> fonts 37. Free Cell Card Game ==> freecell 38. Game Controllers ==> joy.cpl 39. Group Policy Editor (for xp professional) ==> gpedit.msc 40. Hearts Card Game ==> mshearts 41. Help and Support ==> helpctr 42. HyperTerminal ==> hypertrm 43. Iexpress Wizard ==> iexpress 44. Indexing Service ==> ciadv.msc 45. Internet Connection Wizard ==> icwconn1 46. Internet Explorer ==> iexplore 47. Internet Properties ==> inetcpl.cpl 48. Keyboard Properties - control keyboard 49. Local Security Settings ==> secpol.msc 50. Local Users and Groups ==> lusrmgr.msc 51. Logs You Out Of Windows ==> logoff 52. Malicious Software Removal Tool ==> mrt 53. Microsoft Chat ==> winchat 54. Microsoft Movie Maker ==> moviemk 55. Microsoft Paint ==> mspaint 56. Microsoft Syncronization Tool ==> mobsync 57. Minesweeper Game ==> winmine 58. Mouse Properties ==> control mouse 59. Mouse Properties ==> main.cpl 60. Netmeeting ==> conf 61. Network Connections ==> control netconnections 62. Network Connections ==> ncpa.cpl 63. Network Setup Wizard ==> netsetup.cpl 64. Notepad ==> notepad 65. Object Packager ==> packager 66. ODBC Data Source Administrator ==> odbccp32.cpl 67. On Screen Keyboard ==> osk 68. Outlook Express ==> msimn 69. Paint ==> pbrush 70. Password Properties ==> password.cpl 71. Performance Monitor ==> perfmon.msc 72. Performance Monitor ==> perfmon 73. Phone and Modem Options ==> telephon.cpl 74. Phone Dialer ==> dialer 75. Pinball Game ==> pinball 76. Power Configuration ==> powercfg.cpl 77. Printers and Faxes ==> control printers 78. Printers Folder ==> printers 79. Regional Settings ==> intl.cpl 80. Registry Editor ==> regedit 81. Registry Editor ==> regedit32 82. Remote Access Phonebook ==> rasphone 83. Remote Desktop ==> mstsc 84. Removable Storage ==> ntmsmgr.msc 85. Removable Storage Operator Requests ==> ntmsoprq.msc 86. Resultant Set of Policy (for xp professional) ==> rsop.msc 87. Scanners and Cameras ==> sticpl.cpl 88. Scheduled Tasks ==> control schedtasks 89. Security Center ==> wscui.cpl 90. Services ==> services.msc 91. Shared Folders ==> fsmgmt.msc 92. Shuts Down Windows ==> shutdown 93. Sounds and Audio ==> mmsys.cpl 94. Spider Solitare Card Game ==> spider 95. SQL Client Configuration ==> cliconfg 96. System Configuration Editor ==> sysedit 97. System Configuration Utility ==> msconfig 98. System Information ==> msinfo32 99. System Properties ==> sysdm.cpl 100. Task Manager ==> taskmgr 101. TCP Tester ==> tcptest 102. Telnet Client ==> telnet 103. User Account Management ==> nusrmgr.cpl 104. Utility Manager ==> utilman 105. Windows Address Book ==> wab

Sunday, 13 November 2022

How To Download PPT From Slideshare For Free | Powerpoint File Download ...





How To Download PPT From Slideshare For Free | Powerpoint File Download | Gateway Solutions Query Solved:- download slideshare,download ppt from slideshare,slideshare download,how to download ppt from slideshare without login,how to download ppt from slideshare,slideshare ppt download,ppt download from slideshare,how to directly download ppt from slideshare,slideshare,how to download ppt from slideshare for free,slideshare ppt download free,how to download slideshare ppt,download,how to free download files from slideshares

Monday, 19 September 2022

Punjab GK | All Govt Jobs Exams | Punjab Police | NHM | PSPCL | Study Ad...


Punjab GK | All Competitive Exams | Punjab Police | PPSC | NHM | PSPCL | Study Adda for Govt Jobs | General Knowledge top 78 most Important Questions | gk In English | Gk quiz questions | Upsc Gk Questions for all competitive exam CGPSC Chandigarh Municipal Corporation Chandigarh University Department of Forest & Wildlife Chandigarh Department of School Education, Punjab Dept of Higher Education DGR Punjab Haryana State Electronics Development Corporation Limited NHM PPSC PSPCL PSSSB PSTCL Punjab Police Punjab Public Service Commission Punjab State Education Board (PSEB) PWRMDC School Education Board Punjab SSA SSB Punjab punjab gk,punjab gk for all competitive exams,punjab adda247,punjab cooperative bank 2022,punjab gk mcq,punjab cooperative bank clerk,punjab cooperative bank exam preparation,punjab state cooperative bank 2022,punjab cooperative bank,punjab cooperative bank preparation,gk for punjab exams,punjab gk gs,gk for competitive exams,punjab,punjab cooperative bank previous year question paper,punjab gk for competitive exams,punjab gk for all competitive exams 2022,punjab gk,punjab adda247,punjab cooperative bank 2022,punjab cooperative bank clerk,punjab gk for all competitive exams,punjab gk mcq,punjab cooperative bank,punjab cooperative bank exam preparation,punjab cooperative bank preparation,punjab state cooperative bank 2022,gk all competitive exams,gk for competitive exams,punjab cooperative bank previous year question paper,punjab gk for competitive exams,punjab gk gs,punjab gk for all competitive exams 2022

Saturday, 3 September 2022

What is Domain Naming System (DNS)


 The Domain Naming System (DNS) is a service that resolves host names to IP addresses. These can be names of computers within an internal network or names of computers on the Internet. Clients send name resolution requests to a DNS server, and the DNS server responds with the IP address. The client computer then uses the returned IP address as the destination IP address for data traffic.



DNS is essential on a Microsoft domain. Active Directory requires DNS to locate servers running specific services, such as domain controllers.

Thursday, 7 July 2022

Selection of good CPUs

 



Selection of good CPUs for 2021



From the processors of the middle price group the following processors can be highlighted:


AMD Ryzen 7 2700 - surely opens the middle among processors both in cost and in the stuffing of the processor itself. It is needed first of all for those who are chasing multithreaded processors. This processor has on board 8 cores and 16 threads.


AMD Ryzen 5 3600 - from a newer generation and already offers higher core performance due to the new architecture. On board there are 6 cores and 12 threads. The processor is interesting first of all to those who play games. The price is higher than the stone disassembled above.


Intel Core i5 10400F - this processor has 6 cores and 12 threads, it is similar in performance to AMD Ryzen 5 3600, but the Intel variant will cost cheaper.


From the budget stones are present: AMD Ryzen 2600AMD Ryzen 1600AFAMD Ryzen 3100 - these processors are now the most relevant from the bottom of the market.