home *** CD-ROM | disk | FTP | other *** search
- ; by Tod DeBie 1/28/92
- ; modified by Doug Neal 2/12/92
- ;
- ; This batch file deletes files left in the temp directory by the install program
-
- ErrorMode(@OFF)
- tvar=Environment("TEMP")
- if tvar == "" then tvar="c:\" ;if no temp var then set to c: root
- tvar=StrTrim(tvar)
- tlen=StrLen(tvar)
- test=StrSub(tvar,tlen,1)
-
- if test == "\" then goto DoIt ;check of \ at end of string and add if not there
- tvar=StrCat(tvar,"\")
- :DoIt
- FileDelete("%tvar%install.inf")
- FileDelete("%tvar%instbin.exe")
- FileDelete("%tvar%ndwinstl.hlp")
- FileDelete("%tvar%ver.dll")
- ; Make sure Norton Desktop is up
- NDState = WinState("Norton Desktop")
- if NDState == @NORMAL Then Goto DoIntro
- if NDState == @ZOOMED Then Goto DoIntro
- Goto SkipIntro
-
- :DoIntro
- ; Get the window handle for NDW
- hWnd = IntControl(21,"Norton Desktop~",0,0,0)
- if hWnd == 0 Then Goto SkipIntro
- ; Trigger Introducing screen
- WinActivate("Norton Desktop")
- IntControl(23,hWnd,273,9208,0)
-
- :SkipIntro
-
- loadline=IniRead("windows","load","") ;remove from load line
- loadln=StrReplace(loadline,"tempfile.wbt"," ")
- IniWrite("windows","load",loadln)
-