|
| |||
| Start-up Order How do I re-arrange the Start-up order of apps when PC Restarts/Starts? I've a Email checking app that starts before the PC is connected to my LAN. -- Thanks, Bill Post replies back to News Group |
| |||
| Re: Start-up Order "Willy" <justask********.com> wrote in message news:%23t8C6TsFIHA.748@TK2MSFTNGP04.phx.gbl... > How do I re-arrange the Start-up order of apps when PC Restarts/Starts? > I've a Email checking app that starts before the PC is connected to my > LAN. > -- > Thanks, Bill > Post replies back to News Group > Place a batch file into your Startup folder with the following lines: @echo off :again ping www.google.com | find /i "bytes=" > nul && goto Connected ping localhost -n 60 > nul goto again :Connected "c:\Program Files\MyApp\mailcheck.exe" Post again if the above makes no sense to you. |
| |||
| Re: Start-up Order Thanks but yes I'm lost on what it will do when I put it in Startup Folder. Can you explain? -- Thanks, Bill Post replies back to News Group "Pegasus (MVP)" <I.can@fly.com> wrote in message news:uBfGf6tFIHA.4196@TK2MSFTNGP04.phx.gbl... > > "Willy" <justask********.com> wrote in message > news:%23t8C6TsFIHA.748@TK2MSFTNGP04.phx.gbl... >> How do I re-arrange the Start-up order of apps when PC Restarts/Starts? >> I've a Email checking app that starts before the PC is connected to my >> LAN. >> -- >> Thanks, Bill >> Post replies back to News Group >> > > Place a batch file into your Startup folder with the > following lines: > @echo off > :again > ping www.google.com | find /i "bytes=" > nul && goto Connected > ping localhost -n 60 > nul > goto again > > :Connected > "c:\Program Files\MyApp\mailcheck.exe" > > Post again if the above makes no sense to you. > |
| |||
| Re: Start-up Order You don't do anything. Shortcuts and batch files that reside in the Startup folder will run automatically at logon time. "Willy" <justask********.com> wrote in message news:%23MWdaYEGIHA.536@TK2MSFTNGP06.phx.gbl... > Thanks but yes I'm lost on what it will do when I put it in Startup > Folder. Can you explain? > -- > Thanks, Bill > Post replies back to News Group > > "Pegasus (MVP)" <I.can@fly.com> wrote in message > news:uBfGf6tFIHA.4196@TK2MSFTNGP04.phx.gbl... >> >> "Willy" <justask********.com> wrote in message >> news:%23t8C6TsFIHA.748@TK2MSFTNGP04.phx.gbl... >>> How do I re-arrange the Start-up order of apps when PC Restarts/Starts? >>> I've a Email checking app that starts before the PC is connected to my >>> LAN. >>> -- >>> Thanks, Bill >>> Post replies back to News Group >>> >> >> Place a batch file into your Startup folder with the >> following lines: >> @echo off >> :again >> ping www.google.com | find /i "bytes=" > nul && goto Connected >> ping localhost -n 60 > nul >> goto again >> >> :Connected >> "c:\Program Files\MyApp\mailcheck.exe" >> >> Post again if the above makes no sense to you. >> > > |
| |||
| Re: Start-up Order let it be known on Thu, 25 Oct 2007 00:16:54 -0400 "Willy" <justask********.com> scribed: |How do I re-arrange the Start-up order of apps when PC Restarts/Starts? |I've a Email checking app that starts before the PC is connected to my LAN. |-- |Thanks, Bill |Post replies back to News Group | | Bill, You might try something like Startup Delayer here: <http://www.r2.com.au/software.php?page=2&show=startdelay> I've never personally used it so I can't endorse it but I've seen it mentioned in this group before. hth -- cf <cfnews@NOcharterSPAM.net> I may be dumb, but I'm not stupid. Terry Bradshaw |
| |||
| Re: Start-up Order Understand that but confused as to what the batch file you recommend will do? Ping Google, etc.? -- Thanks, Bill Post replies back to News Group "Pegasus (MVP)" <I.can@fly.com> wrote in message news:%23jzrYyFGIHA.3940@TK2MSFTNGP05.phx.gbl... > You don't do anything. Shortcuts and batch files that reside in > the Startup folder will run automatically at logon time. > > > "Willy" <justask********.com> wrote in message > news:%23MWdaYEGIHA.536@TK2MSFTNGP06.phx.gbl... >> Thanks but yes I'm lost on what it will do when I put it in Startup >> Folder. Can you explain? >> -- >> Thanks, Bill >> Post replies back to News Group >> >> "Pegasus (MVP)" <I.can@fly.com> wrote in message >> news:uBfGf6tFIHA.4196@TK2MSFTNGP04.phx.gbl... >>> >>> "Willy" <justask********.com> wrote in message >>> news:%23t8C6TsFIHA.748@TK2MSFTNGP04.phx.gbl... >>>> How do I re-arrange the Start-up order of apps when PC Restarts/Starts? >>>> I've a Email checking app that starts before the PC is connected to my >>>> LAN. >>>> -- >>>> Thanks, Bill >>>> Post replies back to News Group >>>> >>> >>> Place a batch file into your Startup folder with the >>> following lines: >>> @echo off >>> :again >>> ping www.google.com | find /i "bytes=" > nul && goto Connected >>> ping localhost -n 60 > nul >>> goto again >>> >>> :Connected >>> "c:\Program Files\MyApp\mailcheck.exe" >>> >>> Post again if the above makes no sense to you. >>> >> >> > > |
| |||
| Re: Start-up Order OK, let's have a look at the various lines of my batch file: 1 @echo off 2 :again 3 ping www.google.com | find /i "bytes=" > nul && goto Connected 4 ping localhost -n 60 > nul 5 goto again 6 :Connected 7 "c:\Program Files\MyApp\mailcheck.exe" Line 1: This line prevents the commands from appearing on the screen while the batch file runs. Line2: This is a label that is used by Line 5. Line3: This line consists of three components: a) It pings google. b) It monitors the reply it gets. c) If the reply contains the string "bytes=" then it jumps to the label "Connected". This string is generated only when your PC gets a reply from Google. It therefore tells you that your Internet connection is live. Line4: This line causes the batch file to pause for about one minute. Line5: Go back to the label "Again". Line 6: This is where the batch file resumes when your Internet connection is live. Line 7: This is your EMail checking command. "Willy" <justask********.com> wrote in message news:e9vgpHQGIHA.4628@TK2MSFTNGP02.phx.gbl... > Understand that but confused as to what the batch file you recommend will > do? Ping Google, etc.? > -- > Thanks, Bill > Post replies back to News Group > > "Pegasus (MVP)" <I.can@fly.com> wrote in message > news:%23jzrYyFGIHA.3940@TK2MSFTNGP05.phx.gbl... >> You don't do anything. Shortcuts and batch files that reside in >> the Startup folder will run automatically at logon time. >> >> >> "Willy" <justask********.com> wrote in message >> news:%23MWdaYEGIHA.536@TK2MSFTNGP06.phx.gbl... >>> Thanks but yes I'm lost on what it will do when I put it in Startup >>> Folder. Can you explain? >>> -- >>> Thanks, Bill >>> Post replies back to News Group >>> >>> "Pegasus (MVP)" <I.can@fly.com> wrote in message >>> news:uBfGf6tFIHA.4196@TK2MSFTNGP04.phx.gbl... >>>> >>>> "Willy" <justask********.com> wrote in message >>>> news:%23t8C6TsFIHA.748@TK2MSFTNGP04.phx.gbl... >>>>> How do I re-arrange the Start-up order of apps when PC >>>>> Restarts/Starts? >>>>> I've a Email checking app that starts before the PC is connected to my >>>>> LAN. >>>>> -- >>>>> Thanks, Bill >>>>> Post replies back to News Group >>>>> >>>> >>>> Place a batch file into your Startup folder with the >>>> following lines: >>>> @echo off >>>> :again >>>> ping www.google.com | find /i "bytes=" > nul && goto Connected >>>> ping localhost -n 60 > nul >>>> goto again >>>> >>>> :Connected >>>> "c:\Program Files\MyApp\mailcheck.exe" >>>> >>>> Post again if the above makes no sense to you. >>>> >>> >>> >> >> > > |
| |||
| Re: Start-up Order "Pegasus (MVP)" <I.can@fly.com> wrote in message news:eqxvvWTGIHA.4712@TK2MSFTNGP04.phx.gbl... > OK, let's have a look at the various lines of my batch file: > > 1 @echo off > 2 :again > 3 ping www.google.com | find /i "bytes=" > nul && goto Connected > 4 ping localhost -n 60 > nul > 5 goto again > 6 :Connected > 7 "c:\Program Files\MyApp\mailcheck.exe" > > Line 1: This line prevents the commands from appearing on > the screen while the batch file runs. > > Line2: This is a label that is used by Line 5. > > Line3: This line consists of three components: > a) It pings google. > b) It monitors the reply it gets. > c) If the reply contains the string "bytes=" then it jumps to the label > "Connected". This string is generated only when your PC gets a > reply from Google. It therefore tells you that your Internet > connection is live. > > Line4: This line causes the batch file to pause for about one minute. > > Line5: Go back to the label "Again". > > Line 6: This is where the batch file resumes when your > Internet connection is live. > > Line 7: This is your EMail checking command. Your response to Willy's specific question seems straight forward to me but I want to expand on the question in a more general sense. If I have 5 different items in my startup folder is there anyway I can control the order in which they start during a boot? > > > "Willy" <justask********.com> wrote in message > news:e9vgpHQGIHA.4628@TK2MSFTNGP02.phx.gbl... >> Understand that but confused as to what the batch file you recommend will >> do? Ping Google, etc.? >> -- >> Thanks, Bill >> Post replies back to News Group >> >> "Pegasus (MVP)" <I.can@fly.com> wrote in message >> news:%23jzrYyFGIHA.3940@TK2MSFTNGP05.phx.gbl... >>> You don't do anything. Shortcuts and batch files that reside in >>> the Startup folder will run automatically at logon time. >>> >>> >>> "Willy" <justask********.com> wrote in message >>> news:%23MWdaYEGIHA.536@TK2MSFTNGP06.phx.gbl... >>>> Thanks but yes I'm lost on what it will do when I put it in Startup >>>> Folder. Can you explain? >>>> -- >>>> Thanks, Bill >>>> Post replies back to News Group >>>> >>>> "Pegasus (MVP)" <I.can@fly.com> wrote in message >>>> news:uBfGf6tFIHA.4196@TK2MSFTNGP04.phx.gbl... >>>>> >>>>> "Willy" <justask********.com> wrote in message >>>>> news:%23t8C6TsFIHA.748@TK2MSFTNGP04.phx.gbl... >>>>>> How do I re-arrange the Start-up order of apps when PC >>>>>> Restarts/Starts? >>>>>> I've a Email checking app that starts before the PC is connected to >>>>>> my LAN. >>>>>> -- >>>>>> Thanks, Bill >>>>>> Post replies back to News Group >>>>>> >>>>> >>>>> Place a batch file into your Startup folder with the >>>>> following lines: >>>>> @echo off >>>>> :again >>>>> ping www.google.com | find /i "bytes=" > nul && goto Connected >>>>> ping localhost -n 60 > nul >>>>> goto again >>>>> >>>>> :Connected >>>>> "c:\Program Files\MyApp\mailcheck.exe" >>>>> >>>>> Post again if the above makes no sense to you. >>>>> >>>> >>>> >>> >>> >> >> > > |
| |||
| Re: Start-up Order "Gilgamesh" <gilgamesh@spam.me.not> wrote in message news:e6G09QhGIHA.4196@TK2MSFTNGP04.phx.gbl... > "Pegasus (MVP)" <I.can@fly.com> wrote in message > news:eqxvvWTGIHA.4712@TK2MSFTNGP04.phx.gbl... >> OK, let's have a look at the various lines of my batch file: >> >> 1 @echo off >> 2 :again >> 3 ping www.google.com | find /i "bytes=" > nul && goto Connected >> 4 ping localhost -n 60 > nul >> 5 goto again >> 6 :Connected >> 7 "c:\Program Files\MyApp\mailcheck.exe" >> >> Line 1: This line prevents the commands from appearing on >> the screen while the batch file runs. >> >> Line2: This is a label that is used by Line 5. >> >> Line3: This line consists of three components: >> a) It pings google. >> b) It monitors the reply it gets. >> c) If the reply contains the string "bytes=" then it jumps to the label >> "Connected". This string is generated only when your PC gets a >> reply from Google. It therefore tells you that your Internet >> connection is live. >> >> Line4: This line causes the batch file to pause for about one minute. >> >> Line5: Go back to the label "Again". >> >> Line 6: This is where the batch file resumes when your >> Internet connection is live. >> >> Line 7: This is your EMail checking command. > > Your response to Willy's specific question seems straight forward to me > but I want to expand on the question in a more general sense. > > If I have 5 different items in my startup folder is there anyway I can > control the order in which they start during a boot? Sure. Instead of placing a shortcut for each item into the Startup folder, invoke them through a single batch file which you place into the startup folder. This batch file may contain: - Lines that point to executables (e.g. "c:\tools\MyApp.exe") - Lines that point to shortcuts (e.g. "c:\MyShortcut.lnk") - Lines that point to other batch files (e.g. "c:\Tools\MyBatch.bat") In the last case you must invoke the other batch files with a "call" statement. If you don't then control will never return to the calling batch file. You must surround all references with double quotes if they contain embedded spaces. It's best to do so for all references, even if they contain no embedded spaces. |
| Bookmarks |
| Thread Tools | |
| |
| | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| IE 7 Tab order | prettydarngood | Internet Explorer | 2 | 10-09-2007 02:20 PM |
| Disabling auto alphabetical order sort in start / program files | Peter | Windows Vista | 6 | 05-26-2007 03:40 AM |
| Quick Start Toolbar size - Order of Icons | Fergarbu | Windows Vista | 3 | 04-22-2007 12:30 PM |
| New PC on Order | Philip | Windows XP | 5 | 01-04-2007 01:18 PM |
| Start Menu: order of MRU programs | Sven Berg | Windows Vista | 13 | 01-02-2007 10:20 AM |
| New To Technology Questions? | Do You Need Help with Your Computer or Device? | Do You Need Help with this site? |