Hellados Posted October 8, 2008 Posted October 8, 2008 please tell me how to encrypt administrator password in WINNT.SIFI have password but i don't know how do it
IcemanND Posted October 8, 2008 Posted October 8, 2008 You have to use the setup manager to create your answer file.
Hellados Posted October 8, 2008 Author Posted October 8, 2008 You have to use the setup manager to create your answer file.10x
Hellados Posted October 8, 2008 Author Posted October 8, 2008 (edited) I Have 3 question:1. How can I set temp folder in WINNT.SIF?i set this:[Options]temp_dir = %SystemRoot%\TEMPbut result is 0 2. question:How to Disable System Restore Service?I set This value:[systemRestore]DisableSR=1CreateFirstRunRp=0but system restore is presents :-( 3. How can I disable some system servisec? (such as Windows Time, Security centre, Widnows Update) i dont wont to use nLite.. i whont to make it myself.. How can i make it? Edited October 8, 2008 by Hellados
Nexus_06 Posted October 8, 2008 Posted October 8, 2008 I do it like this...@echo offstart /wait %windir%\system32\net.exe stop "System Restore Service"start /wait %windir%\system32\net.exe stop "Error Reporting Service"start /wait %windir%\system32\net.exe stop "Fast User Switching Compatibility"start /wait %windir%\system32\net.exe stop "Help and Support"start /wait %windir%\system32\net.exe stop "Server"start /wait %windir%\system32\net.exe stop "TCP/IP NetBios Helper"start /wait %windir%\system32\net.exe stop "Remote Registry"start /wait %windir%\system32\net.exe stop "WebClient"start /wait %windir%\system32\net.exe stop "Windows Time"start /wait %windir%\regedit.exe /S disablesvc.regexitand in reg file...REGEDIT4[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ERSvc]"Start"=dword:00000004[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\FastUserSwitchingCompatibility]"Start"=dword:00000004[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\helpsvc]"Start"=dword:00000004[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer]"Start"=dword:00000004[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LmHosts]"Start"=dword:00000004[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteRegistry]"Start"=dword:00000004[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time]"Start"=dword:00000004[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient]"Start"=dword:00000004[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore]"DisableSR"=dword:00000001[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\sr]"Start"=dword:00000004[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\sr\Parameters]"FirstRun"=dword:00000001[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\srservice]"Start"=dword:00000004hope this helps =]
Hellados Posted October 9, 2008 Author Posted October 9, 2008 (edited) Nexus_06it's clear but half I dont understand how to integrate this in registry? Edited October 9, 2008 by Hellados
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now