{"id":9532,"date":"2019-05-26T15:20:08","date_gmt":"2019-05-26T15:20:08","guid":{"rendered":"http:\/\/198.58.113.91\/blog\/?p=9532"},"modified":"2020-03-23T15:05:23","modified_gmt":"2020-03-23T15:05:23","slug":"how-to-get-file-hash-via-right-click-menu-windows","status":"publish","type":"post","link":"https:\/\/www.winhelponline.com\/blog\/how-to-get-file-hash-via-right-click-menu-windows\/","title":{"rendered":"Get File Hash Checksum (MD5, SHA-256) via Right-click Menu"},"content":{"rendered":"<p>Hashing means taking an input string of any length and giving out an output of a fixed length. Using the cryptographic hashing algorithm &#8212; e.g., MD5, SHA-256, SHA-384, you can verify if two files are identical or not. The checksum is a hash value used for performing data integrity checks on files. It&#8217;s a kind of signature for a file.<\/p>\n<p>When you download large files from the internet such as the Windows 10 ISO images, there are chances that the file gets corrupt or a few bits lost due to inconsistent connection or other factors. Hash verification is the best way to compare the two hashes &#8211; source file on a website or server versus the downloaded copy.<!--more--><\/p>\n<p>Many software vendors put up the hash for file downloads on their site. You might have seen in torrent sites that a hash value usually accompanies the download link.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-9538\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/05\/hash-torrent-link.png\" alt=\"get file hash via the right-click menu\" width=\"680\" height=\"301\" \/><\/p>\n<p>Also, the hash checksum comparison is an excellent way to <a href=\"https:\/\/www.winhelponline.com\/blog\/how-to-find-and-delete-duplicate-files-in-windows\/\">identify duplicate files<\/a> in a computer or <a href=\"https:\/\/www.winhelponline.com\/blog\/compare-two-directories-files-find-differences\/\">compare two folders<\/a>.<\/p>\n<p>In this article, let&#8217;s see how to get the cryptographic hash using MD5, SHA-256, SHA-384 algorithms using various methods, and how to integrate the functionality into the context menu.<\/p>\n<div id=\"toc\">\n<h4>How to get file hash checksum in Windows<\/h4>\n<ol>\n<li><a href=\"#powershell\">Using PowerShell (built-in to Windows)<\/a><\/li>\n<li><a href=\"#certutil\">Using Certutil.exe (built-in to Windows)<\/a><\/li>\n<li><a href=\"#hashmyfiles\">Using HashMyFiles<\/a><\/li>\n<li><a href=\"#using_7zip\">Using 7-Zip<\/a><\/li>\n<li><a href=\"#hashtools\">Using HashTools<\/a><\/li>\n<\/ol>\n<\/div>\n<h2>Get File Hash Checksum via the Right-click Menu in Windows<\/h2>\n<h3><a id=\"powershell\"><\/a>Using PowerShell<\/h3>\n<p>Using Windows PowerShell (<code>powershell.exe<\/code>), you can quickly get the file hash with a single command-line. Here is the command-line example:<\/p>\n<pre>get-filehash -path \"C:\\Users\\ramesh\\Desktop\\reinstall-preinstalledApps.zip\" | format-list<\/pre>\n<p>This outputs the file hash (by default, it uses the SHA256 algorithm) as shown below:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-9534\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/05\/powershell-get-filehash-1.png\" alt=\"get file hash via the right-click menu\" width=\"699\" height=\"173\" \/><\/p>\n<pre>Algorithm : SHA256\r\nHash      : 3A0F056494EB1C0257FCDB59F9F93811962D4F796AD2596EC6FF1CDF8D365470\r\nPath      : C:\\Users\\ramesh\\Desktop\\reinstall-preinstalledApps.zip<\/pre>\n<p>To use any other algorithm &#8212; e.g., SHA384, you can add the <code>-Algorithm SHA384<\/code> parameter to the above command-line.<\/p>\n<p>Example:<\/p>\n<pre>get-filehash -path \"C:\\Users\\ramesh\\Desktop\\reinstall-preinstalledApps.zip\" -Algorithm SHA384 | format-list<\/pre>\n<p>The acceptable values for the <code>-Algorithm<\/code> parameter are:<\/p>\n<ul>\n<li>SHA1<\/li>\n<li>SHA256<\/li>\n<li>SHA384<\/li>\n<li>SHA512<\/li>\n<li>MD5<\/li>\n<\/ul>\n<p><strong>Copy to the clipboard<\/strong><\/p>\n<p>To copy the output to the clipboard, pipe the output to the <a href=\"https:\/\/www.winhelponline.com\/blog\/copy-command-prompt-output-clipboard-save-file\/\"><strong>clip<\/strong><\/a> command, as below:<\/p>\n<pre>get-filehash -path \"C:\\Users\\ramesh\\Desktop\\reinstall-preinstalledApps.zip\" | format-list | clip<\/pre>\n<h4>Integrate the command to the right-click menu<\/h4>\n<p>To add the PowerShell command to the right-click menu for files, here is a .reg file:<\/p>\n<pre>Windows Registry Editor Version 5.00\r\n\r\n[HKEY_CURRENT_USER\\Software\\Classes\\*\\shell\\gethash]\r\n@=\"Get File Hash\"\r\n\r\n[HKEY_CURRENT_USER\\Software\\Classes\\*\\shell\\gethash\\command]\r\n@=\"powershell -WindowStyle Minimized -command get-filehash -literalpath '%1' -algorithm SHA256 | fl | clip\"\r\n<\/pre>\n<ul>\n<li>Copy the above lines to Notepad and make a .reg file. For more information, see the article <a href=\"https:\/\/www.winhelponline.com\/blog\/how-to-use-reg-files-registration-entries-windows\/\">How to create and use .reg files<\/a>.<\/li>\n<li>Double-click the .reg file to apply the contents to the registry.<\/li>\n<li>Now, right-click on a file and click <strong>Get File Hash<\/strong> command in the context menu.<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-9535\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/05\/powershell-get-filehash-2.png\" alt=\"get file hash via the right-click menu\" width=\"438\" height=\"196\" \/><\/li>\n<\/ul>\n<p>The command launches PowerShell, which in turn generates the file hash and copies it to the clipboard automatically.<\/p>\n<p>To <strong>remove<\/strong> the context menu option you added, use this undo .reg file<\/p>\n<pre>Windows Registry Editor Version 5.00\r\n\r\n[-HKEY_CURRENT_USER\\Software\\Classes\\*\\shell\\gethash]<\/pre>\n<hr \/>\n<h3><a id=\"certutil\"><\/a>Using Certutil.exe with VBScript<\/h3>\n<p>Certutil.exe is a built-in command-line program that is installed as part of Certificate Services. You can use Certutil.exe to compute file checksum using various hashing algorithms. The following command-line syntax is to be used to calculate the SHA256 checksum of a file using Certutil.exe from a Command Prompt window.<\/p>\n<pre>certutil.exe -hashfile file_name SHA256<\/pre>\n<p>If you want to implement Certutil.exe in your right-click menu, here is a VBScript that exactly does it.<\/p>\n<ol>\n<li>Copy the following VBScript code to Notepad.<\/li>\n<li>Save the file with .vbs extension &#8211; e.g., <code>get-hash-certutil.vbs<\/code> in a <strong>permanent<\/strong> folder.\n<pre>'Get File hash via the right-click menu\r\n'SHA256 hash for the file is copied to the clipboard automatically\r\n'Created: June 4, 2019 by Ramesh Srinivasan - winhelponline.com\r\n\r\nOption Explicit\r\nDim WshShell, sOut, sFileName, sCmd, oExec, strInput\r\nSet WshShell = WScript.CreateObject(\"WScript.Shell\")\r\n\r\nIf WScript.Arguments.Count = 0 Then\r\n   strInput = InputBox(\"Type ADD to add the Get File Hash context menu item, or REMOVE to remove the item\", \"ADD\")\r\n   If ucase(strInput) = \"ADD\" Then\r\n      sCmd = \"wscript.exe \" &amp; chr(34) &amp; WScript.ScriptFullName &amp; Chr(34) &amp; \" \" &amp; \"\"\"\" &amp; \"%1\" &amp; \"\"\"\"\r\n      WshShell.RegWrite \"HKCU\\Software\\Classes\\*\\shell\\gethash\\\", \"Get File Hash\", \"REG_SZ\"\r\n      WshShell.RegWrite \"HKCU\\Software\\Classes\\*\\shell\\gethash\\command\\\", sCmd, \"REG_SZ\"\r\n      WScript.Quit\r\n   ElseIf ucase(strInput) = \"REMOVE\" Then\r\n      sCmd = \"reg.exe delete HKCU\\Software\\Classes\\*\\shell\\gethash\" &amp; \" \/f\"\r\n      WshShell.Run sCmd, 0\r\n      WScript.Quit\r\n   End If\r\nElse\r\n   sFileName = \"\"\"\" &amp; WScript.Arguments(0) &amp; \"\"\"\"\r\n   sCmd = \"cmd.exe \/c certutil.exe -hashfile \" &amp; sFileName &amp; \" SHA256\" &amp; _\r\n   \" | findstr \/v \" &amp; chr(34) &amp; \"completed successfully\" &amp; Chr(34) &amp; \" | clip\"\r\n   WshShell.Run sCmd, 0\r\nEnd If<\/pre>\n<\/li>\n<li>Double-click the file to run it.<\/li>\n<li>In the input box that appears, type <code>ADD<\/code> and click OK.<\/li>\n<\/ol>\n<p>It adds the <strong>Get File Hash<\/strong> command in the context menu.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-9535\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/05\/powershell-get-filehash-2.png\" alt=\"get file hash via the right-click menu\" width=\"438\" height=\"196\" \/><\/p>\n<p>Clicking on the menu item computes the <code>SHA256<\/code> hash and copies it to the Clipboard automatically.<\/p>\n<p>Open Notepad and paste the file hash stored in the clipboard.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-9619\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/05\/certutil-hash-file.png\" alt=\"get file hash via the right-click menu - certutil\" width=\"700\" height=\"114\" \/><\/p>\n<p><strong>Note:<\/strong> To remove the context menu entry, double-click the file to run it. Then, type <code>REMOVE<\/code> and click OK.<\/p>\n<p>The above script uses the built-in certutil.exe to generate file hash, by running the command and redirecting its <a href=\"https:\/\/www.winhelponline.com\/blog\/copy-command-prompt-output-clipboard-save-file\/\">output to the clipboard<\/a> using <code>Clip.exe<\/code>:<\/p>\n<pre>certutil -hashfile file_name SHA256<\/pre>\n<p>This is how the output will look like when running it from Command Prompt.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-9620\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/05\/certutil-hash-file-output.png\" alt=\"get file hash via the right-click menu - certutil\" width=\"699\" height=\"121\" \/><\/p>\n<p>Certutil.exe supports the <code>MD2<\/code> <code>MD4<\/code> <code>MD5<\/code> <code>SHA1<\/code> <code>SHA256<\/code> <code>SHA384<\/code> <code>SHA512<\/code> hashing algorithms.<\/p>\n<p>Another way to get the file hash via context menu is by using a third-party utility like <strong>HashMyFiles<\/strong>.<\/p>\n<hr \/>\n<h3><a id=\"hashmyfiles\"><\/a>HashMyFiles utility from NirSoft<\/h3>\n<p>HashMyFiles is small utility from Nirsoft that allows you to calculate the MD5 and SHA1 hashes of one or more files in your system. You can easily copy the MD5\/SHA1 hashes list into the clipboard, or save them into text\/HTML\/XML file. HashMyFiles can also be launched from the context menu of Windows Explorer, and display the MD5, SHA256, SHA384, SHA512 hashes of the selected file or folder.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-9537\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/05\/hashmyfiles-1.png\" alt=\"get file hash via the right-click menu - hashmyfiles\" width=\"700\" height=\"198\" \/><\/p>\n<p>From the Options menu, click <strong>Enable Explorer Context Menu<\/strong> option to enable it. It adds the HashMyFiles option to the context menu for files and folders.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-9536\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/05\/hashmyfiles-2.png\" alt=\"get file hash via the right-click menu - hashmyfiles\" width=\"428\" height=\"188\" \/><\/p>\n<p>Download\u00a0<a href=\"https:\/\/www.nirsoft.net\/utils\/hash_my_files.html\" target=\"_blank\" rel=\"noopener noreferrer nofollow\">HashMyFiles<\/a> from Nirsoft.net<\/p>\n<hr \/>\n<h3><a id=\"using_7zip\"><\/a>Using 7-Zip<\/h3>\n<p>The popular compression utility <strong>7-Zip<\/strong> has a feature that can compute the CRC or SHA checksums via the right-click menu. 7-Zip is a widely used software and it&#8217;s most likely that you may have installed it on your computer.<\/p>\n<p>In 7-Zip setup doesn&#8217;t enable the option already, you can turn it on by clicking the Tools menu, clicking Options and enabling the <code>CRC SHA &gt;<\/code> option under the <strong>Context menu items:<\/strong> listing. Click OK to save your setting.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-10486\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/05\/7zip-get-file-hash-crc-sha-0.png\" alt=\"get file hash right-click menu 7-zip\" width=\"406\" height=\"532\" \/><\/p>\n<p>Then, all you need to do is right-click on a file, click CRC SHA and then select a hashing algorithm such as CRC-32, CRC-64, SHA-1, SHA-256 from the sub-menu. To select all of the above hashing algorithms (and <code>BLAKE2<\/code> algorithm in addition), click the asterisk (<strong>*<\/strong>) option.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-10488\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/05\/7zip-get-file-hash-crc-sha-1.png\" alt=\"get file hash right-click menu 7-zip\" width=\"700\" height=\"342\" \/><\/p>\n<p>The checksum information is presented in a separate dialog.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-10487\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/05\/7zip-get-file-hash-crc-sha-2.png\" alt=\"get file hash right-click menu 7-zip\" width=\"499\" height=\"152\" \/><\/p>\n<p>You can select the items and press <kbd>Ctrl<\/kbd> + <kbd>C<\/kbd> on your keyboard to copy it to the clipboard.<\/p>\n<hr \/>\n<h3><a id=\"hashtools\"><\/a>Using HashTools from Binary Fortress<\/h3>\n<p><a href=\"https:\/\/www.binaryfortress.com\/HashTools\/Download\/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\">HashTools<\/a> by Binary Fortress Software computes and checks hashes with just one click! Supports CRC32, MD5, SHA1, SHA256, SHA384, SHA512 and SFV&#8217;s, as well as integration into the Windows Explorer context menu for one-click access.<\/p>\n<p>Install HashTools or run the portable edition or the tool. Click on the Options button shown with the gears icon, and click <strong>Add to Windows Context Menus<\/strong>.<\/p>\n<p>Right-click on a file or a set of files, and click <strong>Hash with HashTools<\/strong> in the context menu.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-9654\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/05\/hashtools-1.png\" alt=\"get file hash via the right-click menu - hashtools\" width=\"397\" height=\"220\" \/><\/p>\n<p>This launches the HashTools program and adds the selected file(s) to the list. Next, click on a hashing algorithm (e.g., CRC, MD5, SHA1, SHA256, etc) to generate the hash checksum for the files.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-9653\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/05\/hashtools-2.png\" alt=\"get file hash via the right-click menu - hashtools\" width=\"747\" height=\"288\" \/><\/p>\n<p><em>Do you know any other tool or method to calculate file hash? Let&#8217;s know in the Comments section below.<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hashing means taking an input string of any length and giving out an output of a fixed length. Using the cryptographic hashing algorithm &#8212; e.g., MD5, SHA-256, SHA-384, you can verify if two files are identical or not. The checksum is a hash value used for performing data integrity checks on files. It&#8217;s a kind &#8230; <a title=\"Get File Hash Checksum (MD5, SHA-256) via Right-click Menu\" class=\"read-more\" href=\"https:\/\/www.winhelponline.com\/blog\/how-to-get-file-hash-via-right-click-menu-windows\/\" aria-label=\"Read more about Get File Hash Checksum (MD5, SHA-256) via Right-click Menu\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[6,7],"tags":[396,441,480],"class_list":["post-9532","post","type-post","status-publish","format-standard","hentry","category-utilities","category-windows","tag-powershell","tag-registry","tag-scripts"],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":9630,"url":"https:\/\/www.winhelponline.com\/blog\/how-to-find-and-delete-duplicate-files-in-windows\/","url_meta":{"origin":9532,"position":0},"title":"How to Find and Delete Duplicate Files in Windows","author":"Ramesh","date":"June 5, 2019","format":false,"excerpt":"Over time, you may accumulate duplicate files or imported photos on your hard disk due to mismanagement or accidental copying to another location. In some situations, the duplicate files or photos may have completely different names than the original. How do you find duplicate files or photos on your hard\u2026","rel":"","context":"In &quot;Utilities&quot;","block_context":{"text":"Utilities","link":"https:\/\/www.winhelponline.com\/blog\/category\/utilities\/"},"img":{"alt_text":"find and delete duplicate files - auslogics","src":"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/06\/find-duplicate-files-auslogics-1.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/06\/find-duplicate-files-auslogics-1.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/06\/find-duplicate-files-auslogics-1.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/06\/find-duplicate-files-auslogics-1.png?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":77409,"url":"https:\/\/www.winhelponline.com\/blog\/24h2-26100-1742-sha256-checksum\/","url_meta":{"origin":9532,"position":1},"title":"Windows 11 24H2 ISO (26100.1742) SHA256 Checksum","author":"Ramesh","date":"December 29, 2024","format":false,"excerpt":"This page lists the SHA256 hashes for the Windows 11 24H2 (Build 26100.1742) ISOs downloaded from Microsoft. The following list was published by Microsoft. Windows 11 24H2 (26100.1742) SHA256 Checksum Hash values for the ISO files for Each Language Country Locale Hash Code Arabic 64-bit 97ED2DF27DEBE5A8E94FB37BE4383EB8516D5C24117793BDA5C1E13568D3F754 Bulgarian 64-bit 1C1BD6E96290521B7E4F814ACA30C2CC4C7FAB1E3076439418673B90954A1FFC Chinese\u2026","rel":"","context":"In &quot;Windows 11&quot;","block_context":{"text":"Windows 11","link":"https:\/\/www.winhelponline.com\/blog\/category\/microsoft\/windows\/windows-11\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":80424,"url":"https:\/\/www.winhelponline.com\/blog\/25h2-26200-6584-sha256-checksum\/","url_meta":{"origin":9532,"position":2},"title":"Windows 11 25H2 ISO (26200.6584) SHA256 Checksum","author":"Ramesh","date":"March 9, 2026","format":false,"excerpt":"This page lists the SHA256 hashes for the Windows 11 25H2 (Build 26200.6584) ISOs downloaded from the Microsoft portal. The following list was published by Microsoft. Windows 11 25H2 ISO (26200.6584) SHA256 Checksum Country Locale Hash Code Arabic 64-bit E29CDB5516DAB968DE81D5A64CF0CDBDAF2F0A016D14D2697DF25F51CDFA0C87 Bulgarian 64-bit 3C613718994FE91BAD0685415F25690F8F16DC2290F46FAC793A170FE63F2162 Chinese Simplified 64-bit 3BA0E9FF816088F054077B94C2229BA290D984975AB5CED420123CD46DCECBD0 Chinese Traditional 64-bit\u2026","rel":"","context":"In &quot;Windows 11&quot;","block_context":{"text":"Windows 11","link":"https:\/\/www.winhelponline.com\/blog\/category\/microsoft\/windows\/windows-11\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":10268,"url":"https:\/\/www.winhelponline.com\/blog\/error-0x8007007e-printing-store-apps\/","url_meta":{"origin":9532,"position":3},"title":"Error 0x8007007e when Printing from Store Apps","author":"Ramesh","date":"July 10, 2019","format":false,"excerpt":"When you try to print a mail from the built-in Mail app or use the print function in any Store app, error 0x8007007e may occur. However, the classic desktop programs print correctly. The problem is restricted to modern or Universal Web Apps (UWP) like Mail, OneNote, etc. Here is the\u2026","rel":"","context":"In &quot;Windows 10&quot;","block_context":{"text":"Windows 10","link":"https:\/\/www.winhelponline.com\/blog\/category\/microsoft\/windows\/windows-10\/"},"img":{"alt_text":"printconfig.dll download from winbindex","src":"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/07\/printconfig-dll-download.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/07\/printconfig-dll-download.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/07\/printconfig-dll-download.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/07\/printconfig-dll-download.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/07\/printconfig-dll-download.png?resize=1050%2C600&ssl=1 3x"},"classes":[]},{"id":3766,"url":"https:\/\/www.winhelponline.com\/blog\/compare-two-directories-files-find-differences\/","url_meta":{"origin":9532,"position":4},"title":"How to Compare the Contents of Two Folders and Synchronize them","author":"Ramesh","date":"August 10, 2016","format":false,"excerpt":"Traditionally, Windows users have employed XCOPY or SyncToy to mirror copy a certain directory to a different location. If you're using Microsoft SyncToy, especially on Windows 10 or 11, it's possible that sometimes the files or folders may be missing in the destination, or the destination folder has extra files\u2026","rel":"","context":"In &quot;Utilities&quot;","block_context":{"text":"Utilities","link":"https:\/\/www.winhelponline.com\/blog\/category\/utilities\/"},"img":{"alt_text":"syncfolders - compare and sync files - task scheduler","src":"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2016\/08\/syncfolders-scheduler.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2016\/08\/syncfolders-scheduler.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2016\/08\/syncfolders-scheduler.png?resize=525%2C300&ssl=1 1.5x"},"classes":[]},{"id":372,"url":"https:\/\/www.winhelponline.com\/blog\/fix-for-richtx32-ocx-component-error-when-running-a-program\/","url_meta":{"origin":9532,"position":5},"title":"Fix for RICHTX32.OCX Component Error when running a Program","author":"Ramesh","date":"July 22, 2008","format":false,"excerpt":"When you run an application built using (classic) Visual Basic 6.0, the following error message may occur, and the program terminates. Component 'RICHTX32.OCX' or one of its dependencies not correctly registered: a file is missing or invalid. (or) Failed to load control 'RichTextBox' from RICHTX32.OCX This happens if the program\u2026","rel":"","context":"In &quot;Windows&quot;","block_context":{"text":"Windows","link":"https:\/\/www.winhelponline.com\/blog\/category\/microsoft\/windows\/"},"img":{"alt_text":"richtx32.ocx error","src":"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2008\/07\/richtx32-ocx-error.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]}],"_links":{"self":[{"href":"https:\/\/www.winhelponline.com\/blog\/wp-json\/wp\/v2\/posts\/9532","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.winhelponline.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.winhelponline.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.winhelponline.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.winhelponline.com\/blog\/wp-json\/wp\/v2\/comments?post=9532"}],"version-history":[{"count":0,"href":"https:\/\/www.winhelponline.com\/blog\/wp-json\/wp\/v2\/posts\/9532\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.winhelponline.com\/blog\/wp-json\/wp\/v2\/media?parent=9532"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.winhelponline.com\/blog\/wp-json\/wp\/v2\/categories?post=9532"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.winhelponline.com\/blog\/wp-json\/wp\/v2\/tags?post=9532"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}