{"id":10584,"date":"2019-08-03T13:08:16","date_gmt":"2019-08-03T13:08:16","guid":{"rendered":"http:\/\/198.58.113.91\/blog\/?p=10584"},"modified":"2021-05-06T12:29:42","modified_gmt":"2021-05-06T06:59:42","slug":"change-accessed-modified-created-file-date-timestamp-windows","status":"publish","type":"post","link":"https:\/\/www.winhelponline.com\/blog\/change-accessed-modified-created-file-date-timestamp-windows\/","title":{"rendered":"How to Change File Date or Timestamp in Windows"},"content":{"rendered":"<p>Windows maintains three different date\/timestamps for every file and folder. They are &#8220;Date Created,&#8221; &#8220;Date Modified,&#8221; and &#8220;Date Accessed.&#8221; You may have to change the modified, created, or last accessed timestamp of a file or folder in some situations.<\/p>\n<p>For instance, I had to change the timestamp of some files to test the Robocopy sync method when writing an article on <a href=\"https:\/\/www.winhelponline.com\/blog\/compare-two-directories-files-find-differences\/\">folder compare<\/a> and synchronization. Other users may need to change the date or time of a file for backup or archiving purposes.<\/p>\n<p>Let&#8217;s see some methods to change the created date, modified date, or last accessed date of files in this article.<br \/>\n<!--more--><\/p>\n<div id=\"toc\">\n<p><strong>Change File or Folder Timestamp<\/strong><\/p>\n<ul>\n<li><a href=\"#powershell\">Using PowerShell<\/a> (command-line)<\/li>\n<li><a href=\"#nircmd\">Using NirCmd<\/a> (command-line)<\/li>\n<li><a href=\"#bulkfilechanger\">Using BulkFileChanger<\/a> (GUI)<\/li>\n<li><a href=\"#attrchanger\">Using Attribute Changer<\/a> (GUI)<\/li>\n<\/ul>\n<\/div>\n<h2>Change File Creation, Last Accessed or Modified Date<\/h2>\n<h3><a id=\"powershell\"><\/a>Using PowerShell<\/h3>\n<p>To change the file date using PowerShell, here are the commands you need to run:<\/p>\n<p><strong>Change the creation date\/timestamp of a file named log1.txt:<\/strong><\/p>\n<pre>(Get-Item \"D:\\Test\\log1.txt\").CreationTime=(\"3 August 2019 17:00:00\")<\/pre>\n<p><strong>Change the last write date\/timestamp of a file named log1.txt:<\/strong><\/p>\n<pre>(Get-Item \"D:\\Test\\log1.txt\").LastWriteTime=(\"3 August 2019 17:10:00\")<\/pre>\n<p><strong>Change the last accessed date\/timestamp of a file named log1.txt:<\/strong><\/p>\n<pre>(Get-Item \"D:\\Test\\log1.txt\").LastAccessTime=(\"3 August 2019 17:10:00\")<\/pre>\n<p><strong>Change the date\/timestamp of all files in a folder named Test:<\/strong><\/p>\n<p>To change the timestamp of all files in a folder, use the following syntax:<\/p>\n<pre>Get-ChildItem -force d:\\test\\ * | ForEach-Object{$_.CreationTime = (\"3 August 2019 17:00:00\")}\r\nGet-ChildItem -force d:\\test\\ * | ForEach-Object{$_.LastWriteTime = (\"3 August 2019 17:10:00\")}\r\nGet-ChildItem -force d:\\test\\ * | ForEach-Object{$_.LastAccessTime = (\"3 August 2019 17:10:00\")}<\/pre>\n<p>Note that the above command changes the timestamp for every file and subfolder in a folder. To apply the change only for files (i.e., exclude sub-folders), use this syntax:<\/p>\n<pre>Get-ChildItem -force d:\\test\\ * | Where-Object {! $_.PSIsContainer} | ForEach-Object{$_.CreationTime = (\"3 August 2019 17:00:00\")}\r\nGet-ChildItem -force d:\\test\\ * | Where-Object {! $_.PSIsContainer} | ForEach-Object{$_.LastWriteTime = (\"3 August 2019 17:10:00\")}\r\nGet-ChildItem -force d:\\test\\ * | Where-Object {! $_.PSIsContainer} | ForEach-Object{$_.LastAccessTime = (\"3 August 2019 17:10:00\")}<\/pre>\n<p><strong>Change the last write date\/timestamp of a &#8220;Folder&#8221;<\/strong><\/p>\n<pre>(Get-Item \"D:\\Test\\\").LastWriteTime=(\"3 August 2019 17:00:00\")<\/pre>\n<h4>View Created, Modified, and Last accessed date of all files in a folder<\/h4>\n<p>To view the date modified, date created, and date last written data for all files in a folder, use the following command-line syntax:<\/p>\n<pre>Get-ChildItem -force \"D:\\Test\\\"  | Select-Object Name, CreationTime, LastWriteTime, LastAccessTime<\/pre>\n<p>(or)<\/p>\n<pre>foreach ($objFile in Get-ChildItem \"D:\\Test\\*.*\") { '\"' + $objFile.Name + '\" | ' + $objFile.CreationTime + ' | ' + $objFile.LastWriteTime + ' | ' + $objFile.LastAccessTime}<\/pre>\n<p>You&#8217;ll see an output like this:<\/p>\n<pre>\"log1.txt\" | 08\/03\/2019 17:00:00 | 08\/03\/2019 17:10:00 | 08\/03\/2019 17:10:00\r\n\"log2.txt\" | 08\/03\/2019 17:00:00 | 08\/03\/2019 17:10:00 | 08\/03\/2019 17:10:00\r\n\"log3.txt\" | 08\/03\/2019 17:00:00 | 08\/03\/2019 17:10:00 | 08\/03\/2019 17:10:00\r\n\"log4.txt\" | 08\/03\/2019 17:00:00 | 08\/03\/2019 17:10:00 | 08\/03\/2019 17:10:00<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-10585\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/08\/change-file-timestamp-powershell.png\" alt=\"change last modified file date or timestamp using powershell\" width=\"601\" height=\"178\" \/><\/p>\n<hr \/>\n<h3><a id=\"nircmd\"><\/a>Using NirCmd from Nirsoft<\/h3>\n<p>Using <a href=\"https:\/\/www.winhelponline.com\/blog\/tag\/nircmd\/\">NirCmd<\/a>, a multi-purpose command-line tool from Nirsoft.net, you can change the file date and timestamp.<\/p>\n<p>Here is the command-line syntax to change the file timestamp using NirCmd:<\/p>\n<pre>nircmd.exe setfiletime [filename or wildcard] [Created Date] {Modified Date} {Accessed Date}<\/pre>\n<ul>\n<li>The first parameter can be a single filename or wildcard string.<\/li>\n<li>The date parameters must be specified in the following format: &#8220;<code>dd-mm-yyyy hh:mm:ss<\/code>&#8220;.<\/li>\n<li>If a date parameter is not specified or you specify an empty string (&#8220;&#8221;), the date won&#8217;t be changed.<\/li>\n<li>If you specify <code>\"now\"<\/code> as the date parameter, the current date and time will be used.<\/li>\n<\/ul>\n<h4>Examples<\/h4>\n<pre>nircmd.exe setfiletime \"d:\\test\\log1.txt\" \"03\/08\/2019 17:00:00\" \"\" \"03\/08\/2019 17:10:00\"\r\nnircmd.exe setfiletime \"d:\\test\\log2.txt\" now now now\r\nnircmd.exe setfiletime \"d:\\test\\log3.txt\" now \"\" now\r\nnircmd.exe setfiletime \"d:\\test\\log4.txt\" \"03\/08\/2019 17:00:00\" \"03\/08\/2019 17:10:00\" now<\/pre>\n<p>To change the timestamp of all text files in a folder, here&#8217;s the command-line syntax:<\/p>\n<pre>nircmd.exe setfiletime \"d:\\test\\*.txt\" \"03\/08\/2019 17:00:00\" \"03\/08\/2019 17:10:00\" \"03\/08\/2019 17:10:00\"<\/pre>\n<hr \/>\n<h3><a id=\"bulkfilechanger\"><\/a>Using BulkFileChanger from Nirsoft<\/h3>\n<p><a href=\"https:\/\/www.nirsoft.net\/utils\/bulk_file_changer.html\" target=\"_blank\" rel=\"noopener nofollow noreferrer\">BulkFileChanger<\/a> is another useful tool from Nirsoft.net that can modify the created, modified, or accessed time of one or multiple files. It can also change the file attributes (Read-Only, Hidden, System) <em>en masse<\/em>.<\/p>\n<p>Start BulkFileChanger and add the files into it. When adding files to the list, you can choose to add files in sub-folders and set the recursion level accordingly.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-10587\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/08\/bulkfilechanger.png\" alt=\"change last modified file date or timestamp bulkfilechanger\" width=\"626\" height=\"256\" \/><\/p>\n<p>Select all files, and click <strong>Change Time\/Attributes<\/strong> from the <strong>Action<\/strong> menu.<\/p>\n<p>You may want to uncheck the <strong>Time is specified in GMT<\/strong> first, as most of us prefer inputting the local time rather than the GMT.<\/p>\n<p>Input the Created, Modified, or Accessed date\/time. To fill up the current time in all the fields, click on the <strong>Fill Current Time<\/strong> button below.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-10586\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/08\/bulkfilechanger-2.png\" alt=\"change last modified file date or timestamp bulkfilechanger\" width=\"599\" height=\"425\" \/><\/p>\n<p>For images taken from a camera, the EXIF or the metadata field contains the <strong>Date taken<\/strong> field, which is separate from NTFS&#8217;s date modified\/created data. You can view the EXIF data from the JPG file&#8217;s properties or using the <strong>ExifDataView<\/strong> utility from Nirsoft.net.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-10588\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/08\/bulkfilechanger-exif.png\" alt=\"change last modified file date or timestamp bulkfilechanger\" width=\"363\" height=\"509\" \/><\/p>\n<p>That said, BulkFileChanger also allows you to change the <strong>Date Taken<\/strong> timestamp (EXIF metadata). To change the date metadata, click on the <strong>No Change<\/strong> button, and select the appropriate option.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-10589\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/08\/bulkfilechanger-exif-2.png\" alt=\"change last modified file date or timestamp bulkfilechanger\" width=\"599\" height=\"264\" \/><\/p>\n<p>The <strong>EXIF &#8211; Generated Time<\/strong> corresponds to the Date Taken metadata, and this field is displayed under the <strong>Date<\/strong> column of File Explorer. Also, many programs use this value as the official date\/time of the picture.<\/p>\n<p><em>Note that you can change the EXIF date of a camera image only if the date\/time values already exist inside the .jpg files. BulkFileChanger cannot add new fields into the EXIF data.<\/em><\/p>\n<p>And, optionally, you can also copy the timestamp from Modified, Created, Accessed, EXIT &#8211; Generated Time, EXIT &#8211; Stored Time, or the EXIT &#8211; Modified Time and apply the same to other date fields automatically.<\/p>\n<p><strong>Command-line support<\/strong><\/p>\n<p>BulkFileChanger also supports command-line operations so that you don&#8217;t have to open the GUI every time. Check out <a href=\"https:\/\/www.nirsoft.net\/utils\/bulk_file_changer.html\" target=\"_blank\" rel=\"noopener nofollow noreferrer\">BulkFileChanger<\/a> homepage for command-line help\/the list of arguments supported.<\/p>\n<hr \/>\n<h3><a id=\"attrchanger\"><\/a>Attribute Changer<\/h3>\n<p>Attribute Changer is an excellent freeware program that can do the following:<\/p>\n<ul>\n<li>Modify file attributes.<\/li>\n<li>Change file or file extension or folder names to capitalize, lowercase, or uppercase.<\/li>\n<li>Manipulate the date and time of files and folders.<\/li>\n<li>Modify date and time information stored in digital photos. You can add or subtract values and even synchronize with file date and time.<\/li>\n<li>Exclude or include objects based on multiple criteria, such as attributes, date, time, size, and file or folder name wildcards.<\/li>\n<li>A Simulation mode features a preview of all modifications in a detailed reporting window before they get applied. It&#8217;s a safe option with which you can conduct a dry run.<\/li>\n<\/ul>\n<p>You can download Attribute Changer from <code>https:\/\/www.petges.lu\/<\/code><\/p>\n<p>After installing the program, all you need to do is select a file or folder or multiple items and choose the Change Attributes context menu entry.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-23994\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/08\/change-timestamp-attribute-changer-0.png\" alt=\"attributes changer change file timestamp date\" width=\"742\" height=\"301\" \/><\/p>\n<p>Alter the date and timestamps for the selected file(s) and\/or folder(s). If you&#8217;re going to use Advanced (filter) operations, it would be better to run it in Simulation mode first to ensure the outcome is perfect.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-23995\" src=\"https:\/\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/08\/change-timestamp-attribute-changer-1.png\" alt=\"attributes changer change file timestamp date\" width=\"426\" height=\"504\" \/><\/p>\n<p>Attribute Changer also logs and the actions (every file and folder modification) into a tab-delimited text file that can be imported in Excel.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Windows maintains three different date\/timestamps for every file and folder. They are &#8220;Date Created,&#8221; &#8220;Date Modified,&#8221; and &#8220;Date Accessed.&#8221; You may have to change the modified, created, or last accessed timestamp of a file or folder in some situations. For instance, I had to change the timestamp of some files to test the Robocopy sync &#8230; <a title=\"How to Change File Date or Timestamp in Windows\" class=\"read-more\" href=\"https:\/\/www.winhelponline.com\/blog\/change-accessed-modified-created-file-date-timestamp-windows\/\" aria-label=\"Read more about How to Change File Date or Timestamp in Windows\">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":[106,396],"class_list":["post-10584","post","type-post","status-publish","format-standard","hentry","category-utilities","category-windows","tag-command-prompt","tag-powershell"],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":6018,"url":"https:\/\/www.winhelponline.com\/blog\/delete-unused-files-older-than-x-days-windows\/","url_meta":{"origin":10584,"position":0},"title":"How to Delete Files Older than N Days Automatically in Windows","author":"Ramesh","date":"December 11, 2017","format":false,"excerpt":"Windows 10 has built-in features to free up space by deleting old files in the %temp% directory and Downloads folder. Windows 10 Settings has an option (\"Storage\") which automatically clears temporary files your apps are not using, files in the Downloads that haven't been modified in the last x days,\u2026","rel":"","context":"In &quot;Windows&quot;","block_context":{"text":"Windows","link":"https:\/\/www.winhelponline.com\/blog\/category\/microsoft\/windows\/"},"img":{"alt_text":"windows 10 storage settings cleanup options","src":"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2016\/11\/storage-settings-cleanup-options.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2016\/11\/storage-settings-cleanup-options.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2016\/11\/storage-settings-cleanup-options.png?resize=525%2C300&ssl=1 1.5x"},"classes":[]},{"id":735,"url":"https:\/\/www.winhelponline.com\/blog\/search-files-created-between-date-range\/","url_meta":{"origin":10584,"position":1},"title":"How to Search for Files Created Between Two Dates in Windows","author":"Ramesh","date":"October 16, 2008","format":false,"excerpt":"Windows Search's Advanced Query Syntax (AQS) can be used to narrow or pinpoint your searches in Windows. Searches can be narrowed by file type, kind, file property, file extension, date, and other parameters. This post tells you how to use Windows Search to find files created, accessed, or modified within\u2026","rel":"","context":"In &quot;Windows&quot;","block_context":{"text":"Windows","link":"https:\/\/www.winhelponline.com\/blog\/category\/microsoft\/windows\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2008\/10\/date-range-search-aqs2.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2008\/10\/date-range-search-aqs2.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2008\/10\/date-range-search-aqs2.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2008\/10\/date-range-search-aqs2.png?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":75163,"url":"https:\/\/www.winhelponline.com\/blog\/rename-photos-date-taken-prefix\/","url_meta":{"origin":10584,"position":2},"title":"How to Rename Photos to &#8220;Date Taken&#8221;","author":"Ramesh","date":"May 13, 2024","format":false,"excerpt":"When you take a picture using your digital camera or smartphone, metadata is stored inside the photo files. The EXIF or metadata can include information such as the resolution, camera settings, the date the picture was taken, and even the GPS coordinates. Many users want to rename the photo files\u2026","rel":"","context":"In &quot;Utilities&quot;","block_context":{"text":"Utilities","link":"https:\/\/www.winhelponline.com\/blog\/category\/utilities\/"},"img":{"alt_text":"bulk rename utility - rename preview","src":"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2024\/05\/bru-preview-rename-1.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2024\/05\/bru-preview-rename-1.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2024\/05\/bru-preview-rename-1.png?resize=525%2C300&ssl=1 1.5x"},"classes":[]},{"id":3766,"url":"https:\/\/www.winhelponline.com\/blog\/compare-two-directories-files-find-differences\/","url_meta":{"origin":10584,"position":3},"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":1410,"url":"https:\/\/www.winhelponline.com\/blog\/display-additional-info-delete-folder-confirmation-dialog\/","url_meta":{"origin":10584,"position":4},"title":"Delete Confirmation Dialog &#8211; Show Detailed Info About the File or Folder You Delete","author":"Ramesh","date":"January 5, 2016","format":false,"excerpt":"The delete confirmation dialog that appears when you attempt to delete a file or folder displays the file\/folder name and date-created information by default. For files, it also shows the file type and the \"date modified\" info. Windows allows you to customize this dialog such that you can include additional\u2026","rel":"","context":"In &quot;Windows&quot;","block_context":{"text":"Windows","link":"https:\/\/www.winhelponline.com\/blog\/category\/microsoft\/windows\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/w10\/directory-op4.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":8771,"url":"https:\/\/www.winhelponline.com\/blog\/find-and-delete-empty-folders-windows\/","url_meta":{"origin":10584,"position":5},"title":"How to Find and Remove Empty Folders in Windows","author":"Ramesh","date":"April 21, 2019","format":false,"excerpt":"Over time, hundreds of empty folders and junk files may take up your hard disk. While the junk files occupy disk space and can be cleaned up using Disk Cleanup or Storage settings, the empty directories remain. The empty folders don't take up disk space, but to organize your data\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 empty directories using searchmyfiles utility","src":"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/04\/searchmyfiles_find_empty_folders_1.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/04\/searchmyfiles_find_empty_folders_1.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/04\/searchmyfiles_find_empty_folders_1.png?resize=525%2C300&ssl=1 1.5x"},"classes":[]}],"_links":{"self":[{"href":"https:\/\/www.winhelponline.com\/blog\/wp-json\/wp\/v2\/posts\/10584","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=10584"}],"version-history":[{"count":0,"href":"https:\/\/www.winhelponline.com\/blog\/wp-json\/wp\/v2\/posts\/10584\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.winhelponline.com\/blog\/wp-json\/wp\/v2\/media?parent=10584"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.winhelponline.com\/blog\/wp-json\/wp\/v2\/categories?post=10584"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.winhelponline.com\/blog\/wp-json\/wp\/v2\/tags?post=10584"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}