You could use the following vb script
dim L
dim S
set L = createobject("WbemScripting.SWbemLocator")
dim str
str = inputbox("Enter Server")
set s= l.ConnectServer(str,"root\cimv2")
dim o
dim os
set os = s.execquery("SELECT * FROM Win32_OperatingSystem")
dim i
for each o in os
i = o.Reboot()
next
msgbox "Reboot returned " & i
--
Ryan Ackerman
http://www.SofTulz.Net
SofTulz.Net, Providing Administrators with more free time through
automation.
(E-Mail Removed)
"Patrick" <(E-Mail Removed)> wrote in message
news

B7F2969-A650-4702-91DD-(E-Mail Removed)...
> Is there a way to restart a Windows 2000 server from any another Windows
2000 server? Remote administration is not installed on this server and the
keyboard and mouse physically connected to this server is not functional. We
are trying to avoid doing a hard reboot of this server. Appreciate any help.
Thanks.