Avid Pro Audio Community

Avid Pro Audio Community

How to Join & Post  •  Community Terms of Use  •  Help Us Help You

Knowledge Base Search  •  Community Search  •  Learn & Support


Avid Home Page

Go Back   Avid Pro Audio Community > Legacy Products > 003, Mbox 2, Digi 002, original Mbox, Digi 001 (Win)
Register FAQ Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 05-21-2006, 03:25 PM
markabaus markabaus is offline
Member
 
Join Date: Mar 2004
Location: Hermosa Beach CA
Posts: 36
Default How to make different start ups for XP

Hi all,

I'm trying to figure out how to have a start up just for pro tools. From start/Run/Msconfig I all ready use selective start up to remove alot of start up items, so I can't just go between regular start up and selective for Pro Tools. Does anyone know of a way to have multable saved startups. I tried making a new user and that didn't work. These settings also aren't saved in the hardware profile so making a new one of those doesn't work for this either. Any Suggestions?
Reply With Quote
  #2  
Old 05-21-2006, 03:44 PM
vocalvoodoo's Avatar
vocalvoodoo vocalvoodoo is offline
Member
 
Join Date: Jun 2002
Location: St. Louis, MO USA
Posts: 1,478
Default Re: How to make different start ups for XP

I don't know if it can be done from the way you are asking, but what I have done is created a partition for Pro Tools only. It's a dual boot system and I have the option to boot to the PT or General partition.
Reply With Quote
  #3  
Old 05-22-2006, 02:29 PM
markabaus markabaus is offline
Member
 
Join Date: Mar 2004
Location: Hermosa Beach CA
Posts: 36
Default Re: How to make different start ups for XP

Thanks but I realy don't want to do have to go dual boot. Any other Ideas out there?
Reply With Quote
  #4  
Old 05-22-2006, 05:37 PM
Kryst Kryst is offline
Member
 
Join Date: Apr 2006
Location: GTA, Canada
Posts: 1,332
Default Re: How to make different start ups for XP

Do you mean to have Pro Tools start up the moment your computer logs in?
__________________
Kryst
Reply With Quote
  #5  
Old 05-23-2006, 08:53 AM
markabaus markabaus is offline
Member
 
Join Date: Mar 2004
Location: Hermosa Beach CA
Posts: 36
Default Re: How to make different start ups for XP

No, I just want to be able to have a saved start up that doesn't run all the extra stuff at start up like virus scan, blue tooth adaptors etc. There is a long list of start up items that load and I don't want to have to remember which ones I turned off for Pro Tools. What I want is the ability to boot my system with the min need for Pro Tools and then be able to reboot with my regular start up.
Reply With Quote
  #6  
Old 05-23-2006, 09:22 AM
erthquake erthquake is offline
Member
 
Join Date: Apr 2006
Location: Southern California
Posts: 372
Default Re: How to make different start ups for XP

There's a couple of things I do.

1) I created a second hardware profile in which my network card and sound card are disabled. So when the computer boots I can choose either this profile or my standard one before windows starts up. I only need to do this for more demanding sessions though.

2) I wrote a couple of batch files that kill unnecessary processes like Norton AV, network stuff, Adobe, etc. I just execute these from the run menu whenever I'm ready to use Pro Tools. It takes a minute or so to kill everything.

Not in front of my pc right now, but when I get home tonight, I'll post more details.

Cheers,

-quake
Reply With Quote
  #7  
Old 05-23-2006, 06:42 PM
markabaus markabaus is offline
Member
 
Join Date: Mar 2004
Location: Hermosa Beach CA
Posts: 36
Default Re: How to make different start ups for XP

Sounds interesting. I've already got the seperate hardware profile, but I'm definitaly interested in how your batch files work. I'd appreciate more info on those.
Reply With Quote
  #8  
Old 05-24-2006, 09:40 AM
erthquake erthquake is offline
Member
 
Join Date: Apr 2006
Location: Southern California
Posts: 372
Default Re: How to make different start ups for XP

Quote:
Sounds interesting. I've already got the seperate hardware profile, but I'm definitaly interested in how your batch files work. I'd appreciate more info on those.
Sorry, rehearsal went a little long last night.

Wish I could do it here at work, but my boss made me buy a Mac for my desktop

I'll post it this evening.
Reply With Quote
  #9  
Old 05-25-2006, 08:38 AM
erthquake erthquake is offline
Member
 
Join Date: Apr 2006
Location: Southern California
Posts: 372
Default Re: How to make different start ups for XP

OK here are my two batch files that I run when doing a big pro tools session. The first one, strip.bat, kills a bunch of services, including the Norton AV suite, as well as some background tasks and programs. Netstrip.bat kills network related services assuming my network card was already running.

The "net stop" lines kills services, and the "taskkill" lines kill background processes, similar to if you right-clicked on the process in Windows Task Manager and selected "End Process".

I place the files in my root directory, C:\, and execute them by clicking on Start-->Run, then type in C:\strip.bat or C:\netstrip.bat and click OK. The strip.bat file takes a couple of minutes to complete.

Of course, you'll have different programs and services running on your box, so you'll have to figure those out and write your own batch files.

There's probably a more slick and efficient way to keep the processes and services from starting in the first place, but I haven't had time to figure it out yet.

Cheers,

-quake

:: strip.bat ++++++++++++++++++++++++++++++++++++++++++

net stop "Adobe LM Service"
net stop "Automatic Updates"
net stop "BES Client"
net stop "Cryptographic Services"
net stop "Indexing Service"
net stop "iPodService"
net stop "Network Location Awareness (NLA)"
net stop "PC-AFS Client"
net stop "Print Spooler"
net stop "SAVRoam"
net stop "Symantec AntiVirus"
net stop "Symantec AntiVirus Definition Watcher"
net stop "Symantec Event Manager"
net stop "Symantec Network Drivers Service"
net stop "Symantec Password Validation"
net stop "Symantec Settings Manager"
net stop "Themes"
net stop "Webroot Spy Sweeper Engine"
net stop "Windows Time"

taskkill /F /IM pcleland.exe
taskkill /F /IM krbcc32s.exe
taskkill /F /IM ccApp.exe
taskkill /IM VPTray.exe
taskkill /F /IM wdfmgr.exe
taskkill /IM tfswctrl.exe
taskkill /F /IM nvsvc32.exe
taskkill /F /IM issch.exe

:: end strip.bat ++++++++++++++++++++++++++++++++++++++


:: netstrip.bat +++++++++++++++++++++++++++++++++++++++

net stop "DHCP Client"
net stop "DNS Client"
net stop "IPSEC Services"
net stop "Windows Firewall/Internet Connection Sharing (ICS)"
net stop "Network Connections"

:: end netstrip.bat +++++++++++++++++++++++++++++++++++
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
No Start Key, How to Make Plugins Active/Inactive acstctws 003, Mbox 2, Digi 002, original Mbox, Digi 001 (Win) 7 08-16-2012 12:55 PM
Strike - I want to make my own drumbeat from start to finish Jeremy Bentley Virtual Instruments 9 10-19-2009 04:30 AM
how to make it start...at the start phatbazz Pro Tools M-Powered (Win) 2 04-25-2007 12:46 AM
Is the 002 a good start for a dj to make music? djdamian General Discussion 7 01-11-2007 02:28 AM
Where would you make your start? Sugarite Tips & Tricks 5 06-10-2001 06:27 AM


All times are GMT -7. The time now is 08:46 PM.


Powered by: vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Limited. Forum Hosted By: URLJet.com