Jump to content

Startup "Delay" option


DanielBY

Recommended Posts

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

Always With Kind Regards

Tasgandy

"one is never too old to listen & learn"

Link to comment
Share on other sites

  • 3 weeks later...

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.

Link to comment
Share on other sites

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

No fate but what we make

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.