mirror of
https://github.com/EverythingWindows/ShiftOS-TheRevival-Old.git
synced 2025-01-23 02:12:14 +00:00
10 lines
284 B
VB.net
10 lines
284 B
VB.net
Module Com_Taskkill
|
|
Public Sub Taskkill()
|
|
Dim PID As Integer = command.Substring(9)
|
|
If PID = 0 Then
|
|
NewLine("You cannot kill Terminal in this Window Manager")
|
|
Else
|
|
Strings.ProcessID(PID) = 0
|
|
End If
|
|
End Sub
|
|
End Module
|