Jump to content

how to encrypt administrator password?


Recommended Posts


I Have 3 question:

1. How can I set temp folder in WINNT.SIF?

i set this:

[Options]

temp_dir = %SystemRoot%\TEMP

but result is 0 :(

2. question:

How to Disable System Restore Service?

I set This value:

[systemRestore]

DisableSR=1

CreateFirstRunRp=0

but 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 by Hellados
Link to comment
Share on other sites

I do it like this...

@echo off
start /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.reg
exit

and 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:00000004

hope this helps =]

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...