BootStrapWindows
Révision datée du 14 juin 2018 à 23:16 par imported>WikiSysop
Accès physique à la machine (écran clavier) + powershell admin |
$PASS = 'rootpass' net user root '$PASS' /add net localgroup Administrateurs cyg_server /add Sur une installation anglaise, c'est "Administrators" |
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) choco install -y cygwin cyg-get cyg-get.bat openssh netsh advfirewall firewall add rule name="ssh" dir=in action=allow protocol=TCP localport=22 netsh advfirewall firewall add rule name="ICMP ping" protocol=icmpv4:8,any dir=in action=allow C:\tools\cygwin\bin\mintty.exe - | |
Accès physique à la machine, shell cygwin admin |
configurer ssh: $PASS = 'rootpass' ssh-host-config --debug --yes --name 'sshd' --port 22 --pwd "$PASS" cygrunsrv.exe --start sshd |
Accès via ssh |
VNCPASS="vncpass" choco install -y tightvnc regtool set '\HKLM\software\tightvnc\server\accepthttpconnections' 0 regtool set '\HKLM\software\tightvnc\server\UseVncAuthentication' 1 PASS=$(echo "$VNCPASS" | vncpasswd -f | hexdump -v -e '/1 "%02x "') regtool --binary set '\HKLM\software\tightvnc\server\password' $PASS net stop tvnserver net start tvnserver
choco -y libreoffice thunderbird firefox vlc |