Compare commits
63 Commits
0fda1709c2
...
main
Author | SHA1 | Date | |
---|---|---|---|
f52af7a366 | |||
7b2d449786 | |||
03301ce6f8 | |||
8c9bc0e501 | |||
3df174afcd | |||
5df6650487 | |||
05d700a80c | |||
fe86d55d4e | |||
5bcd8ff38b | |||
5f2292db84 | |||
50b56caab4 | |||
c282e44b4b | |||
270e3617a1 | |||
fe03a62a5a | |||
cf4e5fbd17 | |||
cb381fc78a | |||
91eacfb974 | |||
c8196d5614 | |||
c1d695db63 | |||
be28c44539 | |||
c964503ff6 | |||
2e2a2e65c3 | |||
03fb8e3cf8 | |||
7ef969d503 | |||
9303d9f71b | |||
a9f9b9e31f | |||
ec5695ccb9 | |||
3eea93c1b9 | |||
c9a5b20f78 | |||
fb02badee4 | |||
262d0c37b9 | |||
ad6dfa59a7 | |||
ed89dfd397 | |||
1ab1dc2b39 | |||
a0783bc0ce | |||
089b844e41 | |||
357a31121c | |||
38427a4f57 | |||
02c26aa1d6 | |||
909580e54e | |||
58aefe9db6 | |||
6e2a382cac | |||
590e940f37 | |||
41ef94ca75 | |||
83c63b5ee4 | |||
424da4c826 | |||
5384cca291 | |||
0b72c3e946 | |||
62a6740cc4 | |||
e2434f79cc | |||
c2fb02eb57 | |||
9292eb1448 | |||
622df87830 | |||
d19212e504 | |||
19d44cb72d | |||
66c38fd3c4 | |||
3c311a21a1 | |||
2beb634dbb | |||
c3e4cbbda7 | |||
81a6a5790e | |||
d431c97250 | |||
e9c9b46518 | |||
3d985c3a90 |
4
.gitattributes
vendored
Normal file
4
.gitattributes
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
*.cmd text eol=crlf
|
||||
*.bat text eol=crlf
|
||||
*.ini text eol=crlf
|
23
README.md
23
README.md
@@ -1,11 +1,30 @@
|
||||
# setup_windows Rewrite
|
||||
# setup_windows_2
|
||||
|
||||
# Do not use!
|
||||
setup_windows_2 sind Batchfiles um eine Sammlung nützlicher Programme einfach installieren zu können.
|
||||
|
||||
Vorteile:
|
||||
* Die installation erfolgt im "silent" Modus
|
||||
* Installation per Kommandozeile, Remoteverbindung oder automatisiert
|
||||
* Zusammenstellung von Softwarepaketen um mehrere Programme mit einem Befehl installieren zu können.
|
||||
|
||||
## setup_windows_2 initialisieren:
|
||||
|
||||
Zuerst muss eine Eingabeaufforderung mit Adminsitratorrechten gestartet werden!
|
||||
|
||||
Die folgenden Befehle erzeugen das Verzeichnis ```C:\TEMP\install``` und laden das Installationsscript herunter:
|
||||
```
|
||||
mkdir %SYSTEMDRIVE%\TEMP\install & CD /D %SYSTEMDRIVE%\TEMP\install & curl -kLO https://support.ostrachhelp.de/OstrachHELP/setup_windows_2/raw/branch/main/install.cmd
|
||||
```
|
||||
Das Installationsscript stellt die Richtige Umgebung für die automatische Installation von Apps und Scripts bereit.
|
||||
Mit dem Befehl ```install.cmd``` können nun alle Programme im ```app``` Ordner installiert werden.
|
||||
|
||||
### Beispiel:
|
||||
```
|
||||
install.cmd app 7zip
|
||||
```
|
||||
Dieser Befehl sucht nun im Ordner ```app``` nach einer Datei namens ```install_7zip.cmd```, lädt diese herunter und startet sie.
|
||||
Für die Datei ```install_firefox.cmd``` würde der Befehl folgendermaßen aussehen:
|
||||
```
|
||||
install.cmd app firefox
|
||||
```
|
||||
|
||||
|
@@ -1,8 +1,10 @@
|
||||
# Standardsoftware-
|
||||
# App - Bezugsquellen:
|
||||
|
||||
* install_7zip.cmd - https://7-zip.org/
|
||||
* install_audacity.cmd - https://github.com/audacity/audacity/releases
|
||||
* install_blender.cmd - https://ftp.halifax.rwth-aachen.de/blender/release/
|
||||
* install_chromium.cmd - https://github.com/Hibbiki/chromium-win64/releases
|
||||
* install_driverstore_explorer.cmd - https://github.com/lostindark/DriverStoreExplorer
|
||||
* install_double_commander.cmd -
|
||||
* install_filezilla_client.cmd -
|
||||
* install_firefox_msi.cmd - https://download-installer.cdn.mozilla.net/pub/firefox/releases/
|
||||
@@ -25,6 +27,7 @@
|
||||
* install_pdf24.cmd - https://tools.pdf24.org/de/creator
|
||||
* install_putty.cmd - https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html
|
||||
* install_rdc-manager.cmd -
|
||||
* install_rustdesk.cmd - https://github.com/rustdesk/rustdesk/releases
|
||||
* install_sumatrapdf.cmd - https://www.sumatrapdfreader.org/download-free-pdf-viewer
|
||||
* install_thunderbird.cmd - https://www.thunderbird.net/de/thunderbird/all/
|
||||
* install_vbox.cmd - https://download.virtualbox.org/virtualbox/7.1.4/
|
||||
@@ -33,3 +36,4 @@
|
||||
* install_waterfox.cmd - https://www.waterfox.net/download/
|
||||
* install_xournal.cmd - https://github.com/xournalpp/xournalpp/releases
|
||||
* install_windirstat.cmd - https://github.com/windirstat/windirstat/releases
|
||||
* install_waterfox.cmd - https://www.waterfox.net/download/
|
40
app/alle.cmd
40
app/alle.cmd
@@ -1,40 +0,0 @@
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Windows Tweaks
|
||||
set GITURL=https://support.ostrachhelp.de/OstrachHELP/setup_windows/raw/branch/main
|
||||
|
||||
curl -kLO %GITURL%/standardsoftware/install_7zip.cmd & call install_7zip.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_audacity.cmd & call install_audacity.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_blender.cmd & call install_blender.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_chromium.cmd & call install_chromium.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_double_commander.cmd & call install_double_commander.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_filezilla_client.cmd & call install_filezilla_client.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_firefox.cmd & call install_firefox.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_firefox_msi.cmd & call install_firefox_msi.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_freecad.cmd & call install_freecad.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_gimp.cmd & call install_gimp.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_glogg.cmd & call install_glogg.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_greenshot.cmd & call install_greenshot.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_handbrake.cmd & call install_handbrake.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_inkscape.cmd & call install_inkscape.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_keepass.cmd & call install_keepass.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_krita.cmd & call install_krita.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_libreoffice_x64.cmd & call install_libreoffice_x64.cmd
|
||||
:: curl -kLO %GITURL%/standardsoftware/install_libreoffice_x86.cmd & call install_libreoffice_x86.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_librewolf.cmd & call install_librewolf.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_microsip.cmd & call install_microsip.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_mp3tag.cmd & call install_mp3tag.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_notepad++.cmd & call install_notepad++.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_obs.cmd & call install_obs.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_pdf24.cmd & call install_pdf24.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_putty.cmd & call install_putty.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_rdc-manager.cmd & call install_rdc-manager.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_sumatrapdf.cmd & call install_sumatrapdf.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_thunderbird.cmd & call install_thunderbird.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_vbox.cmd & call install_vbox.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_veracrypt.cmd & call install_veracrypt.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_vlc.cmd & call install_vlc.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_waterfox.cmd & call install_waterfox.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_wireguard.cmd & call install_wireguard.cmd
|
||||
curl -kLO %GITURL%/standardsoftware/install_xournal.cmd & call install_xournal.cmd
|
@@ -8,7 +8,7 @@ set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set VERS=2409
|
||||
set VERS=2501
|
||||
set BASEURL=https://7-zip.org/a
|
||||
set PROG=7z%VERS%-x64.msi
|
||||
|
||||
|
19
app/install_advipscanner.cmd
Normal file
19
app/install_advipscanner.cmd
Normal file
@@ -0,0 +1,19 @@
|
||||
:: ------------------------------------------------------------
|
||||
:: Installationsroutine
|
||||
:: ------------------------------------------------------------
|
||||
|
||||
:: --- Option: Download in ein temporäres Verzeichnis
|
||||
:: --- Kann für z.B. für GLPI abgeschaltet werden
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set BASEURL=https://download.advanced-ip-scanner.com/download/files
|
||||
set PROG=Advanced_IP_Scanner_2.5.4594.1.exe
|
||||
|
||||
:: --- Lade Installationsdatei herunter
|
||||
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
:: --- Silent-Installation des Programms:
|
||||
%PROG% /VERYSILENT /NORESTART /ALLUSERS
|
||||
|
34
app/install_alle.cmd
Normal file
34
app/install_alle.cmd
Normal file
@@ -0,0 +1,34 @@
|
||||
curl -kLO %GITURL%/app/install_7zip.cmd & call install_7zip.cmd
|
||||
curl -kLO %GITURL%/app/install_audacity.cmd & call install_audacity.cmd
|
||||
curl -kLO %GITURL%/app/install_blender.cmd & call install_blender.cmd
|
||||
curl -kLO %GITURL%/app/install_chromium.cmd & call install_chromium.cmd
|
||||
curl -kLO %GITURL%/app/install_double_commander.cmd & call install_double_commander.cmd
|
||||
curl -kLO %GITURL%/app/install_filezilla_client.cmd & call install_filezilla_client.cmd
|
||||
curl -kLO %GITURL%/app/install_firefox.cmd & call install_firefox.cmd
|
||||
curl -kLO %GITURL%/app/install_firefox_msi.cmd & call install_firefox_msi.cmd
|
||||
curl -kLO %GITURL%/app/install_freecad.cmd & call install_freecad.cmd
|
||||
curl -kLO %GITURL%/app/install_gimp.cmd & call install_gimp.cmd
|
||||
curl -kLO %GITURL%/app/install_glogg.cmd & call install_glogg.cmd
|
||||
curl -kLO %GITURL%/app/install_greenshot.cmd & call install_greenshot.cmd
|
||||
curl -kLO %GITURL%/app/install_handbrake.cmd & call install_handbrake.cmd
|
||||
curl -kLO %GITURL%/app/install_inkscape.cmd & call install_inkscape.cmd
|
||||
curl -kLO %GITURL%/app/install_keepass.cmd & call install_keepass.cmd
|
||||
curl -kLO %GITURL%/app/install_krita.cmd & call install_krita.cmd
|
||||
curl -kLO %GITURL%/app/install_libreoffice_x64.cmd & call install_libreoffice_x64.cmd
|
||||
:: curl -kLO %GITURL%/app/install_libreoffice_x86.cmd & call install_libreoffice_x86.cmd
|
||||
curl -kLO %GITURL%/app/install_librewolf.cmd & call install_librewolf.cmd
|
||||
curl -kLO %GITURL%/app/install_microsip.cmd & call install_microsip.cmd
|
||||
curl -kLO %GITURL%/app/install_mp3tag.cmd & call install_mp3tag.cmd
|
||||
curl -kLO %GITURL%/app/install_notepad++.cmd & call install_notepad++.cmd
|
||||
curl -kLO %GITURL%/app/install_obs.cmd & call install_obs.cmd
|
||||
curl -kLO %GITURL%/app/install_pdf24.cmd & call install_pdf24.cmd
|
||||
curl -kLO %GITURL%/app/install_putty.cmd & call install_putty.cmd
|
||||
curl -kLO %GITURL%/app/install_rdc-manager.cmd & call install_rdc-manager.cmd
|
||||
curl -kLO %GITURL%/app/install_sumatrapdf.cmd & call install_sumatrapdf.cmd
|
||||
curl -kLO %GITURL%/app/install_thunderbird.cmd & call install_thunderbird.cmd
|
||||
curl -kLO %GITURL%/app/install_vbox.cmd & call install_vbox.cmd
|
||||
curl -kLO %GITURL%/app/install_veracrypt.cmd & call install_veracrypt.cmd
|
||||
curl -kLO %GITURL%/app/install_vlc.cmd & call install_vlc.cmd
|
||||
curl -kLO %GITURL%/app/install_waterfox.cmd & call install_waterfox.cmd
|
||||
curl -kLO %GITURL%/app/install_wireguard.cmd & call install_wireguard.cmd
|
||||
curl -kLO %GITURL%/app/install_xournal.cmd & call install_xournal.cmd
|
@@ -8,9 +8,9 @@ set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set VER=3.5.1
|
||||
set BASEURL=https://github.com/audacity/audacity/releases/download/Audacity-%VER%
|
||||
set PROG=audacity-win-%VER%-64bit.exe
|
||||
set VERS=3.7.5
|
||||
set BASEURL=https://github.com/audacity/audacity/releases/download/Audacity-%VERS%
|
||||
set PROG=audacity-win-%VERS%-64bit.exe
|
||||
|
||||
:: --- Lade Installationsdatei herunter
|
||||
curl -kL %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
21
app/install_driverstore-explorer.cmd
Normal file
21
app/install_driverstore-explorer.cmd
Normal file
@@ -0,0 +1,21 @@
|
||||
:: ------------------------------------------------------------
|
||||
:: Installationsroutine
|
||||
:: ------------------------------------------------------------
|
||||
|
||||
:: --- Option: Download in ein temporäres Verzeichnis
|
||||
:: --- Kann für z.B. für GLPI abgeschaltet werden
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set VERS=v0.12.110
|
||||
set BASEURL=https://github.com/lostindark/DriverStoreExplorer/releases/download/%VERS%
|
||||
set PROG=DriverStoreExplorer.%VERS%.zip
|
||||
|
||||
:: --- Lade Installationsdatei herunter
|
||||
curl -kLs %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
:: --- Entpacke .ZIP
|
||||
set DESTPATH=%SYSTEMDRIVE%\SETUP
|
||||
powershell.exe -command "Expand-Archive -Force -Path %PROG% -DestinationPath %DESTPATH% "
|
||||
|
@@ -1,34 +0,0 @@
|
||||
:: ------------------------------------------------------------
|
||||
:: Installationsroutine
|
||||
:: ------------------------------------------------------------
|
||||
|
||||
:: --- Option: Download in ein temporäres Verzeichnis
|
||||
:: --- Kann für z.B. für GLPI abgeschaltet werden
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- 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
|
||||
|
||||
:: --- Lade Installationsdatei herunter
|
||||
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
:: --- Silent-Installation des Programms:
|
||||
:: %PROG% /S
|
||||
|
||||
|
||||
:: --- Installiere C++ Redistibutable
|
||||
:: set BASEURL=https://support.ostrachhelp.de/OstrachHELP/setup_windows/raw/branch/main/essentiell
|
||||
:: set PROG=VC_redist.x64.exe
|
||||
:: curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG% & %PROG% /Q
|
||||
|
||||
:: --- Entpacket .ZIP
|
||||
:: powershell.exe -command "Expand-Archive -Force -Path %PROG% -DestinationPath . "
|
||||
|
||||
:: ---- Beispiele ---------------------------------------------
|
||||
:: %PROG% /S
|
||||
:: %PROG% /VERYSILENT /NORESTART /ALLUSERS
|
||||
:: %PROG% /install /quiet /norestart
|
||||
:: %SYSTEMDRIVE%\windows\system32\msiexec /i "%PROG%" /passive /l %SAVEPATH%\%PROG%.log
|
47
app/install_git.cmd
Normal file
47
app/install_git.cmd
Normal file
@@ -0,0 +1,47 @@
|
||||
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=2.51.0
|
||||
set BASEURL=https://github.com/git-for-windows/git/releases/download/v%VERS%.windows.1
|
||||
set PROG=Git-%VERS%-64-bit.exe
|
||||
|
||||
rem --- Lade Installationsdatei herunter
|
||||
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
rem --- Erzeuge INI-Datei
|
||||
(
|
||||
echo [Setup]
|
||||
echo Lang=default
|
||||
echo Dir=C:\Program Files\Git
|
||||
echo Group=Git
|
||||
echo NoIcons=0
|
||||
echo SetupType=default
|
||||
echo Components=gitlfs,assoc,assoc_sh,scalar
|
||||
echo Tasks=
|
||||
echo EditorOption=Notepad++
|
||||
echo CustomEditorPath=
|
||||
echo DefaultBranchOption=
|
||||
echo PathOption=Cmd
|
||||
echo SSHOption=OpenSSH
|
||||
echo TortoiseOption=false
|
||||
echo CURLOption=OpenSSL
|
||||
echo CRLFOption=CRLFAlways
|
||||
echo BashTerminalOption=MinTTY
|
||||
echo GitPullBehaviorOption=Merge
|
||||
echo UseCredentialManager=Enabled
|
||||
echo PerformanceTweaksFSCache=Enabled
|
||||
echo EnableSymlinks=Disabled
|
||||
echo EnablePseudoConsoleSupport=Disabled
|
||||
echo EnableFSMonitor=Disabled
|
||||
) > git.ini
|
||||
|
||||
rem --- Silent-Installation des Programms:
|
||||
%PROG% /VERYSILENT /NORESTART /NOCANCEL /SP- /CLOSEAPPLICATIONS /RESTARTAPPLICATIONS /LOADINF=git.ini
|
||||
|
@@ -8,13 +8,18 @@ set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set VERS=1.2.10.6
|
||||
set BASEURL=https://github.com/greenshot/greenshot/releases/download/Greenshot-RELEASE-%VERS%
|
||||
set VERS=1.3.300
|
||||
set BASEURL=https://github.com/greenshot/greenshot/releases/download/v%VERS%
|
||||
set PROG=Greenshot-INSTALLER-%VERS%-RELEASE.exe
|
||||
|
||||
:: --- Lade Installationsdatei herunter
|
||||
curl -kL %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
|
||||
:: --- Schalte Win11 Snipping tool ab:
|
||||
REG add "HKU\.DEFAULT\Control Panel\Keyboard" /t REG_SZ /v PrintScreenKeyForSnippingEnabled /d 0 /F
|
||||
REG add "HKCU\Control Panel\Keyboard" /t REG_SZ /v PrintScreenKeyForSnippingEnabled /d 0 /F
|
||||
|
||||
:: --- Silent-Installation des Programms:
|
||||
(
|
||||
echo [Setup]
|
||||
|
19
app/install_iperf3.cmd
Normal file
19
app/install_iperf3.cmd
Normal file
@@ -0,0 +1,19 @@
|
||||
:: ----------------------------------------------------------------
|
||||
:: Installiere IPERF3
|
||||
:: ----------------------------------------------------------------
|
||||
|
||||
:: --- Option: Download in ein temporäres Verzeichnis
|
||||
:: --- Kann für z.B. für GLPI abgeschaltet werden
|
||||
set SAVEPATH=%SYSTEMDRIVE%\SETUP
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
set VERS=3.19.1
|
||||
set BASEURL=https://github.com/ar51an/iperf3-win-builds/releases/download/%VERS%
|
||||
set PROG=iperf-%VERS%-win64.zip
|
||||
|
||||
curl -kLO %BASEURL%/%PROG%
|
||||
|
||||
powershell.exe "& {Expand-Archive %PROG% -Force -DestinationPath %SYSTEMDRIVE%\Windows }"
|
||||
|
||||
del %PROG%
|
||||
|
@@ -8,7 +8,7 @@ set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set VERS=5.2.6
|
||||
set VERS=5.2.11
|
||||
set BASEURL=https://download.kde.org/stable/krita/%VERS%
|
||||
set PROG=krita-x64-%VERS%-setup.exe
|
||||
|
||||
|
@@ -7,7 +7,7 @@
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
set VERS=132.0-1
|
||||
set VERS=142.0-1
|
||||
set BASEURL=https://gitlab.com/api/v4/projects/44042130/packages/generic/librewolf/%VERS%
|
||||
set PROG=librewolf-%VERS%-windows-x86_64-setup.exe
|
||||
|
||||
|
@@ -8,7 +8,7 @@ set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set VERS=3.21.5
|
||||
set VERS=3.22.0
|
||||
set BASEURL=https://www.microsip.org/download/MicroSIP-%VERS%.zip?6
|
||||
set PROG=MicroSIP-%VERS%.zip
|
||||
|
||||
|
@@ -10,7 +10,7 @@ set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set VERS=328
|
||||
set VERS=331
|
||||
set BASEURL=https://download.mp3tag.de
|
||||
set PROG=mp3tagv%VERS%-x64-setup.exe
|
||||
|
||||
|
@@ -7,7 +7,7 @@
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
set VERS=8.7.1
|
||||
set VERS=8.8.5
|
||||
set BASEURL=https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v%VERS%
|
||||
set PROG=npp.%VERS%.Installer.exe
|
||||
|
||||
|
@@ -8,7 +8,7 @@ set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set VERS=11.20.1
|
||||
set VERS=11.27.0
|
||||
set BASEURL=https://download.pdf24.org
|
||||
set PROG=pdf24-creator-%VERS%-x64.msi
|
||||
|
||||
|
49
app/install_rustdesk-ostrachhelp.cmd
Normal file
49
app/install_rustdesk-ostrachhelp.cmd
Normal file
@@ -0,0 +1,49 @@
|
||||
:: ------------------------------------------------------------
|
||||
:: Installationsroutine
|
||||
:: ------------------------------------------------------------
|
||||
|
||||
:: --- Option: Download in ein temporäres Verzeichnis
|
||||
:: --- Kann für z.B. für GLPI abgeschaltet werden
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set VERS=1.4.1
|
||||
set ARCH=x86_64
|
||||
set BASEURL=https://github.com/rustdesk/rustdesk/releases/download/%VERS%
|
||||
set PROG=rustdesk-%VERS%-%ARCH%.exe
|
||||
|
||||
:: --- Lade Installationsdatei herunter
|
||||
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
@echo off
|
||||
:: --- Silent-Installation des Programms:
|
||||
%PROG% --silent-install
|
||||
timeout /t 12
|
||||
%PROG% --install-service
|
||||
timeout /t 12
|
||||
|
||||
:: --- Ermittle RustDesk ID
|
||||
for /f "delims=" %%i in ('%PROG% --get-id ^| more') do set rustdesk_id=%%i
|
||||
|
||||
:: --- Erzeuge ein zufälliges Passwort:
|
||||
setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
|
||||
set alfanum=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
|
||||
set rustdesk_pw=
|
||||
for /L %%b in (1, 1, 12) do (
|
||||
set /A rnd_num=!RANDOM! %% 62
|
||||
for %%c in (!rnd_num!) do (
|
||||
set rustdesk_pw=!rustdesk_pw!!alfanum:~%%c,1!
|
||||
)
|
||||
)
|
||||
|
||||
%PROG% --password %rustdesk_pw%
|
||||
|
||||
:: Hier den RustDesk Config-String einsetzen, falls vorhanden und "::" entfernen
|
||||
set rustdesk_cfg=0nI9gDS4RVb2VHWXBjNnhGZHlmdalEeTFXT0IUYBBTW6FzZtBXe0MmcuBVTzpnI6ISeltmIsIiI6ISawFmIsISZk5CcsVGaoNWYyR3cv5Cdy9GcwV3ciojI5FGblJnIsISZk5CcsVGaoNWYyR3cv5Cdy9GcwV3ciojI0N3boJye
|
||||
%PROG% --config %rustdesk_cfg%
|
||||
|
||||
echo ------------------------------------------------
|
||||
echo RustDesk ID: %rustdesk_id%
|
||||
echo Password: %rustdesk_pw%
|
||||
echo ------------------------------------------------
|
18
app/install_sandboxie+.cmd
Normal file
18
app/install_sandboxie+.cmd
Normal file
@@ -0,0 +1,18 @@
|
||||
:: ------------------------------------------------------------
|
||||
:: Installationsroutine
|
||||
:: ------------------------------------------------------------
|
||||
|
||||
:: --- Option: Download in ein temporäres Verzeichnis
|
||||
:: --- Kann für z.B. für GLPI abgeschaltet werden
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- TortoiseGIT
|
||||
set VERS=1.16.2
|
||||
set BASEURL=https://github.com/sandboxie-plus/Sandboxie/releases/download/v%VERS%
|
||||
set PROG=Sandboxie-Plus-x64-v%VERS%.exe
|
||||
|
||||
:: --- Lade Installationsdatei herunter
|
||||
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
%PROG% /SP- /NORESTART /lang=de /ALLUSERS /SILENT /VERYSILENT /SUPPRESSMSGBOXES
|
18
app/install_shotcut.cmd
Normal file
18
app/install_shotcut.cmd
Normal file
@@ -0,0 +1,18 @@
|
||||
:: ------------------------------------------------------------
|
||||
:: Installationsroutine
|
||||
:: ------------------------------------------------------------
|
||||
|
||||
:: --- Option: Download in ein temporäres Verzeichnis
|
||||
:: --- Kann für z.B. für GLPI abgeschaltet werden
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set BASEURL=https://sourceforge.net/projects/shotcut/files/v25.08.16/shotcut-win64-250816.exe/download
|
||||
set PROG=shotcut-win64-250816.exe
|
||||
|
||||
:: --- Lade Installationsdatei herunter
|
||||
curl -k -L %BASEURL% -o %SAVEPATH%\%PROG%
|
||||
|
||||
:: --- Silent-Installation des Programms:
|
||||
%PROG% /VERYSILENT /NORESTART /ALLUSERS
|
23
app/install_tightvnc.cmd
Normal file
23
app/install_tightvnc.cmd
Normal file
@@ -0,0 +1,23 @@
|
||||
:: ------------------------------------------------------------
|
||||
:: Installationsroutine
|
||||
:: ------------------------------------------------------------
|
||||
|
||||
:: --- Option: Download in ein temporäres Verzeichnis
|
||||
:: --- Kann für z.B. für GLPI abgeschaltet werden
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set VERS=2.8.85
|
||||
set BASEURL=https://www.tightvnc.com/download/%VERS%
|
||||
set PROG=tightvnc-%VERS%-gpl-setup-64bit.msi
|
||||
|
||||
:: --- Lade Installationsdatei herunter
|
||||
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
:: --- Silent-Installation des Programms:
|
||||
:: Achtung! Nach der Installation das Passwort ändern!
|
||||
%SYSTEMDRIVE%\windows\system32\msiexec /i "%PROG%" /passive /l %SAVEPATH%\%PROG%.log VIEWER_ASSOCIATE_VNC_EXTENSION=1 SERVER_REGISTER_AS_SERVICE=1 SERVER_ADD_FIREWALL_EXCEPTION=1 VIEWER_ADD_FIREWALL_EXCEPTION=1 SERVER_ALLOW_SAS=1 SET_USEVNCAUTHENTICATION=1 VALUE_OF_USEVNCAUTHENTICATION=1 SET_PASSWORD=1 VALUE_OF_PASSWORD=TightLogin
|
||||
|
||||
:: %SYSTEMDRIVE%\windows\system32\msiexec /i "%PROG%" /quiet /norestart ADDLOCAL="Server,Viewer" VIEWER_ASSOCIATE_VNC_EXTENSION=1 SERVER_REGISTER_AS_SERVICE=1 SERVER_ADD_FIREWALL_EXCEPTION=1 VIEWER_ADD_FIREWALL_EXCEPTION=1 SERVER_ALLOW_SAS=1 SET_USEVNCAUTHENTICATION=1 VALUE_OF_USEVNCAUTHENTICATION=1 SET_PASSWORD=1 VALUE_OF_PASSWORD=PASSWORD SET_USECONTROLAUTHENTICATION=1 VALUE_OF_USECONTROLAUTHENTICATION=1 SET_CONTROLPASSWORD=1 VALUE_OF_CONTROLPASSWORD=PASSWORD
|
||||
|
29
app/install_tortoisegit.cmd
Normal file
29
app/install_tortoisegit.cmd
Normal file
@@ -0,0 +1,29 @@
|
||||
:: ------------------------------------------------------------
|
||||
:: Installationsroutine
|
||||
:: ------------------------------------------------------------
|
||||
|
||||
:: --- Option: Download in ein temporäres Verzeichnis
|
||||
:: --- Kann für z.B. für GLPI abgeschaltet werden
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- TortoiseGIT
|
||||
set VERS=2.17.0.0
|
||||
set BASEURL=https://download.tortoisegit.org/tgit/%VERS%
|
||||
set PROG=TortoiseGit-%VERS%-64bit.msi
|
||||
|
||||
:: --- Lade Installationsdatei herunter
|
||||
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
%SYSTEMDRIVE%\windows\system32\msiexec /i "%PROG%" /passive /l %SAVEPATH%\%PROG%.log
|
||||
|
||||
:: --- Sprachpaket Deutsch
|
||||
set PROG=TortoiseGit-LanguagePack-%VERS%-64bit-de.msi
|
||||
|
||||
:: --- Lade Installationsdatei herunter
|
||||
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
%SYSTEMDRIVE%\windows\system32\msiexec /i "%PROG%" /passive /l %SAVEPATH%\%PROG%.log
|
||||
|
||||
|
||||
|
@@ -8,7 +8,7 @@ set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set VERS=6.5.0
|
||||
set VERS=6.6.1
|
||||
set BASEURL=https://cdn1.waterfox.net/waterfox/releases/%VERS%/WINNT_x86_64
|
||||
set PROG=Waterfox%%20Setup%%20%VERS%.exe
|
||||
|
||||
|
@@ -8,7 +8,7 @@ set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set VERS=2.2.0
|
||||
set VERS=2.2.2
|
||||
set BASEURL=https://github.com/windirstat/windirstat/releases/download/release/v%VERS%
|
||||
set PROG=WinDirStat-x64.msi
|
||||
|
||||
|
26
app/install_wireshark.cmd
Normal file
26
app/install_wireshark.cmd
Normal file
@@ -0,0 +1,26 @@
|
||||
:: ------------------------------------------------------------
|
||||
:: Installationsroutine
|
||||
:: ------------------------------------------------------------
|
||||
|
||||
:: --- Option: Download in ein temporäres Verzeichnis
|
||||
:: --- Kann für z.B. für GLPI abgeschaltet werden
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- npcap herunterladen (muss manuell installiert werden)
|
||||
set VERS=1.83
|
||||
set BASEURL=https://npcap.com/dist
|
||||
set PROG=npcap-%VERS%.exe
|
||||
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set VERS=4.4.8
|
||||
set BASEURL=https://2.na.dl.wireshark.org/win64
|
||||
set PROG=Wireshark-%VERS%-x64.exe
|
||||
|
||||
:: --- Lade Installationsdatei herunter
|
||||
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
:: --- Silent-Installation des Programms:
|
||||
%PROG% /S /EXTRACOMPONENTS=ciscodump,sshdump,udpdump
|
||||
|
19
app/install_xnview.cmd
Normal file
19
app/install_xnview.cmd
Normal file
@@ -0,0 +1,19 @@
|
||||
:: ------------------------------------------------------------
|
||||
:: Installationsroutine
|
||||
:: ------------------------------------------------------------
|
||||
|
||||
:: --- Option: Download in ein temporäres Verzeichnis
|
||||
:: --- Kann für z.B. für GLPI abgeschaltet werden
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set BASEURL=https://download.xnview.com
|
||||
set PROG=XnViewMP-win-x64.exe
|
||||
|
||||
:: --- Lade Installationsdatei herunter
|
||||
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
:: --- Silent-Installation des Programms:
|
||||
%PROG% /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-
|
||||
|
@@ -8,18 +8,14 @@ set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set VERS=1.2.4
|
||||
set VERS=1.2.7
|
||||
set BASEURL=https://github.com/xournalpp/xournalpp/releases/download/v%VERS%
|
||||
set PROG=xournalpp-%VERS%-windows.zip
|
||||
set PROG=xournalpp-%VERS%-windows-setup-x86_64.exe
|
||||
|
||||
:: --- Lade Installationsdatei herunter
|
||||
curl -kL %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
:: --- Entpacke .ZIP
|
||||
powershell.exe -command "Expand-Archive -Force -Path %PROG% -DestinationPath . "
|
||||
|
||||
:: --- Silent-Installation des Programms:
|
||||
xournalpp-%VERS%-windows.exe /S
|
||||
%PROG% /S
|
||||
|
||||
|
||||
:: --- Installiere C++ Redistibutable
|
||||
|
11
install.cmd
11
install.cmd
@@ -10,7 +10,11 @@ set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Basis-URL des Git-Repository
|
||||
set GITURL=https://support.ostrachhelp.de/OstrachHELP/setup_windows_2/raw/branch/main
|
||||
set GITHOST=https://support.ostrachhelp.de
|
||||
set GITUSER=OstrachHELP
|
||||
set GITREPO=setup_windows_2
|
||||
set GITURL=%GITHOST%/%GITUSER%/%GITREPO%/raw/branch/main
|
||||
|
||||
:: --- Optionen für curl
|
||||
set CURLOPT=-kLO -A "Mozilla/5.0 (Windows NT 10.0; Win64; x64)"
|
||||
|
||||
@@ -23,13 +27,14 @@ GOTO END
|
||||
:: --- Übernimmt die globalen Variablen und installiert die gewünschte App
|
||||
:INSTALL
|
||||
set APPNAME=%2
|
||||
curl.exe %CURLOPT% %GITURL%/app/install_%APPNAME%.cmd & install_%APPNAME%.cmd
|
||||
curl.exe %CURLOPT% %GITURL%/app/install_%APPNAME%.cmd & call install_%APPNAME%.cmd
|
||||
Goto END
|
||||
|
||||
:: --- Übernimmt die globalen Variablen und installiert das gewünschte script
|
||||
:SCRIPT
|
||||
set APPNAME=%2
|
||||
curl.exe %CURLOPT% %GITURL%/app/script_%APPNAME%.cmd & script_%1%.cmd
|
||||
curl.exe %CURLOPT% %GITURL%/scripts/script_%APPNAME%.cmd & call script_%APPNAME%.cmd
|
||||
Goto END
|
||||
|
||||
:END
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install & CD /D %SAVEPATH%
|
30
scripts/script_bin-backuptool.cmd
Normal file
30
scripts/script_bin-backuptool.cmd
Normal file
@@ -0,0 +1,30 @@
|
||||
:: ----------------------------------------------------------------
|
||||
:: Installiere Disk2VHD und DoubleDriver
|
||||
:: ----------------------------------------------------------------
|
||||
|
||||
:: --- Option: Download in ein temporäres Verzeichnis
|
||||
:: --- Kann für z.B. für GLPI abgeschaltet werden
|
||||
set SAVEPATH=%SYSTEMDRIVE%\SETUP
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: Setze Basisurl zu den Binaries
|
||||
set BASEURL=https://support.ostrachhelp.de/OstrachHELP/binaries/raw/branch/main/win
|
||||
|
||||
:: --- Disk2VHD
|
||||
set PROG=Disk2vhd.zip
|
||||
curl -kLO %BASEURL%/%PROG%
|
||||
powershell.exe "& {Expand-Archive %PROG% -Force -DestinationPath .}"
|
||||
del %PROG%
|
||||
|
||||
:: ---- Double Driver
|
||||
set PROG=Double%%20Driver.zip
|
||||
curl -kLO %BASEURL%/%PROG%
|
||||
powershell.exe "& {Expand-Archive %PROG% -Force -DestinationPath .}"
|
||||
del %PROG%
|
||||
|
||||
:: --- Sichere alle Treiber mit Double Driver
|
||||
::cd /D "%SAVEPATH%\Double Driver"
|
||||
::ddc b /target:%SAVEPATH%\Treiber
|
||||
|
||||
:: --- Neu: Sichere alle Treiber mit Powershell!
|
||||
powershell -command "& Export-WindowsDriver -Online -Destination C:\SETUP\Treiber"
|
6
scripts/script_export-drivers-ps.cmd
Normal file
6
scripts/script_export-drivers-ps.cmd
Normal file
@@ -0,0 +1,6 @@
|
||||
:: ---------------------------------------------------------------
|
||||
:: Exportiere Treiber mittels Powershell
|
||||
:: ---------------------------------------------------------------
|
||||
|
||||
powershell -command "& Export-WindowsDriver -Online -Destination C:\SETUP\Treiber"
|
||||
|
31
scripts/script_kill-onedrive.cmd
Normal file
31
scripts/script_kill-onedrive.cmd
Normal file
@@ -0,0 +1,31 @@
|
||||
:: ------------------------------------------
|
||||
:. Deinstalliere OneDrive
|
||||
:: ------------------------------------------
|
||||
|
||||
set x86="%SYSTEMROOT%\System32\OneDriveSetup.exe"
|
||||
set x64="%SYSTEMROOT%\SysWOW64\OneDriveSetup.exe"
|
||||
|
||||
echo OneDrive beenden
|
||||
taskkill /f /im OneDrive.exe
|
||||
ping 127.0.0.1 -n 3
|
||||
|
||||
echo OneDrive deinstallieren
|
||||
if exist %x64% (
|
||||
%x64% /uninstall
|
||||
) else (
|
||||
%x86% /uninstall
|
||||
)
|
||||
ping 127.0.0.1 -n 3
|
||||
|
||||
echo OneDrive letzte Reste entfernen
|
||||
rd "%USERPROFILE%\OneDrive" /Q /S
|
||||
rd "C:\OneDriveTemp" /Q /S
|
||||
rd "%LOCALAPPDATA%\Microsoft\OneDrive" /Q /S
|
||||
rd "%PROGRAMDATA%\Microsoft OneDrive" /Q /S
|
||||
del "%appdata%\Microsoft\Windows\Start Menu\programs\OneDrive.lnk"
|
||||
|
||||
echo OneDrive aus Datei Explorer entfernen
|
||||
REG DELETE "HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f
|
||||
REG DELETE "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f
|
||||
REG DELETE "HKEY_CURRENT_USER\Software\Classes\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}\ShellFolder" /f
|
||||
REG DELETE "HKEY_CURRENT_USER\Software\Classes\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}\ShellFolder" /f
|
14
scripts/script_std-business.cmd
Normal file
14
scripts/script_std-business.cmd
Normal file
@@ -0,0 +1,14 @@
|
||||
:: --- Standard Business-PC Software Pack
|
||||
::
|
||||
:: Use with install.cmd: install.cmd script std-business
|
||||
|
||||
curl %CURLOPT% %GITURL%/app/install_7zip.cmd & call install_7zip.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_firefox.cmd & call install_firefox.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_greenshot.cmd & call install_greenshot.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_krita.cmd & call install_krita.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_libreoffice_x64.cmd & call install_libreoffice_x64.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_notepad++.cmd & call install_notepad++.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_pdf24.cmd & call install_pdf24.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_putty.cmd & call install_putty.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_sumatrapdf.cmd & call install_sumatrapdf.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_vlc.cmd & call install_vlc.cmd
|
16
scripts/script_std-pc.cmd
Normal file
16
scripts/script_std-pc.cmd
Normal file
@@ -0,0 +1,16 @@
|
||||
:: --- Standard Home-Consumer PC Software Pack
|
||||
::
|
||||
:: Use with install.cmd: install.cmd script std-pc
|
||||
|
||||
curl %CURLOPT% %GITURL%/app/install_7zip.cmd & call install_7zip.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_chromium.cmd & call install_chromium.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_firefox.cmd & call install_firefox.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_inkscape.cmd & call install_inkscape.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_krita.cmd & call install_krita.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_libreoffice_x64.cmd & call install_libreoffice_x64.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_mp3tag.cmd & call install_mp3tag.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_notepad++.cmd & call install_notepad++.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_sumatrapdf.cmd & call install_sumatrapdf.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_thunderbird.cmd & call install_thunderbird.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_vlc.cmd & call install_vlc.cmd
|
||||
curl %CURLOPT% %GITURL%/app/install_xournal.cmd & call install_xournal.cmd
|
19
scripts/script_sysinternals.cmd
Normal file
19
scripts/script_sysinternals.cmd
Normal file
@@ -0,0 +1,19 @@
|
||||
:: ------------------------------------------------------------
|
||||
:: Installationsroutine
|
||||
:: ------------------------------------------------------------
|
||||
|
||||
:: --- Option: Download in ein temporäres Verzeichnis
|
||||
:: --- Kann für z.B. für GLPI abgeschaltet werden
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||||
set BASEURL=https://support.ostrachhelp.de/OstrachHELP/binaries/raw/branch/main/win
|
||||
set PROG=SysinternalsSuite_sep2025.zip
|
||||
|
||||
:: --- Lade Installationsdatei herunter
|
||||
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
:: --- Silent-Installation des Programms:
|
||||
set PROGPATH=%SYSTEMDRIVE%\SETUP\Sysinternals
|
||||
powershell.exe -command "Expand-Archive -Force -Path %PROG% -DestinationPath %PROGPATH% "
|
78
scripts/script_win10-tweaks.cmd
Normal file
78
scripts/script_win10-tweaks.cmd
Normal file
@@ -0,0 +1,78 @@
|
||||
@echo off
|
||||
@rem Stand 2022-09-22
|
||||
echo --------------------------------------------------------------------------
|
||||
echo I Windows 10 Tweaks
|
||||
echo --------------------------------------------------------------------------
|
||||
|
||||
rem Registry Eintrag:
|
||||
rem reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v WindowsSettings /f /d "c:\temp\WindowsSettings.cmd > c:\temp\%USERNAME%_WindowsSettings.log"
|
||||
rem GLPI: reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v WindowsSettings /f /d "c:\temp\WindowsSettings.cmd > c:\temp\%%USERNAME%%_WindowsSettings.log"
|
||||
ping 127.0.0.1 > NUL
|
||||
|
||||
rem ---- OneDrive deaktivieren ------------------------------------------------
|
||||
taskkill /f /im OneDrive.exe
|
||||
REG DELETE "HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f
|
||||
REG DELETE "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f
|
||||
REG DELETE "HKEY_CURRENT_USER\Software\Classes\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}\ShellFolder" /f
|
||||
REG DELETE "HKEY_CURRENT_USER\Software\Classes\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}\ShellFolder" /f
|
||||
REG DELETE "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run" /v "OneDrive" /f
|
||||
|
||||
rem ---- Dateinamenerweiterungen einschalten
|
||||
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v HideFileExt /t REG_DWORD /d 0 /f
|
||||
|
||||
rem ---- Energieeinstellungen
|
||||
powercfg /change standby-timeout-ac 0
|
||||
powercfg /change standby-timeout-dc 10
|
||||
powercfg /change hibernate-timeout-ac 0
|
||||
powercfg /change hibernate-timeout-dc 10
|
||||
powercfg /change monitor-timeout-ac 30
|
||||
powercfg /change monitor-timeout-dc 10
|
||||
powercfg /change disk-timeout-ac 0
|
||||
powercfg /change disk-timeout-dc 20
|
||||
|
||||
rem ---- Fensterrahmen einblenden
|
||||
rem reg add "HKCU\Control Panel\Desktop" /v UserPreferencesMask /t REG_BINARY /d 9032078010000000 /f
|
||||
rem reg add "HKCU\Control Panel\Desktop\WindowMetrics" /v BorderWidth /t REG_SZ /d "-15" /f
|
||||
rem reg add "HKCU\Control Panel\Desktop\WindowMetrics" /v PaddedBorderWidth /t REG_SZ /d "-15" /f
|
||||
|
||||
rem ---- FastBoot ausschalten
|
||||
reg add "HKLM\System\CurrentControlSet\Control\Session Manager\Power" /v HiberbootEnabled /t REG_DWORD /d 0 /f
|
||||
|
||||
rem ---- Energiesparplan auf Höchstleistung setzen
|
||||
powercfg /SETACTIVE /SCHEME_MIN
|
||||
|
||||
rem ---- Beim Zuklappen des Bildschirms nichts unternehmen
|
||||
powercfg /SETDCVALUEINDEX SCHEME_MIN SUB_BUTTONS LIDACTION 0
|
||||
powercfg /SETACVALUEINDEX SCHEME_MIN SUB_BUTTONS LIDACTION 0
|
||||
|
||||
rem ---- Beim drücken des Netzschalters herunterfahren
|
||||
powercfg /SETDCVALUEINDEX SCHEME_MIN SUB_BUTTONS PBUTTONACTION 3
|
||||
powercfg /SETACVALUEINDEX SCHEME_MIN SUB_BUTTONS PBUTTONACTION 3
|
||||
|
||||
rem ---- Beim drücken der Energiespartaste energie sparen
|
||||
powercfg /SETDCVALUEINDEX SCHEME_MIN SUB_BUTTONS SleepButtonAction 1
|
||||
powercfg /SETACVALUEINDEX SCHEME_MIN SUB_BUTTONS SleepButtonAction 1
|
||||
|
||||
rem ---- Cortana & Taskansicht ausschalten
|
||||
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search" /v SearchboxTaskbarMode /t REG_DWORD /d 0 /f
|
||||
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowCortanaButton /t REG_DWORD /d 0 /f
|
||||
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowTaskViewButton /t REG_DWORD /d 0 /f
|
||||
|
||||
rem ---- Schaltet den Newsfeed in der Taskleiste ab
|
||||
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Feeds" /v ShellFeedsTaskbarViewMode /t REG_DWORD /d 2 /f
|
||||
|
||||
rem ---- Zeige alle Symbole in der Taskleiste
|
||||
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer" /v EnableAutoTray /t REG_DWORD /d 0 /f
|
||||
|
||||
rem ---- Live Kacheln im Startmenue abschalten
|
||||
reg add "HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\CurrentVersion\PushNotifications" /v NoTileApplicationNotification /t REG_DWORD /d 1 /f
|
||||
|
||||
rem ---- 3D-Objects Ordner im Explorer ausblenden
|
||||
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace" /v {0DB7E03F-FC29-4DC6-9020-FF41B59E513A} /f
|
||||
|
||||
rem ---- Schalte Newsfeed in der Taskleiste bei Windows 10 21H1 ab
|
||||
reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Feeds" /v ShellFeedsTaskbarViewMode /t REG_DWORD /d 2 /f
|
||||
|
||||
rem ---- Logoff!
|
||||
rem shutdown -L
|
||||
|
27
scripts/script_win11-debloat.cmd
Normal file
27
scripts/script_win11-debloat.cmd
Normal file
@@ -0,0 +1,27 @@
|
||||
:: ----------------------------------------------------------------
|
||||
:: Installiere Windows 11 Debloater
|
||||
:: ----------------------------------------------------------------
|
||||
|
||||
:: --- Option: Download in ein temporäres Verzeichnis
|
||||
:: --- Kann für z.B. für GLPI abgeschaltet werden
|
||||
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
set VERS=2025.08.16
|
||||
set BASEURL=https://github.com/Raphire/Win11Debloat/archive/refs/tags
|
||||
set PROG=%VERS%.zip
|
||||
|
||||
:: --- Lade Programm herunter
|
||||
curl -kLO %BASEURL%/%PROG%
|
||||
:: --- entpacke Programm
|
||||
powershell.exe "& {Expand-Archive %PROG% -Force -DestinationPath .}"
|
||||
:: --- lösche .ZIP Datei
|
||||
del %PROG%
|
||||
:: --- Starte Win11Debloater
|
||||
cd Win11Debloat-%VERS%
|
||||
:: --- ...für aktuellen User
|
||||
powershell -ExecutionPolicy Bypass -Command "& Start-Process powershell.exe -Wait -PassThru -ArgumentList \"-executionpolicy bypass -File Win11Debloat.ps1 -Silent -RunDefaults\" -Verb RunAs "
|
||||
:: --- ..für zukünftige Benutzer
|
||||
powershell -ExecutionPolicy Bypass -Command "& Start-Process powershell.exe -Wait -PassThru -ArgumentList \"-executionpolicy bypass -File Win11Debloat.ps1 -Silent -RunDefaults -Sysprep\" -Verb RunAs "
|
||||
|
||||
CD /D %SAVEPATH%
|
114
scripts/script_win11-tweaks.cmd
Normal file
114
scripts/script_win11-tweaks.cmd
Normal file
@@ -0,0 +1,114 @@
|
||||
@echo off
|
||||
@rem Stand 2023-12-03
|
||||
echo --------------------------------------------------------------------------
|
||||
echo I Windows 11 Tweaks
|
||||
echo --------------------------------------------------------------------------
|
||||
|
||||
rem Registry Eintrag:
|
||||
rem reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v WindowsSettings /f /d "c:\temp\WindowsSettings.cmd > c:\temp\%USERNAME%_WindowsSettings.log"
|
||||
rem GLPI: reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v WindowsSettings /f /d "c:\temp\WindowsSettings.cmd > c:\temp\%%USERNAME%%_WindowsSettings.log"
|
||||
ping 127.0.0.1 > NUL
|
||||
|
||||
rem ---- Windows 11 Tweaks ----------------------------------------------------
|
||||
rem
|
||||
rem --- Telemetrie reduzieren
|
||||
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v AllowTelemetry /t REG_DWORD /d 1 /F
|
||||
rem --- Cortana abschalten
|
||||
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsSearch" /v AllowCortana /t REG_DWORD /d 0 /F
|
||||
|
||||
rem --- Für aktuellen User
|
||||
rem --- Startmenü links
|
||||
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarAl /t REG_DWORD /d 0 /f
|
||||
rem --- Wetter-/Newswidget abschalten
|
||||
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarDa /t REG_DWORD /d 0 /f
|
||||
rem --- Altes Kontextmenue
|
||||
reg add "HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /v Standard /t REG_SZ /f
|
||||
rem --- keine Bing Vorschläge im Startmenü
|
||||
reg add "HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer" /v DisableSearchBoxSuggestions /t REG_DWORD /d 1 /F
|
||||
rem --- Snipping Tool deaktivieren bzw. PrintScr Taste freigeben
|
||||
reg add "HKEY_CURRENT_USER\Software\Policies\Microsoft\TabletPC" /v DisableSnippingTool /t REG_DWORD /d 1 /F
|
||||
|
||||
rem --- Für .DEFAULT User
|
||||
rem --- Startmenü links
|
||||
reg add "HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarAl /t REG_DWORD /d 0 /f
|
||||
rem --- Wetter-/Newswidget abschalten
|
||||
reg add "HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarDa /t REG_DWORD /d 0 /f
|
||||
rem --- Altes Kontextmenue
|
||||
reg add "HKEY_USERS\.DEFAULT\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /v Standard /t REG_SZ /f
|
||||
rem --- keine Bing Vorschläge im Startmenü
|
||||
reg add "HKEY_USERS\.DEFAULT\SOFTWARE\Policies\Microsoft\Windows\Explorer" /v DisableSearchBoxSuggestions /t REG_DWORD /d 1 /F
|
||||
rem --- Snipping Tool deaktivieren bzw. PrintScr Taste freigeben
|
||||
reg add "HKEY_USERS\.DEFAULT\Software\Policies\Microsoft\TabletPC" /v DisableSnippingTool /t REG_DWORD /d 1 /F
|
||||
|
||||
|
||||
rem --- Bypass TPM-Check
|
||||
rem reg add "HKEY_LOCAL_MACHINE\SYSTEM\Setup\MoSetup" /v AllowUpgradesWithUnsupportedTPMOrCPU /t REG_DWORD /d 1
|
||||
|
||||
rem ---- OneDrive deaktivieren ------------------------------------------------
|
||||
taskkill /f /im OneDrive.exe
|
||||
REG DELETE "HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f
|
||||
REG DELETE "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f
|
||||
:: --- Aktueller User
|
||||
REG DELETE "HKEY_CURRENT_USER\Software\Classes\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}\ShellFolder" /f
|
||||
REG DELETE "HKEY_CURRENT_USER\Software\Classes\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}\ShellFolder" /f
|
||||
REG DELETE "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run" /v "OneDrive" /f
|
||||
:: --- .DEFAULT User
|
||||
REG DELETE "HKEY_USERS\.DEFAULT\Software\Classes\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}\ShellFolder" /f
|
||||
REG DELETE "HKEY_USERS\.DEFAULT\Software\Classes\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}\ShellFolder" /f
|
||||
REG DELETE "HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Run" /v "OneDrive" /f
|
||||
|
||||
rem ---- Dateinamenerweiterungen einschalten OK!
|
||||
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v HideFileExt /t REG_DWORD /d 0 /f
|
||||
reg add "HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v HideFileExt /t REG_DWORD /d 0 /f
|
||||
|
||||
rem ---- Energieeinstellungen OK!
|
||||
powercfg /change standby-timeout-ac 0
|
||||
powercfg /change standby-timeout-dc 10
|
||||
powercfg /change hibernate-timeout-ac 0
|
||||
powercfg /change hibernate-timeout-dc 10
|
||||
powercfg /change monitor-timeout-ac 30
|
||||
powercfg /change monitor-timeout-dc 10
|
||||
powercfg /change disk-timeout-ac 0
|
||||
powercfg /change disk-timeout-dc 20
|
||||
|
||||
rem ---- FastBoot ausschalten OK!
|
||||
reg add "HKLM\System\CurrentControlSet\Control\Session Manager\Power" /v HiberbootEnabled /t REG_DWORD /d 0 /f
|
||||
|
||||
rem ---- Energiesparplan auf Höchstleistung setzen OK!
|
||||
powercfg /SETACTIVE /SCHEME_MIN
|
||||
|
||||
rem ---- Beim Zuklappen des Bildschirms nichts unternehmen OK!
|
||||
powercfg /SETDCVALUEINDEX SCHEME_MIN SUB_BUTTONS LIDACTION 0
|
||||
powercfg /SETACVALUEINDEX SCHEME_MIN SUB_BUTTONS LIDACTION 0
|
||||
|
||||
rem ---- Beim drücken des Netzschalters herunterfahren OK!
|
||||
powercfg /SETDCVALUEINDEX SCHEME_MIN SUB_BUTTONS PBUTTONACTION 3
|
||||
powercfg /SETACVALUEINDEX SCHEME_MIN SUB_BUTTONS PBUTTONACTION 3
|
||||
|
||||
rem ---- Cortana & Taskansicht ausschalten OK!
|
||||
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search" /v SearchboxTaskbarMode /t REG_DWORD /d 0 /f
|
||||
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowCortanaButton /t REG_DWORD /d 0 /f
|
||||
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowTaskViewButton /t REG_DWORD /d 0 /f
|
||||
|
||||
reg add "HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Search" /v SearchboxTaskbarMode /t REG_DWORD /d 0 /f
|
||||
reg add "HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowCortanaButton /t REG_DWORD /d 0 /f
|
||||
reg add "HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowTaskViewButton /t REG_DWORD /d 0 /f
|
||||
|
||||
rem ---- Zeige alle Symbole in der Taskleiste OK!
|
||||
:: reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer" /v EnableAutoTray /t REG_DWORD /d 0 /f
|
||||
:: reg add "HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer" /v EnableAutoTray /t REG_DWORD /d 0 /f
|
||||
|
||||
rem ---- Live Kacheln im Startmenue abschalten OK!
|
||||
reg add "HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\CurrentVersion\PushNotifications" /v NoTileApplicationNotification /t REG_DWORD /d 1 /f
|
||||
reg add "HKEY_USERS\.DEFAULT\Software\Policies\Microsoft\Windows\CurrentVersion\PushNotifications" /v NoTileApplicationNotification /t REG_DWORD /d 1 /f
|
||||
|
||||
rem ---- 3D-Objects Ordner im Explorer ausblenden - REG nicht gefunden
|
||||
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace" /v {0DB7E03F-FC29-4DC6-9020-FF41B59E513A} /f
|
||||
|
||||
rem ---- Schalte Newsfeed in der Taskleiste ab OK!
|
||||
reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Feeds" /v ShellFeedsTaskbarViewMode /t REG_DWORD /d 2 /f
|
||||
reg add "HKEY_USERS\.DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\Feeds" /v ShellFeedsTaskbarViewMode /t REG_DWORD /d 2 /f
|
||||
|
||||
rem ---- Logoff!
|
||||
rem shutdown -L
|
||||
|
22
scripts/script_wincheck.cmd
Normal file
22
scripts/script_wincheck.cmd
Normal file
@@ -0,0 +1,22 @@
|
||||
@echo off
|
||||
:: Stand 2025-08-18
|
||||
echo --------------------------------------------------------------------------
|
||||
echo I Windows prüfen
|
||||
echo --------------------------------------------------------------------------
|
||||
|
||||
powercfg /h off
|
||||
taskkill /f /im explorer.exe
|
||||
sfc /scannow
|
||||
dism /online /cleanup-image /scanhealth
|
||||
dism /online /cleanup-image /checkhealth
|
||||
dism /online /cleanup-image /restorehealth
|
||||
net stop "usosvc"
|
||||
net stop "wuauserv"
|
||||
del /f /q C:\ProgramData\USOPrivate\UpdateStore*
|
||||
net start "usosvc"
|
||||
net start "wuauserv"
|
||||
UsoClient.exe RefreshSettings
|
||||
:: cmd /k del /q /f /s %temp%*
|
||||
cleanmgr /verylowdisk
|
||||
start explorer.exe
|
||||
:: shutdown -g -t 0
|
Reference in New Issue
Block a user