The Registry comprises a number of logical sections called Hives. The following are the predefined keys that are used by the system.
- HKEY_CURRENT_USER
- HKEY_USERS
- HKEY_LOCAL_MACHINE
- HKEY_CLASSES_ROOT
- HKEY_CURRENT_CONFIG
Each key has many subkeys and may have a value.
When programming with VB.NET, you can choose to access the registry via either the functions provided by VB.NET or the registry classes of the .NET Framework. Registry entries contain two parts: the value name and the value.
Creating a Registry Entry
rKey = Registry.LocalMachine.OpenSubKey("SOFTWARE", True) rKey.CreateSubKey("AppReg")
Above code shows how to create a subkey under HKLM\Software called AppReg.
Writing values to Registry
rKey.SetValue("AppName", "RegApp") rKey.SetValue("Version", 1.1)
Above code shows how to set values to registry entry AppReg.
The following VB.NET program shows how to create a registry entry , set values to registry , retrieve values from registry and delete keys on Registry.Drag and drop four buttons on the form control and copy and paste the following source code.
FULL CODE EXAMPLTE :
Imports Microsoft.Win32 Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim rKey As RegistryKey rKey = Registry.LocalMachine.OpenSubKey("SOFTWARE", True) rKey.CreateSubKey("AppReg") rKey.Close() MsgBox("AppReg created !") End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Dim rKey As RegistryKey rKey = Registry.LocalMachine.OpenSubKey("Software\AppReg", True) rKey.SetValue("AppName", "RegApp") rKey.SetValue("Version", 1.1) rKey.Close() MsgBox("Appname , version created") End Sub Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Dim rKey As RegistryKey Dim ver As Decimal Dim app As String rKey = Registry.LocalMachine.OpenSubKey("Software\AppReg", True) app = rKey.GetValue("AppName") ver = rKey.GetValue("Version") rKey.Close() MsgBox("App Name " & app & " Version " & ver.ToString) End Sub Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click Dim rKey As RegistryKey rKey = Registry.LocalMachine.OpenSubKey("Software", True) rKey.DeleteSubKey("AppReg", True) rKey.Close() MsgBox("AppReg deleted") End Sub End Class
What is the SOFTWARE item and where will it be located?
ReplyDeleteĐây là đoạn code ghi chương trình của mình vào file hệ thống để làm nhiều việc khác đó nữa bạn.
DeleteVị dụ như bản quyền hay thông tin người dùng.
Đúng r đó bạn #Tuân code trên là để tạo dữ liệu được in lên hệ thống của windows.
DeleteHaha, nhìn lên thấy thông tin system này là bạn cũng hiểu rồi đó
ReplyDeleteHKEY_CURRENT_USER
HKEY_USERS
HKEY_LOCAL_MACHINE
HKEY_CLASSES_ROOT
HKEY_CURRENT_CONFIG
Một dạng ghi dữ liệu lên file hệ thống để tạo bản quyền hoặc dành cho cái ứng dụng được cài đặt lên windows để lấy thông số tự động và cập nhật bản quyền, thông số crack có sai lệch với thông tin lúc bạn cài đặt không để thông báo.
Nhìn source code cũng vui đấy nhưng mình không rỏ.
ReplyDeletedễ bị crack nếu ng` dùng thông dụng windows, bữa này phần mềm tạo bản quyền hay làm gì đều kết nối cơ sỡ dữ liệu online để quản lý chương trình tốt nhất hiện nay :D
ReplyDeleteĐúng rồi bạn, mình cũng đang tìm hiểu về vấn đề trên để viết chương trình bản quyền riêng của bản thân mình :D
DeleteMinh đã test thử sao trong file system không có gì hết nhĩ :S
ReplyDeletekhông biết nó nằm ở đâu trong system này :
HKEY_CURRENT_USER
HKEY_USERS
HKEY_LOCAL_MACHINE
HKEY_CLASSES_ROOT
HKEY_CURRENT_CONFIG
Bị lỗi nha mọi người.
ReplyDeleteVâng bị lỗi ở button 2 và button 3 nhé bạn.
Deletecái này có phải là ghi dữ liệu vào hệ thống windows để tạo bản quyền hay một số thứ khác không nhỉ
ReplyDeleteCái này mình có chia sẽ bài viết bản quyền chương trình nhưng bị crack vì nó bị can thiệp hệ thống windows nhé. chương trình bản quyền 30 ngày nhưng thay đổi thời gian hệ thống là chương trình sữ dụng bình thương haha.
ReplyDelete