windows Starting with WSL 2 Before starting this process, my machine was running WSL 1. These are the steps I took to install and to start using WSL 2 side-by-side with WSL 1. Install Windows 10 build 18917
windows To pieces of incredibly useful and free screen capture software that work on Window I have nothing more to say than that I use these two piece of free software on a weekly basis. Both are simple, minimalist, and just work. Thank you to the creators. I
git PowerShell and Git to Capitalize all the Files in a Directory on Windows Windows is a case-folding operating system, which means that changing the case of a file name is non-trivial. The following uses PowerShell and Git to capitalize all the files names in a directory.
windows-10 Windows 10 Setup First Steps Set up a conservative Windows Update cadence and useful restore points. High Level Steps Set up deferred Windows updates. Create a restore point. Run a memory diagnostic. Install essential software. Create another restore
powershell Permanently modify an environmental variable from PowerShell For instance, here we are adding to the PATH. PS> $addMe = "C:\utilities"; PS> [Environment]::SetEnvironmentVariable("PATH", $env:Path + ";" + $addMe, [System.EnvironmentVariableTarget]::Machine); This also
windows Fixing the Surface Pro 4 Internal Microphone with Windows 10 SteveG47 over at Microsoft Answers provided a solution. Go to Control Panel\Hardware and Sound\Power Options\System Settings Click on Change settings that are currently unavailable Uncheck Turn on fast startup (recommended)
nodejs Copy to clipboard from NodeJS const output = "some string"; require("child_process").spawn("clip").stdin.end(output);
linux Install Node/NPM in the Linux Subsystem for Windows After installing the Linux subsystem for Windows, open bash and run the following commands. curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - sudo apt-get install -y nodejs After