Versions Compared

Key

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

...

Code Block
cd C:\8Server\deploy\OEM\JTEL\
copy_keyfile_en_mcp_v67.cmd

Update all of the .NET Packages on the windows machines. Use the following Commands:

Cygwin Update

Cygwin is updated as follows from a .CMD window.

This also installs any packages which are not already present.

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

Code Block
"%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

Update all of the .NET Packages on the windows machines. Use the following Commands:

Warning
title.NET Packages on all Windows Machines


Code Block
powershell -command "& { Start-BitsTransfer -Source https://cdn.jtel.de/downloads/DotNET/dotnet-sdk-6.0.403-win-x64.exe -Destination $Env:UserProfile\Downloads }"
powershell -command "& { start-process -FilePath $Env:UserProfile\Downloads\dotnet-sdk-6.0.403-win-x64.exe -ArgumentList '/install /passive /norestart' -Verb RunAs -wait }"
Warning
title.NET Packages on all Windows Machines
Code Block
powershell -command "& { Start-BitsTransfer -Source https://cdn.jtel.de/downloads/DotNET/dotnetNDP48-sdk-6.0.403-win-x64x86-x64-AllOS-ENU.exe -Destination $Env:UserProfile\Downloads }"
powershell -command "& { start-process -FilePath $Env:UserProfile\Downloads\dotnetNDP48-sdk-6.0.403-win-x64x86-x64-AllOS-ENU.exe -ArgumentList '/install /passive /norestart' -Verb RunAs -wait }"


...