home *** CD-ROM | disk | FTP | other *** search
/ Inside Multimedia 1996 July / IMM0796.ISO / mrmore / umbenenn.bat < prev    next >
DOS Batch File  |  1996-04-03  |  728b  |  30 lines

  1. @echo off
  2.  
  3. rem ****************************************************
  4. rem BITTE DIESE DATEI NACH SEINER AUSFUEHRUNG LOESCHEN !!!
  5. rem ****************************************************
  6.  
  7. if exist oldsetup.exe goto oldsetup
  8. if exist setup.exe goto setup
  9. if exist install.exe goto install
  10.  
  11. echo Bitte stellen Sie sicher, dass die setup Original-Datei
  12. echo entweder "setup.exe" oder "install.exe" heisst !!!
  13. goto ende
  14.  
  15. :oldsetup
  16. echo Es existiert bereits eine Datei mit dem Namen "oldsetup.exe"
  17. echo Ein mehrfaches Umbenennen ist nicht notwendig.
  18. goto ende
  19.  
  20. :setup
  21. ren setup.exe oldsetup.exe 
  22. ren mmsetup.exe setup.exe
  23. goto ende
  24.  
  25. :install
  26. ren install.exe oldsetup.exe 
  27. ren mmsetup.exe install.exe
  28.  
  29. :ende
  30.