Last active
September 16, 2021 07:17
-
-
Save yzorg/ba93b38ecf88f8d016da33112e6806db to your computer and use it in GitHub Desktop.
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
| # Win-R, iexplore http://boxstarter.org/package/url?https://gist.githubusercontent.com/yzorg/... | |
| Enable-RemoteDesktop | |
| # Use **Developer** in Win10 settings to enable Explorer: file extensions, show full path, show hidden & system files, etc. | |
| # manual, in powershell admin: `Set-ExecutionPolicy Unrestricted -Force` | |
| # https://scotch.io/bar-talk/trying-the-new-wsl-2-its-fast-windows-subsystem-for-linux | |
| Enable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform | |
| # manual: install Pengwin (formerly WLinux) or Ubuntu | |
| # wsl -l | |
| # wsl --set-default-version 2 | |
| # wsl --set-version WLinux 2 | |
| # wsl --set-version Ubuntu 2 | |
| # wsl --list --verbose # show what version of WSL is running for each distro | |
| # browser, cloud, and tray apps | |
| # No longer installed via chocolatey, b/c it updates too often choco gets confused about what versio is installed. | |
| #cinst GoogleChrome | |
| cinst greenshot | |
| # dev | |
| #cinst git # installed by Visual Studio (via Web Platform Installer) | |
| cinst gitextensions --ignore-dependencies | |
| # No longer installed via chocolatey, b/c it updates too often choco gets confused about what versio is installed. | |
| #cinst visualstudiocode | |
| cinst yarn # yarn will also install nodejs and npm, which are dependencies | |
| # util | |
| cinst procexp | |
| cinst windirstat | |
| # Windows Features | |
| cinst IIS-WebServerRole -source windowsfeatures | |
| #cinst Microsoft-Hyper-V-All -source windowsFeatures | |
| #cinst gitkraken - download failed via choco, but works via Chrome | |
| # manual: choco install of GitKraken failed, but works via Chrome: | |
| # https://release.gitkraken.com/win64/GitKrakenSetup.exe | |
| # manual: pin to Taskbar: Chrome, VS Code | |
| # manual: extract procexp 64-bit exe and pin to taskbar | |
| # manual: sign-in to Chrome | |
| # manual: password manager | |
| # optional: cinst icloud | |
| # optional: cinst mousewithoutborders | |
| # optional: cinst visualstudio2017enterprise | |
| # optional: Ubuntu in MS Store (Win Subsystem for Linux, WSL) | |
| # optional: Office365, disable upload tray app | |
| # manual: Taskbar Notification Area - always show: Greenshot, ProcExp64, Task Manager, MouseWithoutBorders |
yzorg
commented
Oct 28, 2019
Author
Author
Using package managers in Win10 in the year 2020 is still a PITA. And they are "Sherlocking" Choco & Scoop with WinGet. But first features of WinGet are "disable telemetry" and "feature flags" (to hide features from users before their "official release"). Sheesh.
Until all that gets worked out, just keep -swimming-... er UPDATING. Just keep updating, updating, up.
dotnet tool update --global powershell # 7.0.2
dotnet tool update --global dotnet-ef # 3.1.5
Author
choco install azure-cli
choco install microsoftazurestorageexplorer
choco install azcopy10
Author
# python 3.9 installed by Visual Studio
# from admin command prompt
py -3.9 -m pip install pipenv pandas sqlalchemy pyodbc
- optional, pipenv says it will install correct Python when pyenv is present, not sure about Windows support
- winget package pending: microsoft/winget-pkgs#17988
choco install pyenv-win
Author
WinGet 1.0 just released, check list of tools for WinGet package support.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment