standardsoftware/install_driverstore_explorer.cmd hinzugefügt
This commit is contained in:
parent
ca03988b79
commit
a7cdebaa16
34
standardsoftware/install_driverstore_explorer.cmd
Normal file
34
standardsoftware/install_driverstore_explorer.cmd
Normal file
@ -0,0 +1,34 @@
|
||||
rem ------------------------------------------------------------
|
||||
rem Installationsroutine
|
||||
rem ------------------------------------------------------------
|
||||
|
||||
rem --- Option: Download in ein temporäres Verzeichnis
|
||||
rem --- Kann für z.B. für GLPI abgeschaltet werden
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
rem --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set VERS=v0.12.17
|
||||
set BASEURL=https://github.com/lostindark/DriverStoreExplorer/releases/download/%VERS%
|
||||
set PROG=DriverStoreExplorer.%VERS%.zip
|
||||
|
||||
rem --- Lade Installationsdatei herunter
|
||||
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
rem --- Silent-Installation des Programms:
|
||||
rem %PROG% /S
|
||||
|
||||
|
||||
rem --- Installiere C++ Redistibutable
|
||||
rem set BASEURL=https://support.ostrachhelp.de/OstrachHELP/setup_windows/raw/branch/main/essentiell
|
||||
rem set PROG=VC_redist.x64.exe
|
||||
rem curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG% & %PROG% /Q
|
||||
|
||||
rem --- Entpacket .ZIP
|
||||
rem powershell.exe -command "Expand-Archive -Force -Path %PROG% -DestinationPath . "
|
||||
|
||||
rem ---- Beispiele ---------------------------------------------
|
||||
rem %PROG% /S
|
||||
rem %PROG% /VERYSILENT /NORESTART /ALLUSERS
|
||||
rem %PROG% /install /quiet /norestart
|
||||
rem %SYSTEMDRIVE%\windows\system32\msiexec /i "%PROG%" /passive /l %SAVEPATH%\%PROG%.log
|
Loading…
Reference in New Issue
Block a user