Hi everyone.
I have created an EXE file to repair and optimize Windows with Advanced Bat to EXE file converter.
but after exporting as EXE file and scanning it on VirusTotal website it says that it's a trojan
what should I do now? 
here is the download link for EXE file.
I'm not a pro user and this is my first try to create an app.
So download it at your own risk:
drive.google.com
if it's really a virus, what should I do to clean my windows from it?
here is my code:
I have created an EXE file to repair and optimize Windows with Advanced Bat to EXE file converter.
but after exporting as EXE file and scanning it on VirusTotal website it says that it's a trojan

here is the download link for EXE file.
I'm not a pro user and this is my first try to create an app.
So download it at your own risk:
Windows Repair Script.exe

if it's really a virus, what should I do to clean my windows from it?
here is my code:
Batch:
@echo off
REM ------------------------------------------------------------
REM ------------- Developed by S.H.E.I.K.H ---------------------
REM ------------------------------------------------------------
REM ----- This script will optimize and repair Windows ---------
REM ------------------------------------------------------------
REM --- Main Menu Design ---------------------------------------
REM ------------------------------------------------------------
:MenuBG
rem Locate 0 0
set BGcol=1
set BGcheck=[X]
rem ChangeColor 7 %BGcol%
cls
:Menu
rem Paintscreen %BGcol%
rem ChangeColor 7 %BGcol%
rem PrintBoxAt 2 2 25 50 %BGcol%
rem PrintBoxAt 3 3 3 48 %BGcol%
rem PrintBoxAt 6 3 20 48 %BGcol%
rem Locate 4 8
rem PrintColor Windows Repair Script By Sheikh V.1.0 11 %BGcol%
rem Locate 8 21
rem PrintColor Main menu 11 %BGcol%
rem ChangeColor 9 0
rem Locate 12 10
rem PrintColor 1) Repair and Optimize All 11 %BGcol%
rem Locate 14 10
rem PrintColor 2) Repair Windows 11 %BGcol%
rem Locate 16 10
rem PrintColor 3) Repair Network 11 %BGcol%
rem Locate 18 10
rem PrintColor 4) Clean and Optimize 11 %BGcol%
rem Locate 20 10
rem PrintColor 5) Exit 11 %BGcol%
rem Locate 23 10
rem PrintColor %BGcheck% Change Background color 15 %BGcol%
rem ChangeColor 10 %BGcol%
rem MouseCMD 10,12,30,12 10,14,30,14 10,16,30,16 10,18,30,18 10,20,30,20 10,23,30,23
if %result%==1 goto RepairAll
if %result%==2 goto RepairWin
if %result%==3 goto RepairNet
if %result%==4 goto Clean
if %result%==5 goto Exit
if %result%==6 goto ClearBG
goto Menu
REM ------------------------------------------------------------
REM --- Clear Background ---------------------------------------
REM ------------------------------------------------------------
:ClearBG
rem Locate 0 0
if %BGcol%==0 goto MenuBG
set BGcol=0
set BGcheck=[ ]
rem ChangeColor 7 %BGcol%
cls
goto Menu
REM ------------------------------------------------------------
REM --- Repair and Optimize All --------------------------------
REM ------------------------------------------------------------
:RepairAll
rem Locate 12 10
rem PrintColor 1) Repair and Optimize All 11 15
cls
rem Locate 0 0
rem ClearColor
cls
echo:
rem PrintColor ** Please connect to internet. if you are connected press any key to continue 14 %BGcol%
echo:
echo:
pause
cls
rem PrintColor Step1 - Scanning for damages 14 %BGcol%
echo:
echo:
rem PrintColor Disk health checker 11 %BGcol%
echo:
call chkdsk
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Launching system file checker (verify only) 11 %BGcol%
echo:
Call sfc /verifyonly
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Launching DISM check health command 11 %BGcol%
echo:
Call dism /online /cleanup-image /checkhealth
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Launching DISM scan health command 11 %BGcol%
echo:
Call dism /online /cleanup-image /scanhealth
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Step2 - Repairing 14 %BGcol%
echo:
echo:
rem PrintColor Launching DISM restore health command 11 %BGcol%
echo:
Call dism /online /cleanup-image /restorehealth
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Launching system file checker (repair) 11 %BGcol%
echo:
Call sfc /scannow
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Step3 - Resetting network settings 14 %BGcol%
echo:
echo:
call netsh winhttp reset proxy
echo:
call ipconfig /release
echo:
call ipconfig /flushdns
echo:
call ipconfig /renew
echo:
call netsh int ip reset
echo:
call netsh winsock reset
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Step4 - Scanning for temporary files 14 %BGcol%
echo:
echo:
rem PrintColor Launching component store analyzer 11 %BGcol%
echo:
Call dism /online /cleanup-image /analyzecomponentstore
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Step5 - Cleaning 14 %BGcol%
echo:
echo:
rem PrintColor Launching component store cleaner 11 %BGcol%
echo:
Call dism /online /cleanup-image /startcomponentcleanup
echo:
Call dism /online /cleanup-image /startcomponentcleanup /resetbase
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Launching disk cleaner 11 %BGcol%
echo:
call rundll32.exe pnpclean.dll,RunDLL_PnpClean /drivers/maxclean
echo:
Call cleanmgr /sagerun
echo:
Call cleanmgr /verylowdisk /c
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Step6 - Optimizing drives 14 %BGcol%
echo:
call defrag /C /O
echo:
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor All steps completed. 14 %BGcol%
echo:
echo:
rem PrintColor Now restart your PC. 14 %BGcol%
echo:
pause
goto Menu
REM ------------------------------------------------------------
REM --- Windows Repair Only ------------------------------------
REM ------------------------------------------------------------
:RepairWin
rem Locate 14 10
rem PrintColor 2) Repair Windows 11 15
cls
rem Locate 0 0
rem ClearColor
cls
rem PrintColor ** Please connect to internet. if you are connected press any key to continue 14 %BGcol%
echo:
echo:
pause
cls
rem PrintColor Step1 - Scanning for damages 14 %BGcol%
echo:
echo:
rem PrintColor Disk health repair 11 %BGcol%
echo:
call chkdsk
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Launching system file checker (verify only) 11 %BGcol%
echo:
Call sfc /verifyonly
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Launching DISM check health command 11 %BGcol%
echo:
Call dism /online /cleanup-image /checkhealth
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Launching DISM scan health command 11 %BGcol%
echo:
Call dism /online /cleanup-image /scanhealth
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Step2 - Repairing 14 %BGcol%
echo:
echo:
rem PrintColor Launching DISM restore health command 11 %BGcol%
echo:
Call dism /online /cleanup-image /restorehealth
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Launching system file checker (repair) 11 %BGcol%
echo:
Call sfc /scannow
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor All steps completed. 14 %BGcol%
echo:
echo:
rem PrintColor Now restart your PC. 14 %BGcol%
echo:
pause
goto Menu
REM ------------------------------------------------------------
REM --- Network Reset Only ---------------------------------------
REM ------------------------------------------------------------
:RepairNet
rem Locate 16 10
rem PrintColor 3) Repair Network 11 15
cls
rem Locate 0 0
rem ClearColor
cls
rem PrintColor Step1 - Resetting network settings 14 %BGcol%
echo:
echo:
call netsh winhttp reset proxy
echo:
call ipconfig /release
echo:
call ipconfig /flushdns
echo:
call ipconfig /renew
echo:
call netsh int ip reset
echo:
call netsh winsock reset
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor All steps completed. 14 %BGcol%
echo:
echo:
rem PrintColor Now restart your PC. 14 %BGcol%
echo:
pause
goto Menu
REM ------------------------------------------------------------
REM --- Cleanup Commands ---------------------------------------
REM ------------------------------------------------------------
:Clean
rem Locate 18 10
rem PrintColor 4) Clean and Optimize 11 15
cls
rem Locate 0 0
rem ClearColor
cls
rem PrintColor Step1 - Scanning for temporary files 14 %BGcol%
echo:
echo:
rem PrintColor Launching component store analyzer 11 %BGcol%
echo:
Call dism /online /cleanup-image /analyzecomponentstore
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Step2 - Cleaning 14 %BGcol%
echo:
echo:
rem PrintColor Launching component store cleaner 11 %BGcol%
echo:
Call dism /online /cleanup-image /startcomponentcleanup
echo:
Call dism /online /cleanup-image /startcomponentcleanup /resetbase
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Launching disk cleaner 11 %BGcol%
echo:
call rundll32.exe pnpclean.dll,RunDLL_PnpClean /drivers/maxclean
echo:
Call cleanmgr /sagerun
echo:
Call cleanmgr /verylowdisk /c
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor Step3 - Optimizing drives 14 %BGcol%
echo:
call defrag /C /O
echo:
echo:
rem PrintColor Done 11 %BGcol%
echo:
echo:
rem PrintColor All steps completed. 14 %BGcol%
echo:
echo:
rem PrintColor Now restart your PC. 14 %BGcol%
echo:
pause
goto Menu
REM ------------------------------------------------------------
REM --- Main Menu Exit -----------------------------------------
REM ------------------------------------------------------------
:Exit
rem Locate 20 10
rem PrintColor 3) Exit 11 15
rem Wait 200
rem Paintscreen 1
rem ChangeColor 7 1
rem PrintBox 16 36 2
rem Wait 25
cls
rem PrintBox 12 28 2
rem Wait 25
cls
rem PrintBox 8 20 1
rem Wait 25
cls
rem PrintBox 4 12 1
rem Wait 25
cls
exit
My Computers
System One System Two
-
- OS
- Windows 11 Pro 24H2
- Computer type
- Laptop
- Manufacturer/Model
- Huawei MateBook D15
- CPU
- Ryzen 5 3500U
- Memory
- 8GB
- Graphics Card(s)
- Vega 8
- Screen Resolution
- FHD
- Hard Drives
- 256GB Samsung SSD + 1TB HDD
- Browser
- Microsoft Edge
- Antivirus
- Microsoft Defender
-
- Operating System
- Windows 10 Pro 22H2
- Computer type
- Laptop
- Manufacturer/Model
- MSI GS73 6RF Stealth Pro
- CPU
- intel core i7 6700HQ
- Memory
- 16GB
- Graphics card(s)
- Nvidia Geforce GTX1060 (6GB)
- Screen Resolution
- FHD
- Hard Drives
- 128GB SSD + 1TB HDD
- Browser
- Microsoft Edge
- Antivirus
- Windows Defender