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.

13 lines
434 B

  1. Function InstallSupToolsChm ()
  2. dim fso, tFolder
  3. Set fso = CreateObject("Scripting.FileSystemObject")
  4. Set tfolder = fso.GetSpecialFolder(0)
  5. strHelpDir = tFolder.path & "\help"
  6. strStubChmName = strHelpDir & "\suptools.chm"
  7. strNewStubChmName = strHelpDir & "\suptools_old.chm"
  8. If (fso.FileExists(strStubChmName)) Then
  9. fso.MoveFile strStubChmName,strNewStubChmName
  10. End If
  11. set fso = nothing
  12. InstallSupToolsChm = 1
  13. End Function