|
Answer» I am trying to make a boot usb thumb DRIVE for use with ghosting and other things. So far I have it working up until I try and use the net command to map a network drive and then I GET an error message
ERROR 3659 Unable to load netbeui.
here is what I have so far.
Code: [Select]echo off set pci0= set pci1= set pci2=
pciscan niclist.map if errorlevel 1 goto _err1 if "%pci0%" == "" goto _none
device.com %cdrom%\pci\net\protman.dos /I:%cdrom%\pci\net\%pci0% device.com %cdrom%\pci\net\dis_pkt.dos device.com %cdrom%\pci\net\%pci0%\%pci0%.dos %cdrom%\pci\net\netbind.com IF %nchoice% == yes GOTO YES CD\ ghost.bat goto _end
:_err1 echo *** PCIScan returned an error... echo Can not detect NIC. Please CHECK your system... pause goto _end
:_none echo *** PCIScan did not locate your NIC: echo Please CONTACT the developer of this echo disc to have the NIC ADDED to the NICLIST.MAP file. echo Here's a list of devices in your system. echo. pciscan -v pause goto _end
:YES CD\ CD PCI\net
net start Net USE Z: \\[computer name]\[drive]
pause CD\ nghost.bat goto _end
:_end
any ideas on what could be causing the error?
|