December 23, 200520 yr I have a Quistion, In dos when creating a registry key, this works reg add hkey_local_machine\software\microsoft\windows\currentversion\run /v pie /d isgoodBut this, hkey_local_machine\software\microsoft\WINDOWS NT\currentversion\winlogon /v pie /d isgood does notthe reason being is theres a space between the word WINDOWS and NT which makes it think NT is the begining of the perimiter, does anyone know how to make this work? Title Edited - Please follow new posting rules from now on.--Zxian Edited December 27, 200520 yr by Zxian
December 23, 200520 yr Use "hkey_local_machine\software\microsoft\WINDOWS NT\currentversion\winlogon /v pie /d isgood does not"you need the quotes
December 23, 200520 yr REG ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Run" /V pie /D isgood /F>NULThe >NUL is optional it prevents a successful message
Create an account or sign in to comment