-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbyebyetimer.bat
More file actions
35 lines (28 loc) · 819 Bytes
/
byebyetimer.bat
File metadata and controls
35 lines (28 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@echo off
title SAP
color 1F
set password=password2
set dd=13
set mm=07
set aaaa=2011
set sapstart="C:\Program Files\Cracklock\Bin\MCL.exe" "C:\USR\SAP\NSP\SYS\EXE\UC\NTI386\SAPSTART.EXE"
echo Deteniendo Temporalmente servicio de SAP
net stop SAPNSP_00
echo Estableciendo contraseña %password% a usuario
net user Administrator %password%
echo Estableciendo fecha a 13 de julio de 2011
date %mm%/%dd%/%aaaa%
echo Desactivando servicio de timesync (w32time)
sc config w32time start= disabled
echo Deteniendo servicio de timesync (w32time)
net stop w32time
echo Reiniciando servicio de SAP
net start SAPNSP_00
echo Abriendo SAP
echo cuando abra debe iniciar sap
echo si la solicita, la contraseña es %password%
%sapstart%
: OPCIONAL (Habilitar temas visuales)
sc config Themes start= auto
net start Themes
pause