Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Making a service(s) start by opening a program

  • 24-09-2009 5:59pm
    #1
    Registered Users, Registered Users 2 Posts: 2,457 ✭✭✭


    Hey :)

    I'm just wondering if it's possible to make services (in my case, "Apple Mobile Device", "iPod Service" and "Bonjour") start by opening a program (Predictably for me, it's iTunes :P)

    Any help is welcome, I don't care if the launch time of iTunes is trebled, as I only use it once or twice a week.

    Even if it's only possible to make 1 or 2 of these processes start when iTunes is started, I'll be happy

    BTW, I'm on XP SP3. Using iTunes 9.0
    In before "Get a Zune"


Comments

  • Registered Users, Registered Users 2 Posts: 3,357 ✭✭✭snappieT


    Hmm, you could write a batch file to start the lot. This guide shows how to start and stop services on the command line. Combine with the "start" command to let them all start at the same time.

    For example, put this in the batch file:
    @echo off
    start net start "Apple Mobile Device"
    start net start "iPod Service"
    start net start "Bonjour"
    "C:\Program Files\iTunes\iTunes.exe"
    
    That'll start the three services and iTunes. To make a batch file, type this into notepad, then save as a file ending in .bat instead of .txt. Double click and it'll do the lot.


  • Registered Users, Registered Users 2 Posts: 2,457 ✭✭✭giggsy664


    Thanks a million :)


Advertisement