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.

29 lines
495 B

  1. my ($action);
  2. ###
  3. ### The presence of a command line parameter means that we should uninstall.
  4. ###
  5. if (@ARGV) {
  6. $action = "/u";
  7. } else {
  8. $action = "";
  9. }
  10. open(FILE, ">>$ENV{'URTINSTALL_LOGFILE'}");
  11. while (<DATA>) {
  12. chomp;
  13. next if (/^$/);
  14. print FILE "Registering dll $_ ...\n";
  15. system("regsvr32 /s /c $action $_");
  16. }
  17. close(FILE);
  18. __END__
  19. corperfmonext.dll
  20. diasymreader.dll
  21. fusion.dll
  22. mscordbi.dll
  23. mscorie.dll
  24. mscorld.dll
  25. mscorsec.dll
  26. System.EnterpriseServices.Thunk.dll