Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentes Révision précédente Prochaine révision | Révision précédente | ||
wiki:bootstrapwindows [16/05/2024 00:58] – [Bootstraper une machine Windows] vincent.adolphe | wiki:bootstrapwindows [17/05/2024 11:58] (Version actuelle) – vincent.adolphe | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
====== Bootstraper une machine Windows ====== | ====== Bootstraper une machine Windows ====== | ||
- | |||
- | * https:// | ||
TL;DR: | TL;DR: | ||
- | Dans un powershell admin (clic droit sur le menu démarrer, puis choisir " | + | Dans un powershell admin (clic droit sur le menu démarrer, puis choisir " |
<code bash> | <code bash> | ||
- | Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString(' | + | Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString(' |
</ | </ | ||
Ligne 45: | Ligne 43: | ||
PASS=' | PASS=' | ||
ssh-host-config --yes --name ' | ssh-host-config --yes --name ' | ||
+ | mkpasswd -l > /etc/passwd | ||
+ | mkgroup -l > /etc/group | ||
cygrunsrv.exe --start sshd | cygrunsrv.exe --start sshd | ||
</ | </ | ||
Ligne 97: | Ligne 97: | ||
La GUI de tightvnc s' | La GUI de tightvnc s' | ||
+ | |||
+ | ===== Outils divers ===== | ||
+ | |||
+ | ==== Windows10Debloater ==== | ||
+ | Fonctionne sous windows10 et windows11 | ||
+ | * cf https:// | ||
+ | * source: https:// | ||
+ | * utilisation <code bash> | ||
+ | iwr -useb https:// | ||
+ | </ | ||
+ | |||
+ | |||