Skip to content

Commit

Permalink
FIX system path reference FEAT godmode REFACTOR othtls
Browse files Browse the repository at this point in the history
  • Loading branch information
Ec-25 committed Jul 29, 2023
1 parent 630e8be commit e4b6732
Show file tree
Hide file tree
Showing 8 changed files with 365 additions and 243 deletions.
15 changes: 10 additions & 5 deletions translations/english/batch/clean_en.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,22 @@ if "%tool%" == "1" (
echo Save and Close everything before continuing
pause
@REM Temp
del C:\Users\%username%\AppData\Local\Temp /f /s /q
rd C:\Users\%username%\AppData\Local\Temp /s /q
echo.
del C:\Users\"%username%"\AppData\Local\Temp /f /s /q
del C:\Users\"%username%"\AppData\Local\IconCache.db /f /s /q
rd C:\Users\"%username%"\AppData\Local\Temp /s /q
echo.
del C:\Windows\Temp /f /s /q
rd C:\Windows\Temp /s /q
@REM Dns
echo.
CLEANMGR /D C:
POWERSHELL Get-DnsClientCache
POWERSHELL Clear-DnsClientCache
@REM RecycleBin
rd /s /q %USERPROFILE%\RecycleBin
mkdir %USERPROFILE%\RecycleBin
@REM Papelera
rd /s /q "%userprofile%"\RecycleBin
echo.
mkdir "%userprofile%"\RecycleBin
pause
goto tll
)
Expand Down
293 changes: 178 additions & 115 deletions translations/english/batch/other_en.cmd

Large diffs are not rendered by default.

6 changes: 2 additions & 4 deletions translations/english/batch/repair-so_en.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cls
echo.
echo.
echo. ===================================================================================
echo. = TOOLS TO REPAIR OS =
echo. = WINDOWS TOOLS =
echo. ===================================================================================
echo. = =
echo. = 1] System file check =
Expand All @@ -19,17 +19,15 @@ echo. = 5] Convert MBR Disk to GPT (Not Recommended)
echo. = =
echo. = 6] Force System Updates (not recommended) =
echo. = =
echo. = 7] Defrag Main Drive =
echo. = 7] Check for and Apply System Updates =
echo. = =
echo. = 0] Exit =
echo. = =
echo. ===================================================================================
echo. by Ec25
echo.
echo.

set /p tool=Option =

if "%tool%" == "0" (
cd "%~p0"
cd..
Expand Down
6 changes: 1 addition & 5 deletions translations/english/main_en.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
@REM if "%1" the process runs in a way other than maximized, start a new minimized process and kill the process that was not maximized
if not "%1" == "max" start /MAX cmd /c %0 max & exit/b
color 17
title FixIt V1.14.2

title FixIt V1.14.6
:check_Permissions
@REM Network session requests admin permissions
@REM if the process has these permissions, it does not return the error and continues its execution (%errorLevel% == 0)
Expand All @@ -18,7 +17,6 @@ if %errorLevel% == 0 (
echo YOU NEED TO BE AN ADMINISTRATOR
pause >nul
)

:ini
cls
echo.
Expand Down Expand Up @@ -49,9 +47,7 @@ echo. =
echo. ===================================================================================
echo. by Ec25
echo.

set /p tool=Option =

@REM in this section the new menu to be displayed is determined.
if "%tool%" == "0" (
exit
Expand Down
15 changes: 10 additions & 5 deletions translations/spanish/batch/clean_es.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,23 @@ if "%tool%" == "1" (
@REM elimina la carpeta temporal en silencio; tanto local como Windows. Al mismo tiempo, ejecuta el limpiador de ventanas interno y tambien limpia el cache de dns.
echo Guarde y Cierre todo antes de continuar
pause
@REM Temporales
del C:\Users\%username%\AppData\Local\Temp /f /s /q
rd C:\Users\%username%\AppData\Local\Temp /s /q
@REM Temp
echo.
del C:\Users\"%username%"\AppData\Local\Temp /f /s /q
del C:\Users\"%username%"\AppData\Local\IconCache.db /f /s /q
rd C:\Users\"%username%"\AppData\Local\Temp /s /q
echo.
del C:\Windows\Temp /f /s /q
rd C:\Windows\Temp /s /q
@REM Dns
echo.
CLEANMGR /D C:
POWERSHELL Get-DnsClientCache
POWERSHELL Clear-DnsClientCache
@REM Papelera
rd /s /q %USERPROFILE%\RecycleBin
mkdir %USERPROFILE%\RecycleBin
rd /s /q "%userprofile%"\RecycleBin
echo.
mkdir "%userprofile%"\RecycleBin
pause
goto tll
)
Expand Down
258 changes: 160 additions & 98 deletions translations/spanish/batch/other_es.cmd

Large diffs are not rendered by default.

7 changes: 2 additions & 5 deletions translations/spanish/batch/repair-so_es.cmd
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
:tl1
cls

echo.
echo.
echo. ===================================================================================
echo. = HERRAMIENTAS PARA REPARAR SO =
echo. = HERRAMIENTAS PARA WINDOWS =
echo. ===================================================================================
echo. = =
echo. = 1] Comprobacion de archivos del sistema =
Expand All @@ -17,7 +16,7 @@ echo. = 4] Analisis de la estructura de datos en el disco
echo. = =
echo. = 5] Convertir Disco MBR a GPT (no recomendado) =
echo. = =
echo. = 6] Forzar Actualizaciones Del Sistema (no recomendado) =
echo. = 6] Buscar y Aplicar Actualizaciones Del Sistema =
echo. = =
echo. = 7] Desfragmentar la Unidad Principal =
echo. = =
Expand All @@ -27,9 +26,7 @@ echo. ====================================================================
echo. by Ec25
echo.
echo.

set /p tool=Opcion =

if "%tool%" == "0" (
cd "%~p0"
cd..
Expand Down
8 changes: 2 additions & 6 deletions translations/spanish/main_es.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
@REM si "%1" el proceso se ejecuta de una forma distinta a la maximizada, inicia un nuevo proceso minimizado y cierra el proceso que no fue maximizado
if not "%1" == "max" start /MAX cmd /c %0 max & exit/b
color 17
title FixIt V1.14.2

title FixIt V1.14.6
:check_Permissions
@REM La sesión de red solicita permisos de administrador
@REM si el proceso tiene dichos permisos no devuelve el error y continua su ejecucion(%errorLevel% == 0)
Expand All @@ -18,7 +17,6 @@ if %errorLevel% == 0 (
echo NECESITA SER ADMINISTRADOR
pause >nul
)

:ini
cls
echo.
Expand All @@ -39,7 +37,7 @@ echo. =
echo. = 3] Accesos Directos de Herramientas del Sistema =
echo. = =
echo. = EXTERNAS =
echo. = 4] Herramientas Extras =
echo. = 4] Herramientas Varias =
echo. = =
echo. = 5] Herramientas de Terceros =
echo. = =
Expand All @@ -49,9 +47,7 @@ echo. =
echo. ===================================================================================
echo. by Ec25
echo.

set /p tool=Opcion =

@REM en esta sección se determina el nuevo menú a desplegar.
if "%tool%" == "0" (
exit
Expand Down

0 comments on commit e4b6732

Please sign in to comment.