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
439 B

Function UnInstallSupToolsChm ()
dim fso, tFolder
Set fso = CreateObject("Scripting.FileSystemObject")
Set tfolder = fso.GetSpecialFolder(0)
strHelpDir = tFolder.path & "\help"
strStubChmName = strHelpDir & "\suptools_old.chm"
strNewStubChmName = strHelpDir & "\suptools.chm"
If (fso.FileExists(strStubChmName)) Then
fso.MoveFile strStubChmName, strNewStubChmName
End If
set fso = nothing
UnInstallSupToolsChm = 1
End Function