Results 1 to 8 of 8

Thread: App Delay Startup

  1. #1
    Super Moderator Jonj1611's Avatar
    Join Date
    Jun 2008
    Posts
    5,719
    Thanks
    1,762
    Thanked
    996 times in 763 posts

    App Delay Startup

    Does anyone know any good programs to delay start up applications? I have something I want to load later than the rest, its doesn't seem to have a service so cannot delay it through services

    Something spam/adware free!
    Jon

  2. #2
    Senior Member
    Join Date
    Jul 2009
    Location
    West Sussex
    Posts
    1,721
    Thanks
    197
    Thanked
    243 times in 223 posts
    • kompukare's system
      • Motherboard:
      • Asus P8Z77-V LX
      • CPU:
      • Intel i5-3570K
      • Memory:
      • 4 x 8GB DDR3
      • Storage:
      • Samsung 850 EVo 500GB | Corsair MP510 960GB | 2 x WD 4TB spinners
      • Graphics card(s):
      • Sappihre R7 260X 1GB (sic)
      • PSU:
      • Antec 650 Gold TruePower (Seasonic)
      • Case:
      • Aerocool DS 200 (silenced, 53.6 litres)l)
      • Operating System:
      • Windows 10-64
      • Monitor(s):
      • 2 x ViewSonic 27" 1440p

    Re: App Delay Startup

    Quote Originally Posted by Jonj1611 View Post
    Does anyone know any good programs to delay start up applications? I have something I want to load later than the rest, its doesn't seem to have a service so cannot delay it through services

    Something spam/adware free!
    Batch file with TIMEOUT?
    This should get you a 10 second wait?
    TIMEOUT /T 10

  3. Received thanks from:

    Jonj1611 (09-07-2020)

  4. #3
    Super Moderator Jonj1611's Avatar
    Join Date
    Jun 2008
    Posts
    5,719
    Thanks
    1,762
    Thanked
    996 times in 763 posts

    Re: App Delay Startup

    Was hoping for something a bit more controllable but a batch file will suffice if it comes to it.

    Last time I wrote a batch file was in the dos days!
    Jon

  5. #4
    Editable... jimbouk's Avatar
    Join Date
    Aug 2005
    Location
    Bristol
    Posts
    3,069
    Thanks
    320
    Thanked
    278 times in 226 posts
    • jimbouk's system
      • Motherboard:
      • Asrock B450M-HDV R4.0
      • CPU:
      • AMD Ryzen 5 3600
      • Memory:
      • Corsair Vengeance LPX 16 GB (2 x 8 GB) DDR4 3200 MHz C16
      • Storage:
      • Sabrent Rocket Q 1TB NVMe PCIe M.2 2280
      • Graphics card(s):
      • Sapphire Pulse RX 580 8GB
      • PSU:
      • Seasonic Core Gold GC-650
      • Case:
      • Lian-Li PC-V1100 ATX
      • Operating System:
      • Windows 10 Pro
      • Monitor(s):
      • AOC CU34G2/BK 34" Widescreen
      • Internet:
      • EE FTC

    Re: App Delay Startup

    Old ones are the good ones! I'm sure there's something you could download from the interwebs but as you say these days it's hard to get handy tools that don't try and hijack your browser.

    If a service could do what you want them create one? http://dotnetlearners.com/windowsser...command-prompt

  6. Received thanks from:

    Jonj1611 (09-07-2020)

  7. #5
    Senior Member AGTDenton's Avatar
    Join Date
    Jun 2009
    Location
    Bracknell
    Posts
    2,706
    Thanks
    992
    Thanked
    833 times in 546 posts
    • AGTDenton's system
      • Motherboard:
      • MSI MEG X570S ACE MAX
      • CPU:
      • AMD 5950x
      • Memory:
      • 32GB Corsair something or the other
      • Storage:
      • 1x 512GB nvme, 1x 2TB nvme, 2x 8TB HDD
      • Graphics card(s):
      • ASUS 3080 Ti TuF
      • PSU:
      • Corsair RM850x
      • Case:
      • Fractal Design Torrent White
      • Operating System:
      • 11 Pro x64
      • Internet:
      • Fibre

    Re: App Delay Startup

    Quote Originally Posted by kompukare View Post
    Batch file with TIMEOUT?
    This should get you a 10 second wait?
    TIMEOUT /T 10
    I do exactly that and works like a charm, I'd say you have far more control than any 3rd party app. I have an app that displays 'connection failed' because the device it's trying to talk to isn't ready so I delay the starting of the App until the device is likely to be ready.

    - You can either Task Schedule or use a Cron job to have the Batch file run on startup.

    - Put the batch file or a shortcut to the batch file in:
    "C:\Users\{YOUR USER}\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup"
    Or for ALL Users
    "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp"

    - Or you can start the batch file from the registry:
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]
    or for ALL users
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run]

    If you need to bypass UAC you can set the batch file or it's shortcut to 'Run As Administrator' in the properties window.
    Last edited by AGTDenton; 09-07-2020 at 02:11 PM.

  8. Received thanks from:

    Jonj1611 (09-07-2020)

  9. #6
    Super Moderator Jonj1611's Avatar
    Join Date
    Jun 2008
    Posts
    5,719
    Thanks
    1,762
    Thanked
    996 times in 763 posts

    Re: App Delay Startup

    Many thanks, will create a batch file
    Jon

  10. #7
    Senior Member
    Join Date
    Jul 2009
    Location
    West Sussex
    Posts
    1,721
    Thanks
    197
    Thanked
    243 times in 223 posts
    • kompukare's system
      • Motherboard:
      • Asus P8Z77-V LX
      • CPU:
      • Intel i5-3570K
      • Memory:
      • 4 x 8GB DDR3
      • Storage:
      • Samsung 850 EVo 500GB | Corsair MP510 960GB | 2 x WD 4TB spinners
      • Graphics card(s):
      • Sappihre R7 260X 1GB (sic)
      • PSU:
      • Antec 650 Gold TruePower (Seasonic)
      • Case:
      • Aerocool DS 200 (silenced, 53.6 litres)l)
      • Operating System:
      • Windows 10-64
      • Monitor(s):
      • 2 x ViewSonic 27" 1440p

    Re: App Delay Startup

    Quote Originally Posted by Jonj1611 View Post
    Was hoping for something a bit more controllable but a batch file will suffice if it comes to it.

    Last time I wrote a batch file was in the dos days!
    You could get away with only writing one batch file as a batch can take parameters:

    TIMEOUT /T 10
    START %1
    or even with two parameters:
    TIMEOUT /T %2
    START %1
    Save those as delayed delayedstart.bat (or .cmd) in Windows\System and call them with
    delayedstart.bat notepad.exe
    or
    delayedstart.bat notepad.exe 15
    to wait for 15 secs on the second example

  11. #8
    Super Moderator Jonj1611's Avatar
    Join Date
    Jun 2008
    Posts
    5,719
    Thanks
    1,762
    Thanked
    996 times in 763 posts

    Re: App Delay Startup

    Yeah I might be better doing that, cheers mate
    Jon

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •