- Firefox
- Steam
- Bitwarden
- Git
- https://git-scm.com/download/win
- Install with "Use External OpenSSH" to use PowerShell SSH Agent
- VSCode
- VSCodium
- OBS Studio
- Kdenlive
- 7-zip
- GIMP
- Visual Studio
- https://visualstudio.microsoft.com/downloads/
- When installing, go to "Individual components" tab, search for
llvmand install "C++ Clang Compiler for Windows" and "MSBuild support for LLVM" - Add to PATH
- C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build
- C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\Llvm\bin
- C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin
- Use
vcvarsall.bat x86_amd64 10.0.22621.0to start enviroment variables in the command line
- Python
- Virtual Box
- GOG Galaxy Games
- Epic Games
- PDF Sam
- https://pdfsam.org/download-pdfsam-basic/ (download the .msi, not the installer)
- Install
starshipConfigwinget install --id Starship.Starship%USERPROFILE%\.config\starship\starship.tomlcommand_timeout = 60000
- Install
clink- https://github.com/chrisant996/clink
- Download the
.exefrom theReleases
- Create file at
%LocalAppData%\clink\starship.lua- Add
load(io.popen('starship init cmd'):read("*a"))()intostarship.lua
- Add
- Change the
Command Promptto use the old one, not theWindows Terminal- https://www.elevenforum.com/t/change-default-terminal-application-in-windows-11.3410/
- Open Windows menu (WindowsKey)
- Settings
- Privacy & security
- For developers
- in Terminal section select
Windows Console Host
- Change the
Command Promptfont toCaskaydiaCove NFM - Run MSVC cl.exe
- Check your Windows version at
C:\Program Files (x86)\Windows Kits\10\Include\xx.y.wwwww.z - set environment with
"C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64 xx.y.wwwww.z
- Check your Windows version at
- Create
mklinkto move large foldersmklink /j Microsoft D:\AppData\Local\Microsoft
Last active
July 8, 2025 17:45
-
-
Save brccabral/c2cdcd3d225475bbb735928a06f26d1f to your computer and use it in GitHub Desktop.
Windows Customizations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $FileOrFolderPath = "D:\jboss" | |
| if ((Test-Path -Path $FileOrFolderPath) -eq $false) { | |
| Write-Warning "File or directory does not exist." | |
| } else { | |
| $LockingProcess = CMD /C "openfiles /query /fo table | find /I ""$FileOrFolderPath""" | |
| Write-Host $LockingProcess | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment