{"id":882,"date":"2026-09-11T12:30:24","date_gmt":"2026-09-11T12:30:24","guid":{"rendered":"https:\/\/poznayu.com\/en\/?p=882"},"modified":"2026-09-11T12:30:31","modified_gmt":"2026-09-11T12:30:31","slug":"how-to-change-file-timestamps-in-windows-powershell","status":"publish","type":"post","link":"https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/","title":{"rendered":"How to Change File Timestamps in Windows: PowerShell"},"content":{"rendered":"<div style='text-align:right' class='yasr-auto-insert-visitor'><\/div><p data-start=\"82\" data-end=\"291\" class=\"PDq2pG_selectionAnchorContainer\">In Windows 10 and 11, every file stores system <strong data-start=\"129\" data-end=\"141\">metadata<\/strong>, including <em data-start=\"153\" data-end=\"218\">the creation time, last modification time, and last access time<\/em>, which are automatically updated whenever data operations are performed.<span aria-hidden=\"true\" class=\"PDq2pG_selectionAnchor\"><\/span><\/p>\n<p data-start=\"293\" data-end=\"639\">The need to manually modify these parameters appears during archive migration, document structure recovery, or software testing when standard operating system graphical interfaces do not provide tools for editing these attributes. It can also be useful in situations where you need to remove traces of when certain file operations were performed.<\/p>\n<p data-start=\"641\" data-end=\"960\">The traditional Command Prompt (CMD) does not provide direct control over file timestamps with custom values. Its built-in commands, such as <code data-start=\"782\" data-end=\"788\">copy<\/code>, can only apply the current system time during file replacement and cannot assign a specific custom date or modify creation and access times without third-party utilities.<\/p>\n<p data-start=\"962\" data-end=\"1154\">Unlike CMD, the <strong data-start=\"978\" data-end=\"992\">PowerShell<\/strong> environment has direct access to .NET Framework classes, allowing programmatic interaction with file system properties and precise control over timestamp values.<\/p>\n<p data-start=\"1156\" data-end=\"1345\">To manage file timestamps through PowerShell, use the <code data-start=\"1210\" data-end=\"1226\">System.IO.File<\/code> class. Before running commands, it is recommended to close the file in other applications to avoid access lock errors.<\/p>\n<ul data-start=\"1347\" data-end=\"1443\">\n<li data-section-id=\"wkg64m\" data-start=\"1347\" data-end=\"1443\">The fastest way to open this utility is: press <code data-start=\"1396\" data-end=\"1405\">Win + R<\/code>, type <code data-start=\"1412\" data-end=\"1424\">powershell<\/code>, and press <code data-start=\"1436\" data-end=\"1443\">Enter<\/code><\/li>\n<\/ul>\n<hr data-start=\"1445\" data-end=\"1448\" \/>\n<p data-start=\"1450\" data-end=\"1483\"><strong data-start=\"1450\" data-end=\"1483\">Changing a file creation date<\/strong><\/p>\n<p data-start=\"1485\" data-end=\"1552\">To modify a file\u2019s creation time, use the <code data-start=\"1527\" data-end=\"1544\">SetCreationTime<\/code> method.<\/p>\n<p data-start=\"1554\" data-end=\"1662\">The command requires the full file path and the desired date in a format supported by the <code data-start=\"1644\" data-end=\"1654\">Get-Date<\/code> cmdlet.<\/p>\n<div class=\"hcb_wrap\">\n<pre class=\"prism line-numbers lang-plain\" data-lang=\"Plain Text\"><code>[System.IO.File]::SetCreationTime(\"C:\\path\\to\\file.txt\", (Get-Date \"2026-09-11 14:30:00\"))\r\n\r\nexample:\r\n\r\n[System.IO.File]::SetCreationTime(\"C:\\Users\\Administrator\\Desktop\\File.txt\", (Get-Date \"2026-09-11 14:30:00\"))<\/code><\/pre>\n<\/div>\n<p data-start=\"1554\" data-end=\"1662\"><em data-start=\"1886\" data-end=\"1901\">Verification:<\/em> To confirm that the creation date has changed, right-click the file, select \u201cProperties,\u201d and open the \u201cDetails\u201d tab, or run the following PowerShell command:<\/p>\n<div class=\"hcb_wrap\">\n<pre class=\"prism line-numbers lang-plain\" data-lang=\"Plain Text\"><code>(Get-Item \"C:\\path\\to\\file.txt\").CreationTime<\/code><\/pre>\n<\/div>\n<p data-start=\"2117\" data-end=\"2154\" class=\"PDq2pG_selectionAnchorContainer\"><strong data-start=\"2117\" data-end=\"2154\">Changing a file modification date<\/strong><span aria-hidden=\"true\" class=\"PDq2pG_selectionAnchor\"><\/span><\/p>\n<p data-start=\"2156\" data-end=\"2246\">The modification date indicates when changes were last made to the contents of a document.<\/p>\n<p data-start=\"2248\" data-end=\"2313\">To manually adjust this value, use the <code data-start=\"2287\" data-end=\"2305\">SetLastWriteTime<\/code> method.<\/p>\n<div class=\"hcb_wrap\">\n<pre class=\"prism line-numbers lang-plain\" data-lang=\"Plain Text\"><code>[System.IO.File]::SetLastWriteTime(\"C:\\path\\to\\file.txt\", (Get-Date \"2026-09-11 14:30:00\"))\r\n\r\n\r\nexample:\r\n\r\n[System.IO.File]::SetLastWriteTime(\"C:\\Users\\Administrator\\Desktop\\File.txt\", (Get-Date \"2026-09-11 14:30:00\"))<\/code><\/pre>\n<\/div>\n<p data-start=\"1554\" data-end=\"1662\"><em data-start=\"2540\" data-end=\"2555\">Verification:<\/em> Open the file properties in Windows Explorer under the \u201cGeneral\u201d tab or check the value from the console using:<\/p>\n<div class=\"hcb_wrap\">\n<pre class=\"prism line-numbers lang-plain\" data-lang=\"Plain Text\"><code>(Get-Item \"C:\\path\\to\\file.txt\").LastWriteTime<\/code><\/pre>\n<\/div>\n<p data-start=\"2725\" data-end=\"2756\" class=\"PDq2pG_selectionAnchorContainer\"><strong data-start=\"2725\" data-end=\"2756\">Changing a file access date<\/strong><span aria-hidden=\"true\" class=\"PDq2pG_selectionAnchor\"><\/span><\/p>\n<p data-start=\"2758\" data-end=\"2849\">The last access timestamp records the moment when a file was opened for reading or viewing.<\/p>\n<p data-start=\"2851\" data-end=\"2919\">This parameter can be modified using the <code data-start=\"2892\" data-end=\"2911\">SetLastAccessTime<\/code> method.<\/p>\n<div class=\"hcb_wrap\">\n<pre class=\"prism line-numbers lang-plain\" data-lang=\"Plain Text\"><code>[System.IO.File]::SetLastAccessTime(\"C:\\path\\to\\file.txt\", (Get-Date \"2026-07-20 18:00:00\"))\r\n\r\nexample:\r\n\r\n[System.IO.File]::SetLastAccessTime(\"C:\\Users\\Administrator\\Desktop\\File.txt\", (Get-Date \"2026-07-20 18:00:00\"))<\/code><\/pre>\n<\/div>\n<p data-start=\"1554\" data-end=\"1662\"><em data-start=\"3148\" data-end=\"3163\">Verification:<\/em> The current access date can be checked in PowerShell using:<\/p>\n<div class=\"hcb_wrap\">\n<pre class=\"prism line-numbers lang-plain\" data-lang=\"Plain Text\"><code>(Get-Item \"C:\\path\\to\\file.txt\").LastAccessTime<\/code><\/pre>\n<\/div>\n<h2 data-section-id=\"rn2b0x\" data-start=\"0\" data-end=\"42\"><strong data-start=\"253\" data-end=\"291\">Batch <\/strong>Changing File Metadata in a Folder<\/h2>\n<p data-start=\"44\" data-end=\"251\">To apply a creation date change to all files inside a specific folder, use the <code data-start=\"123\" data-end=\"138\">Get-ChildItem<\/code> cmdlet together with the <code data-start=\"164\" data-end=\"180\">ForEach-Object<\/code> processing loop, which passes each file one by one to the .NET method.<\/p>\n<p data-start=\"253\" data-end=\"291\"><strong data-start=\"253\" data-end=\"291\">Batch changing file creation dates<\/strong><\/p>\n<p data-start=\"293\" data-end=\"410\">Run the following script, replacing the folder path with the actual directory location and setting the required date:<\/p>\n<div class=\"hcb_wrap\">\n<pre class=\"prism line-numbers lang-plain\" data-lang=\"Plain Text\"><code>Get-ChildItem -Path \"C:\\path\\to\\folder\" -File | ForEach-Object {\r\n[System.IO.File]::SetCreationTime($_.FullName, (Get-Date \"2026-05-10 14:30:00\"))\r\n}<\/code><\/pre>\n<\/div>\n<p data-start=\"1554\" data-end=\"1662\">For example:<\/p>\n<div class=\"hcb_wrap\">\n<pre class=\"prism line-numbers lang-plain\" data-lang=\"Plain Text\"><code>Get-ChildItem -Path \"C:\\Users\\Administrator\\Desktop\\New folder (2)\" -File | ForEach-Object {\r\n[System.IO.File]::SetCreationTime($_.FullName, (Get-Date \"2026-05-10 14:30:00\"))\r\n}<\/code><\/pre>\n<\/div>\n<p data-start=\"788\" data-end=\"901\" class=\"PDq2pG_selectionAnchorContainer\">The <code data-start=\"792\" data-end=\"799\">-File<\/code> flag ensures that the command affects only files in the selected directory while skipping subfolders.<span aria-hidden=\"true\" class=\"PDq2pG_selectionAnchor\"><\/span><\/p>\n<p data-start=\"903\" data-end=\"1057\"><em data-start=\"903\" data-end=\"925\">Result verification:<\/em> Display a list of all files in the folder along with their creation dates to confirm that the operation was completed successfully:<\/p>\n<div class=\"hcb_wrap\">\n<pre class=\"prism line-numbers lang-plain\" data-lang=\"Plain Text\"><code>Get-ChildItem -Path \"C:\\path\\to\\folder\" -File | Select-Object Name, CreationTime<\/code><\/pre>\n<\/div>\n<p data-start=\"1159\" data-end=\"1349\" class=\"PDq2pG_selectionAnchorContainer\">To change the creation date simultaneously for <strong data-start=\"1206\" data-end=\"1231\">all files and folders<\/strong> inside a directory, remove the <code data-start=\"1263\" data-end=\"1270\">-File<\/code> filter and use direct property assignment through built-in PowerShell objects.<span aria-hidden=\"true\" class=\"PDq2pG_selectionAnchor\"><\/span><\/p>\n<p data-start=\"1351\" data-end=\"1478\">Unlike the strict .NET methods, PowerShell file system objects provide a universal way to work with both files and directories.<\/p>\n<p data-start=\"1480\" data-end=\"1533\"><strong data-start=\"1480\" data-end=\"1533\">Batch changing timestamps in the current directory<\/strong><\/p>\n<p data-start=\"1535\" data-end=\"1584\">Run the command without limiting the object type:<\/p>\n<div class=\"hcb_wrap\">\n<pre class=\"prism line-numbers lang-plain\" data-lang=\"Plain Text\"><code>Get-ChildItem -Path \"C:\\path\\to\\folder\" | ForEach-Object {\r\n$_.CreationTime = (Get-Date \"2026-05-10 14:30:00\")\r\n}<\/code><\/pre>\n<\/div>\n<p data-start=\"1717\" data-end=\"1752\" class=\"PDq2pG_selectionAnchorContainer\"><strong data-start=\"1717\" data-end=\"1752\">Including all nested subfolders<\/strong><span aria-hidden=\"true\" class=\"PDq2pG_selectionAnchor\"><\/span><\/p>\n<p data-start=\"1754\" data-end=\"1896\">If you need to process the entire folder structure recursively (including all child folders and their contents), add the <code data-start=\"1875\" data-end=\"1885\">-Recurse<\/code> parameter:<\/p>\n<div class=\"hcb_wrap\">\n<pre class=\"prism line-numbers lang-plain\" data-lang=\"Plain Text\"><code>Get-ChildItem -Path \"C:\\path\\to\\folder\" -Recurse | ForEach-Object {\r\n$_.CreationTime = (Get-Date \"2026-05-10 14:30:00\")\r\n}<\/code><\/pre>\n<\/div>\n<div style='text-align:right' class='yasr-auto-insert-visitor'><\/div>","protected":false},"excerpt":{"rendered":"<p>In Windows 10 and 11, every file stores system metadata, including the creation time, last modification time, and last access [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":883,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"yasr_overall_rating":0,"yasr_post_is_review":"","yasr_auto_insert_disabled":"","yasr_review_type":"","footnotes":""},"categories":[132],"tags":[631,629,630,356],"class_list":["post-882","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-high-tech","tag-date","tag-file","tag-folder","tag-windows"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Change File Timestamps in Windows: PowerShell<\/title>\n<meta name=\"description\" content=\"Learn how to change file creation, modification, and access dates in Windows 10 and 11 using PowerShell commands and scripts.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Change File Timestamps in Windows: PowerShell\" \/>\n<meta property=\"og:description\" content=\"Learn how to change file creation, modification, and access dates in Windows 10 and 11 using PowerShell commands and scripts.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/\" \/>\n<meta property=\"og:site_name\" content=\"Discover Something New Every Day!\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-11T12:30:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-11T12:30:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/poznayu.com\/en\/wp-content\/uploads\/2026\/09\/powershell-file-metadata.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"572\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Irina Petrova-Levin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Irina Petrova-Levin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Change File Timestamps in Windows: PowerShell","description":"Learn how to change file creation, modification, and access dates in Windows 10 and 11 using PowerShell commands and scripts.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/","og_locale":"en_US","og_type":"article","og_title":"How to Change File Timestamps in Windows: PowerShell","og_description":"Learn how to change file creation, modification, and access dates in Windows 10 and 11 using PowerShell commands and scripts.","og_url":"https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/","og_site_name":"Discover Something New Every Day!","article_published_time":"2026-09-11T12:30:24+00:00","article_modified_time":"2026-09-11T12:30:31+00:00","og_image":[{"width":1024,"height":572,"url":"https:\/\/poznayu.com\/en\/wp-content\/uploads\/2026\/09\/powershell-file-metadata.jpg","type":"image\/jpeg"}],"author":"Irina Petrova-Levin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Irina Petrova-Levin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/#article","isPartOf":{"@id":"https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/"},"author":{"name":"Irina Petrova-Levin","@id":"https:\/\/poznayu.com\/en\/#\/schema\/person\/163c39d8c8321761270f1ccff380bb1e"},"headline":"How to Change File Timestamps in Windows: PowerShell","datePublished":"2026-09-11T12:30:24+00:00","dateModified":"2026-09-11T12:30:31+00:00","mainEntityOfPage":{"@id":"https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/"},"wordCount":533,"commentCount":0,"image":{"@id":"https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/poznayu.com\/en\/wp-content\/uploads\/2026\/09\/powershell-file-metadata.jpg","keywords":["date","file","folder","Windows"],"articleSection":["High Tech"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/","url":"https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/","name":"How to Change File Timestamps in Windows: PowerShell","isPartOf":{"@id":"https:\/\/poznayu.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/#primaryimage"},"image":{"@id":"https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/poznayu.com\/en\/wp-content\/uploads\/2026\/09\/powershell-file-metadata.jpg","datePublished":"2026-09-11T12:30:24+00:00","dateModified":"2026-09-11T12:30:31+00:00","author":{"@id":"https:\/\/poznayu.com\/en\/#\/schema\/person\/163c39d8c8321761270f1ccff380bb1e"},"description":"Learn how to change file creation, modification, and access dates in Windows 10 and 11 using PowerShell commands and scripts.","breadcrumb":{"@id":"https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/#primaryimage","url":"https:\/\/poznayu.com\/en\/wp-content\/uploads\/2026\/09\/powershell-file-metadata.jpg","contentUrl":"https:\/\/poznayu.com\/en\/wp-content\/uploads\/2026\/09\/powershell-file-metadata.jpg","width":1024,"height":572,"caption":"How to Change File Timestamps in Windows: PowerShell"},{"@type":"BreadcrumbList","@id":"https:\/\/poznayu.com\/en\/how-to-change-file-timestamps-in-windows-powershell\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/poznayu.com\/en\/"},{"@type":"ListItem","position":2,"name":"How to Change File Timestamps in Windows: PowerShell"}]},{"@type":"WebSite","@id":"https:\/\/poznayu.com\/en\/#website","url":"https:\/\/poznayu.com\/en\/","name":"Discover Something New Every Day!","description":"Your informational hub for useful tips, fascinating facts, in-depth reviews, top lists, and mysterious stories. Explore more!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/poznayu.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/poznayu.com\/en\/#\/schema\/person\/163c39d8c8321761270f1ccff380bb1e","name":"Irina Petrova-Levin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d982061a538108c9de15e7c525cce4b442520f11493b2e355401dd232f7ced95?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d982061a538108c9de15e7c525cce4b442520f11493b2e355401dd232f7ced95?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d982061a538108c9de15e7c525cce4b442520f11493b2e355401dd232f7ced95?s=96&d=mm&r=g","caption":"Irina Petrova-Levin"},"description":"I'm Irina Petrova-Levin, a graduate of the Moscow Technical University of Communications and Informatics (MTUCI), where I earned my degree in Information Technology. My professional journey has been deeply rooted in JavaScript, PHP, and Python, driven by a profound fascination with how modern technology shapes our everyday lives. I strive to explain complex processes in a clear and accessible way without ever sacrificing accuracy or missing the core of the matter. Now based in Dallas since 2019, my work reflects a unique synthesis of Eastern European engineering depth and the dynamic American tech mindset. This blend allows me to bridge two distinct technological traditions. My goal is to deconstruct the real mechanisms behind the devices and systems we use daily. In my articles, I aim to deliver information that is not only practical and structured but also reveals the hidden logic of how our world actually works.","sameAs":["https:\/\/poznayu.com\/en\/category\/high-tech\/"],"url":"https:\/\/poznayu.com\/en\/author\/technocrat\/"},false]}},"yasr_visitor_votes":{"stars_attributes":{"read_only":false,"span_bottom":false},"number_of_votes":1,"sum_votes":5},"_links":{"self":[{"href":"https:\/\/poznayu.com\/en\/wp-json\/wp\/v2\/posts\/882","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/poznayu.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/poznayu.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/poznayu.com\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/poznayu.com\/en\/wp-json\/wp\/v2\/comments?post=882"}],"version-history":[{"count":1,"href":"https:\/\/poznayu.com\/en\/wp-json\/wp\/v2\/posts\/882\/revisions"}],"predecessor-version":[{"id":884,"href":"https:\/\/poznayu.com\/en\/wp-json\/wp\/v2\/posts\/882\/revisions\/884"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/poznayu.com\/en\/wp-json\/wp\/v2\/media\/883"}],"wp:attachment":[{"href":"https:\/\/poznayu.com\/en\/wp-json\/wp\/v2\/media?parent=882"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/poznayu.com\/en\/wp-json\/wp\/v2\/categories?post=882"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/poznayu.com\/en\/wp-json\/wp\/v2\/tags?post=882"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}