Quote Originally Posted by donpusher View Post
Yes,i want to make a tool in VB.NET to change the name
But,have no idea which way to turn....anyways
No anyone similar example can learn in google search
You can "convert" the name you want to a byte array like this:
Code:
Public Shared Function StrToByteArray(str As String) As Byte()
	Dim unicodeEncoding As UnicodeEncoding = New UnicodeEncoding()
	Return unicodeEncoding.GetBytes(str)
End Function
Then write that byte array to the process using WriteProcessMemory.