From e4b673220113426e3337bb46e9fb511a50e253f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Est=C3=A9fano=20Chicco?= Date: Sat, 29 Jul 2023 11:10:59 -0300 Subject: [PATCH] FIX system path reference FEAT godmode REFACTOR othtls --- translations/english/batch/clean_en.cmd | 15 +- translations/english/batch/other_en.cmd | 293 ++++++++++++-------- translations/english/batch/repair-so_en.cmd | 6 +- translations/english/main_en.cmd | 6 +- translations/spanish/batch/clean_es.cmd | 15 +- translations/spanish/batch/other_es.cmd | 258 ++++++++++------- translations/spanish/batch/repair-so_es.cmd | 7 +- translations/spanish/main_es.cmd | 8 +- 8 files changed, 365 insertions(+), 243 deletions(-) diff --git a/translations/english/batch/clean_en.cmd b/translations/english/batch/clean_en.cmd index ca0ee9f..ff367e0 100644 --- a/translations/english/batch/clean_en.cmd +++ b/translations/english/batch/clean_en.cmd @@ -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 ) diff --git a/translations/english/batch/other_en.cmd b/translations/english/batch/other_en.cmd index b4d902e..7b2a284 100644 --- a/translations/english/batch/other_en.cmd +++ b/translations/english/batch/other_en.cmd @@ -1,90 +1,71 @@ :tl4 cls - echo. echo. echo. =================================================================================== echo. = EXTRA TOOLS = echo. =================================================================================== +echo. = 0] Back = echo. = = -echo. = 1] Stop Unnecessary Services = +echo. = _APPLICATIONS_ = +echo. = 1] Uninstall a Third Party Application = echo. = = -echo. = 2] Uninstall Apps = +echo. = 2] Uninstall a Windows Apps = echo. = = -echo. = 3] Uninstall Windows Apps = +echo. = 3] Uninstall Microsoft Office = echo. = = -echo. = 4] Uninstall Office = +echo. = 4] Install All WindowsApps = echo. = = -echo. = 5] Install All WindowsApps = +echo. = 5] Install Selection of WindowsApps = echo. = = -echo. = 6] Install Selection of WindowsApps = +echo. = 6] Install HEVC (H.265) Video Codec = echo. = = -echo. = 7] Install Updated HEVC (H.265) Video Codec = +echo. = 7] Install Office 2021 (without license) = echo. = = -echo. = 8] Install Office 2021 (without-license) = +echo. = 8] Update All Apps = echo. = = -echo. = 9] Activate Old Photo Viewer = +echo. = 9] Install PowerToys = echo. = = -echo. = 10] Add security layer to the System against Malware Execution = +echo. = _PROCESSES AND SERVICES_ = +echo. = 10] Stop Unnecessary Services = echo. = = -echo. = 11] Remove security layer to the System against Malware Execution = +echo. = 11] Recover Deleted Files = echo. = = -echo. = 12] Disable All Web Extensions (Chrome and Edge) = +echo. = 12] Disable Telemetry Collection = echo. = = -echo. = 13] Update All Available System Applications = +echo. = 13] Disable Automatic Updates (Windows Update) = echo. = = -echo. = 14] Install PowerToys = +echo. = 14] Activate Automatic Updates (Windows Update) = echo. = = -echo. = 15] Recover Deleted Files = +echo. = _SETTINGS_ = +echo. = 15] Activate Old Photo Viewer = echo. = = -echo. = 16] Remove the New Menu Design from Windows 11 = +echo. = 16] Add security layer to the System against Malware Execution = echo. = = -echo. = 17] Return to the New Windows 11 Menu Design = +echo. = 17] Remove security layer to the System against Malware Execution = echo. = = -echo. = 0] Exit = +echo. = 18] Remove the New Menu Design from Windows 11 = +echo. = = +echo. = 19] Return to the New Windows 11 Menu Design = +echo. = = +echo. = 20] Disable All Web Extensions (Chrome and Edge) = +echo. = = +echo. = 21] Disable Execution of Unsigned PS Scripts = +echo. = = +echo. = 22] EXTRA settings = echo. = = echo. =================================================================================== echo. by Ec25 echo. echo. - -set /p tool=Option = - +set /p tool=Opcion = if "%tool%" == "0" ( cd "%~p0" cd.. - main_en.cmd + main_es.cmd ) if "%tool%" == "1" ( - echo. - @REM without policy restrictions creates a system restore point, so if something goes wrong, the computer is not affected - echo Creating a restore point - powershell -ExecutionPolicy Bypass -NoExit -Command "Checkpoint-Computer -Description "FixItRestorePoint" -RestorePointType "MODIFY_SETTINGS""& powershell exit - echo. - @REM sc stop "Name of Service" - @REM sc config "Name of Service" start= disabled - sc stop defragsvc& sc config defragsvc start= disabled - sc stop XblGameSave& sc config XblGameSave start= disabled - sc stop SysMain& sc config SysMain start= disabled - sc stop Fax& sc config Fax start= disabled - sc stop TapiSrv& sc config TapiSrv start= disabled - sc stop MapsBroker& sc config MapsBroker start= disabled - sc stop SNMPTRAP& sc config SNMPTRAP start= disabled - sc stop PcaSvc& sc config PcaSvc start= demand& REM demand = manual - sc stop BDESVC& sc config BDESVC start= demand - sc stop CertPropSvc& sc config CertPropSvc start= disabled - sc stop DiagTrack& sc config DiagTrack start= disabled - sc stop dmwappushservice& sc config dmwappushservice start= disabled - sc stop BITS& sc config BITS start= disabled - sc stop Netlogon& sc config Netlogon start= disabled - sc stop XboxNetApiSvc& sc config XboxNetApiSvc start= disabled - sc stop XboxGipSvc& sc config XboxGipSvc start= disabled - sc stop RmSvc& sc config RmSvc start= disabled - pause - goto tl4 -) -if "%tool%" == "2" ( - @REM Uninstall the listed apps automatically with all necessary permissions. + @REM Uninstall the indicated apps automatically with all necessary permissions. echo. WMIC product get name echo. @@ -93,13 +74,13 @@ if "%tool%" == "2" ( echo. WARNING echo. echo. You are about to delete the specified application. This action is irreversible. Are you sure you want to continue? - set /p ans.4op3="Do you agree?[y/n]" + set /p ans.4op3="Do you agree? [Y/N]" echo. - if "%ans.4op3%" == "Y" goto 4op3.next - if "%ans.4op3%" == "y" goto 4op3.next + if "%ans.4op3%" == "S" goto 4op3.next + if "%ans.4op3%" == "s" goto 4op3.next if "%ans.4op3%" == "N" goto tl4 if "%ans.4op3%" == "n" goto tl4 - if not "%ans.4op3%" == "Y, y, N or n" goto salir + if not "%ans.4op3%" == "S, s, N or n" goto salir @REM In order for it to be uninstalled, it is necessary for the program to contain an uninstaller in its data folder && There are programs that do not fully integrate it, so it is not possible to uninstall it this way :4op3.next set /p produn=AppUni= @@ -108,7 +89,7 @@ if "%tool%" == "2" ( pause goto tl4 ) -if "%tool%" == "3" ( +if "%tool%" == "2" ( @REM Uninstall automatically indicated system-owned apps with all necessary permissions. echo. POWERSHELL "Get-AppxPackage | Select Name, PackageFullName" @@ -118,30 +99,30 @@ if "%tool%" == "3" ( echo. WARNING echo. echo. You are about to delete the specified application. This action is irreversible. Are you sure you want to continue? - set /p ans.4op4="Do you agree?[y/n]" + set /p ans.4op4="Do you agree? [Y/N]" echo. - if "%ans.4op4%" == "Y" goto 4op4.next - if "%ans.4op4%" == "y" goto 4op4.next + if "%ans.4op4%" == "S" goto 4op4.next + if "%ans.4op4%" == "s" goto 4op4.next if "%ans.4op4%" == "N" goto tl4 if "%ans.4op4%" == "n" goto tl4 goto tl4 :4op4.next - @REM set the execution policies to unrestricted in order to be able to manipulate system applications without issue + @REM set the execution policies to unrestricted so that you can manipulate system applications without inconvenience PowerShell Set-ExecutionPolicy Unrestricted echo. set /p appak=APPID= - @REM Finally the execution restriction is put back since otherwise it would be dangerous to leave it unlimited since anything could be installed on the computer without you knowing. + @REM PFinally, the execution restriction is placed again since otherwise it would be dangerous to leave it unlimited since anything could be installed on the computer without you knowing it POWERSHELL Remove-AppxPackage "%appak%" echo. PowerShell Set-ExecutionPolicy Restricted - set /p opt="Continue or go to menu? [c / m]" + set /p opt="Continue or go to menu? [C/M]" if "%opt%" == "c" goto 4op4.next if "%opt%" == "C" goto 4op4.next pause goto tl4 ) -if "%tool%" == "4" ( - @REM downloads and runs the office uninstall tool, as many times its internal uninstaller leaves residual files and keys that prevent a new instance from being installed. +if "%tool%" == "3" ( + @REM download and run the office uninstall tool, as many times its internal uninstaller leaves residual files and keys that prevent the installation of a new instance. POWERSHELL Invoke-WebRequest -Uri "https://aka.ms/SaRA-officeUninstallFromPC" -OutFile "C:\Users\%username%\Downloads\SetupProd_OffScrub.exe" timeout 5 move C:\Users\%username%\Downloads\SetupProd_OffScrub.exe "%~p0" @@ -153,24 +134,24 @@ if "%tool%" == "4" ( pause goto tl4 ) -if "%tool%" == "5" ( +if "%tool%" == "4" ( echo. PowerShell Set-ExecutionPolicy Unrestricted @REM registers a new application installation that has the Windows installer POWERSHELL "Get-AppxPackage -allusers | foreach {Add-AppxPackage -register ""$($_.InstallLocation)\appxmanifest.xml"" -DisableDevelopmentMode}" - REM Add-AppxPackage : Deployment error with HRESULT: 0x80073D02, The package could not be installed because the resources it modifies are currently in use. - REM if the above message appears, then the command was executed successfully + @REM Add-AppxPackage : Deployment error with HRESULT: 0x80073D02, The package could not be installed because the resources it modifies are currently in use. + @REM if the above message comes out, then the command is executed successfully PowerShell Set-ExecutionPolicy Restricted echo. echo. Installation successful pause goto tl4 ) -if "%tool%" == "6" ( +if "%tool%" == "5" ( echo. POWERSHELL Set-ExecutionPolicy Unrestricted echo. - @REM displays a list of applications that are available to install + @REM displays a list of apps you have available to install POWERSHELL "Get-AppxPackage -AllUsers | Select Name, PackageFullName" echo. echo "Choose the application to install from the list, and copy and paste the product identification code below (right column)" @@ -181,101 +162,158 @@ if "%tool%" == "6" ( pause goto tl4 ) -if "%tool%" == "7" ( +if "%tool%" == "6" ( + @REM download and install the latest video drivers with a web prompt, this is because many people use formats that are not natively recognized by the system, to make their installation easier POWERSHELL Invoke-WebRequest -Uri "https://free-codecs.com/download_soft.php?d=0c6f463b2b5ba2af6c8e5f8c55ed5243&s=1024&r=&f=hevc_video_extension.htm" -OutFile "C:\Users\%username%\Downloads\Microsoft.HEVCVideoExtensionx64.Appx" timeout 5 MOVE "C:\Users\%username%\Downloads\Microsoft.HEVCVideoExtensionx64.Appx" "%~p0" cd "%~p0" start Microsoft.HEVCVideoExtensionx64.Appx - echo Ready, run the Setup.exe and your program will be installed. + echo Done, run the Setup.exe and your program is installed. pause goto tl4 ) -if "%tool%" == "8" ( +if "%tool%" == "7" ( @REM From Microsoft servers download an office iso with a trial version, and if the user has an active license all the features POWERSHELL Invoke-WebRequest -Uri "https://officecdn.microsoft.com/db/492350f6-3a01-4f97-b9c0-c7c6ddf67d60/media/en-us/ProPlus2021Retail.img" -OutFile "C:\Users\%username%\Downloads\ProPlus2021Retail.img" timeout 5 MOVE "C:\Users\%username%\Downloads\ProPlus2021Retail.img" "%~p0" cd "%~p0" start ProPlus2021Retail.img - echo Ready, run the Setup.exe and your program will be installed. + echo Done, run the Setup.exe and your program is installed. + pause + goto tl4 +) +if "%tool%" == "8" ( + echo. + @REM winget searches the list of installed applications for available updates, if it finds them it installs them automatically + POWERSHELL winget upgrade --all + echo. pause goto tl4 ) if "%tool%" == "9" ( - @REM activates all the registry keys needed to run the old windows viewer which has amazing performance - reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap" /v "ImageOptionFlags" /t REG_DWORD /d 00000001 /f - reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap" /v "FriendlyTypeName" /t REG_EXPAND_SZ /d "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3056" /f - reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap\DefaultIcon" /ve /t REG_EXPAND_SZ /d "%SystemRoot%\System32\imageres.dll,-70" /f - reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap\shell\open\command" /ve /t REG_EXPAND_SZ /d "\"%SystemRoot%\System32\cmd.exe\" /c \"\"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll\" \"%1\"\"" /f - reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap\shell\open\DropTarget" /v "Clsid" /t REG_SZ /d "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}" /f - reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.JFIF" /v "EditFlags" /t REG_DWORD /d 00010000 /f - reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.JFIF" /v "ImageOptionFlags" /t REG_DWORD /d 00000001 /f - reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.JFIF" /v "FriendlyTypeName" /t REG_EXPAND_SZ /d "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3056" /f + echo. + POWERSHELL winget install --id Microsoft.PowerToys + echo. pause goto tl4 ) if "%tool%" == "10" ( - echo. Security Layer Enabled - @REM set the execution privacy log setting to enabled - REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "ConsentPromptBehaviorAdmin" /t REG_DWORD /d 1 /f - echo. Done... + echo. + @REM no policy restrictions creates a system restore point, so if something goes wrong, the computer is not affected + echo Creating a Restore point + powershell -ExecutionPolicy Bypass -Command "Checkpoint-Computer -Description "FixItRestorePoint" -RestorePointType "MODIFY_SETTINGS""&powershell exit + echo. + @REM sc stop "Name of Service" + @REM sc config "Name of Service" start= disabled + sc stop defragsvc& sc config defragsvc start= disabled + sc stop XblGameSave& sc config XblGameSave start= disabled + sc stop SysMain& sc config SysMain start= disabled + sc stop Fax& sc config Fax start= disabled + sc stop RemoteRegistry& sc config RemoteRegistry start= disable + sc stop TapiSrv& sc config TapiSrv start= disabled + sc stop MapsBroker& sc config MapsBroker start= disabled + sc stop SNMPTRAP& sc config SNMPTRAP start= disabled + sc stop PcaSvc& sc config PcaSvc start= demand& REM demand = manual + sc stop BDESVC& sc config BDESVC start= demand + sc stop CertPropSvc& sc config CertPropSvc start= disabled + sc stop DiagTrack& sc config DiagTrack start= disabled + sc stop dmwappushservice& sc config dmwappushservice start= disabled + sc stop BITS& sc config BITS start= disabled + sc stop Netlogon& sc config Netlogon start= disabled + sc stop XboxNetApiSvc& sc config XboxNetApiSvc start= disabled + sc stop XboxGipSvc& sc config XboxGipSvc start= disabled + sc stop RmSvc& sc config RmSvc start= disabled pause goto tl4 ) if "%tool%" == "11" ( - echo. Security Layer Disabled - @REM set the execution privacy section registry setting to disabled - reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "ConsentPromptBehaviorAdmin" /t REG_DWORD /d 5 /f - echo. Done... + echo. + set /p inst="Do you have 'Windows File Recovery' installed? [Y/n]" + if "%inst%" == "s" goto continue + if "%inst%" == "S" goto continue + if "%inst%" == "" goto continue + :install + start https://apps.microsoft.com/store/detail/windows-file-recovery/9N26S50LN705 + pause + :continue + echo. + set /p search="Location to Search:[C://...] " + set /p save="Location to Store the Found:[C://...] " + set /p filters="Filters[/n ''user\\download'' /n ''*.pdf''] " + @REM scans the drive for deleted files where the user indicates in the filter + winfr "%search%" "%save%" /regular %filters% + echo. pause goto tl4 ) if "%tool%" == "12" ( + @REM Disable Windows Telemetry through the System Registry + reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v AllowTelemetry /t REG_DWORD /d 0 /f + @REM Restart the telemetry service + net stop DiagTrack + net stop dmwappushservice echo. - @REM runs internal browser commands to disable extensions due to crashes, errors, or conflicts - "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-extensions - "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" --disable-extensions + echo Telemetry disabled successfully. echo. pause goto tl4 ) if "%tool%" == "13" ( + @REM Stop the Windows Update service + net stop wuauserv + @REM Disable automatic updates through the Registry + @REM NoAutoUpdate = 1 : Activated the blocking of updates + reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoUpdate /t REG_DWORD /d 1 /f echo. - @REM winget searches the list of installed applications for available updates, if it finds them it installs them automatically - POWERSHELL winget upgrade --all + echo Automatic updates successfully disabled. echo. pause goto tl4 ) if "%tool%" == "14" ( + @REM Activate automatic updates through the Registry + @REM NoAutoUpdate = 0 : Disabled Lock + reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoUpdate /t REG_DWORD /d 0 /f + @REM Activate the windows update service + net start wuauserv echo. - POWERSHELL winget install --id Microsoft.PowerToys + echo Automatic updates successfully enabled. echo. pause goto tl4 ) if "%tool%" == "15" ( - echo. - set /p inst="Do you have 'Windows File Recovery' installed? [Y/n]" - if "%inst%" == "y" goto continue - if "%inst%" == "Y" goto continue - if "%inst%" == "" goto continue - :install - start https://apps.microsoft.com/store/detail/windows-file-recovery/9N26S50LN705 - pause - :continue - echo. - set /p search="Location to Search:[C://...] " - set /p save="Location to Store the Found:[C://...] " - set /p filters="filters[/n ''user\\download'' /n ''*.pdf''] " - @REM scans the drive for deleted files where the user indicates in the filter - winfr "%search%" "%save%" /regular %filters% - echo. + @REM activates all the registry keys needed to run the old windows viewer which has amazing performance + reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap" /v "ImageOptionFlags" /t REG_DWORD /d 00000001 /f + reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap" /v "FriendlyTypeName" /t REG_EXPAND_SZ /d "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3056" /f + reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap\DefaultIcon" /ve /t REG_EXPAND_SZ /d "%SystemRoot%\System32\imageres.dll,-70" /f + reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap\shell\open\command" /ve /t REG_EXPAND_SZ /d "\"%SystemRoot%\System32\cmd.exe\" /c \"\"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll\" \"%1\"\"" /f + reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap\shell\open\DropTarget" /v "Clsid" /t REG_SZ /d "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}" /f + reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.JFIF" /v "EditFlags" /t REG_DWORD /d 00010000 /f + reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.JFIF" /v "ImageOptionFlags" /t REG_DWORD /d 00000001 /f + reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.JFIF" /v "FriendlyTypeName" /t REG_EXPAND_SZ /d "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3056" /f pause goto tl4 ) if "%tool%" == "16" ( + echo. Security Layer Enabled + @REM set the execution privacy log setting to enabled + REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "ConsentPromptBehaviorAdmin" /t REG_DWORD /d 1 /f + echo. Done... + pause + goto tl4 +) +if "%tool%" == "17" ( + echo. Security Layer Disabled + @REM set the runtime privacy section registry setting to disabled + reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "ConsentPromptBehaviorAdmin" /t REG_DWORD /d 5 /f + echo. Done... + pause + goto tl4 +) +if "%tool%" == "18" ( @REM Create module in the registry to enable the old menu. echo. Old Menu Enabled reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve @@ -285,7 +323,7 @@ if "%tool%" == "16" ( pause goto tl4 ) -if "%tool%" == "17" ( +if "%tool%" == "19" ( @REM Delete menu module echo. Old Menu Disabled reg delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f @@ -295,6 +333,31 @@ if "%tool%" == "17" ( pause goto tl4 ) -else ( +if "%tool%" == "20" ( + echo. + @REM run internal browser commands to disable extensions due to crashes, errors, or conflicts + "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-extensions + "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" --disable-extensions + echo. + pause + goto tl4 +) +if "%tool%" == "21" ( + @REM Disable execution of unsigned PowerShell scripts + reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell" /v ExecutionPolicy /t REG_SZ /d "RemoteSigned" /f + echo. + echo Execution of unsigned PowerShell scripts successfully disabled. + pause + goto tl4 +) +if "%tool%" == "22" ( + if exist "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" ( + start explorer.exe "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" + ) else ( + mkdir "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" + ) + pause + goto tl4 +) else ( goto tl4 ) \ No newline at end of file diff --git a/translations/english/batch/repair-so_en.cmd b/translations/english/batch/repair-so_en.cmd index af004ea..7446fe5 100644 --- a/translations/english/batch/repair-so_en.cmd +++ b/translations/english/batch/repair-so_en.cmd @@ -4,7 +4,7 @@ cls echo. echo. echo. =================================================================================== -echo. = TOOLS TO REPAIR OS = +echo. = WINDOWS TOOLS = echo. =================================================================================== echo. = = echo. = 1] System file check = @@ -19,7 +19,7 @@ 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. = = @@ -27,9 +27,7 @@ echo. ==================================================================== echo. by Ec25 echo. echo. - set /p tool=Option = - if "%tool%" == "0" ( cd "%~p0" cd.. diff --git a/translations/english/main_en.cmd b/translations/english/main_en.cmd index b6da2c7..2d6d34a 100644 --- a/translations/english/main_en.cmd +++ b/translations/english/main_en.cmd @@ -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) @@ -18,7 +17,6 @@ if %errorLevel% == 0 ( echo YOU NEED TO BE AN ADMINISTRATOR pause >nul ) - :ini cls echo. @@ -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 diff --git a/translations/spanish/batch/clean_es.cmd b/translations/spanish/batch/clean_es.cmd index 85fed6f..668709a 100644 --- a/translations/spanish/batch/clean_es.cmd +++ b/translations/spanish/batch/clean_es.cmd @@ -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 ) diff --git a/translations/spanish/batch/other_es.cmd b/translations/spanish/batch/other_es.cmd index 2eeb5b3..ce569e4 100644 --- a/translations/spanish/batch/other_es.cmd +++ b/translations/spanish/batch/other_es.cmd @@ -1,89 +1,70 @@ :tl4 cls - echo. echo. echo. =================================================================================== echo. = HERRAMIENTAS EXTRAS = echo. =================================================================================== +echo. = 0] Atras = echo. = = -echo. = 1] Detener Servicios Innecesarios = +echo. = _APLICACIONES_ = +echo. = 1] Desintalar una Aplicacion de Tercero = echo. = = -echo. = 2] Desinstalar Aplicaciones = +echo. = 2] Desinstalar una Aplicaciones de Windows = echo. = = -echo. = 3] Desinstalar Aplicaciones de Windows = +echo. = 3] Desinstalar Microsoft Office = echo. = = -echo. = 4] Desinstalar Office = +echo. = 4] Instalar Todas las WindowsApps = echo. = = -echo. = 5] Instalar Todas las WindowsApps = +echo. = 5] Instalar Seleccion de WindowsApps = echo. = = -echo. = 6] Instalar Seleccion de WindowsApps = +echo. = 6] Instalar Codec de Video HEVC (H.265) = echo. = = -echo. = 7] Instalar Codec de Video HEVC (H.265) Actializado = +echo. = 7] Instalar Office 2021 (sin licencia) = echo. = = -echo. = 8] Instalar Office 2021 (sin-licencia) = +echo. = 8] Actualizar Todas las Aplicaciones = echo. = = -echo. = 9] Activar Viejo Visor de Fotos = +echo. = 9] Instalar PowerToys = echo. = = -echo. = 10] Agregar capa de seguridad al Sistema contra Ejecucion de Malware = +echo. = _PROCESOS Y SERVICIOS_ = +echo. = 10] Detener Servicios Innecesarios = echo. = = -echo. = 11] Quitar capa de seguridad al Sistema contra Ejecucion de Malware = +echo. = 11] Recuperar Archivos Borrados = echo. = = -echo. = 12] Deshabilitar Todas las Extensiones Webs (Chrome y Edge) = +echo. = 12] Desactivar Recopilacion de Telemetria = echo. = = -echo. = 13] Actualizar Todas las Aplicaciones Disponibles del Sistema = +echo. = 13] Desactivar Actualizaciones Automaticas (Win Update) = echo. = = -echo. = 14] Instalar PowerToys = +echo. = 14] Activar Actualizaciones Automaticas (Win Update) = echo. = = -echo. = 15] Recuperar Archivos Borrados = +echo. = _CONFIGURACIONES_ = +echo. = 15] Activar Viejo Visor de Fotos = echo. = = -echo. = 16] Quitar el Nuevo disegno de Menu de Windows 11 = +echo. = 16] Agregar capa de seguridad al Sistema contra Ejecucion de Malware = echo. = = -echo. = 17] Volver al Nuevo disegno de Menu de Windows 11 = +echo. = 17] Quitar capa de seguridad al Sistema contra Ejecucion de Malware = echo. = = -echo. = 0] Salir = +echo. = 18] Quitar el Nuevo disegno de Menu de Windows 11 = +echo. = = +echo. = 19] Volver al Nuevo disegno de Menu de Windows 11 = +echo. = = +echo. = 20] Deshabilitar Todas las Extensiones Webs (Chrome y Edge) = +echo. = = +echo. = 21] Desactivar la Ejecucion de Scripts PS no Firmados = +echo. = = +echo. = 22] Configuraciones EXTRAS = echo. = = echo. =================================================================================== echo. by Ec25 echo. echo. - set /p tool=Opcion = - if "%tool%" == "0" ( cd "%~p0" cd.. main_es.cmd ) if "%tool%" == "1" ( - echo. - @REM sin restricciones de política crea un punto de restauración del sistema, de modo que si algo sale mal, la computadora no se ve afectada - echo Creando un punto de Restauracion - powershell -ExecutionPolicy Bypass -NoExit -Command "Checkpoint-Computer -Description "FixItRestorePoint" -RestorePointType "MODIFY_SETTINGS""& powershell exit - echo. - @REM sc stop "Name of Service" - @REM sc config "Name of Service" start= disabled - sc stop defragsvc& sc config defragsvc start= disabled - sc stop XblGameSave& sc config XblGameSave start= disabled - sc stop SysMain& sc config SysMain start= disabled - sc stop Fax& sc config Fax start= disabled - sc stop TapiSrv& sc config TapiSrv start= disabled - sc stop MapsBroker& sc config MapsBroker start= disabled - sc stop SNMPTRAP& sc config SNMPTRAP start= disabled - sc stop PcaSvc& sc config PcaSvc start= demand& REM demand = manual - sc stop BDESVC& sc config BDESVC start= demand - sc stop CertPropSvc& sc config CertPropSvc start= disabled - sc stop DiagTrack& sc config DiagTrack start= disabled - sc stop dmwappushservice& sc config dmwappushservice start= disabled - sc stop BITS& sc config BITS start= disabled - sc stop Netlogon& sc config Netlogon start= disabled - sc stop XboxNetApiSvc& sc config XboxNetApiSvc start= disabled - sc stop XboxGipSvc& sc config XboxGipSvc start= disabled - sc stop RmSvc& sc config RmSvc start= disabled - pause - goto tl4 -) -if "%tool%" == "2" ( @REM Desinstale las aplicaciones indicadas automáticamente con todos los permisos necesarios. echo. WMIC product get name @@ -108,7 +89,7 @@ if "%tool%" == "2" ( pause goto tl4 ) -if "%tool%" == "3" ( +if "%tool%" == "2" ( @REM Desinstale las aplicaciones propiedad del sistema indicadas automáticamente con todos los permisos necesarios. echo. POWERSHELL "Get-AppxPackage | Select Name, PackageFullName" @@ -140,7 +121,7 @@ if "%tool%" == "3" ( pause goto tl4 ) -if "%tool%" == "4" ( +if "%tool%" == "3" ( @REM descarga y ejecuta la herramienta de desinstalación de office, ya que muchas veces su desinstalador interno deja archivos y claves residuales que impiden la instalación de una nueva instancia. POWERSHELL Invoke-WebRequest -Uri "https://aka.ms/SaRA-officeUninstallFromPC" -OutFile "C:\Users\%username%\Downloads\SetupProd_OffScrub.exe" timeout 5 @@ -153,20 +134,20 @@ if "%tool%" == "4" ( pause goto tl4 ) -if "%tool%" == "5" ( +if "%tool%" == "4" ( echo. PowerShell Set-ExecutionPolicy Unrestricted @REM registra una nueva instalación de aplicación que tiene el instalador de Windows POWERSHELL "Get-AppxPackage -allusers | foreach {Add-AppxPackage -register ""$($_.InstallLocation)\appxmanifest.xml"" -DisableDevelopmentMode}" - REM Add-AppxPackage : Error de implementación con HRESULT: 0x80073D02, No se pudo instalar el paquete porque los recursos que modifica están actualmente en uso. - REM si sale el mensaje anterior, entonces el comando se ejecuto con exito + @REM Add-AppxPackage : Error de implementación con HRESULT: 0x80073D02, No se pudo instalar el paquete porque los recursos que modifica están actualmente en uso. + @REM si sale el mensaje anterior, entonces el comando se ejecuto con exito PowerShell Set-ExecutionPolicy Restricted echo. echo. Instalacion exitosa pause goto tl4 ) -if "%tool%" == "6" ( +if "%tool%" == "5" ( echo. POWERSHELL Set-ExecutionPolicy Unrestricted echo. @@ -181,7 +162,7 @@ if "%tool%" == "6" ( pause goto tl4 ) -if "%tool%" == "7" ( +if "%tool%" == "6" ( @REM descargue e instale los controladores de video más recientes con una solicitud web, esto se debe a que muchas personas usan formatos que no son reconocidos de forma nativa por el sistema, para facilitar su instalación POWERSHELL Invoke-WebRequest -Uri "https://free-codecs.com/download_soft.php?d=0c6f463b2b5ba2af6c8e5f8c55ed5243&s=1024&r=&f=hevc_video_extension.htm" -OutFile "C:\Users\%username%\Downloads\Microsoft.HEVCVideoExtensionx64.Appx" timeout 5 @@ -192,7 +173,7 @@ if "%tool%" == "7" ( pause goto tl4 ) -if "%tool%" == "8" ( +if "%tool%" == "7" ( @REM Desde los servidores de Microsoft descarga una iso ofimática con una versión de prueba, y si el usuario tiene una licencia activa todas las funcionalidades POWERSHELL Invoke-WebRequest -Uri "https://officecdn.microsoft.com/db/492350f6-3a01-4f97-b9c0-c7c6ddf67d60/media/en-us/ProPlus2021Retail.img" -OutFile "C:\Users\%username%\Downloads\ProPlus2021Retail.img" timeout 5 @@ -203,60 +184,51 @@ if "%tool%" == "8" ( pause goto tl4 ) -if "%tool%" == "9" ( - @REM activa todas las claves de registro necesarias para ejecutar el antiguo visor de Windows que tiene un rendimiento sorprendente - reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap" /v "ImageOptionFlags" /t REG_DWORD /d 00000001 /f - reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap" /v "FriendlyTypeName" /t REG_EXPAND_SZ /d "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3056" /f - reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap\DefaultIcon" /ve /t REG_EXPAND_SZ /d "%SystemRoot%\System32\imageres.dll,-70" /f - reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap\shell\open\command" /ve /t REG_EXPAND_SZ /d "\"%SystemRoot%\System32\cmd.exe\" /c \"\"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll\" \"%1\"\"" /f - reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap\shell\open\DropTarget" /v "Clsid" /t REG_SZ /d "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}" /f - reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.JFIF" /v "EditFlags" /t REG_DWORD /d 00010000 /f - reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.JFIF" /v "ImageOptionFlags" /t REG_DWORD /d 00000001 /f - reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.JFIF" /v "FriendlyTypeName" /t REG_EXPAND_SZ /d "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3056" /f - pause - goto tl4 -) -if "%tool%" == "10" ( - echo. Capa de Seguridad Habilitada - @REM estableció la configuración del registro de privacidad de ejecución en habilitado - REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "ConsentPromptBehaviorAdmin" /t REG_DWORD /d 1 /f - echo. Listo... - pause - goto tl4 -) -if "%tool%" == "11" ( - echo. Capa de Seguridad Deshabilitada - @REM estableció la configuración de registro de la sección de privacidad de ejecución en deshabilitada - reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "ConsentPromptBehaviorAdmin" /t REG_DWORD /d 5 /f - echo. Listo... - pause - goto tl4 -) -if "%tool%" == "12" ( +if "%tool%" == "8" ( echo. - @REM ejecuta comandos internos del navegador para deshabilitar extensiones debido a bloqueos, errores o conflictos - "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-extensions - "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" --disable-extensions + @REM winget busca en la lista de aplicaciones instaladas las actualizaciones disponibles, si las encuentra las instala automáticamente + POWERSHELL winget upgrade --all echo. pause goto tl4 ) -if "%tool%" == "13" ( +if "%tool%" == "9" ( echo. - @REM winget busca en la lista de aplicaciones instaladas las actualizaciones disponibles, si las encuentra las instala automáticamente - POWERSHELL winget upgrade --all + POWERSHELL winget install --id Microsoft.PowerToys echo. pause goto tl4 ) -if "%tool%" == "14" ( +if "%tool%" == "10" ( echo. - POWERSHELL winget install --id Microsoft.PowerToys + @REM sin restricciones de política crea un punto de restauración del sistema, de modo que si algo sale mal, la computadora no se ve afectada + echo Creando un punto de Restauracion + powershell -ExecutionPolicy Bypass -Command "Checkpoint-Computer -Description "FixItRestorePoint" -RestorePointType "MODIFY_SETTINGS""&powershell exit echo. + @REM sc stop "Name of Service" + @REM sc config "Name of Service" start= disabled + sc stop defragsvc& sc config defragsvc start= disabled + sc stop XblGameSave& sc config XblGameSave start= disabled + sc stop SysMain& sc config SysMain start= disabled + sc stop Fax& sc config Fax start= disabled + sc stop RemoteRegistry& sc config RemoteRegistry start= disable + sc stop TapiSrv& sc config TapiSrv start= disabled + sc stop MapsBroker& sc config MapsBroker start= disabled + sc stop SNMPTRAP& sc config SNMPTRAP start= disabled + sc stop PcaSvc& sc config PcaSvc start= demand& REM demand = manual + sc stop BDESVC& sc config BDESVC start= demand + sc stop CertPropSvc& sc config CertPropSvc start= disabled + sc stop DiagTrack& sc config DiagTrack start= disabled + sc stop dmwappushservice& sc config dmwappushservice start= disabled + sc stop BITS& sc config BITS start= disabled + sc stop Netlogon& sc config Netlogon start= disabled + sc stop XboxNetApiSvc& sc config XboxNetApiSvc start= disabled + sc stop XboxGipSvc& sc config XboxGipSvc start= disabled + sc stop RmSvc& sc config RmSvc start= disabled pause goto tl4 ) -if "%tool%" == "15" ( +if "%tool%" == "11" ( echo. set /p inst="Tienes 'Windows File Recovery' instalado? [S/n]" if "%inst%" == "s" goto continue @@ -276,7 +248,72 @@ if "%tool%" == "15" ( pause goto tl4 ) +if "%tool%" == "12" ( + @REM Desactivar la Telemetria de Windows a traves del Registro del Sistema + reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v AllowTelemetry /t REG_DWORD /d 0 /f + @REM Reiniciar el servicio de telemetría + net stop DiagTrack + net stop dmwappushservice + echo. + echo Telemetría desactivada correctamente. + echo. + pause + goto tl4 +) +if "%tool%" == "13" ( + @REM Detener el servicio de Windows Update + net stop wuauserv + @REM Desactivar las actualizaciones automaticas a traves del Registro + @REM NoAutoUpdate = 1 : Activado el Bloqueo de actualizaciones + reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoUpdate /t REG_DWORD /d 1 /f + echo. + echo Actualizaciones automáticas deshabilitadas correctamente. + echo. + pause + goto tl4 +) +if "%tool%" == "14" ( + @REM Activar las actualizaciones automaticas a traves del Registro + @REM NoAutoUpdate = 0 : Desactivado el Bloqueo + reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoUpdate /t REG_DWORD /d 0 /f + @REM Activar el servicio de win update + net start wuauserv + echo. + echo Actualizaciones automáticas habilitadas correctamente. + echo. + pause + goto tl4 +) +if "%tool%" == "15" ( + @REM activa todas las claves de registro necesarias para ejecutar el antiguo visor de Windows que tiene un rendimiento sorprendente + reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap" /v "ImageOptionFlags" /t REG_DWORD /d 00000001 /f + reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap" /v "FriendlyTypeName" /t REG_EXPAND_SZ /d "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3056" /f + reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap\DefaultIcon" /ve /t REG_EXPAND_SZ /d "%SystemRoot%\System32\imageres.dll,-70" /f + reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap\shell\open\command" /ve /t REG_EXPAND_SZ /d "\"%SystemRoot%\System32\cmd.exe\" /c \"\"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll\" \"%1\"\"" /f + reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap\shell\open\DropTarget" /v "Clsid" /t REG_SZ /d "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}" /f + reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.JFIF" /v "EditFlags" /t REG_DWORD /d 00010000 /f + reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.JFIF" /v "ImageOptionFlags" /t REG_DWORD /d 00000001 /f + reg add "HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.JFIF" /v "FriendlyTypeName" /t REG_EXPAND_SZ /d "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3056" /f + pause + goto tl4 +) if "%tool%" == "16" ( + echo. Capa de Seguridad Habilitada + @REM estableció la configuración del registro de privacidad de ejecución en habilitado + REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "ConsentPromptBehaviorAdmin" /t REG_DWORD /d 1 /f + echo. Listo... + pause + goto tl4 +) +if "%tool%" == "17" ( + echo. Capa de Seguridad Deshabilitada + @REM estableció la configuración de registro de la sección de privacidad de ejecución en deshabilitada + reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "ConsentPromptBehaviorAdmin" /t REG_DWORD /d 5 /f + echo. Listo... + pause + goto tl4 +) +if "%tool%" == "18" ( @REM Crear modulo en el registro para habilitar el menu viejo. echo. Menu Viejo Habilitado reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve @@ -286,7 +323,7 @@ if "%tool%" == "16" ( pause goto tl4 ) -if "%tool%" == "17" ( +if "%tool%" == "19" ( @REM Borrar el modulo del menu echo. Menu Viejo Deshabilitado reg delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f @@ -296,6 +333,31 @@ if "%tool%" == "17" ( pause goto tl4 ) -else ( +if "%tool%" == "20" ( + echo. + @REM ejecuta comandos internos del navegador para deshabilitar extensiones debido a bloqueos, errores o conflictos + "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-extensions + "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" --disable-extensions + echo. + pause + goto tl4 +) +if "%tool%" == "21" ( + @REM Desactivar la ejecucióo de scripts de PowerShell no firmados + reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell" /v ExecutionPolicy /t REG_SZ /d "RemoteSigned" /f + echo. + echo Ejecucion de scripts de PowerShell no firmados desactivada correctamente. + pause + goto tl4 +) +if "%tool%" == "22" ( + if exist "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" ( + start explorer.exe "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" + ) else ( + mkdir "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" + ) + pause + goto tl4 +) else ( goto tl4 ) \ No newline at end of file diff --git a/translations/spanish/batch/repair-so_es.cmd b/translations/spanish/batch/repair-so_es.cmd index 2e11689..1028c24 100644 --- a/translations/spanish/batch/repair-so_es.cmd +++ b/translations/spanish/batch/repair-so_es.cmd @@ -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 = @@ -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. = = @@ -27,9 +26,7 @@ echo. ==================================================================== echo. by Ec25 echo. echo. - set /p tool=Opcion = - if "%tool%" == "0" ( cd "%~p0" cd.. diff --git a/translations/spanish/main_es.cmd b/translations/spanish/main_es.cmd index 0b9754d..c2ae8c4 100644 --- a/translations/spanish/main_es.cmd +++ b/translations/spanish/main_es.cmd @@ -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) @@ -18,7 +17,6 @@ if %errorLevel% == 0 ( echo NECESITA SER ADMINISTRADOR pause >nul ) - :ini cls echo. @@ -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. = = @@ -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