arnada Posted January 19, 2009 Share Posted January 19, 2009 Har gjort ett verktyg som fixar Windows Update när det inte fungerar... Sedan kompillerat det till en EXE fil @echo off title Fix Windows Update cls goto menu :menu cls echo [url=http://WWW.HACKERUNIT.SE]WWW.HACKERUNIT.SE[/url] echo. echo THIS APP WORKS WITH WIN7 and VISTA! echo. echo RUN AS ADMINISTRATOR echo. echo 1= Fix echo 2= Help echo 3= Exit echo. echo Enter here: set /p input_choise= if "%input_choise%"=="1" goto fix if "%input_choise%"=="2" goto help if "%input_choise%"=="3" exit goto menu :fix cls echo Stopping service... pause NET STOP "Windows Update" pause echo Makin temp dir MKDIR %SYSTEMROOT%\temp_12345 pause echo Making backup (choose all) XCOPY %SYSTEMROOT%\SoftwareDistribution\* %SYSTEMROOT%\temp_12345 /s /i pause echo deleting files DEL %SYSTEMROOT%\SoftwareDistribution\* /S /Q RMDIR %SYSTEMROOT%\SoftwareDistribution\ /S /Q pause echo Starting Service... NET START "Windows Update" pause goto menu :help cls echo Just in case backup is created in your Windows folder echo Temp_12345 echo. echo Use at your own risk! echo. pause goto menu Ladda hem: http://www.hackerunit.se/filer/Fix.zip Quote Link to comment Share on other sites More sharing options...
pTr Posted November 4, 2009 Share Posted November 4, 2009 Fixen funkade på windows 2k också Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.