home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 16 / 16.iso / t / t099 / 2.ddi / TEMPFILE.WBT < prev    next >
Encoding:
Text File  |  1992-03-20  |  1.1 KB  |  39 lines

  1. ; by Tod DeBie           1/28/92
  2. ; modified by Doug Neal  2/12/92
  3. ; This batch file deletes files left in the temp directory by the install program
  4.  
  5. ErrorMode(@OFF)
  6. tvar=Environment("TEMP")
  7. if tvar == "" then tvar="c:\"   ;if no temp var then set to c: root
  8. tvar=StrTrim(tvar)
  9. tlen=StrLen(tvar)
  10. test=StrSub(tvar,tlen,1)
  11.  
  12. if test == "\" then goto DoIt    ;check of \ at end of string and add if not there
  13. tvar=StrCat(tvar,"\")
  14. :DoIt
  15. FileDelete("%tvar%install.inf")
  16. FileDelete("%tvar%instbin.exe")
  17. FileDelete("%tvar%ndwinstl.hlp")
  18. FileDelete("%tvar%ver.dll")
  19.                               ; Make sure Norton Desktop is up
  20. NDState = WinState("Norton Desktop")
  21. if NDState == @NORMAL Then Goto DoIntro
  22. if NDState == @ZOOMED Then Goto DoIntro
  23. Goto SkipIntro
  24.  
  25. :DoIntro
  26.                 ; Get the window handle for NDW
  27. hWnd = IntControl(21,"Norton Desktop~",0,0,0)
  28. if hWnd == 0 Then Goto SkipIntro
  29.                 ; Trigger Introducing screen
  30. WinActivate("Norton Desktop")
  31. IntControl(23,hWnd,273,9208,0)
  32.  
  33. :SkipIntro
  34.  
  35. loadline=IniRead("windows","load","")     ;remove from load line
  36. loadln=StrReplace(loadline,"tempfile.wbt"," ")
  37. IniWrite("windows","load",loadln)
  38.