Also, I am a HUGE fan of AutoIT. I have many systems run primarily via AutoIT. You may want to look into it!
I'm proficient in vb. AutoIT is a c based app which requires half the code of vb!
Main Topics
Browse All TopicsHi All,
i was wondering if anyone had any ideas and solutions for the following:
we need a batch file or script file to do the following:
install Symantec AV corporate addition
install Adobe Acrobat 8 (http://www.adobe.com/supp
Join domain and rename a PC on that domain
we have a lot of clients spread around the city here, all use the same network structure and OS's
so the idea would to be able to remote into a new pc, connect to our own server, find the bat file run it and leave it be negating the time it takes to send someone out there with a HDD and install all the stuff manually.
we already have working code for office, mapping drives and printers.
all responses are appreciated
thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
yes download microsoft reskit tools. It's free, fairly small, and available from microsoft.com. Netdom is one of about a hundred useful tools included.
the commands are simple
'netdom rename' and 'netdom join'
both followed by your desired name/domain and switches
once downloaded you can run just as any other cmd netdom /?
i have downloaded the resourse kit tools
run the command shell and it tells me the netdom is not a recognized command.
http://www.microsoft.com/d
is what i downloaded
You are correct! Netdom is no longer included in the Reskit. It is now being delivered in the Windows Support package. Learn something new every day!
http://www.microsoft.com/d
Don't believe the netdom RenameComputer will work until after the machine has joined the domain, otherwise it will error. To rename the computer I used a free utility called Compname.exe found here http://www.willowhayes.co.
Hope that helps.
Cheers
yeah that script isn't working for me when i run it i get the black command prompt briefly then nothing happens.
this script needs to be for pc's that are joining a domain for the 1st time.
does it matter if it needs to be a vbs or bat script?
mines looking like this right now
netdom /domain:THEDOMAIN /user:ssmith /password:****** member /joindomain
Business Accounts
Answer for Membership
by: james_tubbervillePosted on 2009-08-04 at 20:45:20ID: 25020022
using a batch file can be time consuming because the programs run over the network.
for example
net use F: \\yourserver\applications
F:\symantecsetup.exe
F:\adobe8.exe
rename via batch
runas /env /user:sa "control sysdm.cpl,@0,1" -m newname
pause
you can also use netdom from the reskit to rename and join to the domain