16 lines
718 B
Batchfile
16 lines
718 B
Batchfile
rem -----------------------------------------------------------------------
|
|
rem Media-Pack
|
|
rem
|
|
rem curl -k -L https://support.ostrachhelp.de/OstrachHELP/setup_windows/raw/branch/main/win10_initial_install.cmd -o start.cmd
|
|
rem
|
|
rem -----------------------------------------------------------------------
|
|
|
|
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
|
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
|
|
|
rem --- Ordner: Standardsoftware
|
|
set STDURL=https://support.ostrachhelp.de/OstrachHELP/setup_windows/raw/branch/main/standardsoftware
|
|
curl -kLO %STDURL%/install_audacity.cmd & call install_audacity.cmd
|
|
curl -kLO %STDURL%/install_vlc.cmd & call install_vlc.cmd
|
|
curl -kLO %STDURL%/install_handbrake.cmd & call install_handbrake.cmd
|