reboot command

  • Thread starter Thread starter martijn
  • Start date Start date
M

martijn

Hi,

I am trying to create an application for our servicedesk. With this
application the servicedesk members, can remotely image an
workstation.

What am looking for is a command line that reboots the users machine
and creates a network share that starts up an batch file which calls
Norton ghost with the right parameter to image the user machine.

Can anyone help me???

Thanx!
 
* (e-mail address removed) (martijn) scripsit:
I am trying to create an application for our servicedesk. With this
application the servicedesk members, can remotely image an
workstation.

What am looking for is a command line that reboots the users machine
and creates a network share that starts up an batch file which calls
Norton ghost with the right parameter to image the user machine.

For rebooting the remote machine, you can use WMI:

<URL:http://www.google.de/groups?q=dotnet+remote+reboot+WMI>
 
* (e-mail address removed) (martijn) scripsit:
Thank you for your reply. Maybe you know this as well, is it possible
to add an extra command to the reboot command, like make a network
connection and start-up an batch file?

Hopefully you can help me.

I feel sorry, I don't have a solution. If you don't get an answer
here, ask the question in system admin groups/boards.
 
Thanx for your help.

Maybe you can help me with something else....

My teacher gave me this assignment, make a form with five textboxes, write
an function that looks if the textbox holds some information if so goto the
next textbox, if this textbox doesn't hold any information remember that.
Goto the next textbox to see if it holds information if so place this
information into the textbox that didn't hold any information...and so an.
Anybody have a idea??

I already come up with this code but did only shows whenever a textbox is
empty or not

Sub Check(ByVal ctl As Control)
For Each ctl In Me.Controls
If (TypeOf ctl Is TextBox) Then
If ctl.Text.Length <> 0 Then
MsgBox("This field holds information")
Else

MsgBox("This field is empty")

End If
End If
Next
End Sub

Any idea's?
 
Back
Top