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.

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