{"id":1745,"date":"2020-04-07T18:00:17","date_gmt":"2020-04-07T22:00:17","guid":{"rendered":"https:\/\/www.online-tech-tips.com\/computer-tips\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/"},"modified":"2024-06-11T00:32:25","modified_gmt":"2024-06-11T04:32:25","slug":"how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders","status":"publish","type":"post","link":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/","title":{"rendered":"How to Change Modified Date of a File"},"content":{"rendered":"\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/415ef360-b86d-4c11-97a6-bdf4b96c556a.png\" alt=\"A clock and calendar icon behind the File Explorer icon\"\/><\/figure>\n\n\n\n<p>Your PC records the date you create, modify, and access all the files on your computer. The date and time information is tagged to your files and can be accessed by anyone. Changing these attributes before sharing a file can help cover your tracks. This article will show you how to change the modified date of a file on your Windows computer.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Change Modified Date of a File?<\/h2>\n\n\n\n<p>There are several ways to change a file&#8217;s attributes in Windows. You can use built-in tools (like <a href=\"https:\/\/helpdeskgeek.com\/free-tools-review\/using-powershell-for-home-users-a-beginners-guide\/\">Windows PowerShell<\/a> and File Explorer) or third-party applications. This tutorial covers instructions on using PowerShell and File Explorer to change a file&#8217;s modified date in Windows. Our YouTube video below explains how to use third-party apps to change the date you modified a file.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Change File Attributes Using Windows PowerShell<\/strong><\/h3>\n\n\n\n<p>Modifying the original date(s) attributed to files using <a href=\"https:\/\/helpdeskgeek.com\/windows-11\/10-easy-powershell-commands-all-windows-users-should-know\/\">Windows PowerShell<\/a> is straightforward. For this tutorial, we used PowerShell to change the last time\/date we edited an Excel document. Here&#8217;s how:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Copy the file&#8217;s location\/directory to your computer&#8217;s clipboard. Right-click the file and select <strong>Copy as path<\/strong>.<\/li>\n<\/ol>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/0d209ff8-9dad-420f-9417-bf81c9c2482e.png\" alt=\"Steps to copy a file's path\"><\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"2\">\n<li>Press <strong>Windows key<\/strong> + <strong>X<\/strong> and select <strong>Terminal (Admin)<\/strong> in the Quick Link menu.<\/li>\n<\/ol>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/f43d9d48-52c0-4661-82e5-8ea3bf3f589c.png\" alt=\"&quot;Terminal (Admin)&quot; highlighted in Windows Quick Link menu\"> Alternatively, type &#8220;powershell&#8221; in the Windows Search bar and select <strong>Run as Administrator<\/strong> in the Windows Powershell menu.<\/p>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/f4009928-c9e2-4d74-bc93-5f6f98f99e09.png\" alt=\"Steps to run Windows PowerShell as an administrator in the Windows Start menu \"><\/p>\n\n\n\n<p><\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"3\">\n<li>Paste the following command in the PowerShell terminal and hit <strong>Enter<\/strong> to change the date of creation:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code><em>(Get-Item \"file_path\").CreationTime=(\"Day Month Year HH:MM:SS\")<\/em><\/code><\/pre>\n\n\n\n<p>Replace <em>file_path<\/em> with the file directory you copied in step #1 and the other attributes (<em>Day<\/em>, <em>Month<\/em>, <em>Year<\/em>, <em>HH<\/em>, <em>MM<\/em>, and <em>SS<\/em>) with your preferred value. HH, MM, and SS stand for hour, minute, and second, respectively. <\/p>\n\n\n\n<p>The resulting command for the sample document we&#8217;re modifying looks like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>(Get-Item \"C:\\Users\\olanr\\OneDrive\\Desktop\\Sample Report.xlsx\").CreationTime=(\"21 May 2024 19:50:46\")<\/em><\/code><\/pre>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/d868f460-e3a0-461a-af50-875aa97da648.png\" alt=\"Steps to change files' Created date and time in PowerShell\"><\/p>\n\n\n\n<p>We successfully changed an Excel document&#8217;s creation date and time from &#8220;Monday, October 20, 2023, 4:35:41 AM&#8221; to &#8220;Tuesday, May 21, 2024, 7:50:46 PM.&#8221;<\/p>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/fecd4203-09d6-4391-9625-fb5d3a1206f7.png\" alt=\"An Excel document with two different &quot;Created&quot; creation time and date  \"><\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"4\">\n<li>Paste the following in the terminal and hit <strong>Enter<\/strong> to change the file&#8217;s modified date:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code><em>(Get-Item \"file_path\").LastWriteTime=(\"Day Month Year HH:MM:SS\")<\/em><\/code><\/pre>\n\n\n\n<p>Again, replace <em>file_path<\/em> with the file path you copied in step #1 and the other attributes (<em>Day<\/em>, <em>Month<\/em>, <em>Year<\/em>, <em>HH<\/em>, <em>MM<\/em>, and SS) with your preferred value. The command should look like the one below:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>(Get-Item \"C:\\Users\\olanr\\OneDrive\\Desktop\\Sample Report.xlsx\").LastWriteTime=(\"26 May 2024 19:50:46\")<\/em><\/code><\/pre>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/ad385e01-0597-46ff-9085-d236a1f703c0.png\" alt=\"how to change date modified of a file in PowerShell\"><\/p>\n\n\n\n<p>That should change the file&#8217;s modification date immediately. Check the file properties to verify.<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"5\">\n<li>To change a file&#8217;s date accessed value, paste the following in PowerShell and hit <strong>Enter<\/strong>:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code><em>(Get-Item \"file_path\").LastAccessTime=(\"Day Month Year HH:MM:SS\")<\/em><\/code><\/pre>\n\n\n\n<p>Replace <em>file_path<\/em> with the file path you copied in step #1 and the other attributes (Day, Month, Year, HH, MM, and SS) with your preferred value. The command should look like the one below:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>(Get-Item \"C:\\Users\\olanr\\OneDrive\\Desktop\\Sample Report.xlsx\").LastAccessTime=(\"30 May 2024 20:25:57\")<\/em><\/code><\/pre>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/6e8d9b2e-0116-4ed9-93a2-7a345b3ea6ae.png\" alt=\"Steps to change a files' accessed date in PowerShell\"><\/p>\n\n\n\n<p>Windows will change the date accessed to the values provided in the command.<\/p>\n\n\n\n<p><strong>Note:<\/strong> These commands permanently change a file&#8217;s &#8220;Created,&#8221; &#8220;Modified,&#8221; and &#8220;Accessed&#8221; dates. However, opening or editing the file updates its modification or accessed date. If you intend to share a file with the new date(s), don&#8217;t open it (in any app) after running these PowerShell commands. Doing so discards your changes and restores the modified attributes to their original dates.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Remove File Attributes Using Windows File Explorer<\/strong><\/h3>\n\n\n\n<p>You can&#8217;t change a file&#8217;s last viewed, edited, or creation date through File Explorer. However, you can use the utility to remove dates (and other personal data) from files you intend to share.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Right-click the file whose attribute you want to remove and select <strong>Properties<\/strong>.<\/li>\n<\/ol>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/f09b1f29-9004-4151-afb7-23f4c1ee72dd.png\" alt=\"&quot;Properties&quot; option highlighted in Windows context menu\"><\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"2\">\n<li>Open the <strong>Details<\/strong> tab and select <strong>Remove Properties and Personal Information<\/strong>.<\/li>\n<\/ol>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/87b42209-b02f-4600-9a66-877720100424.png\" alt=\"Steps to remove a file's modified date\"><\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"3\">\n<li>Choose <strong>Remove the following properties from this file:<\/strong> and select the <strong>Manager<\/strong> checkbox. The option removes the &#8220;Content created,&#8221; &#8220;Date last saved,&#8221; and &#8220;Last printed&#8221; dates from files. Select <strong>OK<\/strong> to proceed.<\/li>\n<\/ol>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/312354e9-4126-406d-802e-ae484f391b4a.png\" alt=\"Steps to remove a file's modified date\"><\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"4\">\n<li>If you want to remove all attributes from the file, choose <strong>Create a copy with all possible properties removed<\/strong> and select <strong>OK<\/strong>.<\/li>\n<\/ol>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/5d32e3f8-acda-4de4-9e91-62cc1ea7c692.png\" alt=\"Steps to remove a file's creation or modified date\">File Explorer will create a new copy of the file (without any personal information) in the same folder as the original file.<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"5\">\n<li>Select <strong>OK<\/strong> on the file properties window to save the changes. <\/li>\n<\/ol>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/3cd60699-4e49-4915-b139-7294d19ec53c.png\" alt=\"Steps to remove modified date from files in Windows\"><\/p>\n\n\n\n<p>You can also remove attributes like author name, comment, etc. The attributes you can remove will vary depending on the file type or format. For image files, you can remove authors, dates, and parameters like copyright, tags, rating, etc.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Use Attribute Changer to Change File Attributes in Windows<\/strong><\/h3>\n\n\n\n<p>Third-party apps expedite changing a file&#8217;s modified date on Windows computers. The Attribute Changer software supports Windows 11, 10, 8, and 7 and is free for personal and commercial use. It can modify the date and time attributed to documents, folders, and multimedia files.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Download the latest <a href=\"https:\/\/www.petges.lu\/download\/\" target=\"_blank\" rel=\"noreferrer noopener\"><u>Attribute Changer<\/u><\/a> version from the developer&#8217;s website.<\/li>\n<\/ol>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/3192d0db-9b6d-4204-89e1-faac5597fb2d.png\" alt=\"Attribute Changer software download page\"><\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"2\">\n<li>Double-click the downloaded setup file and follow the installation instructions. Select the <strong>Install and register shell extension<\/strong> checkbox if it isn&#8217;t checked by default. Installing the extension adds Attribute Changer options to your PC&#8217;s right-click menu.<\/li>\n<\/ol>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/39fd07ba-d363-40d3-8dc6-42d0ac95f1e7.png\" alt=\"Attribute Changer version 11 installation window\"><\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"3\">\n<li>Right-click the file whose attribute you want to edit and select <strong>Show more options<\/strong>.<\/li>\n<\/ol>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/91c3e140-8ba7-4a99-87c0-e7222ba7c912.png\" alt=\"Context menu for an Excel document \"><\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"4\">\n<li>Select <strong>Change Attributes<\/strong>.<\/li>\n<\/ol>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/eb32f46d-41ee-4dd7-96cd-d40dba08b53e.png\" alt=\"&quot;Change Attributes&quot; highlighted in the context menu for an Excel document \"><\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"5\">\n<li>Open the <strong>Properties<\/strong> tab and select the <strong>Modify date and time stamps<\/strong> checkbox. Use the drop-down menus to edit the file&#8217;s creation, access, and modification date to your preference. Then select <strong>Apply<\/strong> and <strong>OK<\/strong> to save the changes.<\/li>\n<\/ol>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/379e3f6a-1fb3-4396-8e77-d23c8f7d7204.png\" alt=\"Steps to change files' created, accessed, and modified date using Attribute Changer\"><\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"6\">\n<li>Select <strong>OK<\/strong> on the confirmation prompt to save the edited dates.<\/li>\n<\/ol>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/794468d9-0a77-405f-a02f-80af6092ec17.png\" alt=\"Attribute Changer process confirmation screen\"><\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"7\">\n<li>The app will switch to the\u00a0&#8220;Reporting&#8221;\u00a0tab and list changes made to the file&#8217;s attributes. Select <strong>OK<\/strong> again to close the tool.<\/li>\n<\/ol>\n\n\n\n<p><img decoding=\"async\" src=\"https:\/\/images.surferseo.art\/7c003635-e18e-4170-aebd-40e4939ed6e8.png\" alt=\"Attribute Changer report screen\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Date Modification Made Easy for Windows Files<\/strong><\/h2>\n\n\n\n<p>Now you know all available options for modifying file attributes in the Windows operating system. You can change a file&#8217;s modification date (and other dates) by running the correct commands in PowerShell. If you need to remove personal information from your files, then File Explorer is your best option. Attribute Changer performs date changes and attribute removal in a few mouse clicks. Download the tool if you frequently edit the dates attributed to your files.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Your PC records the date you create, modify, and access all the files on your computer. The date and time information is tagged to your files and can be accessed [&hellip;]<\/p>\n","protected":false},"author":72,"featured_media":101848,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":true,"ub_ctt_via":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[3],"tags":[5356],"class_list":{"0":"post-1745","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-tech","8":"tag-windows"},"acf":[],"aioseo_notices":[],"featured_image_src":"https:\/\/www.online-tech-tips.com\/wp-content\/uploads\/2020\/04\/mod-date.png","author_info":{"display_name":"Ben Stockton","author_link":"https:\/\/www.online-tech-tips.com\/author\/bstockton\/"},"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.7.5 - aioseo.com -->\n\t\t<meta name=\"description\" content=\"Learn how to manipulate the Modified Date of a File on Windows effortlessly in this comprehensive tutorial.\" \/>\n\t\t<meta name=\"robots\" content=\"max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t\t<link rel=\"canonical\" href=\"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/\" \/>\n\t\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.7.5\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Online Tech Tips - Computer Tips from a Computer Guy\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How to Change Modified Date of a File\" \/>\n\t\t<meta property=\"og:description\" content=\"Learn how to manipulate the Modified Date of a File on Windows effortlessly in this comprehensive tutorial.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.online-tech-tips.com\/wp-content\/uploads\/2020\/04\/mod-date.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.online-tech-tips.com\/wp-content\/uploads\/2020\/04\/mod-date.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"2203\" \/>\n\t\t<meta property=\"og:image:height\" content=\"1245\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-04-07T22:00:17+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-06-11T04:32:25+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/onlinetechtips\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@ott_akic\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to Change Modified Date of a File\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Learn how to manipulate the Modified Date of a File on Windows effortlessly in this comprehensive tutorial.\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@ott_akic\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.online-tech-tips.com\/wp-content\/uploads\/2024\/02\/online.jpg\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\\\/#blogposting\",\"name\":\"How to Change Modified Date of a File\",\"headline\":\"How to Change Modified Date of a File\",\"author\":{\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/author\\\/bstockton\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.online-tech-tips.com\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/mod-date.png\",\"width\":2203,\"height\":1245},\"datePublished\":\"2020-04-07T18:00:17-04:00\",\"dateModified\":\"2024-06-11T00:32:25-04:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\\\/#webpage\"},\"articleSection\":\"Tech, Windows\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.online-tech-tips.com\\\/\",\"nextItem\":\"https:\\\/\\\/www.online-tech-tips.com\\\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\\\/#listItem\"},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\\\/#listItem\",\"position\":2,\"name\":\"How to Change Modified Date of a File\",\"previousItem\":\"https:\\\/\\\/www.online-tech-tips.com\\\/#listItem\"}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/#organization\",\"name\":\"Online Tech Tips\",\"description\":\"Computer Tips from a Computer Guy\",\"url\":\"https:\\\/\\\/www.online-tech-tips.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.online-tech-tips.com\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/Online-Tech-Tips-Correct-Color-1.png\",\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\\\/#organizationLogo\",\"width\":792,\"height\":612},\"image\":{\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/onlinetechtips\",\"https:\\\/\\\/twitter.com\\\/ott_akic\",\"https:\\\/\\\/www.instagram.com\\\/ott_akic\",\"https:\\\/\\\/www.youtube.com\\\/user\\\/onlinetechtips\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/onlinetechtips\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/author\\\/bstockton\\\/#author\",\"url\":\"https:\\\/\\\/www.online-tech-tips.com\\\/author\\\/bstockton\\\/\",\"name\":\"Ben Stockton\",\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/db172d9a2e2f0cbd21aa89fccf5d22a2?s=96&d=mm&r=g\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\\\/#webpage\",\"url\":\"https:\\\/\\\/www.online-tech-tips.com\\\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\\\/\",\"name\":\"How to Change Modified Date of a File\",\"description\":\"Learn how to manipulate the Modified Date of a File on Windows effortlessly in this comprehensive tutorial.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/author\\\/bstockton\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/author\\\/bstockton\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.online-tech-tips.com\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/mod-date.png\",\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\\\/#mainImage\",\"width\":2203,\"height\":1245},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\\\/#mainImage\"},\"datePublished\":\"2020-04-07T18:00:17-04:00\",\"dateModified\":\"2024-06-11T00:32:25-04:00\",\"reviewedBy\":{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/author\\\/solanrewaju\\\/#author\",\"url\":\"https:\\\/\\\/www.online-tech-tips.com\\\/author\\\/solanrewaju\\\/\",\"name\":\"Sodiq Olanrewaju\",\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fcdeecdf8a9e2e3cc29059c28efcefb?s=96&d=mm&r=g\"}}},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/#website\",\"url\":\"https:\\\/\\\/www.online-tech-tips.com\\\/\",\"name\":\"Online Tech Tips\",\"description\":\"Computer Tips from a Computer Guy\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.online-tech-tips.com\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>How to Change Modified Date of a File<\/title>\n\n","aioseo_head_json":{"title":"How to Change Modified Date of a File","description":"Learn how to manipulate the Modified Date of a File on Windows effortlessly in this comprehensive tutorial.","canonical_url":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/","robots":"max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"","webmasterTools":{"miscellaneous":""},"og:locale":"en_US","og:site_name":"Online Tech Tips - Computer Tips from a Computer Guy","og:type":"article","og:title":"How to Change Modified Date of a File","og:description":"Learn how to manipulate the Modified Date of a File on Windows effortlessly in this comprehensive tutorial.","og:url":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/","og:image":"https:\/\/www.online-tech-tips.com\/wp-content\/uploads\/2020\/04\/mod-date.png","og:image:secure_url":"https:\/\/www.online-tech-tips.com\/wp-content\/uploads\/2020\/04\/mod-date.png","og:image:width":2203,"og:image:height":1245,"article:published_time":"2020-04-07T22:00:17+00:00","article:modified_time":"2024-06-11T04:32:25+00:00","article:publisher":"https:\/\/www.facebook.com\/onlinetechtips","twitter:card":"summary_large_image","twitter:site":"@ott_akic","twitter:title":"How to Change Modified Date of a File","twitter:description":"Learn how to manipulate the Modified Date of a File on Windows effortlessly in this comprehensive tutorial.","twitter:creator":"@ott_akic","twitter:image":"https:\/\/www.online-tech-tips.com\/wp-content\/uploads\/2024\/02\/online.jpg","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/#blogposting","name":"How to Change Modified Date of a File","headline":"How to Change Modified Date of a File","author":{"@id":"https:\/\/www.online-tech-tips.com\/author\/bstockton\/#author"},"publisher":{"@id":"https:\/\/www.online-tech-tips.com\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.online-tech-tips.com\/wp-content\/uploads\/2020\/04\/mod-date.png","width":2203,"height":1245},"datePublished":"2020-04-07T18:00:17-04:00","dateModified":"2024-06-11T00:32:25-04:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/#webpage"},"isPartOf":{"@id":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/#webpage"},"articleSection":"Tech, Windows"},{"@type":"BreadcrumbList","@id":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.online-tech-tips.com\/#listItem","position":1,"name":"Home","item":"https:\/\/www.online-tech-tips.com\/","nextItem":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/#listItem"},{"@type":"ListItem","@id":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/#listItem","position":2,"name":"How to Change Modified Date of a File","previousItem":"https:\/\/www.online-tech-tips.com\/#listItem"}]},{"@type":"Organization","@id":"https:\/\/www.online-tech-tips.com\/#organization","name":"Online Tech Tips","description":"Computer Tips from a Computer Guy","url":"https:\/\/www.online-tech-tips.com\/","logo":{"@type":"ImageObject","url":"https:\/\/www.online-tech-tips.com\/wp-content\/uploads\/2024\/02\/Online-Tech-Tips-Correct-Color-1.png","@id":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/#organizationLogo","width":792,"height":612},"image":{"@id":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/onlinetechtips","https:\/\/twitter.com\/ott_akic","https:\/\/www.instagram.com\/ott_akic","https:\/\/www.youtube.com\/user\/onlinetechtips","https:\/\/www.linkedin.com\/company\/onlinetechtips"]},{"@type":"Person","@id":"https:\/\/www.online-tech-tips.com\/author\/bstockton\/#author","url":"https:\/\/www.online-tech-tips.com\/author\/bstockton\/","name":"Ben Stockton","image":{"@type":"ImageObject","url":"https:\/\/secure.gravatar.com\/avatar\/db172d9a2e2f0cbd21aa89fccf5d22a2?s=96&d=mm&r=g"}},{"@type":"WebPage","@id":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/#webpage","url":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/","name":"How to Change Modified Date of a File","description":"Learn how to manipulate the Modified Date of a File on Windows effortlessly in this comprehensive tutorial.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.online-tech-tips.com\/#website"},"breadcrumb":{"@id":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/#breadcrumblist"},"author":{"@id":"https:\/\/www.online-tech-tips.com\/author\/bstockton\/#author"},"creator":{"@id":"https:\/\/www.online-tech-tips.com\/author\/bstockton\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.online-tech-tips.com\/wp-content\/uploads\/2020\/04\/mod-date.png","@id":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/#mainImage","width":2203,"height":1245},"primaryImageOfPage":{"@id":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/#mainImage"},"datePublished":"2020-04-07T18:00:17-04:00","dateModified":"2024-06-11T00:32:25-04:00","reviewedBy":{"@type":"Person","@id":"https:\/\/www.online-tech-tips.com\/author\/solanrewaju\/#author","url":"https:\/\/www.online-tech-tips.com\/author\/solanrewaju\/","name":"Sodiq Olanrewaju","image":{"@type":"ImageObject","url":"https:\/\/secure.gravatar.com\/avatar\/9fcdeecdf8a9e2e3cc29059c28efcefb?s=96&d=mm&r=g"}}},{"@type":"WebSite","@id":"https:\/\/www.online-tech-tips.com\/#website","url":"https:\/\/www.online-tech-tips.com\/","name":"Online Tech Tips","description":"Computer Tips from a Computer Guy","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.online-tech-tips.com\/#organization"}}]}},"aioseo_meta_data":{"post_id":"1745","title":null,"description":"Learn how to manipulate the Modified Date of a File on Windows effortlessly in this comprehensive tutorial.","keywords":null,"keyphrases":{"focus":{"keyphrase":"Modified Date of a File","score":59,"analysis":{"keyphraseInTitle":{"score":9,"maxScore":9,"error":0},"keyphraseInDescription":{"score":9,"maxScore":9,"error":0},"keyphraseLength":{"score":6,"maxScore":9,"error":1,"length":5},"keyphraseInURL":{"score":1,"maxScore":5,"error":1},"keyphraseInIntroduction":{"score":9,"maxScore":9,"error":0},"keyphraseInSubHeadings":{"score":3,"maxScore":9,"error":1},"keyphraseInImageAlt":{"score":3,"maxScore":9,"error":1},"keywordDensity":{"score":0,"type":"low","maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"limit_modified_date":false,"reviewed_by":"83","open_ai":{"title":{"suggestions":[],"usage":0},"description":{"suggestions":["Learn how to manipulate the Modified Date of a File on Windows effortlessly in this comprehensive tutorial.","Discover effective methods to change the Modified Date of a File on your Windows PC with ease.","Uncover step-by-step instructions on altering the Modified Date of a File using Windows PowerShell and File Explorer.","Master the art of modifying a file's attributes, including the Modified Date, through Windows PowerShell.","Explore how third-party applications can simplify the process of changing the Modified Date of a File."],"usage":0}},"created":"2024-02-07 04:04:10","updated":"2024-06-11 04:32:56"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.online-tech-tips.com\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.online-tech-tips.com\/category\/tech\/\" title=\"Tech\">Tech<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\tHow to Change Modified Date of a File\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.online-tech-tips.com"},{"label":"Tech","link":"https:\/\/www.online-tech-tips.com\/category\/tech\/"},{"label":"How to Change Modified Date of a File","link":"https:\/\/www.online-tech-tips.com\/how-to-change-the-last-modified-date-creation-date-and-last-accessed-date-for-files-and-folders\/"}],"_links":{"self":[{"href":"https:\/\/www.online-tech-tips.com\/wp-json\/wp\/v2\/posts\/1745"}],"collection":[{"href":"https:\/\/www.online-tech-tips.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.online-tech-tips.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.online-tech-tips.com\/wp-json\/wp\/v2\/users\/72"}],"replies":[{"embeddable":true,"href":"https:\/\/www.online-tech-tips.com\/wp-json\/wp\/v2\/comments?post=1745"}],"version-history":[{"count":0,"href":"https:\/\/www.online-tech-tips.com\/wp-json\/wp\/v2\/posts\/1745\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.online-tech-tips.com\/wp-json\/wp\/v2\/media\/101848"}],"wp:attachment":[{"href":"https:\/\/www.online-tech-tips.com\/wp-json\/wp\/v2\/media?parent=1745"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.online-tech-tips.com\/wp-json\/wp\/v2\/categories?post=1745"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.online-tech-tips.com\/wp-json\/wp\/v2\/tags?post=1745"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}