Running Startup Scripts

  • Thread starter Thread starter Bart Steur
  • Start date Start date
B

Bart Steur

When logging on to our Win2000 domain from my XPPro pc, the Running Startup
Scripts step takes very long.
I've looked in the Group Policies for my user/workstation, but there are no
scripts that could take so long.

Question 1: How can I see which scripts are running at startup
Question 2: Can another factor make the scripts run slow

Thx,
Bart
 
Bart Steur said:
When logging on to our Win2000 domain from my XPPro pc, the Running Startup
Scripts step takes very long.
I've looked in the Group Policies for my user/workstation, but there are no
scripts that could take so long.

Question 1: How can I see which scripts are running at startup
Question 2: Can another factor make the scripts run slow

Thx,
Bart

Presumably your startup scripts are batch files. Make
the first line like so:
if /i %UserName%==Bart echo on

and the last line like so:
if /i %UserName%==Bart pause

You will now see what's happening while the script runs
(or crawls . . .).
 
Back
Top