Last active
July 20, 2023 08:03
-
-
Save baralong/53c526d2347b110de8cb to your computer and use it in GitHub Desktop.
Sysinit
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
Set-ExecutionPolicy Unrestricted -force | |
# fix Mouse scrolling | |
Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopWheel 1 } | |
# Choco install | |
iex ((new-object net.webclient).DownloadString('https://community.chocolatey.org/install.ps1')) | |
choco feature enable -n=allowGlobalConfirmation | |
choco install FiraCode | |
choco install GoogleChrome | |
choco install vscode | |
choco install poshgit | |
choco install BeyondCompare | |
choco install linqpad | |
choco install paint.net | |
choco install IrfanView | |
choco install 7zip | |
choco install nodejs | |
choco install thonny | |
choco install sharpkeys | |
choco install gsudo | |
choco install makemeadmin | |
New-Item "HKLM:\SOFTWARE\Policies\Sinclair Community College\Make Me Admin" | |
Set-ItemProperty "HKLM:\SOFTWARE\Policies\Sinclair Community College\Make Me Admin" "Admin Rights Timeout" 34 | |
choco install dbeaver | |
choco install docker-desktop | |
choco install putty | |
choco install rpi-imager | |
choco install spacesniffer | |
choco install rdcman | |
npm install -g yarn | |
# wsl | |
wsl --install -d Ubuntu | |
# git config | |
git config --global diff.tool bc | |
git config --global difftool.bc.path "c:/Program Files/Beyond Compare 4/bcomp.exe" | |
git config --global merge.tool bc | |
git config --global mergetool.bc.path "c:/Program Files/Beyond Compare 4/bcomp.exe" | |
git config global push.autoSetupRemote true | |
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" | |
# old for now | |
#choco install cmdermini | |
#choco install powertoys | |
#choco install windirstat | |
#choco install vlc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment