View Single Post
  #5747 (permalink)  
Old 01-09-2010, 12:40 AM
NinjaDuck's Avatar
NinjaDuck
VIP Duck
Offline
Location: Omnipresent
 
Join Date: Feb 2009
Posts: 825
Reputation: 6270
NinjaDuck is a trusted member of the communityNinjaDuck is a trusted member of the communityNinjaDuck is a trusted member of the communityNinjaDuck is a trusted member of the communityNinjaDuck is a trusted member of the communityNinjaDuck is a trusted member of the communityNinjaDuck is a trusted member of the communityNinjaDuck is a trusted member of the communityNinjaDuck is a trusted member of the communityNinjaDuck is a trusted member of the communityNinjaDuck is a trusted member of the community
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: |R|6.5.3|WWE| ★ EnergyROM "Leo" 28011/21885 |Dec 31| ★ Sense 2.5/ MaxManila/ Dusk

Here is the contents of the script in case you are interested and don't feel like downloading:

Code:
StatusHistorySize(10)
StatusInfo( "EnergyROM Cleanup", "by Ninja Duck" )
StatusMessage( "Starting Cleanup", ST_LIST, TRUE)
StatusMessage( "REMOVE BLUETOOTH TRAY APP" , ST_LIST, TRUE)
sFile = "\Windows\StartuP\BTTrayCE.lnk"
Call "HandleFile"

StatusMessage( "REMOVE INTERCEPTOR.EXE" )
sFile = "\Windows\StartuP\intercept.lnk"
Call "HandleFile"
StatusMessage( "REMOVE QUICKMENU" )
sFile = "\Windows\StartuP\QuickMenu.lnk"
Call "HandleFile"
If (RegKeyExists("HKCU","\Software\HTC\BootLauncher\Apps\QuickMenu"))
 RegDeleteKey("HKCU","\Software\HTC\BootLauncher\Apps\QuickMenu", TRUE, TRUE)
EndIF

StatusMessage( "REMOVE OPERA 10 SPEED LOADER" )
sFile = "\Windows\StartuP\OM10QS.lnk"
Call "HandleFile"
 
StatusMessage( "REMOVE DOCUMENT INDEXER" )
If (RegKeyExists("HKCU","\Software\HTC\Manila\HTCService"))
 RegDeleteKey("HKCU","\Software\HTC\Manila\HTCService", TRUE, TRUE)
EndIF

StatusMessage( "Finished", ST_LIST, FALSE )
Vibrate(550)
SLEEP(3000)
 
 
Sub HandleFile 
 IF (fileExists(sFile))
  StatusMessage( "....exists:" , ST_LIST, TRUE)
  StatusMessageAppend(sFile)
  SetFileAttribute(sFile, "readonly", FALSE)
  Delete(sFile)
 EndIF
EndSub
Reply With Quote