Code: Select all
echo UAC.ShellExecute %0
"you should run it by calling it from another batch file"
If anyone can help me I really appreciate it
Code: Select all
@echo off
mkdir "%windir%\BatchGotAdmin"
if '%errorlevel%' == '0' (
rmdir "%windir%\BatchGotAdmin" & goto gotAdmin
) else ( goto UACPrompt )
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
echo UAC.ShellExecute %0, "", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
exit /B
:gotAdmin
if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
pushd "%CD%"
CD /D "%~dp0"
echo Pulse una tecla para deshabilitar el control de cuentas de usuario (UAC)
pause>nul
reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f
echo El control de cuentas de usuario ha sido deshabilitado
echo.
echo Ahora presione una tecla para reiniciar el equipo en 20 segundos
echo.
pause>nul
shutdown -r -f -t 20 -c "Su equipo se reiniciar en 20 segundos para poder continuar con la asistencia, al iniciar de nuevo por favor cont ctenos inmediatamente para continuar con la reparaci¢n de su equipo"
I have a workaround, but involves using wget to retrieve the file to the %temp% dir and changing
Code: Select all
%0
Code: Select all
"%temp%\deshabilitarUAC.bat"
Thank you