Paul said:
I appreciate the option of trying scripting, but given the way the
two organizations operate, I dont see this as a reaslistic long
term solution. Is it possible to have a multiple booting computer
and still have access to all of my files on my local drives? Would
this solve the problem?
A multi-boot computer seems like overkill.
You might as well have two seperate systems - one for each workplace.
They might have a ton of domain policies at each location - some
conflicting. The possibility of issues as you remove yourself and join
another domain over and over - well - it's just not worth it in my mind.
When there is no reason to have a computer as a member of either domain in
the first place. It will be by the username/password they will track your
movements anyway.
I do not understand the problem with scripting.
What are you accessing from each domain?
Mostly drive shares?
If so:
This is the only thing needed in a batch script for domain 'a':
net use x: \\servername.fq.domain.name\sharename /user:domain\username *
/persistent:NO
(where x: is replaced with the drive letter of your choice...)
(where servername.fq.domain.name is replaced witht he servers fully
qualified address or IP...)
(where domain\username is replaced with the proper domain name and
username...)
(the * will prompt you for a password...)
(the persistent:NO will assure the connection is not remembered between
boots.
So you would end up with two batch scripts (or one very creative one) that
maps the appropriate drives and asks you for the password when doing each
one. You have to merely double-click on the appropriate one.
If you need to map network shared printers...
cscript %SystemRoot%\system32\prnmngr.vbs -ac -p
"\\servername.fq.domain.name\PrinterSharedName"
(Same replacements... After you map the network shared drives...)
That's it - nothing complicated.
Otherwise - you can use something like:
http://www.globesoft.com/
MultiNetwork Manager
But I think the latter would probably be something beyond the true scope of
the problem you likely face. If you want to use ONE user account and have
your desktop always the same and the list of programs always the same and
the ability to connect to the shared domain resources at each location
without any added expense - the script is the way to go.