{"id":4335,"date":"2018-06-21T16:47:34","date_gmt":"2018-06-21T16:47:34","guid":{"rendered":"https:\/\/www.auslogics.com\/en\/articles\/?p=4335"},"modified":"2025-06-17T13:31:08","modified_gmt":"2025-06-17T13:31:08","slug":"enable-case-sensitive-file-and-folder-names","status":"publish","type":"post","link":"https:\/\/www.auslogics.com\/en\/articles\/enable-case-sensitive-file-and-folder-names\/","title":{"rendered":"How to enable case sensitive file and folder names on Windows 10?"},"content":{"rendered":"<p>One of the things that users with Linux and other UNIX-like operating systems can enjoy is the freedom to enable case-sensitive file naming. If you\u2019re a Windows 10 user, you will be delighted to know that the same feature is now available on your OS. Once you enable this feature, your computer\u2019s processes will be able to properly handle case-sensitive folders and files. To put it another way, you can have files named \u2018coffee\u2019 and \u2018Coffee\u2019 in the same folder without any conflict.<\/p>\n<h2>How Case Sensitivity on Windows 10 Files and Folders Work<\/h2>\n<p>Case sensitivity on Windows 10 is an NTFS system feature that can be enabled on a per-directory basis. This means that it wouldn\u2019t apply to your entire file system. That said, you can only add the feature to specific folders for development purposes.<\/p>\n<p>Case sensitivity on Windows 10 was included in the April 2018 Update. Before this feature was added to the system, users could only mount case sensitive folders within the Bash on Windows environment, which is also referred to as the Windows Subsystem for Linux. Such a process worked perfectly within the Linux environment, but it created a conflict with normal Windows applications.<\/p>\n<p>You can use Command Prompt or PowerShell to enable this feature. By default, the folders you create within the Linux environment will automatically be configured to be case sensitive too.<\/p>\n<h2>Steps on Setting a Directory as Case Sensitive<\/h2>\n<p>When setting a directory as case sensitive, you will need Administrator access. This is the only way you can freely run the fsutil.exe command. What you need to do is \u2018write attributes\u2019 permission for the directory you wish to change. Generally, this also means that you have to possess Administrator rights to be able to modify a folder somewhere outside your user folder. For instance, if you\u2019re changing a folder like c:\\project, you would need Administrator privileges. On the other hand, if you\u2019re editing inside your own user folder like c:\\users\\NAME\\project, you wouldn\u2019t need the same access.<\/p>\n<p>Before you proceed with the steps, make sure that no Linux software is currently referencing the directory that you are about to change. It is important not to change the case sensitivity flag on that particular folder. Problems may occur because Linux applications won\u2019t be able to recognize the change.<\/p>\n<p>If you\u2019re ready to set a directory as case sensitive, follow the instructions below:<\/p>\n<ol>\n<li>Right-click the Windows logo on your taskbar.<\/li>\n<li>Select Command Prompt (Admin) or PowerShell (Admin) from the list.<\/li>\n<li>Run the following command:<\/li>\n<\/ol>\n<p>fsutil.exe file setCaseSensitiveInfo C:\\folder enable<\/p>\n<p>Note: replace \u2018C:\\folder\u2019 with the path to the folder you wish to change.<\/p>\n<ol start=\"4\">\n<li>If there is space in the folder path, make sure you use quotation marks to enclose it, like so:<\/li>\n<\/ol>\n<p>fsutil.exe file setCaseSensitiveInfo &#8220;C:\\my folder&#8221; enable<\/p>\n<p>It is worth noting that only the specific folder you change will be affected by the case sensitivity flag. This means that its subfolders would not automatically inherit the feature. To put it another way, if you have a C:\\folder\\things subfolder in C:\\folder, the \u2018things\u2019 subfolder wouldn\u2019t be case sensitive. If you want it to follow the same suit, then you would have to separately run the fsutil.exe command on it.<\/p>\n<h2>Case sensitive folders created by Linux tools<\/h2>\n<p>When you run Linux tools inside the Windows Subsystem for Linux (Bash shell), there will be a case sensitivity flag on every new folder you create. The DrvFs file system in the Linux environment is automatically set to use the case=dir flag. This means that the Linux environment is set to acknowledge every directory\u2019s NTFS flag. If you want to change this option, you can do so in your wsl.conf file.<\/p>\n<p>You wouldn\u2019t need the fsutil.exe command if you create folders from the Linux environment.<\/p>\n<h2>How to Know if a Directory is Case Sensitive<\/h2>\n<p>If you want to know if a directory is case sensitive, you just have to follow the instructions below.<\/p>\n<ol>\n<li>Press Windows Key+S on your keyboard.<\/li>\n<li>Type \u201ccommand prompt\u201d (no quotes).<\/li>\n<li>Right-click Command Prompt in the results, then select Run as Administrator.<\/li>\n<li>Once Command Prompt is up, paste the text below:<\/li>\n<\/ol>\n<p>fsutil.exe file queryCaseSensitiveInfo C:\\folder<img decoding=\"async\" class=\"aligncenter wp-image-4635 size-full\" src=\"https:\/\/www.auslogics.com\/en\/articles\/wp-content\/uploads\/2018\/06\/045.jpg\" alt=\"Check if a directory is case sensitive\" width=\"859\" height=\"674\" srcset=\"https:\/\/www.auslogics.com\/en\/articles\/wp-content\/uploads\/2018\/06\/045.jpg 859w, https:\/\/www.auslogics.com\/en\/articles\/wp-content\/uploads\/2018\/06\/045-560x439.jpg 560w, https:\/\/www.auslogics.com\/en\/articles\/wp-content\/uploads\/2018\/06\/045-300x235.jpg 300w, https:\/\/www.auslogics.com\/en\/articles\/wp-content\/uploads\/2018\/06\/045-768x603.jpg 768w\" sizes=\"(max-width: 859px) 100vw, 859px\" \/><\/p>\n<ol start=\"5\">\n<li>Note: Replace \u2018C:\\folder\u2019 with the name of the folder you want to check.<\/li>\n<li>If the directory is case sensitive, you will see the following message:<\/li>\n<\/ol>\n<p>Case sensitive attribute on directory [path] is enabled.<\/p>\n<ol start=\"7\">\n<li>On the other hand, if the standard Windows case insensitivity is used on the directory, you will see this message:<\/li>\n<\/ol>\n<p>Case sensitive attribute on directory [path] is disabled.<\/p>\n<h2>How to make a directory case insensitive<\/h2>\n<p>If you want to bring back a directory to its case insensitive state, just follow the steps below:<\/p>\n<ol>\n<li>Go to your taskbar and click the Search icon.<\/li>\n<li>Type \u201ccommand prompt\u201d (no quotes).<\/li>\n<li>You will see Command Prompt in the results. Right-click it, then choose Run as Administrator.<\/li>\n<li>In Command Prompt, paste the following text:<\/li>\n<\/ol>\n<p>fsutil.exe file setCaseSensitiveInfo C:\\folder disable<\/p>\n<p>Note: Make sure you replace \u2018C:\\folder\u2019 with the path you wish to modify.<\/p>\n<p>Once you disable case sensitivity in a specific folder that contains files with conflicting names, you will see this message:<\/p>\n<p>Error: The directory is not empty<\/p>\n<p>You would have to rename or remove the conflicting files before you can complete the command.<\/p>\n<p>We would like to advise you installing <a href=\"https:\/\/www.auslogics.com\/en\/software\/anti-malware\/\">Auslogics BoostSpeed<\/a> if you are interested in speeding up your PC. This step will save your time and give you better performance without much efforts.<\/p>\n<p><em>What do you think of case sensitivity on Windows 10 files and folders?<\/em><\/p>\n<p><em>Share your thoughts in the comments below!<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>One of the things that users with Linux and other UNIX-like operating systems can enjoy is the freedom to enable case-sensitive file naming. If you\u2019re a Windows 10 user, you will be delighted to know that the same feature is now available on your OS. Once you enable this feature, your computer\u2019s processes will be [&hellip;]<\/p>\n","protected":false},"author":9,"featured_media":4337,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1111],"tags":[1035,109,619],"class_list":["post-4335","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-archives","tag-linux","tag-pc-performance","tag-windows-tweaks"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to enable case sensitive file and folder names on Windows 10? &#8212; Auslogics Blog<\/title>\n<meta name=\"description\" content=\"Once you enable this feature, your computer\u2019s processes will be able to properly handle case-sensitive folders and files.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.auslogics.com\/en\/articles\/wp-json\/wp\/v2\/posts\/4335\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to enable case sensitive file and folder names on Windows 10?\" \/>\n<meta property=\"og:description\" content=\"Once you enable this feature, your computer\u2019s processes will be able to properly handle case-sensitive folders and files.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.auslogics.com\/en\/articles\/enable-case-sensitive-file-and-folder-names\/\" \/>\n<meta property=\"og:site_name\" content=\"Auslogics Blog | Tips to Diagnose &amp; Resolve Computer Issues\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Auslogics\" \/>\n<meta property=\"article:published_time\" content=\"2018-06-21T16:47:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-17T13:31:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.auslogics.com\/en\/articles\/wp-content\/uploads\/2018\/07\/case-sensitivity.png\" \/>\n\t<meta property=\"og:image:width\" content=\"602\" \/>\n\t<meta property=\"og:image:height\" content=\"380\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Eunice Samson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Eunice Samson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/enable-case-sensitive-file-and-folder-names\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/enable-case-sensitive-file-and-folder-names\\\/\"},\"author\":{\"name\":\"Eunice Samson\",\"@id\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/#\\\/schema\\\/person\\\/8c0dbd4082f5071af21fa654ee992ed2\"},\"headline\":\"How to enable case sensitive file and folder names on Windows 10?\",\"datePublished\":\"2018-06-21T16:47:34+00:00\",\"dateModified\":\"2025-06-17T13:31:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/enable-case-sensitive-file-and-folder-names\\\/\"},\"wordCount\":961,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/enable-case-sensitive-file-and-folder-names\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/case-sensitivity.png\",\"keywords\":[\"Linux\",\"PC Performance\",\"Windows Tweaks\"],\"articleSection\":[\"Archives\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/enable-case-sensitive-file-and-folder-names\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/enable-case-sensitive-file-and-folder-names\\\/\",\"url\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/enable-case-sensitive-file-and-folder-names\\\/\",\"name\":\"How to enable case sensitive file and folder names on Windows 10? &#8212; Auslogics Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/enable-case-sensitive-file-and-folder-names\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/enable-case-sensitive-file-and-folder-names\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/case-sensitivity.png\",\"datePublished\":\"2018-06-21T16:47:34+00:00\",\"dateModified\":\"2025-06-17T13:31:08+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/#\\\/schema\\\/person\\\/8c0dbd4082f5071af21fa654ee992ed2\"},\"description\":\"Once you enable this feature, your computer\u2019s processes will be able to properly handle case-sensitive folders and files.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/enable-case-sensitive-file-and-folder-names\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/enable-case-sensitive-file-and-folder-names\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/enable-case-sensitive-file-and-folder-names\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/case-sensitivity.png\",\"contentUrl\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/case-sensitivity.png\",\"width\":602,\"height\":380,\"caption\":\"How to enable case sensitive file and folder names on Windows 10?\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/enable-case-sensitive-file-and-folder-names\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Tech Wisdom Blog\",\"item\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Archives\",\"item\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/category\\\/archives\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to enable case sensitive file and folder names on Windows 10?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/#website\",\"url\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/\",\"name\":\"Auslogics Blog | Tips to Diagnose &amp; Resolve Computer Issues\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/#\\\/schema\\\/person\\\/8c0dbd4082f5071af21fa654ee992ed2\",\"name\":\"Eunice Samson\",\"description\":\"Meet Eunice Samson, an expert author on the Auslogics blog, diving deep into Windows systems and Microsoft products. With years of experience, Eunice crafts insightful guides and reviews, simplifying complex concepts for readers. Her knack for demystifying tech jargon ensures her articles are approachable yet packed with valuable insights. Dive into Eunice's writings for a friendly journey through the world of tech, where understanding Windows systems and maximizing the benefit you get from Microsoft products becomes a breeze. Whether it's troubleshooting or exploring new software, Eunice's expertise makes tech knowledge accessible to all.\",\"url\":\"https:\\\/\\\/www.auslogics.com\\\/en\\\/articles\\\/author\\\/eunice_samson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to enable case sensitive file and folder names on Windows 10? &#8212; Auslogics Blog","description":"Once you enable this feature, your computer\u2019s processes will be able to properly handle case-sensitive folders and files.","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:\/\/www.auslogics.com\/en\/articles\/wp-json\/wp\/v2\/posts\/4335","og_locale":"en_US","og_type":"article","og_title":"How to enable case sensitive file and folder names on Windows 10?","og_description":"Once you enable this feature, your computer\u2019s processes will be able to properly handle case-sensitive folders and files.","og_url":"https:\/\/www.auslogics.com\/en\/articles\/enable-case-sensitive-file-and-folder-names\/","og_site_name":"Auslogics Blog | Tips to Diagnose &amp; Resolve Computer Issues","article_publisher":"https:\/\/www.facebook.com\/Auslogics","article_published_time":"2018-06-21T16:47:34+00:00","article_modified_time":"2025-06-17T13:31:08+00:00","og_image":[{"width":602,"height":380,"url":"https:\/\/www.auslogics.com\/en\/articles\/wp-content\/uploads\/2018\/07\/case-sensitivity.png","type":"image\/png"}],"author":"Eunice Samson","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Eunice Samson","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.auslogics.com\/en\/articles\/enable-case-sensitive-file-and-folder-names\/#article","isPartOf":{"@id":"https:\/\/www.auslogics.com\/en\/articles\/enable-case-sensitive-file-and-folder-names\/"},"author":{"name":"Eunice Samson","@id":"https:\/\/www.auslogics.com\/en\/articles\/#\/schema\/person\/8c0dbd4082f5071af21fa654ee992ed2"},"headline":"How to enable case sensitive file and folder names on Windows 10?","datePublished":"2018-06-21T16:47:34+00:00","dateModified":"2025-06-17T13:31:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.auslogics.com\/en\/articles\/enable-case-sensitive-file-and-folder-names\/"},"wordCount":961,"commentCount":0,"image":{"@id":"https:\/\/www.auslogics.com\/en\/articles\/enable-case-sensitive-file-and-folder-names\/#primaryimage"},"thumbnailUrl":"https:\/\/www.auslogics.com\/en\/articles\/wp-content\/uploads\/2018\/07\/case-sensitivity.png","keywords":["Linux","PC Performance","Windows Tweaks"],"articleSection":["Archives"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.auslogics.com\/en\/articles\/enable-case-sensitive-file-and-folder-names\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.auslogics.com\/en\/articles\/enable-case-sensitive-file-and-folder-names\/","url":"https:\/\/www.auslogics.com\/en\/articles\/enable-case-sensitive-file-and-folder-names\/","name":"How to enable case sensitive file and folder names on Windows 10? &#8212; Auslogics Blog","isPartOf":{"@id":"https:\/\/www.auslogics.com\/en\/articles\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.auslogics.com\/en\/articles\/enable-case-sensitive-file-and-folder-names\/#primaryimage"},"image":{"@id":"https:\/\/www.auslogics.com\/en\/articles\/enable-case-sensitive-file-and-folder-names\/#primaryimage"},"thumbnailUrl":"https:\/\/www.auslogics.com\/en\/articles\/wp-content\/uploads\/2018\/07\/case-sensitivity.png","datePublished":"2018-06-21T16:47:34+00:00","dateModified":"2025-06-17T13:31:08+00:00","author":{"@id":"https:\/\/www.auslogics.com\/en\/articles\/#\/schema\/person\/8c0dbd4082f5071af21fa654ee992ed2"},"description":"Once you enable this feature, your computer\u2019s processes will be able to properly handle case-sensitive folders and files.","breadcrumb":{"@id":"https:\/\/www.auslogics.com\/en\/articles\/enable-case-sensitive-file-and-folder-names\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.auslogics.com\/en\/articles\/enable-case-sensitive-file-and-folder-names\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.auslogics.com\/en\/articles\/enable-case-sensitive-file-and-folder-names\/#primaryimage","url":"https:\/\/www.auslogics.com\/en\/articles\/wp-content\/uploads\/2018\/07\/case-sensitivity.png","contentUrl":"https:\/\/www.auslogics.com\/en\/articles\/wp-content\/uploads\/2018\/07\/case-sensitivity.png","width":602,"height":380,"caption":"How to enable case sensitive file and folder names on Windows 10?"},{"@type":"BreadcrumbList","@id":"https:\/\/www.auslogics.com\/en\/articles\/enable-case-sensitive-file-and-folder-names\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Tech Wisdom Blog","item":"https:\/\/www.auslogics.com\/en\/articles\/"},{"@type":"ListItem","position":2,"name":"Archives","item":"https:\/\/www.auslogics.com\/en\/articles\/category\/archives\/"},{"@type":"ListItem","position":3,"name":"How to enable case sensitive file and folder names on Windows 10?"}]},{"@type":"WebSite","@id":"https:\/\/www.auslogics.com\/en\/articles\/#website","url":"https:\/\/www.auslogics.com\/en\/articles\/","name":"Auslogics Blog | Tips to Diagnose &amp; Resolve Computer Issues","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.auslogics.com\/en\/articles\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.auslogics.com\/en\/articles\/#\/schema\/person\/8c0dbd4082f5071af21fa654ee992ed2","name":"Eunice Samson","description":"Meet Eunice Samson, an expert author on the Auslogics blog, diving deep into Windows systems and Microsoft products. With years of experience, Eunice crafts insightful guides and reviews, simplifying complex concepts for readers. Her knack for demystifying tech jargon ensures her articles are approachable yet packed with valuable insights. Dive into Eunice's writings for a friendly journey through the world of tech, where understanding Windows systems and maximizing the benefit you get from Microsoft products becomes a breeze. Whether it's troubleshooting or exploring new software, Eunice's expertise makes tech knowledge accessible to all.","url":"https:\/\/www.auslogics.com\/en\/articles\/author\/eunice_samson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.auslogics.com\/en\/articles\/wp-json\/wp\/v2\/posts\/4335","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.auslogics.com\/en\/articles\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.auslogics.com\/en\/articles\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.auslogics.com\/en\/articles\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/www.auslogics.com\/en\/articles\/wp-json\/wp\/v2\/comments?post=4335"}],"version-history":[{"count":4,"href":"https:\/\/www.auslogics.com\/en\/articles\/wp-json\/wp\/v2\/posts\/4335\/revisions"}],"predecessor-version":[{"id":8195,"href":"https:\/\/www.auslogics.com\/en\/articles\/wp-json\/wp\/v2\/posts\/4335\/revisions\/8195"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.auslogics.com\/en\/articles\/wp-json\/wp\/v2\/media\/4337"}],"wp:attachment":[{"href":"https:\/\/www.auslogics.com\/en\/articles\/wp-json\/wp\/v2\/media?parent=4335"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.auslogics.com\/en\/articles\/wp-json\/wp\/v2\/categories?post=4335"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.auslogics.com\/en\/articles\/wp-json\/wp\/v2\/tags?post=4335"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}