Bonjour, bonjour,
Hi
Pendant l'
installation de Windows 95, j'ai remarqué qu'un grand nombre de fichiers n'avait pas pu être copiés. Si cela semble ne pas déranger Windows pour fonctionner, il n'empêche qu'il est toujours mieux d'avoir un système proprement installé, avec tous les fichiers nécessaires à son fonctionnement, c'est pourquoi j'ai décidé de créer un petit script pour résoudre ce problème.
As I installed Windows 95, I noticed that several files could not be copied. That doesn't seem to prevent Windows to work, but that's allways better to have a well-installed system with all its files. That's why I created a small script to fix this problem.
Il s'agit d'un script Batch qui va chercher les fichiers qui n'ont pas pu être récupérés sur la disquette et qui les place à leur emplacement adéquat.
Durant l'exécution du script, vous aurez donc besoin des disquettes d'installation de Windows 95 n°2, 7, 12 et 13.
This is a script Batch that copies the missing files on the floppy disks at their correct places.
During its execution, you will need the Windows 95 installation floppy disks n°2, 7, 12 and 13.
Téléchargez le fichier ISO ci-dessous, gravez-le sur un CD-ROM et insérez-le dans le lecteur de votre PC sous Windows 95, puis exécutez le fichier
fix.bat qui s'y trouve. Suivez ensuite simplement les instruction qui s'affichent.
Download the ISO file bellow, burn it on a CD-ROM and insert it into the driver of your PC running Windows 95. Execute the file "fix.bat" present on the disk, and follow the displayed instructions.
Télécharger / Download 404
Si vous naviguez sur le site avec Windows 95 (et dans ce cas vous avez un sacré courage !

), vous pouvez également copier le script ci-dessous directement dans Notepad et l'enregistrer avec l'extension .bat, puis le lancer :
If you are accessing this site by using Windows 95 (and you're brave
), you can copy the script below directly in Notepad, save it with the .bat extension and launch it:
echo off
cls
echo FIX INSTALL WIN95
echo (c) Jerome Deuchnord - 2014
echo This script is proposed without warranties, you use it at your risks.
echo.
c:
mkdir tmp
cd tmp
echo Please insert the floppy disk 2.
pause
extract a:\precopy2.cab netapi.dll .
echo.
echo Please insert the floppy disk 7.
pause
extract a:\win95_07.cab mapi32.dll .
echo.
echo Please insert the floppy disk 12.
pause
extract a:\win95_12.cab choosusr.dll .
extract a:\win95_12.cab lmscript.exe .
extract a:\win95_12.cab lmscript.pif .
extract a:\win95_12.cab msab32.dll .
extract a:\win95_12.cab msnet32.dll .
extract a:\win95_12.cab msnp32.dll .
extract a:\win95_12.cab mspp32.dll .
extract a:\win95_12.cab netware.ms .
extract a:\win95_12.cab nw16.dll .
extract a:\win95_12.cab nwab32.dll .
extract a:\win95_12.cab nwlscon.exe .
extract a:\win95_12.cab nwlsproc.exe .
extract a:\win95_12.cab nwnet32.dll .
extract a:\win95_12.cab nwnp32.dll .
extract a:\win95_12.cab nwpp32.dll .
extract a:\win95_12.cab pcntnd.dos .
extract a:\win95_12.cab pmspl.dll .
extract a:\win95_12.cab rpcltc1.dll .
extract a:\win95_12.cab rpcltc5.dll .
extract a:\win95_12.cab rpcltc6.dll .
extract a:\win95_12.cab rpclts5.dll .
extract a:\win95_12.cab rpclts6.dll .
extract a:\win95_12.cab sapnsp.dll .
extract a:\win95_12.cab secur32.dll .
extract a:\win95_12.cab svrapi.dll .
extract a:\win95_12.cab winpopup.cnt .
extract a:\win95_12.cab winpopup.exe .
extract a:\win95_12.cab winpopup.hlp .
extract a:\win95_12.cab winsock.dll .
extract a:\win95_12.cab wsasrv.exe .
echo.
echo Please insert the floppy disk 13.
pause
extract a:\win95_13.cab ilesec.vxd .
extract a:\win95_13.cab mssp.vxd .
extract a:\win95_13.cab ndis.vxd .
extract a:\win95_13.cab ndis2sup.vxd .
extract a:\win95_13.cab ndishlp.sys .
extract a:\win95_13.cab net.exe .
extract a:\win95_13.cab net.msg .
extract a:\win95_13.cab netbeui.vxd .
extract a:\win95_13.cab neth.msg .
extract a:\win95_13.cab nscl.vxd .
extract a:\win95_13.cab nwlink.vxd .
extract a:\win95_13.cab nwredir.vxd .
extract a:\win95_13.cab nwsp.vxd .
extract a:\win95_13.cab pwntn2.vxd .
extract a:\win95_13.cab protman.dos .
extract a:\win95_13.cab protman.exe .
extract a:\win95_13.cab vnetbios.vxd .
extract a:\win95_13.cab vnetsup.vxd .
extract a:\win95_13.cab vredir.vxd .
extract a:\win95_13.cab wsipx.vxd .
extract a:\win95_13.cab wsock.vxd .
echo.
copy * c:\windows\system
echo.
echo All the missing files have been added.
echo Remove the floppy disk and restart your computer.
pause