This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
windows10 [2019/06/02 08:56] 127.0.0.1 external edit |
windows10 [2021/09/23 16:59] (current) jdx [Install basic tools] |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Some configuration tips for Windows 10 ====== | ====== Some configuration tips for Windows 10 ====== | ||
+ | ===== Software ===== | ||
+ | You can find a list of tools to work under Windows 10 on the [[software-equivalents|Software equivalents]] page. | ||
+ | |||
+ | If you need to test some functionalities of Windows on your machine, Microsoft delivers [[https:// | ||
+ | |||
+ | ===== PowerShell command line under Windows ===== | ||
+ | If you want to automate things under Windows there is the [[powershell|PowerShell]] language you can use, that offers strong proximity with the system. | ||
+ | |||
+ | ===== Linux development under Windows ===== | ||
+ | If you want to have a Linux development environment under Windows, you can use the [[https:// | ||
+ | |||
+ | You may also prefer to work with Docker for Windows, with Linux support. | ||
===== Install package managers ===== | ===== Install package managers ===== | ||
<code bash> | <code bash> | ||
Line 8: | Line 20: | ||
# Scoop install (more " | # Scoop install (more " | ||
- | PS(Admin) > Set-ExecutionPolicy Bypass -Scope Process -Force; | + | PS(User) > iex (new-object net.webclient).downloadstring(' |
</ | </ | ||
===== Install basic tools ===== | ===== Install basic tools ===== | ||
<code bash> | <code bash> | ||
- | PS(Admin) > choco install -y git notepadplusplus cmder vscode vagrant virtualbox | + | PS(Admin) > |
+ | # for a new pc | ||
+ | choco install -y libreoffice | ||
+ | |||
+ | # for developers | ||
+ | choco install -y git cmder vscode vagrant virtualbox docker | ||
PS(Admin) > scoop install wget curl sudo ruby python | PS(Admin) > scoop install wget curl sudo ruby python | ||
Line 20: | Line 38: | ||
PS > & ' | PS > & ' | ||
</ | </ | ||
- | |||
- | |||