Sticky Notes App Windows Server 2019 __link__ Today
In Windows Server 2019, if you search for "Sticky Notes," you won't find it. But if you search for or look in C:\Windows\System32\ , you will find a gem: StikyNot.exe .
Win + R → StikyNot.exe → Enter
If you run Get-AppxPackage *sticky* in PowerShell, you will see nothing. If you attempt to sideload an .appx package, you will encounter error 0x80073CFD – "The dependency package could not be found." Part 2: The "Hacked" Method – Forcing the Consumer App to Install Warning: This method is unsupported by Microsoft. It may break after a Windows Update. Use only in lab environments or isolated VDI sessions. sticky notes app windows server 2019
# Server Console Sticky Note - Creates a persistent text file on the desktop $notePath = "$env:USERPROFILE\Desktop\_SERVER_NOTE.txt" # Check if note exists, if not, create it if (!(Test-Path $notePath)) "===== SERVER 2019 REMINDERS =====`n`n[ ] Restart after patching`n[ ] Check DFS replication`n[ ] Backup Veeam logs" # Open the note in Notepad notepad.exe $notePath Place this script in your Startup folder ( shell:startup ). Every time you log in, Notepad opens with your server-specific sticky notes. In Windows Server 2019, if you search for