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.

16 lines
295 B

  1. rem %1 = path of shortcut, ie, d:\patch\build\en
  2. rem %2 = path of logs directory, ie, d:\patch\build\en\3.014\logs
  3. if "%1"=="" goto :EOF
  4. if "%2"=="" goto :EOF
  5. setlocal
  6. set shortcut="%1\Latest Logs.url"
  7. echo [InternetShortcut] > %shortcut%
  8. echo URL=file:///%2 >> %shortcut%
  9. :finis
  10. endlocal