1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
| <!-- :: Batch section
@echo off
for /F "delims=" %%a in ('mshta.exe "%~F0"') do set "cle=%%a"
goto :EOF
-->
<HTML>
<HEAD>
<HTA:APPLICATION SCROLL="no" SYSMENU="yes" >
<TITLE>Windows_ERREUR FATALE</TITLE>
<COLOR>#3300FF
<SCRIPT language="Vbscript">
Sub window_onload()
CenterWindow 400,150
Focus
End Sub
Sub CenterWindow(x,y)
window.resizeTo x, y
iLeft = window.screen.availWidth/2 - x/2
itop = window.screen.availHeight/2 - y/2
window.moveTo ileft, itop
End Sub
Function closeHTA
window.close()
End Function
</SCRIPT>
</HEAD>
<BODY>
<center>
<label for="dest" typo="Symbols">Erreur fatale. Le répertoire C:// est corrompu.</label>
<br>Votre
ordinateur ne pourra plus redémarrer normalement.
<br>
<br><Input color="3355FF" type="Submit" onclick="closeHTA" value=" ok ">
</center>
</BODY>
</HTML> |
Partager