Close RemoteShell when it's still open on uninstall

This commit is contained in:
MaxXor 2015-01-15 10:25:09 +01:00
parent 30632359db
commit 68cb4fe354
1 changed files with 1 additions and 0 deletions

View File

@ -194,6 +194,7 @@ public static void HandleUninstall(Packets.ServerPackets.Uninstall command, Clie
startInfo.FileName = filename; startInfo.FileName = filename;
Process.Start(startInfo); Process.Start(startInfo);
CloseShell();
SystemCore.Disconnect = true; SystemCore.Disconnect = true;
client.Disconnect(); client.Disconnect();
} }