Startup "Delay" option

Could there be another option beyond "Enable"/"Disable" and "Delete" for Startup list items?

A "Delay" option for some X seconds after startup would make bootup time faster.

Thank you!

Could there be another option beyond "Enable"/"Disable" and "Delete" for Startup list items?

A "Delay" option for some X seconds after startup would make bootup time faster.

Thank you!

You could try "Startup Delayer", I use it on a XP Pro SP3 box....have a look at: Startup Delayer - Freeware

Could there be another option beyond "Enable"/"Disable" and "Delete" for Startup list items?

A "Delay" option for some X seconds after startup would make bootup time faster.

Thank you!

Mmm this might be getting a bit out of CCleaner's scope. :unsure:

You could try "Startup Delayer", I use it on a XP Pro SP3 box....have a look at: Startup Delayer - Freeware

Cool, I hadn't thought about looking for a ready-made tool to do that. Thanks.

using a program to run a program, just use a script

using a program to run a program, just use a script

He would if he knew how to, ident.

He would if he knew how to, ident.

Option Explicit

'Constents
Private Const CCleanerLocation = “C:\Program Files\CCleaner\CCleaner.exe /AUTO”
Private Const SystemStartUpDelay = “120000”
Private Const DelayBetweenApplications = “10000”

'Instance Varibles
Dim objShell

'Declarations
Set objShell = WScript.CreateObject(“WScript.Shell”)

On Error Resume Next

'Delay StartUp Items
WScript.Sleep(SystemStartUpDelay)

'Run CCleaner
ObjShell.exec(CCleanerLocation)

WScript.Sleep(DelayBetweenApplications)

'Next app