Over the past 3 years, I've used Windows for various things.
With that in mind, I have a common setup I perform when spinning up a new instance.
-
Winget
- GitHub - microsoft/winget-cli
- WinGet is the Windows Package Manager for the CLI(command line interface).
-
- Enhance my terminal experience and allow me to use tabs.
-
winget install clink
- Makes the command prompt bearable.
-
winget install -e --id=JesseDuffield.lazygit
- When I am annoying at my command line.
-
Visual Studio Code
winget install -e --id Microsoft.VisualStudioCode
-
Microsoft Power Toys
winget install --scope machine Microsoft.PowerToys -s winget
-
RDP Clip Restart Shortcut
- Right-click on an empty area of your desktop.
- Select New > Shortcut from the context menu.
- In the "Create Shortcut" window, enter the following command:
cmd /c taskkill /F /IM rdpclip.exe & start rdpclip.exe
- Click "Next".
- Give your shortcut a name, such as "Restart RDPClip".
- Click "Finish".
- This will create a shortcut on your desktop. When you double-click this shortcut, it will:
- Force-close the existing rdpclip.exe process
- Start a new instance of rdpclip.exe
Enjoy!