Default profile

  • Thread starter Thread starter Mark Danner
  • Start date Start date
M

Mark Danner

I need to change the default user profile on 80 XP machines. I've created
the model profile, but am unsure how to deploy it to the other machines.
Any help would be appreciated.

Mark
 
I'm a department of one. I'm the director, the engineer, and the tech - all
rolled up into one busy person. I was hoping there was a less "manual" way
to copy the default user profile to the workstations.

Oh, well, ...

Mark
 
This is only as manual as you make it. If you log on to
your own PC under a local or domain admin account
then you can use this command from a Command Prompt:

for /F %a in (c:\PCs.txt) do
xcopy "c:\NewDefProfile" \\%a\c$\Documents and Settings\Default User\"

The file c:\PCs.txt must contain a list of every NetBIOS name in your
office.
 
That looks like a winner - thanks.

Mark

Pegasus (MVP) said:
This is only as manual as you make it. If you log on to
your own PC under a local or domain admin account
then you can use this command from a Command Prompt:

for /F %a in (c:\PCs.txt) do
xcopy "c:\NewDefProfile" \\%a\c$\Documents and Settings\Default User\"

The file c:\PCs.txt must contain a list of every NetBIOS name in your
office.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top