Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

857 lines
48 KiB

  1. ;***********************************************************************
  2. ;
  3. ; OEMNSVRI.INF
  4. ;
  5. ; Remote Boot SETUP INF file.
  6. ;
  7. ; History:
  8. ; thomaspa 00-Feb-1994 Created
  9. ;
  10. ;***********************************************************************
  11. [Identification]
  12. OptionType = NetService
  13. [Options]
  14. REMOTEBOOT
  15. [FileConstants]
  16. UtilityInf = "UTILITY.INF"
  17. subroutineinf = "SUBROUTN.INF"
  18. SoftwareType = "service"
  19. Exit_Code = 0
  20. NetEventDLL = "%SystemRoot%\System32\netevent.dll"
  21. IoLogMsgDLL = "%SystemRoot%\System32\IoLogMsg.dll"
  22. RPLEXE = "%SystemRoot%\System32\rplsvc.exe"
  23. RPLEventMessageFile = "%SystemRoot%\System32\netmsg.dll"
  24. Manufacturer = "Microsoft"
  25. ProductMajorVersion = "4"
  26. ProductMinorVersion = "0"
  27. ProductVersion = $(ProductMajorVersion)"."$(ProductMinorVersion)
  28. ProductOpSupport = 132 ; 0x0084 ; Display,Removable,NOT Properties,Not Updatable
  29. ProductSoftwareName = "RemoteBoot"
  30. ProductSoftwareImagePath = $(RPLEXE)
  31. ProductKeyName = $(!NTN_SoftwareBase)"\"$(Manufacturer)"\"$(ProductSoftwareName)"\CurrentVersion"
  32. SystemService = $(!NTN_ServiceBase)
  33. ServiceRPLKeyName = $(!NTN_ServiceBase)"\"$(ProductSoftwareName)
  34. ServiceKeyName = $(!NTN_ServiceBase)
  35. DLCKeyName = $(!NTN_ServiceBase)"\DLC"
  36. NBFKeyName = $(!NTN_ServiceBase)"\NBF"
  37. [GeneralConstants]
  38. from = ""
  39. to = ""
  40. ExitCodeOk = 0
  41. ExitCodeCancel = 1
  42. ExitCodeFatal = 2
  43. KeyNull = ""
  44. MAXIMUM_ALLOWED = 33554432
  45. RegistryErrorIndex = NO_ERROR
  46. KeyProduct = ""
  47. KeyParameters = ""
  48. TRUE = 1
  49. FALSE = 0
  50. NoTitle = 0
  51. ExitState = "Active"
  52. OldVersionExisted = $(FALSE)
  53. [date]
  54. Now = {} ? $(!LIBHANDLE) GetSystemDate
  55. [Identify]
  56. read-syms Identification
  57. set Status = STATUS_SUCCESSFUL
  58. set Identifier = $(OptionType)
  59. set Media = #("Source Media Descriptions", 1, 1)
  60. Return $(Status) $(Identifier) $(Media)
  61. [ReturnOptions]
  62. set Status = STATUS_FAILED
  63. set OptionList = {}
  64. set OptionTextList = {}
  65. set LanguageList = ^(LanguagesSupported, 1)
  66. Ifcontains(i) $($0) in $(LanguageList)
  67. goto returnoptions
  68. else
  69. set Status = STATUS_NOLANGUAGE
  70. goto finish_ReturnOptions
  71. endif
  72. returnoptions = +
  73. set OptionList = ^(Options, 1)
  74. set OptionTextList = ^(OptionsText$($0), 1)
  75. set Status = STATUS_SUCCESSFUL
  76. finish_ReturnOptions = +
  77. Return $(Status) $(OptionList) $(OptionTextList)
  78. [InstallOption]
  79. set Option = $($1)
  80. set SrcDir = $($2)
  81. set AddCopy = $($3)
  82. set DoCopy = $($4)
  83. set DoConfig = $($5)
  84. set LanguageList = ^(LanguagesSupported, 1)
  85. Ifcontains(i) $($0) NOT-IN $(LanguageList)
  86. Return STATUS_NOLANGUAGE
  87. endif
  88. Debug-Output "OEMNSVRI.INF: STF_CWDIR is: "$(!STF_CWDIR)
  89. Debug-Output "OEMNSVRI.INF: STF_LANGUAGE is: "$(!STF_LANGUAGE)
  90. set-subst LF = "\n"
  91. read-syms GeneralConstants
  92. read-syms FileConstants
  93. read-syms DialogConstants$(!STF_LANGUAGE)
  94. ifstr(i) $(!NTN_Origination) == "NCPA"
  95. set Continue = $(OK)
  96. endif
  97. read-syms FileConstants$(!STF_LANGUAGE)
  98. detect date
  99. set-title $(FunctionTitle)
  100. set to = Begin
  101. set from = Begin
  102. set CommonStatus = STATUS_SUCCESSFUL
  103. EndWait
  104. Begin = +
  105. Ifstr(i) $(!NTN_InstallMode) == deinstall
  106. set StartLabel = removeadapter
  107. else-Ifstr(i) $(!NTN_InstallMode) == Update
  108. set StartLabel = UpgradeSoftware
  109. else-Ifstr(i) $(!NTN_InstallMode) == bind
  110. set StartLabel = bindingadapter
  111. else-Ifstr(i) $(!NTN_InstallMode) == configure
  112. Shell $(UtilityInf),RegistryErrorString,CANNOT_CONFIGURE_SOFTWARE
  113. ifint $($ShellCode) != $(!SHELL_CODE_OK)
  114. Debug-Output "ShellCode error: cannot get an error string."
  115. goto ShellCodeError
  116. endif
  117. set Error = $($R0)
  118. set from = end
  119. set to = end
  120. goto nonfatal
  121. else
  122. set StartLabel = installadapter
  123. endif
  124. set from = $(fatal)
  125. set to = $(fatal)
  126. goto $(StartLabel)
  127. installadapter = +
  128. OpenRegKey $(!REG_H_LOCAL) "" $(DLCKeyName) $(MAXIMUM_ALLOWED) DLCKey
  129. Ifstr $(DLCKey) == $(KeyNull)
  130. set RegistryErrorIndex = DLC_NONEXIST_ERROR
  131. goto fatalregistry
  132. endif
  133. CloseRegKey $(DLCKey)
  134. OpenRegKey $(!REG_H_LOCAL) "" $(NBFKeyName) $(MAXIMUM_ALLOWED) NBFKey
  135. Ifstr $(NBFKey) == $(KeyNull)
  136. set RegistryErrorIndex = NBF_NONEXIST_ERROR
  137. goto fatalregistry
  138. endif
  139. CloseRegKey $(NBFKey)
  140. OpenRegKey $(!REG_H_LOCAL) "" $(ProductKeyName) $(MAXIMUM_ALLOWED) KeyProduct
  141. Ifstr $(KeyProduct) != $(KeyNull)
  142. CloseRegKey $(KeyProduct)
  143. Shell $(UtilityInf), VerExistedDlg, $(ProductSoftwareTitle),+
  144. $(ProductVersion)
  145. ifint $($ShellCode) != $(!SHELL_CODE_OK)
  146. Debug-Output "ShellCode error: cannot get an error string."
  147. goto ShellCodeError
  148. endif
  149. set CommonStatus = STATUS_USERCANCEL
  150. goto end
  151. endif
  152. set RPLDIR = $(!STF_WINDOWSPATH)"\rpl"
  153. set CheckItemsIn = {OFF}
  154. install LoadSetupLibrary
  155. GetRPLDIR = +
  156. read-syms FileDependentDlg$(!STF_LANGUAGE)
  157. ui start "RPLDIR"
  158. ifstr(i) $(DLGEVENT) == "CONTINUE"
  159. set RPLDIR = *($(EditTextOut),1)
  160. set ConvertLM2x = *($(CheckItemsOut),1)
  161. ui pop 1
  162. LibraryProcedure IsFullPath, $(!LIBHANDLE), CheckPathFullPathSpec $(RPLDIR)
  163. ifstr(i) $(IsFullPath) == "NO"
  164. read-syms NonFatalError1$(!STF_LANGUAGE)
  165. set from = GetRPLDIR
  166. set to = GetRPLDIR
  167. goto nonfatal
  168. endif
  169. else
  170. set CommonStatus = STATUS_USERCANCEL
  171. ui pop 1
  172. install FreeSetupLibrary
  173. Goto successful
  174. endif
  175. install FreeSetupLibrary
  176. install "Install-Rpl-Root"
  177. ifstr(i) $(ConvertLM2x) != "ON"
  178. Install Install-Rpl-Dirs
  179. endif
  180. StartWait
  181. ifstr(i) $(OldVersionExisted) == $(FALSE)
  182. Shell $(UtilityInf), DoAskSource, $(!STF_CWDDIR), $(SrcDir) YES
  183. Ifint $($ShellCode) != $(!SHELL_CODE_OK)
  184. Goto ShellCodeError
  185. Else-Ifstr(i) $($R0) == STATUS_FAILED
  186. Shell $(UtilityInf) RegistryErrorString "ASK_SOURCE_FAIL"
  187. ifint $($ShellCode) != $(!SHELL_CODE_OK)
  188. goto ShellCodeError
  189. endif
  190. set Error = $($R0)
  191. Goto fatal
  192. Else-Ifstr(i) $($R0) == STATUS_USERCANCEL
  193. Goto successful
  194. Endif
  195. Set SrcDir = $($R1)
  196. read-syms DoAskSourceDlgText$(!STF_LANGUAGE)
  197. Shell "subroutn.inf", DoAskSourceEx, "" $(DlgText)
  198. Ifint $($ShellCode) != $(!SHELL_CODE_OK)
  199. Goto ShellCodeError
  200. Else-Ifstr(i) $($R0) == STATUS_FAILED
  201. Shell $(UtilityInf) RegistryErrorString "ASK_SOURCE_FAIL"
  202. ifint $($ShellCode) != $(!SHELL_CODE_OK)
  203. goto ShellCodeError
  204. endif
  205. set Error = $($R0)
  206. Goto fatal
  207. Else-Ifstr(i) $($R0) == STATUS_USERCANCEL
  208. Goto successful
  209. Endif
  210. Set SuppSrcDir = $($R1)
  211. install "Install-Option"
  212. ifstr(i) $(STF_INSTALL_OUTCOME) != STF_SUCCESS
  213. Shell $(UtilityInf) RegistryErrorString "UNABLE_COPY_FILE"
  214. ifint $($ShellCode) != $(!SHELL_CODE_OK)
  215. goto ShellCodeError
  216. endif
  217. set Error = $($R0)
  218. goto fatal
  219. endif
  220. set OEM_ABANDON_ON = TRUE
  221. Shell $(UtilityInf), AddSoftwareComponent, $(Manufacturer), +
  222. $(ProductSoftwareName), $(ProductSoftwareName),+
  223. $(ProductSoftwareDisplayName), +
  224. $(STF_CONTEXTINFNAME), $(ProductSoftwareImagePath), "service", "",+
  225. {"DLC","LanmanServer"}, "", $(RPLEventMessageFile)
  226. Set SoftwareProductKey = $($R1)
  227. Set SoftwareNetRuleKey = $($R2)
  228. Set SoftwareServiceKey = $($R3)
  229. Set SoftwareParameterKey = $($R4)
  230. Set SoftLinkageKey = $($R5)
  231. ifint $($ShellCode) != $(!SHELL_CODE_OK)
  232. Debug-Output "ShellCode error"
  233. goto ShellCodeError
  234. endif
  235. set RegistryErrorIndex = $($R0)
  236. Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  237. EndWait
  238. Debug-Output "Registry error: add software components"
  239. CloseRegKey $(SoftwareProductKey)
  240. CloseRegKey $(SoftwareNetRuleKey)
  241. CloseRegKey $(SoftwareServiceKey)
  242. CloseRegKey $(SoftwareParameterKey)
  243. CloseRegKey $(SoftLinkageKey)
  244. CloseRegKey $(KeyParameters)
  245. goto fatalregistry
  246. endif
  247. set NewValueList = {{SoftwareType,$(NoTitle),$(!REG_VT_SZ),$(SoftwareType)},+
  248. {MajorVersion,$(NoTitle),$(!REG_VT_DWORD),$(ProductMajorVersion)},+
  249. {MinorVersion,$(NoTitle),$(!REG_VT_DWORD),$(ProductMinorVersion)},+
  250. {Title,$(NoTitle),$(!REG_VT_SZ),$(ProductSoftwareTitle)},+
  251. {Description,$(NoTitle),$(!REG_VT_SZ),$(ProductSoftwareDescription)},+
  252. {ServiceName,$(NoTitle),$(!REG_VT_SZ),$(ProductSoftwareName)},+
  253. {OperationsSupport,$(NoTitle),$(!REG_VT_DWORD),$(ProductOpSupport)}, +
  254. {InstallDate,$(NoTitle),$(!REG_VT_DWORD),*($(Now),1)}}
  255. Shell $(UtilityInf), AddValueList, $(SoftwareProductKey), $(NewValueList)
  256. ifint $($ShellCode) != $(!SHELL_CODE_OK)
  257. Debug-Output "ShellCode error."
  258. goto ShellCodeError
  259. endif
  260. set RegistryErrorIndex = $($R0)
  261. Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  262. EndWait
  263. Debug-Output "Resgitry error: add value list."
  264. CloseRegKey $(SoftwareProductKey)
  265. CloseRegKey $(SoftwareNetRuleKey)
  266. CloseRegKey $(SoftwareServiceKey)
  267. CloseRegKey $(SoftLinkageKey)
  268. CloseRegKey $(SoftwareParameterKey)
  269. goto fatalregistry
  270. endif
  271. set NewValueList = {{InfOption,$(NoTitle),$(!REG_VT_SZ),$(Option)}}
  272. Shell $(UtilityInf), AddValueList, $(SoftwareNetRuleKey), $(NewValueList)
  273. ifint $($ShellCode) != $(!SHELL_CODE_OK)
  274. Debug-Output "ShellCode error."
  275. goto ShellCodeError
  276. endif
  277. set RegistryErrorIndex = $($R0)
  278. Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  279. EndWait
  280. Debug-Output "Resgitry error: add value list."
  281. CloseRegKey $(SoftwareProductKey)
  282. CloseRegKey $(SoftwareNetRuleKey)
  283. CloseRegKey $(SoftwareServiceKey)
  284. CloseRegKey $(SoftwareParameterKey)
  285. CloseRegKey $(SoftLinkageKey)
  286. goto fatalregistry
  287. endif
  288. ifstr(i) $(ConvertLM2x) == "ON"
  289. set Startup = 3758096384
  290. else
  291. set Startup = 1610612736
  292. endif
  293. set NewValueList = {{Directory,$(NoTitle),$(!REG_VT_EXPAND_SZ),$(RPLDIR)}, +
  294. {Startup,$(NoTitle),$(!REG_VT_DWORD),$(Startup)}, +
  295. {BackupInterval,$(NoTitle),$(!REG_VT_DWORD),24}}
  296. Shell $(UtilityInf), AddValueList, $(SoftwareParameterKey), $(NewValueList)
  297. ifint $($ShellCode) != $(!SHELL_CODE_OK)
  298. Debug-Output "ShellCode error."
  299. goto ShellCodeError
  300. endif
  301. set RegistryErrorIndex = $($R0)
  302. Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  303. EndWait
  304. Debug-Output "Resgitry error: add value list."
  305. CloseRegKey $(SoftwareProductKey)
  306. CloseRegKey $(SoftwareNetRuleKey)
  307. CloseRegKey $(SoftwareServiceKey)
  308. CloseRegKey $(SoftwareParameterKey)
  309. CloseRegKey $(SoftLinkageKey)
  310. goto fatalregistry
  311. endif
  312. CloseRegKey $(SoftwareProductKey)
  313. CloseRegKey $(SoftwareNetRuleKey)
  314. CloseRegKey $(SoftwareServiceKey)
  315. CloseRegKey $(SoftwareParameterKey)
  316. CloseRegKey $(SoftLinkageKey)
  317. endif
  318. EndWait
  319. Install CreateIcons
  320. Goto successful
  321. configureadapter = +
  322. goto successful
  323. bindingadapter =+
  324. set Error = "Binding: Sorry, not yet implemented."
  325. goto fatal
  326. removeadapter = +
  327. Shell $(UtilityInf), RemoveSoftwareComponent, $(Manufacturer), +
  328. $(ProductSoftwareName)
  329. ifint $($ShellCode) != $(!SHELL_CODE_OK)
  330. Debug-Output "ShellCode error"
  331. goto ShellCodeError
  332. endif
  333. set RegistryErrorIndex = $($R0)
  334. Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  335. goto fatalregistry
  336. endif
  337. Install RemoveIcons
  338. goto end
  339. UpgradeSoftware = +
  340. OpenRegKey $(!REG_H_LOCAL) "" $(ProductKeyName) $(MAXIMUM_ALLOWED) KeyProduct
  341. Ifstr $(KeyProduct) != $(KeyNull)
  342. install "Install-Update"
  343. ifstr(i) $(STF_INSTALL_OUTCOME) != STF_SUCCESS
  344. goto fatal
  345. endif
  346. SetRegValue $(KeyProduct) {MajorVersion,$(NoTitle),$(!REG_VT_SZ),$(ProductMajorVersion)}
  347. SetRegValue $(KeyProduct) {MinorVersion,$(NoTitle),$(!REG_VT_SZ),$(ProductMinorVersion)}
  348. ;
  349. ; Update description and op support
  350. ;
  351. SetRegValue $(KeyProduct) {Description,$(NoTitle),$(!REG_VT_SZ),$(ProductSoftwareDescription)}
  352. SetRegValue $(KeyProduct) {OperationsSupport,$(NoTitle),$(!REG_VT_DWORD),$(ProductOpSupport)}
  353. CloseRegKey $(KeyProduct)
  354. Install RemoveIcons
  355. Install CreateIcons
  356. else
  357. goto fatalregistry
  358. endif
  359. goto end
  360. successful = +
  361. goto end
  362. warning = +
  363. Shell $(subroutineinf) SetupMessage, $(!STF_LANGUAGE), "WARNING", $(Error)
  364. ifint $($ShellCode) != $(!SHELL_CODE_OK)
  365. goto ShellCodeError
  366. endif
  367. ifstr(i) $($R1) == "OK"
  368. goto $(to)
  369. else-ifstr(i) $($R1) == "CANCEL"
  370. goto $(from)
  371. else
  372. goto "end"
  373. endif
  374. nonfatal = +
  375. ifstr(i) $(Error) == ""
  376. Shell $(UtilityInf) RegistryErrorString "SETUP_FAIL"
  377. ifint $($ShellCode) != $(!SHELL_CODE_OK)
  378. goto ShellCodeError
  379. endif
  380. set Error = $($R0)
  381. endif
  382. Shell $(subroutineinf) SetupMessage, $(!STF_LANGUAGE), "NONFATAL", $(Error)
  383. ifint $($ShellCode) != $(!SHELL_CODE_OK)
  384. goto ShellCodeError
  385. endif
  386. ifstr(i) $($R1) == "OK"
  387. goto $(from)
  388. else
  389. goto "end"
  390. endif
  391. fatalregistry = +
  392. Shell $(UtilityInf) RegistryErrorString $(RegistryErrorIndex)
  393. ifint $($ShellCode) != $(!SHELL_CODE_OK)
  394. goto ShellCodeError
  395. endif
  396. set Error = $($R0)
  397. goto fatal
  398. fatal = +
  399. ifstr(i) $(Error) == ""
  400. Shell $(UtilityInf) RegistryErrorString "SETUP_FAIL"
  401. ifint $($ShellCode) != $(!SHELL_CODE_OK)
  402. goto ShellCodeError
  403. endif
  404. set Error = $($R0)
  405. endif
  406. Shell $(subroutineinf) SetupMessage, $(!STF_LANGUAGE), "FATAL", $(Error)
  407. ifint $($ShellCode) != $(!SHELL_CODE_OK)
  408. goto ShellCodeError
  409. endif
  410. goto setfailed
  411. ShellCodeError = +
  412. set DlgType = "MessageBox"
  413. set STF_MB_TITLE = $(ShellCodeErrorTitle)
  414. set STF_MB_TEXT = $(ShellCodeErrorText)
  415. set STF_MB_TYPE = 1
  416. set STF_MB_ICON = 3
  417. set STF_MB_DEF = 1
  418. ui start "Error Message"
  419. goto setfailed
  420. setfailed = +
  421. set CommonStatus = STATUS_FAILED
  422. Ifint $(RegistryErrorIndex) == DLC_NONEXIST_ERROR
  423. set CommonStatus = STATUS_USERCANCEL
  424. endif
  425. Ifint $(RegistryErrorIndex) == NBF_NONEXIST_ERROR
  426. set CommonStatus = STATUS_USERCANCEL
  427. endif
  428. ifstr(i) $(OEM_ABANDON_ON) == TRUE
  429. set OEM_ABANDON_ON = FALSE
  430. goto removeadapter
  431. endif
  432. goto end
  433. end = +
  434. goto term
  435. term = +
  436. Return $(CommonStatus)
  437. [Install-Option]
  438. set STF_VITAL = ""
  439. ifstr(i) $(AddCopy) == "YES"
  440. AddSectionFilesToCopyList Files-$(Option) $(SrcDir) $(!STF_WINDOWSSYSPATH)
  441. ifstr(i) $(ConvertLM2x) != "ON"
  442. AddSectionFilesToCopyList Files-SUPPORT $(SuppSrcDir) $(RPLDIR)
  443. else
  444. AddSectionFilesToCopyList Files-SUPP2 $(SuppSrcDir) $(RPLDIR)
  445. endif
  446. endif
  447. ifstr(i) $(DoCopy) == "YES"
  448. set !STF_NCPA_FLUSH_COPYLIST = TRUE
  449. CopyFilesInCopyList
  450. endif
  451. ifstr(i) $(DoConfig) == "YES"
  452. endif
  453. Exit
  454. [Install-Update]
  455. set STF_VITAL = ""
  456. set STF_OVERWRITE = "VERIFYSOURCEOLDER"
  457. AddSectionFilesToCopyList Files-$(Option) $(SrcDir) $(!STF_WINDOWSSYSPATH)
  458. exit
  459. [LoadSetupLibrary]
  460. LoadLibrary "x" $(!STF_CWDDIR)setupdll.dll !LIBHANDLE
  461. exit
  462. [FreeSetupLibrary]
  463. FreeLibrary $(!LIBHANDLE)
  464. exit
  465. [CreateIcons]
  466. CreateCommonProgManGroup $(RplGroup) ""
  467. ShowCommonProgManGroup $(RplGroup), 1
  468. RemoveCommonProgManItem $(RplGroup) $(RplMgr)
  469. CreateCommonProgManItem $(RplGroup), $(RplMgr), "rplmgr.exe" "" 0
  470. ShowCommonProgManGroup $(RplGroup), 6
  471. exit
  472. [RemoveIcons]
  473. RemoveCommonProgManItem $(OldRplGroup) $(RplMgr)
  474. RemoveCommonProgManItem $(RplGroup) $(RplMgr)
  475. exit
  476. [Install-Rpl-Root]
  477. Set STF_VITAL = ""
  478. CreateDir $(RPLDIR)
  479. CreateDir $(RPLDIR)\BACKUP
  480. [Install-Rpl-Dirs]
  481. Set STF_VITAL = ""
  482. CreateDir $(RPLDIR)\BIN
  483. CreateDir $(RPLDIR)\FITS
  484. CreateDir $(RPLDIR)\BBLOCK
  485. CreateDir $(RPLDIR)\BACKUP
  486. CreateDir $(RPLDIR)\RPLFILES
  487. CreateDir $(RPLDIR)\BBLOCK\NDIS
  488. CreateDir $(RPLDIR)\BBLOCK\NETBEUI
  489. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\IBMTOK
  490. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\EXP16
  491. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\AM2100
  492. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\SMC8000
  493. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\NE1000
  494. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\NE2000
  495. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\ELNK
  496. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\ELNKII
  497. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\EPRO
  498. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\MADGE
  499. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\HPLANB
  500. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\ELNKPL
  501. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\ELNKMC
  502. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\ELNK16
  503. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\TLNK
  504. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\TLNK3
  505. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\ETHIIE
  506. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\E3STAT
  507. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\ELNK3
  508. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\NI6510
  509. CreateDir $(RPLDIR)\BBLOCK\NETBEUI\NI5210
  510. CreateDir $(RPLDIR)\RPLFILES\BINFILES
  511. CreateDir $(RPLDIR)\RPLFILES\CONFIGS
  512. CreateDir $(RPLDIR)\RPLFILES\PROFILES
  513. CreateDir $(RPLDIR)\RPLFILES\MACHINES
  514. CreateDir $(RPLDIR)\RPLFILES\TMPFILES
  515. CreateDir $(RPLDIR)\RPLFILES\BINFILES\LANMAN.DOS
  516. CreateDir $(RPLDIR)\RPLFILES\BINFILES\WIN
  517. CreateDir $(RPLDIR)\RPLFILES\BINFILES\WIN95
  518. CreateDir $(RPLDIR)\RPLFILES\BINFILES\WIN95\COMMAND
  519. CreateDir $(RPLDIR)\RPLFILES\BINFILES\BINB
  520. CreateDir $(RPLDIR)\RPLFILES\BINFILES\DOS330
  521. CreateDir $(RPLDIR)\RPLFILES\BINFILES\DOS401
  522. CreateDir $(RPLDIR)\RPLFILES\BINFILES\DOS500
  523. CreateDir $(RPLDIR)\RPLFILES\BINFILES\BINR
  524. CreateDir $(RPLDIR)\RPLFILES\BINFILES\DOS622
  525. CreateDir $(RPLDIR)\RPLFILES\BINFILES\DOS600
  526. CreateDir $(RPLDIR)\RPLFILES\BINFILES\LANMAN.DOS\NETPROG
  527. CreateDir $(RPLDIR)\RPLFILES\BINFILES\LANMAN.DOS\DRIVERS
  528. CreateDir $(RPLDIR)\RPLFILES\BINFILES\LANMAN.DOS\SERVICES
  529. CreateDir $(RPLDIR)\RPLFILES\BINFILES\LANMAN.DOS\LOGS
  530. CreateDir $(RPLDIR)\RPLFILES\BINFILES\LANMAN.DOS\NETWKSTA
  531. CreateDir $(RPLDIR)\RPLFILES\BINFILES\LANMAN.DOS\DRIVERS\DOSUTILS
  532. CreateDir $(RPLDIR)\RPLFILES\BINFILES\LANMAN.DOS\DRIVERS\PROTMAN
  533. CreateDir $(RPLDIR)\RPLFILES\BINFILES\LANMAN.DOS\DRIVERS\NIF
  534. CreateDir $(RPLDIR)\RPLFILES\BINFILES\LANMAN.DOS\DRIVERS\XIF
  535. CreateDir $(RPLDIR)\RPLFILES\BINFILES\LANMAN.DOS\DRIVERS\PROTOCOL
  536. CreateDir $(RPLDIR)\RPLFILES\BINFILES\LANMAN.DOS\DRIVERS\PROTOCOL\MSDLC
  537. CreateDir $(RPLDIR)\RPLFILES\BINFILES\LANMAN.DOS\DRIVERS\PROTOCOL\TCPIP
  538. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS
  539. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS330
  540. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS401
  541. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS500
  542. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\MACHINE
  543. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS622
  544. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS600
  545. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\WIN95
  546. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\DOS
  547. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\BINB
  548. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\BINR
  549. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\LANMAN.DOS
  550. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\TMP
  551. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\WIN
  552. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\WINDOWS
  553. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\WKSTA
  554. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\WKSTA.PRO
  555. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\DATA
  556. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\LANMAN.DOS\DRIVERS
  557. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\LANMAN.DOS\LOGS
  558. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\LANMAN.DOS\NETPROG
  559. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\LANMAN.DOS\NETWKSTA
  560. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\LANMAN.DOS\PROFILES
  561. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\LANMAN.DOS\SERVICES
  562. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\WKSTA\WIN
  563. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS\WKSTA.PRO\WIN
  564. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS500\WKSTA.PRO
  565. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\MACHINE\DATA
  566. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\MACHINE\LOGS
  567. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS622\WKSTA.PRO
  568. CreateDir $(RPLDIR)\RPLFILES\CONFIGS\DOS600\WKSTA.PRO
  569. Exit
  570. [Files-SUPP2]
  571. 1, rpldisk.new, SIZE=999
  572. 1, rplboot.new, SIZE=999
  573. 1, readme.txt, SIZE=999
  574. [Files-SUPPORT]
  575. 1, rplsvc.mdb, SIZE=999
  576. 1, rpldisk.new, SIZE=999
  577. 1, rplboot.new, SIZE=999
  578. 1, readme.txt, SIZE=999
  579. 1, rplbug.txt, SIZE=999
  580. 1, rplfiles\binfiles\dos330\bootsect.com, SIZE=999, RENAME=rplfiles\binfiles\dos330\bootsect.com
  581. 1, rplfiles\binfiles\dos401\bootsect.com, SIZE=999, RENAME=rplfiles\binfiles\dos401\bootsect.com
  582. 1, rplfiles\binfiles\dos500\bootsect.com, SIZE=999, RENAME=rplfiles\binfiles\dos500\bootsect.com
  583. 1, rplfiles\binfiles\dos622\bootsect.com, SIZE=999, RENAME=rplfiles\binfiles\dos622\bootsect.com
  584. 1, rplfiles\binfiles\dos600\bootsect.com, SIZE=999, RENAME=rplfiles\binfiles\dos600\bootsect.com
  585. 1, rplfiles\binfiles\binr\dectohex.exe, SIZE=999, RENAME=rplfiles\binfiles\binr\dectohex.exe
  586. 1, rplfiles\binfiles\binr\fixmem.com, SIZE=999, RENAME=rplfiles\binfiles\binr\fixmem.com
  587. 1, rplfiles\binfiles\binr\readboot.exe, SIZE=999, RENAME=rplfiles\binfiles\binr\readboot.exe
  588. 1, rplfiles\binfiles\binr\rpldsabl.exe, SIZE=999, RENAME=rplfiles\binfiles\binr\rpldsabl.exe
  589. 1, rplfiles\binfiles\binr\rplenabl.exe, SIZE=999, RENAME=rplfiles\binfiles\binr\rplenabl.exe
  590. 1, rplfiles\binfiles\binr\rplinit.exe, SIZE=999, RENAME=rplfiles\binfiles\binr\rplinit.exe
  591. 1, rplfiles\binfiles\binr\rpllink.exe, SIZE=999, RENAME=rplfiles\binfiles\binr\rpllink.exe
  592. 1, rplfiles\binfiles\binr\rpllnk.sys, SIZE=999, RENAME=rplfiles\binfiles\binr\rpllnk.sys
  593. 1, rplfiles\binfiles\binr\rplmem.exe, SIZE=999, RENAME=rplfiles\binfiles\binr\rplmem.exe
  594. 1, rplfiles\binfiles\binr\rplmem.txt, SIZE=999, RENAME=rplfiles\binfiles\binr\rplmem.txt
  595. 1, rplfiles\binfiles\binr\rplpro2.com, SIZE=999, RENAME=rplfiles\binfiles\binr\rplpro2.com
  596. 1, rplfiles\binfiles\win95\bootsect.com, SIZE=999, RENAME=rplfiles\binfiles\win95\bootsect.com
  597. 1, rplfiles\binfiles\win95\nwrpltrm.com, SIZE=999, RENAME=rplfiles\binfiles\win95\nwrpltrm.com
  598. 1, rplfiles\binfiles\win95\ntrpl.sys, SIZE=999, RENAME=rplfiles\binfiles\win95\ntrpl.sys
  599. 1, rplfiles\binfiles\win95\setmdir.exe, SIZE=999, RENAME=rplfiles\binfiles\win95\setmdir.exe
  600. 1, rplfiles\binfiles\win95\aspi2hlp.sys, SIZE=999, RENAME=rplfiles\binfiles\win95\aspi2hlp.sys
  601. 1, rplfiles\binfiles\win95\command.com, SIZE=999, RENAME=rplfiles\binfiles\win95\command.com
  602. 1, rplfiles\binfiles\win95\dblbuff.sys, SIZE=999, RENAME=rplfiles\binfiles\win95\dblbuff.sys
  603. 1, rplfiles\binfiles\win95\emm386.exe, SIZE=999, RENAME=rplfiles\binfiles\win95\emm386.exe
  604. 1, rplfiles\binfiles\win95\himem.sys, SIZE=999, RENAME=rplfiles\binfiles\win95\himem.sys
  605. 1, rplfiles\binfiles\win95\ifshlp.sys, SIZE=999, RENAME=rplfiles\binfiles\win95\ifshlp.sys
  606. 1, rplfiles\binfiles\win95\io.sys, SIZE=999, RENAME=rplfiles\binfiles\win95\io.sys
  607. 1, rplfiles\binfiles\win95\ndishlp.sys, SIZE=999, RENAME=rplfiles\binfiles\win95\ndishlp.sys
  608. 1, rplfiles\binfiles\win95\net.exe, SIZE=999, RENAME=rplfiles\binfiles\win95\net.exe
  609. 1, rplfiles\binfiles\win95\net.msg, SIZE=999, RENAME=rplfiles\binfiles\win95\net.msg
  610. 1, rplfiles\binfiles\win95\neth.msg, SIZE=999, RENAME=rplfiles\binfiles\win95\neth.msg
  611. 1, rplfiles\binfiles\win95\protman.dos, SIZE=999, RENAME=rplfiles\binfiles\win95\protman.dos
  612. 1, rplfiles\binfiles\win95\protman.exe, SIZE=999, RENAME=rplfiles\binfiles\win95\protman.exe
  613. 1, rplfiles\binfiles\win95\ramdrive.sys, SIZE=999, RENAME=rplfiles\binfiles\win95\ramdrive.sys
  614. 1, rplfiles\binfiles\win95\snapshot.exe, SIZE=999, RENAME=rplfiles\binfiles\win95\snapshot.exe
  615. 1, rplfiles\binfiles\win95\command\mem.exe, SIZE=999, RENAME=rplfiles\binfiles\win95\command\mem.exe
  616. 1, rplfiles\binfiles\win95\command\setver.exe, SIZE=999, RENAME=rplfiles\binfiles\win95\command\setver.exe
  617. 1, rplfiles\binfiles\lanman.dos\lanman.ini, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\lanman.ini
  618. 1, rplfiles\binfiles\lanman.dos\lmsetup.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\lmsetup.exe
  619. 1, rplfiles\binfiles\lanman.dos\setup.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\setup.exe
  620. 1, rplfiles\binfiles\lanman.dos\setup.inf, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\setup.inf
  621. 1, rplfiles\binfiles\lanman.dos\setup.ini, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\setup.ini
  622. 1, rplfiles\binfiles\lanman.dos\setup.msg, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\setup.msg
  623. 1, rplfiles\binfiles\lanman.dos\tcputils.ini, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\tcputils.ini
  624. 1, rplfiles\binfiles\lanman.dos\netwksta\netwksta.330, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netwksta\netwksta.330
  625. 1, rplfiles\binfiles\lanman.dos\netwksta\netwksta.400, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netwksta\netwksta.400
  626. 1, rplfiles\binfiles\lanman.dos\netwksta\netwksta.500, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netwksta\netwksta.500
  627. 1, rplfiles\binfiles\lanman.dos\services\encrypt.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\services\encrypt.exe
  628. 1, rplfiles\binfiles\lanman.dos\services\minipop.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\services\minipop.exe
  629. 1, rplfiles\binfiles\lanman.dos\services\msrv.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\services\msrv.exe
  630. 1, rplfiles\binfiles\lanman.dos\services\netpopup.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\services\netpopup.exe
  631. 1, rplfiles\binfiles\lanman.dos\drivers\xif\readme.txt, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\xif\readme.txt
  632. 1, rplfiles\binfiles\lanman.dos\drivers\xif\msdlc.xif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\xif\msdlc.xif
  633. 1, rplfiles\binfiles\lanman.dos\drivers\xif\netbeui.xif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\xif\netbeui.xif
  634. 1, rplfiles\binfiles\lanman.dos\drivers\xif\tcpip.xif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\xif\tcpip.xif
  635. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\autoexec.s1, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\autoexec.s1
  636. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\autoexec.s2, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\autoexec.s2
  637. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\autoexec.s3, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\autoexec.s3
  638. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\config.s1, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\config.s1
  639. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\config.s2, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\config.s2
  640. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\config.s3, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\config.s3
  641. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\msdlc.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\msdlc.exe
  642. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\protocol.ini, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\protocol.ini
  643. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\protocol.s1, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\protocol.s1
  644. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\protocol.s2, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\protocol.s2
  645. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\protocol.s3, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\protocol.s3
  646. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\readme.txt, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\msdlc\readme.txt
  647. 1, rplfiles\binfiles\lanman.dos\drivers\nif\elnk.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\elnk.nif
  648. 1, rplfiles\binfiles\lanman.dos\drivers\nif\elnk16.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\elnk16.nif
  649. 1, rplfiles\binfiles\lanman.dos\drivers\nif\elnkii.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\elnkii.nif
  650. 1, rplfiles\binfiles\lanman.dos\drivers\nif\epro.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\epro.nif
  651. 1, rplfiles\binfiles\lanman.dos\drivers\nif\madge.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\madge.nif
  652. 1, rplfiles\binfiles\lanman.dos\drivers\nif\elnkmc.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\elnkmc.nif
  653. 1, rplfiles\binfiles\lanman.dos\drivers\nif\elnkpl.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\elnkpl.nif
  654. 1, rplfiles\binfiles\lanman.dos\drivers\nif\ethiie.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\ethiie.nif
  655. 1, rplfiles\binfiles\lanman.dos\drivers\nif\hplanb.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\hplanb.nif
  656. 1, rplfiles\binfiles\lanman.dos\drivers\nif\ibmtok.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\ibmtok.nif
  657. 1, rplfiles\binfiles\lanman.dos\drivers\nif\ne1000.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\ne1000.nif
  658. 1, rplfiles\binfiles\lanman.dos\drivers\nif\ne2000.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\ne2000.nif
  659. 1, rplfiles\binfiles\lanman.dos\drivers\nif\smceth.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\smceth.nif
  660. 1, rplfiles\binfiles\lanman.dos\drivers\nif\smc8000.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\smc8000.nif
  661. 1, rplfiles\binfiles\lanman.dos\drivers\nif\tlnk.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\tlnk.nif
  662. 1, rplfiles\binfiles\lanman.dos\drivers\nif\tlnk3.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\tlnk3.nif
  663. 1, rplfiles\binfiles\lanman.dos\drivers\nif\am2100.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\am2100.nif
  664. 1, rplfiles\binfiles\lanman.dos\drivers\nif\exp16.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\exp16.nif
  665. 1, rplfiles\binfiles\lanman.dos\drivers\nif\elnk3.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\elnk3.nif
  666. 1, rplfiles\binfiles\lanman.dos\drivers\nif\ni6510.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\ni6510.nif
  667. 1, rplfiles\binfiles\lanman.dos\drivers\nif\ni5210.nif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\nif\ni5210.nif
  668. 1, rplfiles\binfiles\lanman.dos\drivers\protman\pro.msg, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protman\pro.msg
  669. 1, rplfiles\binfiles\lanman.dos\drivers\protman\proh.msg, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protman\proh.msg
  670. 1, rplfiles\binfiles\lanman.dos\drivers\protman\protchk.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protman\protchk.exe
  671. 1, rplfiles\binfiles\lanman.dos\drivers\protman\protman.dos, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protman\protman.dos
  672. 1, rplfiles\binfiles\lanman.dos\drivers\protman\protman.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protman\protman.exe
  673. 1, rplfiles\binfiles\lanman.dos\drivers\dosutils\emm386.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\dosutils\emm386.exe
  674. 1, rplfiles\binfiles\lanman.dos\drivers\dosutils\himem.sys, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\dosutils\himem.sys
  675. 1, rplfiles\binfiles\lanman.dos\drivers\dosutils\optimize.exc, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\dosutils\optimize.exc
  676. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\addname.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\addname.exe
  677. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\dnr.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\dnr.exe
  678. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\emsbfr.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\emsbfr.exe
  679. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\hosts, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\hosts
  680. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\ipconfig.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\ipconfig.exe
  681. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\lmhosts, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\lmhosts
  682. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\nemm.dos, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\nemm.dos
  683. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\networks, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\networks
  684. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\nmtsr.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\nmtsr.exe
  685. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\ping.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\ping.exe
  686. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\protocol, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\protocol
  687. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\protocol.ini, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\protocol.ini
  688. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\rpc16c3.dll, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\rpc16c3.dll
  689. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\services, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\services
  690. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\sockets.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\sockets.exe
  691. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\tcpdrv.dos, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\tcpdrv.dos
  692. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\tcptsr.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\tcptsr.exe
  693. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\tcputils.ini, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\tcputils.ini
  694. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\tcpdrv.86e, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\tcpdrv.86e
  695. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\tcptsr.86e, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\tcptsr.86e
  696. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\tinyrfc.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\tinyrfc.exe
  697. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\umb.com, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\umb.com
  698. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\unloadt.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\unloadt.exe
  699. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\vbapi.386, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\vbapi.386
  700. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\vsockets.386, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\vsockets.386
  701. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\win_sock.dll, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\win_sock.dll
  702. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\winsock.dll, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\winsock.dll
  703. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\wsahdapp.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\wsahdapp.exe
  704. 1, rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\wsockets.dll, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\drivers\protocol\tcpip\wsockets.dll
  705. 1, rplfiles\binfiles\lanman.dos\netprog\addicons.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\addicons.exe
  706. 1, rplfiles\binfiles\lanman.dos\netprog\addicons.ini, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\addicons.ini
  707. 1, rplfiles\binfiles\lanman.dos\netprog\appstart.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\appstart.exe
  708. 1, rplfiles\binfiles\lanman.dos\netprog\chknet.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\chknet.exe
  709. 1, rplfiles\binfiles\lanman.dos\netprog\comndis.com, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\comndis.com
  710. 1, rplfiles\binfiles\lanman.dos\netprog\lanman21.drv, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\lanman21.drv
  711. 1, rplfiles\binfiles\lanman.dos\netprog\lm22_w31.hlp, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\lm22_w31.hlp
  712. 1, rplfiles\binfiles\lanman.dos\netprog\lmscript.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\lmscript.exe
  713. 1, rplfiles\binfiles\lanman.dos\netprog\lmscript.pif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\lmscript.pif
  714. 1, rplfiles\binfiles\lanman.dos\netprog\load.com, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\load.com
  715. 1, rplfiles\binfiles\lanman.dos\netprog\minses.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\minses.exe
  716. 1, rplfiles\binfiles\lanman.dos\netprog\msd.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\msd.exe
  717. 1, rplfiles\binfiles\lanman.dos\netprog\msd.ini, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\msd.ini
  718. 1, rplfiles\binfiles\lanman.dos\netprog\net.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\net.exe
  719. 1, rplfiles\binfiles\lanman.dos\netprog\net.hlp, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\net.hlp
  720. 1, rplfiles\binfiles\lanman.dos\netprog\net.msg, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\net.msg
  721. 1, rplfiles\binfiles\lanman.dos\netprog\net.pif, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\net.pif
  722. 1, rplfiles\binfiles\lanman.dos\netprog\netapi.dll, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\netapi.dll
  723. 1, rplfiles\binfiles\lanman.dos\netprog\netbind.com, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\netbind.com
  724. 1, rplfiles\binfiles\lanman.dos\netprog\netcopy.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\netcopy.exe
  725. 1, rplfiles\binfiles\lanman.dos\netprog\neth.msg, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\neth.msg
  726. 1, rplfiles\binfiles\lanman.dos\netprog\netmove.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\netmove.exe
  727. 1, rplfiles\binfiles\lanman.dos\netprog\netrun.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\netrun.exe
  728. 1, rplfiles\binfiles\lanman.dos\netprog\netuser.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\netuser.exe
  729. 1, rplfiles\binfiles\lanman.dos\netprog\nifu.hlp, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\nifu.hlp
  730. 1, rplfiles\binfiles\lanman.dos\netprog\oso001.msg, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\oso001.msg
  731. 1, rplfiles\binfiles\lanman.dos\netprog\pmspl.dll, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\pmspl.dll
  732. 1, rplfiles\binfiles\lanman.dos\netprog\prtsc.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\prtsc.exe
  733. 1, rplfiles\binfiles\lanman.dos\netprog\readpro.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\readpro.exe
  734. 1, rplfiles\binfiles\lanman.dos\netprog\unload.com, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\unload.com
  735. 1, rplfiles\binfiles\lanman.dos\netprog\winpopup.exe, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\winpopup.exe
  736. 1, rplfiles\binfiles\lanman.dos\netprog\winpopup.hlp, SIZE=999, RENAME=rplfiles\binfiles\lanman.dos\netprog\winpopup.hlp
  737. 1, rplfiles\configs\dos330\autoexec.bat, SIZE=999, RENAME=rplfiles\configs\dos330\autoexec.bat
  738. 1, rplfiles\configs\dos330\config.sys, SIZE=999, RENAME=rplfiles\configs\dos330\config.sys
  739. 1, rplfiles\configs\dos401\autoexec.bat, SIZE=999, RENAME=rplfiles\configs\dos401\autoexec.bat
  740. 1, rplfiles\configs\dos401\config.sys, SIZE=999, RENAME=rplfiles\configs\dos401\config.sys
  741. 1, rplfiles\configs\dos500\autoexec.bat, SIZE=999, RENAME=rplfiles\configs\dos500\autoexec.bat
  742. 1, rplfiles\configs\dos500\config.sys, SIZE=999, RENAME=rplfiles\configs\dos500\config.sys
  743. 1, rplfiles\configs\dos500\wksta.pro\dosshell.ini, SIZE=999, RENAME=rplfiles\configs\dos500\wksta.pro\dosshell.ini
  744. 1, rplfiles\configs\dos622\autoexec.bat, SIZE=999, RENAME=rplfiles\configs\dos622\autoexec.bat
  745. 1, rplfiles\configs\dos622\config.sys, SIZE=999, RENAME=rplfiles\configs\dos622\config.sys
  746. 1, rplfiles\configs\dos622\wksta.pro\dosshell.ini, SIZE=999, RENAME=rplfiles\configs\dos622\wksta.pro\dosshell.ini
  747. 1, rplfiles\configs\dos600\autoexec.bat, SIZE=999, RENAME=rplfiles\configs\dos600\autoexec.bat
  748. 1, rplfiles\configs\dos600\config.sys, SIZE=999, RENAME=rplfiles\configs\dos600\config.sys
  749. 1, rplfiles\configs\dos600\wksta.pro\dosshell.ini, SIZE=999, RENAME=rplfiles\configs\dos600\wksta.pro\dosshell.ini
  750. 1, rplfiles\configs\dos\lanman.dos\lanman.ini, SIZE=999, RENAME=rplfiles\configs\dos\lanman.dos\lanman.ini
  751. 1, rplfiles\configs\dos\lanman.dos\lmhosts, SIZE=999, RENAME=rplfiles\configs\dos\lanman.dos\lmhosts
  752. 1, bblock\i13.com, SIZE=999, RENAME=bblock\i13.com
  753. 1, bblock\w95i13.com, SIZE=999, RENAME=bblock\w95i13.com
  754. 1, bblock\protman.dos, SIZE=999, RENAME=bblock\protman.dos
  755. 1, bblock\protman.exe, SIZE=999, RENAME=bblock\protman.exe
  756. 1, bblock\rpl13.com, SIZE=999, RENAME=bblock\rpl13.com
  757. 1, bblock\rplbind1.exe, SIZE=999, RENAME=bblock\rplbind1.exe
  758. 1, bblock\rplbind2.exe, SIZE=999, RENAME=bblock\rplbind2.exe
  759. 1, bblock\rplboot.sys, SIZE=999, RENAME=bblock\rplboot.sys
  760. 1, bblock\rpldisk.sys, SIZE=999, RENAME=bblock\rpldisk.sys
  761. 1, bblock\rplmfsd.sys, SIZE=999, RENAME=bblock\rplmfsd.sys
  762. 1, bblock\rplpro1.com, SIZE=999, RENAME=bblock\rplpro1.com
  763. 1, bblock\rplstart.com, SIZE=999, RENAME=bblock\rplstart.com
  764. 1, bblock\tcpdrv.dos, SIZE=999, RENAME=bblock\tcpdrv.dos
  765. 1, bblock\ipxndis.dos, SIZE=999, RENAME=bblock\ipxndis.dos
  766. 1, bblock\ndis\e3stat.dos, SIZE=999, RENAME=bblock\ndis\e3stat.dos
  767. 1, bblock\ndis\elnk.dos, SIZE=999, RENAME=bblock\ndis\elnk.dos
  768. 1, bblock\ndis\elnk16.dos, SIZE=999, RENAME=bblock\ndis\elnk16.dos
  769. 1, bblock\ndis\elnkii.dos, SIZE=999, RENAME=bblock\ndis\elnkii.dos
  770. 1, bblock\ndis\epro.dos, SIZE=999, RENAME=bblock\ndis\epro.dos
  771. 1, bblock\ndis\smartnd.dos, SIZE=999, RENAME=bblock\ndis\smartnd.dos
  772. 1, bblock\ndis\elnkmc.dos, SIZE=999, RENAME=bblock\ndis\elnkmc.dos
  773. 1, bblock\ndis\elnkpl.dos, SIZE=999, RENAME=bblock\ndis\elnkpl.dos
  774. 1, bblock\ndis\ethiie.dos, SIZE=999, RENAME=bblock\ndis\ethiie.dos
  775. 1, bblock\ndis\hplanb.dos, SIZE=999, RENAME=bblock\ndis\hplanb.dos
  776. 1, bblock\ndis\ibmtok.dos, SIZE=999, RENAME=bblock\ndis\ibmtok.dos
  777. 1, bblock\ndis\ne1000.dos, SIZE=999, RENAME=bblock\ndis\ne1000.dos
  778. 1, bblock\ndis\ne2000.dos, SIZE=999, RENAME=bblock\ndis\ne2000.dos
  779. 1, bblock\ndis\smcmac.dos, SIZE=999, RENAME=bblock\ndis\smcmac.dos
  780. 1, bblock\ndis\smc8000.dos, SIZE=999, RENAME=bblock\ndis\smc8000.dos
  781. 1, bblock\ndis\tlnk.dos, SIZE=999, RENAME=bblock\ndis\tlnk.dos
  782. 1, bblock\ndis\tlnk3.dos, SIZE=999, RENAME=bblock\ndis\tlnk3.dos
  783. 1, bblock\ndis\am2100.dos, SIZE=999, RENAME=bblock\ndis\am2100.dos
  784. 1, bblock\ndis\exp16.dos, SIZE=999, RENAME=bblock\ndis\exp16.dos
  785. 1, bblock\ndis\elnk3.dos, SIZE=999, RENAME=bblock\ndis\elnk3.dos
  786. 1, bblock\ndis\ni6510.dos, SIZE=999, RENAME=bblock\ndis\ni6510.dos
  787. 1, bblock\ndis\ni5210.dos, SIZE=999, RENAME=bblock\ndis\ni5210.dos
  788. 1, bblock\netbeui\netbeui.exe, SIZE=999, RENAME=bblock\netbeui\netbeui.exe
  789. 1, bblock\netbeui\e3stat\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\e3stat\dosbb.cnf
  790. 1, bblock\netbeui\e3stat\protocol.ini, SIZE=999, RENAME=bblock\netbeui\e3stat\protocol.ini
  791. 1, bblock\netbeui\ethiie\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\ethiie\dosbb.cnf
  792. 1, bblock\netbeui\ethiie\protocol.ini, SIZE=999, RENAME=bblock\netbeui\ethiie\protocol.ini
  793. 1, bblock\netbeui\smc8000\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\smc8000\dosbb.cnf
  794. 1, bblock\netbeui\smc8000\w95bb.cnf, SIZE=999, RENAME=bblock\netbeui\smc8000\w95bb.cnf
  795. 1, bblock\netbeui\smc8000\protocol.ini, SIZE=999, RENAME=bblock\netbeui\smc8000\protocol.ini
  796. 1, bblock\netbeui\tlnk\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\tlnk\dosbb.cnf
  797. 1, bblock\netbeui\tlnk\protocol.ini, SIZE=999, RENAME=bblock\netbeui\tlnk\protocol.ini
  798. 1, bblock\netbeui\tlnk3\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\tlnk3\dosbb.cnf
  799. 1, bblock\netbeui\tlnk3\protocol.ini, SIZE=999, RENAME=bblock\netbeui\tlnk3\protocol.ini
  800. 1, bblock\netbeui\elnk16\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\elnk16\dosbb.cnf
  801. 1, bblock\netbeui\elnk16\protocol.ini, SIZE=999, RENAME=bblock\netbeui\elnk16\protocol.ini
  802. 1, bblock\netbeui\elnkmc\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\elnkmc\dosbb.cnf
  803. 1, bblock\netbeui\elnkmc\protocol.ini, SIZE=999, RENAME=bblock\netbeui\elnkmc\protocol.ini
  804. 1, bblock\netbeui\elnkpl\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\elnkpl\dosbb.cnf
  805. 1, bblock\netbeui\elnkpl\protocol.ini, SIZE=999, RENAME=bblock\netbeui\elnkpl\protocol.ini
  806. 1, bblock\netbeui\hplanb\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\hplanb\dosbb.cnf
  807. 1, bblock\netbeui\hplanb\protocol.ini, SIZE=999, RENAME=bblock\netbeui\hplanb\protocol.ini
  808. 1, bblock\netbeui\elnkii\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\elnkii\dosbb.cnf
  809. 1, bblock\netbeui\elnkii\w95bb.cnf, SIZE=999, RENAME=bblock\netbeui\elnkii\w95bb.cnf
  810. 1, bblock\netbeui\elnkii\protocol.ini, SIZE=999, RENAME=bblock\netbeui\elnkii\protocol.ini
  811. 1, bblock\netbeui\epro\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\epro\dosbb.cnf
  812. 1, bblock\netbeui\epro\w95bb.cnf, SIZE=999, RENAME=bblock\netbeui\epro\w95bb.cnf
  813. 1, bblock\netbeui\epro\protocol.ini, SIZE=999, RENAME=bblock\netbeui\epro\protocol.ini
  814. 1, bblock\netbeui\madge\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\madge\dosbb.cnf
  815. 1, bblock\netbeui\madge\protocol.ini, SIZE=999, RENAME=bblock\netbeui\madge\protocol.ini
  816. 1, bblock\netbeui\elnk\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\elnk\dosbb.cnf
  817. 1, bblock\netbeui\elnk\protocol.ini, SIZE=999, RENAME=bblock\netbeui\elnk\protocol.ini
  818. 1, bblock\netbeui\ne1000\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\ne1000\dosbb.cnf
  819. 1, bblock\netbeui\ne1000\protocol.ini, SIZE=999, RENAME=bblock\netbeui\ne1000\protocol.ini
  820. 1, bblock\netbeui\ne2000\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\ne2000\dosbb.cnf
  821. 1, bblock\netbeui\ne2000\w95bb.cnf, SIZE=999, RENAME=bblock\netbeui\ne2000\w95bb.cnf
  822. 1, bblock\netbeui\ne2000\protocol.ini, SIZE=999, RENAME=bblock\netbeui\ne2000\protocol.ini
  823. 1, bblock\netbeui\ibmtok\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\ibmtok\dosbb.cnf
  824. 1, bblock\netbeui\ibmtok\protocol.ini, SIZE=999, RENAME=bblock\netbeui\ibmtok\protocol.ini
  825. 1, bblock\netbeui\am2100\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\am2100\dosbb.cnf
  826. 1, bblock\netbeui\am2100\w95bb.cnf, SIZE=999, RENAME=bblock\netbeui\am2100\w95bb.cnf
  827. 1, bblock\netbeui\am2100\protocol.ini, SIZE=999, RENAME=bblock\netbeui\am2100\protocol.ini
  828. 1, bblock\netbeui\exp16\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\exp16\dosbb.cnf
  829. 1, bblock\netbeui\exp16\w95bb.cnf, SIZE=999, RENAME=bblock\netbeui\exp16\w95bb.cnf
  830. 1, bblock\netbeui\exp16\protocol.ini, SIZE=999, RENAME=bblock\netbeui\exp16\protocol.ini
  831. 1, bblock\netbeui\elnk3\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\elnk3\dosbb.cnf
  832. 1, bblock\netbeui\elnk3\w95bb.cnf, SIZE=999, RENAME=bblock\netbeui\elnk3\w95bb.cnf
  833. 1, bblock\netbeui\elnk3\protocol.ini, SIZE=999, RENAME=bblock\netbeui\elnk3\protocol.ini
  834. 1, bblock\netbeui\ni6510\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\ni6510\dosbb.cnf
  835. 1, bblock\netbeui\ni6510\protocol.ini, SIZE=999, RENAME=bblock\netbeui\ni6510\protocol.ini
  836. 1, bblock\netbeui\ni5210\dosbb.cnf, SIZE=999, RENAME=bblock\netbeui\ni5210\dosbb.cnf
  837. 1, bblock\netbeui\ni5210\protocol.ini, SIZE=999, RENAME=bblock\netbeui\ni5210\protocol.ini
  838. 1, bin\win95clt.bat, SIZE=999, RENAME=bin\win95clt.bat
  839. 1, fits\default.fit, SIZE=999, RENAME=fits\default.fit
  840. 1, fits\dos330.fit, SIZE=999, RENAME=fits\dos330.fit
  841. 1, fits\dos330p.fit, SIZE=999, RENAME=fits\dos330p.fit
  842. 1, fits\dos401.fit, SIZE=999, RENAME=fits\dos401.fit
  843. 1, fits\dos401p.fit, SIZE=999, RENAME=fits\dos401p.fit
  844. 1, fits\dos500.fit, SIZE=999, RENAME=fits\dos500.fit
  845. 1, fits\dos500p.fit, SIZE=999, RENAME=fits\dos500p.fit
  846. 1, fits\dos600.fit, SIZE=999, RENAME=fits\dos600.fit
  847. 1, fits\dos600p.fit, SIZE=999, RENAME=fits\dos600p.fit
  848. 1, fits\dos622.fit, SIZE=999, RENAME=fits\dos622.fit
  849. 1, fits\dos622p.fit, SIZE=999, RENAME=fits\dos622p.fit
  850. 1, fits\win95.fit, SIZE=999, RENAME=fits\win95.fit
  851. 1, fits\win95p.fit, SIZE=999, RENAME=fits\win95p.fit