mirror of
https://github.com/EverythingWindows/ShiftOS-TheRevival-Old.git
synced 2025-01-23 18:22:17 +00:00
11 lines
284 B
VB.net
11 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
|