Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
220 B

  1. open INFILE, "<McsDmMsg.mc";
  2. open OUTFILE, ">OFADmMsg.mc";
  3. while (<INFILE>)
  4. {
  5. $_ =~ s/Domain Migration Agent/OFA Data Gathering Agent/g;
  6. $_ =~ s/Active Directory Migration Tool/OFA Data Gathering Tool/g;
  7. print OUTFILE;
  8. }