hi there
how i can create REG_SZ registry file and name them different names using 2 inputs and 1 button
to this path ( HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Run )
example
change it from this
to this
i want to specify my own value and data name
it looks like this

my project is attached to this thread without codes
thank you
how i can create REG_SZ registry file and name them different names using 2 inputs and 1 button
to this path ( HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Run )
example
change it from this
PHP Code:
Registry.SetValue(HKEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", "MyValue", "My Data", REG_SZ);
to this
PHP Code:
Registry.SetValue(HKEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", "jack1", "jack2", REG_SZ);
it looks like this

my project is attached to this thread without codes
thank you
Comment