document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. @echo off
  2. rasdial /disconnect
  3. rasdial Desktop_ADSL 帳戶名稱 帳戶密碼
  4. set dd=%date:~8,2%
  5. set dm=%date:~5,2%
  6. set dy=%date:~0,4%
  7. set dh=%time:~0,2%
  8. set dmi=%time:~3,2%
  9. if %dh% LSS 10 goto type01
  10. If %dh% GEQ 10 goto type02
  11. :type01
  12. set dh=%time:~1,1%
  13. ipconfig /all > "Dropbox共享資料夾位置\\%dy%_%dm%_%dd%_0%dh%_%dmi%.txt"
  14. goto END
  15. :type02
  16. ipconfig /all > "Dropbox共享資料夾位置\\%dy%_%dm%_%dd%_%dh%_%dmi%.txt"
  17. GOTO END
  18. :END
');