<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Rakesh Randeria</title>
    <description>The latest articles on DEV Community by Rakesh Randeria (@rakeshranderia).</description>
    <link>https://dev.to/rakeshranderia</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4110382%2Fe5a6be54-eb61-4b80-a524-84349cea8d48.png</url>
      <title>DEV Community: Rakesh Randeria</title>
      <link>https://dev.to/rakeshranderia</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rakeshranderia"/>
    <language>en</language>
    <item>
      <title>Making Windows 11 Feel a Little More Familiar with PowerShell</title>
      <dc:creator>Rakesh Randeria</dc:creator>
      <pubDate>Sun, 06 Sep 2026 21:26:33 +0000</pubDate>
      <link>https://dev.to/rakeshranderia/making-windows-11-feel-a-little-more-familiar-with-powershell-190h</link>
      <guid>https://dev.to/rakeshranderia/making-windows-11-feel-a-little-more-familiar-with-powershell-190h</guid>
      <description>&lt;p&gt;Change is good, but sometimes a little familiarity is good too.&lt;/p&gt;

&lt;p&gt;Windows 11 introduces a cleaner interface and a number of useful changes, but some long-time Windows users still prefer a few parts of the Windows 10 experience.&lt;/p&gt;

&lt;p&gt;Rather than replacing the Windows shell or using a large “debloat” script, I wanted to see how far I could get with a small, conservative PowerShell toolkit focused on three things:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;restore classic Notepad&lt;/li&gt;
&lt;li&gt;show existing notification-area icons&lt;/li&gt;
&lt;li&gt;make Start cleaner and more familiar&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The result is a small project called &lt;strong&gt;Win11 Classic Experience&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Restoring classic Notepad
&lt;/h2&gt;

&lt;p&gt;The first objective was simple: keep the lightweight classic Notepad experience.&lt;/p&gt;

&lt;p&gt;The script:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;verifies that the classic Windows Notepad capability is installed&lt;/li&gt;
&lt;li&gt;installs it if required&lt;/li&gt;
&lt;li&gt;removes the modern &lt;code&gt;Microsoft.WindowsNotepad&lt;/code&gt; package&lt;/li&gt;
&lt;li&gt;removes the provisioned package where present&lt;/li&gt;
&lt;li&gt;suppresses the classic Notepad upgrade banner&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There is also a safety gate: the modern package is not removed unless classic Notepad is confirmed as installed first.&lt;/p&gt;

&lt;p&gt;One thing I deliberately avoided was creating a watchdog or scheduled task that constantly fights Windows servicing. If a future Windows update reintroduces the modern app, the script can simply be rerun.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Showing existing tray icons
&lt;/h2&gt;

&lt;p&gt;Windows 11 tends to place many notification icons into the overflow area.&lt;/p&gt;

&lt;p&gt;The approach here is straightforward:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight powershell"&gt;&lt;code&gt;&lt;span class="nv"&gt;$RegistryPath&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s1"&gt;'HKCU:\Control Panel\NotifyIconSettings'&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="nv"&gt;$Name&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s1"&gt;'IsPromoted'&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="nv"&gt;$Value&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s1"&gt;'1'&lt;/span&gt;&lt;span class="w"&gt;

&lt;/span&gt;&lt;span class="n"&gt;Get-ChildItem&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;-Path&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;$RegistryPath&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;-Recurse&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;|&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;ForEach-Object&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="n"&gt;New-ItemProperty&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="se"&gt;`
&lt;/span&gt;&lt;span class="w"&gt;        &lt;/span&gt;&lt;span class="nt"&gt;-Path&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="bp"&gt;$_&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;PSPath&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="se"&gt;`
&lt;/span&gt;&lt;span class="w"&gt;        &lt;/span&gt;&lt;span class="nt"&gt;-Name&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;$Name&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="se"&gt;`
&lt;/span&gt;&lt;span class="w"&gt;        &lt;/span&gt;&lt;span class="nt"&gt;-Value&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;$Value&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="se"&gt;`
&lt;/span&gt;&lt;span class="w"&gt;        &lt;/span&gt;&lt;span class="nt"&gt;-PropertyType&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;DWORD&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="se"&gt;`
&lt;/span&gt;&lt;span class="w"&gt;        &lt;/span&gt;&lt;span class="nt"&gt;-Force&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This promotes the notification icons already known to the current Windows profile.&lt;/p&gt;

&lt;p&gt;The important limitation is that new applications may create new tray entries later, so the feature may need to be rerun after additional applications are installed.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Making Start a little more familiar
&lt;/h2&gt;

&lt;p&gt;Windows 11 cannot genuinely be turned back into the Windows 10 Start menu without replacing or extending the shell.&lt;/p&gt;

&lt;p&gt;That was outside the scope of this project.&lt;/p&gt;

&lt;p&gt;Instead, I used native Windows settings to make Start more application-focused:&lt;/p&gt;

&lt;p&gt;Start_Layout = 1&lt;br&gt;&lt;br&gt;
ShowAllPinsList = 1&lt;br&gt;&lt;br&gt;
Start_IrisRecommendations = 0&lt;/p&gt;

&lt;p&gt;In practical terms, this means:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;use &lt;strong&gt;More pins&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;show all pins by default where supported&lt;/li&gt;
&lt;li&gt;reduce recommendation content&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is still Windows 11 Start, just a little cleaner and less recommendation-heavy.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conservative by design
&lt;/h2&gt;

&lt;p&gt;The important part of this project is probably what it &lt;strong&gt;doesn't&lt;/strong&gt; do.&lt;/p&gt;

&lt;p&gt;It does not:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;disable Microsoft Defender&lt;/li&gt;
&lt;li&gt;disable Windows Update&lt;/li&gt;
&lt;li&gt;weaken UAC&lt;/li&gt;
&lt;li&gt;remove Microsoft Store&lt;/li&gt;
&lt;li&gt;remove Edge&lt;/li&gt;
&lt;li&gt;mass-remove inbox applications&lt;/li&gt;
&lt;li&gt;install third-party shell replacements&lt;/li&gt;
&lt;li&gt;apply dozens of undocumented registry tweaks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is not to produce an unsupported or heavily modified Windows build.&lt;/p&gt;

&lt;p&gt;The goal is simply to restore a few familiar behaviours.&lt;/p&gt;

&lt;h2&gt;
  
  
  Audit before apply
&lt;/h2&gt;

&lt;p&gt;The toolkit includes both audit and apply modes.&lt;/p&gt;

&lt;p&gt;To review the current state:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;.\Win11-Classic-Experience.ps1 -Mode Audit&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;To apply the changes:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;.\Win11-Classic-Experience.ps1 -Mode Apply -RestartExplorer&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Individual features can also be applied independently.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why build this?
&lt;/h2&gt;

&lt;p&gt;For me, this is less about resisting change and more about removing small pieces of friction.&lt;/p&gt;

&lt;p&gt;A familiar desktop can be useful, particularly for people who spend a lot of time administering systems and want the operating system itself to stay predictable.&lt;/p&gt;

&lt;p&gt;The project is available on GitHub:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Win11 Classic Experience&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://github.com/rakeshranderia/win11-classic-experience" rel="noopener noreferrer"&gt;https://github.com/rakeshranderia/win11-classic-experience&lt;/a&gt;&lt;/p&gt;

</description>
      <category>windows11</category>
      <category>powershell</category>
      <category>sysadmin</category>
      <category>windows</category>
    </item>
  </channel>
</rss>
