批处理文件转换为exe,但所有命令均不起作用

I have created a .bat file and wanted to convert it to .exe.

自从我这样做以来,这些命令就不起作用了。我该怎么办?

这是脚本,它可以运行,但并非所有命令都有效:

@shift
@echo off
title Amon_tech temp cleaner 
color 09                                      
echo                                                      Hello %username%!

echo 
set /p answer= Press Enter to run tool:

:pause

:Run tool
cls
:loop

netsh winsock reset
netsh int ip reset
ipconfig /release
ipconfig /renew
ipconfig /flushdns

rd %temp% /s /q

md %temp%

del /s /f /q C:\Windows\Prefetch\*.*
del /s /f /q C:\Windows\temp\*.*
del /s /f /q C:\Windows\System32\temp\*.*
del /s /f /q %USERPROFILE%\appdata\local\temp\*.*

set /p answer= Press ALT+F4 to close tool: