<?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: Luca Ramseyer</title>
    <description>The latest articles on DEV Community by Luca Ramseyer (@lupree).</description>
    <link>https://dev.to/lupree</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F762707%2Fa79481c4-ee53-4205-a76f-2b93690d3f82.png</url>
      <title>DEV Community: Luca Ramseyer</title>
      <link>https://dev.to/lupree</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lupree"/>
    <language>en</language>
    <item>
      <title>Enable Notification Settings in Windows 11</title>
      <dc:creator>Luca Ramseyer</dc:creator>
      <pubDate>Mon, 04 Sep 2023 10:02:59 +0000</pubDate>
      <link>https://dev.to/lupree/enable-notification-settings-in-windows-11-2hjl</link>
      <guid>https://dev.to/lupree/enable-notification-settings-in-windows-11-2hjl</guid>
      <description>&lt;p&gt;Many Users are currently reporting not seeing the Notification Category in the Windows 11 Settings. Microsoft has yet to solve this problem, however there is a workaround you can use to get the Notification Settings on your computer again. The core of this workaround is a registry key that is normally used to disable certain settings to restrict systems in schools for example. This key can also be used to show certain settings.&lt;/p&gt;

&lt;h2&gt;
  
  
  Setting the Key manually:
&lt;/h2&gt;

&lt;p&gt;To manually set the key to the correct value, you first need to navigate to the location where it is stored. For that, open the registry editor and navigate to the following path:&lt;/p&gt;

&lt;p&gt;Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer&lt;/p&gt;

&lt;p&gt;In that folder, create a new String value called SettingsPageVisibility. If this Key already exists, you may also just edit the existing one.&lt;/p&gt;

&lt;p&gt;Now, set the value of this key to show:notifications.&lt;/p&gt;

&lt;p&gt;After restarting the Windows Settings, you should be abled to see the Notifications Category again and also change the settings.&lt;/p&gt;

&lt;h2&gt;
  
  
  Setting the Key via Powershell Script:
&lt;/h2&gt;

&lt;p&gt;To set the Key with a Powershell Script, you can execute the following Code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$Key = Get-Item -Path "HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer"

If($null -ne $Key.GetValue("SettingsPageVisibility")) {
    Set-ItemProperty -Path "HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Name "SettingsPageVisibility" -Value "show:notifications" -Force | out-null
}
else {
    New-ItemProperty -Path "HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Name "SettingsPageVisibility" -PropertyType "String" -Value "show:notifications" | out-null
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>windows</category>
      <category>powershell</category>
    </item>
    <item>
      <title>Tips on how to start a Blog?</title>
      <dc:creator>Luca Ramseyer</dc:creator>
      <pubDate>Wed, 22 Jun 2022 09:08:53 +0000</pubDate>
      <link>https://dev.to/lupree/tips-on-how-to-start-a-blog-383j</link>
      <guid>https://dev.to/lupree/tips-on-how-to-start-a-blog-383j</guid>
      <description>&lt;p&gt;Hi There, I am a Swiss System engineer in training and I wanna start a Blog. I have no Idea what software to use, where to start, what to blog about (Something IT related of course but I don't know what). I was wondering if maybe someone in the dev.to community already has or had a blog and could share some tips on how and where to start. &lt;/p&gt;

</description>
    </item>
    <item>
      <title>What do you guys use to organize yourself?</title>
      <dc:creator>Luca Ramseyer</dc:creator>
      <pubDate>Mon, 02 May 2022 14:43:00 +0000</pubDate>
      <link>https://dev.to/lupree/what-do-you-guys-use-to-organize-yourself-46j2</link>
      <guid>https://dev.to/lupree/what-do-you-guys-use-to-organize-yourself-46j2</guid>
      <description>&lt;p&gt;I am currently in an apprenticeship to become a computer scientist. I am very interested in these topics and am also very motivated to work. I just have a lot of trouble organizing and prioritizing my work. I always forget simple things. &lt;/p&gt;

&lt;p&gt;Do you have any tips or tricks to make this easier?&lt;br&gt;
Do you &lt;/p&gt;

</description>
      <category>beginners</category>
    </item>
  </channel>
</rss>
