Jump to content

chicoquente

Member
  • Posts

    14
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Canada

Posts posted by chicoquente

  1. If you are just worried about the cmd files then why don't you try redirection.

    moo.cmd >> C:\my.log 2>&1

    The >> will output stdout to the my.log, the 2>&1 is saying to put stderr the same place stderr is going.  I'll leave it up to you to learn how to put it in the registry.

    I am not overly sure if I understand correctly how to use that... but let me give it a shot. Would it work if I were to edit my "cmdlines.txt" and made it look like this:

    [COMMANDS]
    "useraccounts.cmd"
    "bootlogo.cmd"
    "RunOnceEx.cmd >> C:\Errors.log 2>&1"

  2. Hey again.

    So I want to make a batch file that will delete the following registry entries for me to disable auto login... but I am getting stumped. I used the programs /? command but it still did not help me out. I am doing something wrong, but not sure what.

    The keys to delete are here:

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
    "DefaultUserName"="Hades"
    "DefaultPassword"="*****"
    "AutoAdminLogon"="1"

    And here are the two different batch files I have tried to use... neither of them working.. I realize I am probably overlooking something entirely.. but I am new to doing reg work with command prompt and so I do not quite understand it all that well.

    REG DELETE "HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\DefaultUsername" /f
    REG DELETE "HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\DefaultPassword" /f
    REG DELETE "HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\AutoAdminLogon" /f

    And the second one I tried was this:

    REG DELETE "HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon /v DefaultUsername" /f
    REG DELETE "HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon /v DefaultPassword" /f
    REG DELETE "HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon /v AutoAdminLogon" /f

    So yeah... if anyone could help me with the correct commands I would be forever grateful. Thanks!

  3. While helpful that is not exactly what I am looking for... When my file "RunOnceEx.cmd" executes it is giving errors about some of the commands I told it to enter into the registry, BUT I am unsure which ones are giving errors and what the errors are as they scroll past very quickly when it moves onto the next command. I need a way to log the execution of the CMD file... not the execution of the registry entries.

  4. Hey all..

    So first of all I have used the search and have not been able to find the answer I am looking for.. I have read some things but they don't seem to match up right for me. I've got my bootscreen changed properly on my unattended CD but not the login screen (yet.)

    So I downloaded a login screen and the file name was "PrtdEdtnIIISP2.exe".. It is a 2.52MB file.. To apply it I used Style XP and it works fine for me... But now I do not understand how to put this file properly into my CD... I understand it needs to replace LOGONUI.EX_ but how do I go about getting the "PrtdEdtnIIISP2.exe" file ready to be that new file?? I assume I can't just rename it??

    Also, I tried looking at the LOGONUI.exe that my Windows currently uses and it is only a few hundred KB so I do not understand how it is my modified version? It also says that the file logonui.exe was last modified in early August but I only started using this modified login screens a week or two ago.. So I do not understand how it uses my "PrtdEdtnIIISP2.exe" version?

    So what do I do to get it on there??

    Any help is GREATLY appreciated..

×
×
  • Create New...