huhu bin ich glücklich ich habe es raus bekommen
also jetzt funktioniert es einwandfrei so das die Datum die ich bat gewändert habe ändert
und nach 10 Sekunden das Aktuelle Datum Zeit wieder wiederherstellt perfekt bin ich glücklich dank natürlich auch eure hilfe den ohne euch hätte ich niemals tipps nehmen können und tricks durch euch konnte ich endlich schaffen ein besondere großen dank geht an
mae1cum77 vielen vielen dank für die mühe und finde echt sehr super toll das du mir geholfen hast und durch dir idee kam wo ich mit scripts weiter hin kombinieren konnte nun sieht mein script so aus und funktioniert einwand frei und kann bat zum exe Konvertieren
happy yay !!!
so sieht meine script aus in moment
Start ""
::Set specific time/date
time 03:48:00
date 04/03/2020
::Warte 10 Sekunden
timeout /t 10
::reset time/date to current values
:: Check that we own administrator access level.
echo [INFO] Checking Access Level...
net session >nul 2>&1
if %errorLevel% == 0 (
:: We have the necessary rights, go forward
echo [INFO] Administrative Access confirmed.
) else (
:: Error, insufficient privileges. Exit program.
echo [ERROR] Insufficient Access Level. Please restart script with administrative permission.
echo.
echo Press any key to exit...
pause > nul
exit
)
:: Check command-line parameter.
:: User can specify any number of minutes for the Resync interval.
:: If there is no user-specified parameter, default one is used.
set /A minutes = 00
if not "%1" == "" (
set /A minutes=%1
)
:loop
:: Synchronize Clock
:: Use /force parameter to bypass "time change too big" error
w32tm /resync /force
if not errorlevel 0 (
:: If Error, restart time service
echo [WARNING] Time Service error. Restarting service...
net stop w32time
w32tm /unregister
w32tm /register
net start w32time
w32tm /resync /force
if not errorlevel 0 (
:: Unknown error, exit program.
echo [ERROR] Unknown error.
echo.
echo Press any key to exit...
pause > nul
exit
)
)
echo.
echo [SUCCESS] Clock successfully synchronized!
echo Date: Current
echo Time: Current
echo.