home *** CD-ROM | disk | FTP | other *** search
/ Network Support Encyclopedia 96-1 / novell-nsepro-1996-1-cd2.iso / download / gw / gwusc2.exe / GWPAT2.EXE / DOSPNSET.BAT < prev    next >
DOS Batch File  |  1995-08-29  |  2KB  |  91 lines

  1. REM --------------------------------------------
  2. REM This batch file fixes a span set.
  3. REM It takes two parameters:
  4. REM Param 1:    Domain Directory
  5. REM Param 2:    The name of the span set to fix.
  6. REM --------------------------------------------
  7.  
  8.  
  9. ECHO.
  10. ECHO !!! STARTING PATCH PROCESS FOR %2 SPAN SET
  11. REM
  12.  
  13. cd tmp
  14.  
  15. REM
  16. ECHO !!! Copying %2 span set to tmp directory.
  17. REM
  18.  
  19. copy %1\WPOFFICE\OFWIN40\SETUP\%2.SPN >NUL
  20. copy %1\WPOFFICE\OFWIN40\SETUP\%2.S0* >NUL
  21.  
  22. REM
  23. ECHO !!! Unpacking the Span Set
  24. REM
  25.  
  26. copy ..\spanx.exe >NUL
  27. spanx %2 * *.* >NUL
  28.  
  29. REM
  30. REM Delete the old span set (keeps disk usage down)
  31. REM
  32.  
  33. del %2.SPN >NUL
  34. del %2.S0* >NUL
  35.  
  36. REM
  37. ECHO !!! Applying Patch to span set files
  38. REM
  39.  
  40. ..\patch -q ..\%2.RTP
  41. if exist PATCH.ERR goto exit
  42.  
  43. REM
  44. ECHO !!! Recompressing Span Set files.
  45. REM
  46.  
  47. copy ..\sqp.exe >NUL
  48. copy ..\%2.bat >NUL
  49. call %2.bat
  50.  
  51. REM
  52. REM Delete all files except .SQP file (keeps disk usage down)
  53. REM
  54.  
  55. attrib +R %2.sqp
  56. ..\kdel /q *.* >NUL
  57. attrib -R %2.sqp
  58.  
  59. REM
  60. ECHO !!! Remaking the %2 span set.
  61. REM
  62.  
  63. copy ..\span.exe >NUL
  64. span %2.sqp %2
  65. ..\fixdate2
  66.  
  67. REM
  68. REM Delete the old span set (in domain directory)
  69. REM
  70.  
  71. del %1\WPOFFICE\OFWIN40\SETUP\%2.SPN
  72. del %1\WPOFFICE\OFWIN40\SETUP\%2.s0*
  73.  
  74. REM
  75. ECHO !!! Copying new %2 span set to domain directory.
  76. REM
  77.  
  78. copy %2.spn %1\WPOFFICE\OFWIN40\SETUP >NUL
  79. copy %2.s0* %1\WPOFFICE\OFWIN40\SETUP >NUL
  80.  
  81. REM
  82. REM Cleanup the tmp directory.
  83. REM
  84.  
  85. ..\kdel /q *.* >NUL
  86.  
  87. :Exit
  88. cd ..
  89.  
  90.  
  91.