Leaked source code of windows server 2003
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.

19 lines
740 B

  1. @echo off
  2. SETLOCAL ENABLEEXTENSIONS
  3. set files=browserinfo.asp CerIntro.asp ERContent.asp faq.asp Privacy.asp Response.asp Secure\Locate.asp Secure\Status.asp Secure\Track.asp Secure\view.asp TestPage.asp welcome.asp worldwide.asp postcomment.asp secure\goTrack.asp
  4. for %%i in ( %files% ) do call :DoIt %%i
  5. c:\nt\sdktools\debuggers\oca\webv3\tools\replacetext C:\WebV3Stage\ja\upload.asp "Session.CodePage = 1252;" "Session.CodePage = 932;"
  6. goto :EOF
  7. :DoIt
  8. echo C:\nt\sdktools\debuggers\oca\WebV3\root\ja\%1
  9. attrib -r c:\webv3stage\ja\%1
  10. c:\nt\sdktools\debuggers\oca\webv3\tools\replacetext C:\WebV3Stage\ja\%1 "<%%@Language='JScript' CODEPAGE=1252%%>" "<%%@Language='JScript' CODEPAGE=932%%>"
  11. echo.
  12. echo.
  13. goto :EOF