Initial Release Batch Version

This commit is contained in:
Joey Pillunat-Klebb | OH5 2025-11-03 15:44:27 +01:00
commit c1383fcd0c
26 changed files with 1783 additions and 0 deletions

View file

@ -0,0 +1,12 @@
@echo off
:: Prüfe, ob Admin-Rechte vorhanden sind
NET SESSION >nul 2>&1
IF %ERRORLEVEL% NEQ 0 (
echo Starte Skript mit Admin-Rechten ...
powershell -Command "Start-Process cmd -ArgumentList '/c \"%~f0\"' -Verb RunAs"
exit
)
echo Erlaube Script-Execution
powershell -Command "Set-ExecutionPolicy RemoteSigned -Scope LocalMachine"
echo Kehre ins das Hauptmenue zurueck