Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This assumes that cygwin installer .EXE is still in the downloads folder.

Code Block
del "%USERPROFILE%\Downloads\setup-x86_64.exe"
powershell -command "Remove-Item -Recurse -Force C:\cygwin"
powershell -command "& { Start-BitsTransfer -Source https://www.cygwin.com/setup-x86_64.exe -Destination $Env:UserProfile\Downloads }"
"%USERPROFILE%\Downloads\setup-x86_64.exe" ^
--site http://ftp-stud.hs-esslingen.de/pub/Mirrors/sources.redhat.com/cygwin/ ^
--no-shortcuts ^
--no-desktop ^
--quiet-mode ^
--root "c:\cygwin" ^
--arch x86_64 ^
--local-package-dir "c:\cygwin\packages" ^
--verbose ^
--prune-install ^
--packages openssh,ncftp,wget,curl,lftp,libiconv

...