Jump to content

Jotnar

Member
  • Posts

    186
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by Jotnar

  1. Use something like this for general good practices. Get netuser.exe and renuser.exe, drop the file(s) into the system32 folder however you like (I use $OEM$\$$\System32 during setup) and run a batch file like this from RunOnce: @echo offecho Renaming/Creating Accountsnet user guest {s2J234OPH}renuser guest notguestnet localgroup guests notguest /deleterenuser Administrator adminnet user /add Administrator /active:no /passwordchg:no /passwordreq:yesnetuser Administrator /pwnexp:ynet user Administrator {s2J234OPH}net localgroup users Administrator /deleteThis way it will do this after setup, but before the first user logs in. It will rename the guest account and remove it from the guests group (If you install the .Net framework later it will put it back there FYI). It will also rename the administrators account to soemthing else and create a dummy Administrators account while removing the dummy account from the users group. For what you wanted to do you could use the following from RunOnce (assuming you drop renuser.exe into the system32 folder during install): @echo offecho Renaming Administrator Accountrenuser Administrator adminCheers
  2. You could always add the drivers using the txtsetup.sif/dosnet.inf files, no need to press F6 then. Search the forums here, I'm sure its mentioned how to do this. If you can't find anything, let me know and I'll write up a quick and dirty how-to. Cheers
  3. Just make sure your bmp wallpaper ends up in the system32 folder...ie put it in $OEM$\$$\system32 on your CD. Put the first registry setting I posted previously into a regfile and apply it using cmdlines.txt. The path to the file value in the registry key is just the name of the file...ie file.bmp, since it will end up in the system32 folder. Cheers
  4. I'm fairly certain this should work...if you use it at T-13 or T-12 where Current User gets set as the Default User: [HKEY_CURRENT_USER\Control Panel\Desktop] "Wallpaper"="PathToWallpaper" "TileWallpaper"="0" "Pattern"="(None)" I don't know if that will make it show up by default when no one is logged in (if you're joined to a domain or have the welcome screen disabled) so here is the key to do that: [HKEY_USERS\.DEFAULT\Control Panel\Desktop] "Wallpaper"="PathToWallpaper" "TileWallpaper"="0" "Pattern"="(None)" Cheers
  5. Here's my reg tweaks file...some new, most old. Tweak settings to your preference. Cheers xpreg.reg
×
×
  • Create New...