On a Windows Server with GUI, you can use the traditional method of setting the display resolution but as there's no Control Panel nor Settings app on Windows Server Core, the only way is through Powershell with the Set-DisplayResolution cmdlet.
Set-DisplayResolution -Width 1024 -Height 768
The cmdlet above sets the resolution to 1024x768. It will prompt you to accept the change, if you don't want that, append -Force parameter.
To get the current display resolution, you can use the Get-DisplayResolution cmdlet.
You can easily trigger SCSI UNMAP in Windows via PowerShell:
Optimize-Volume -DriveLetter C -ReTrim -Verbose
Remote Desktop Manager Mac sometimes has issues with stale cache, especially after an update. Below is a simple one-liner/script I like to use for deleting all the cache files in a Remote Desktop Manager Mac installation.
#!/bin/bash find "$HOME/Library/Application Support/com.devolutions.remotedesktopmanager" -iname "*.mcdf2" -type f -delete
Here's the direct streaming link for Aardvark Blues FM. You can use this link in your favourite streaming app (VLC, Apple Music, etc.):
https://streaming.live365.com/b77280_128mp3
A while back, most of the references on streaming sites such as Icecast were removed, leaving only the webplayer available. As I found this not to be very handy, I started looking to find the original streaming link used in the webplayer.
Completely hiding Quick Access from the navigation tree in File Explorer can be achieved via the registry:
You may need to re-logon for the changes to take effect. You can also use group policies to apply this setting in a domain.
« ‹ | March 2023 | › » | ||||
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |