달력

42024  이전 다음

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

'창고/컴터'에 해당되는 글 3건

  1. 2011.10.20 Windows Service Registry 하위키..
  2. 2011.09.27 Zip 명령어
  3. 2011.03.03 Windows7에서 제어판의 시스템 이미지 백업/복원

CurrentControlSet\Services 하위 키


The Services subkeys under the following registry path contain parameters
for the device drivers, file system drivers, and Win32 service drivers:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services

The name of each Services subkey is the name of the service, which is also
the root of the name of the file from which the service is loaded. For
example, for the serial mouse, the service name and Services subkey name is
Sermouse. The file from which this is loaded is:

SystemRoot\SYSTEM32\DRIVERS\SERMOUSE.SYS.

All service names are defined under:

     HKEY_LOCAL_MACHINE\SOFTWARE.

The names of the Windows NT built-in network services such as the Alerter
and Browser services are defined under the Microsoft\Windows
NT\CurrentVersion subkey in the Software area of the Registry.

Each Services key can have additional subkeys. Many services have a Linkage
subkey, which provides data for binding network components, as described in
"Linkage Subkey Entries for Network Components," in the article "Network
Adapter Cards Entries, PART 1." Many services also have a Parameters subkey
that contains entries defined by the service with values for configuring
the specific service.

Values for Parameters subkeys and other service-specific entries are
described in these articles:

Network Adapter Cards Entries
Device Drivers Entries
Network Services Entries

The following standard value entries appear for each Services subkey:

ErrorControl     REG_DWORD     Error constant
Specifies the level of error control for the service as follows:

Error Control  Meaning
Level

0x3 (Critical) Fail the attempted system startup.
               If the startup is not using the
               LastKnownGood control set, switch to
               LastKnownGood. If the startup attempt
               is using LastKnownGood, run a bug-check
               routine.

0x2 (Severe)   If the startup is not using the
               LastKnownGood control set, switch to
               LastKnownGood. If the startup attempt
               is using LastKnownGood, continue on
               in case of error.

0x1 (Normal)   If the driver fails to load or initialize,
               startup should proceed, but display a
               warning.

0x0 (Ignore)   If the driver fails to load or initialize,
               start up proceeds. No warning is displayed.

Group     REG_SZ     Group name
Specifies the name of the group of which the particular service is a
member.
Default: (null)

DependOnGroup     REG_MULTI_SZ     Group name
Specifies zero or more group names. If one or more groups is listed, at
least one service from the named group must be loaded before this service
is loaded.
Default: (empty)

DependOnService     REG_MULTI_SZ     Service name
Specifies zero or more Services subkey names. If a service is listed here,
that named service must be loaded before this service is loaded.
Default: (empty)

ImagePath     REG_DWORD     Path and filename
Specifies a path name. For adapters, this value is ignored.
Default: For a driver:

     systemroot\SYSTEM32\DRIVERS\driverName.SYS

For a service:

     systemroot\SYSTEM32\serviceName.EXE

(where driverName or serviceName is the same as the related Services subkey
name)

ObjectName     REG_DWORD     Object name
Specifies an object name. If Type specifies a WIN32 Service, this name is
the account name that the service will use to log on when the service runs.
If Type specifies a Kernel driver or file system driver, this name is the
Windows NT driver object name that the I/O Manager uses to load the device
driver.
Default: subkeyName

Start     REG_DWORD     Start constant
Specifies the starting values for the service as follows:

START TYPE     LOADER     MEANING

0x0            Kernel     Represents a part of the
(Boot)                    driver stack for the boot
                          (startup) volume and must
                          therefore be loaded by the
                          Boot Loader.

0x1            I/O        Represents a driver to be loaded
(System)       subsystem  at Kernel initialization.

0x2            Service    To be loaded or started
(Auto load)    Control    automatically for all startups,
               Manager    regardless of service type.

0x3            Service    Available, regardless of type,
(Load on       Control    but will not be started until
demand)        Manager    the user starts it (for example,
                          by using the Devices icon in
                          Control Panel).

0x4            Service    NOT TO BE STARTED UNDER ANY
(disabled)     Control    CONDITIONS.
               Manager

The Start value is ignored for adapters. If Type is a Win32 Service value
(as described below), the Start value must specify an Auto, Demand, or
Disabled value.

Tag     REG_DWORD
Specifies a load order within a given group. The value of Tag specifies a
number that is unique within the group of which the service is a member.
The related GroupName entry under the Control\GroupOrderList subkey
specifies a list of tags, in load order.

For example, the following services that are members of the Primary Disk
group could have these values: Tag=4 for the Abiosdsk subkey, Tag=2 for
Atdisk, Tag=1 for Cpqarray, and Tag=3 for Floppy. The value for Primary
Disk under the GroupOrderList subkey will use these Tag values to specify
the defined order for loading these services. As another example, each SCSI
miniport service has a unique Tag value that is used as an identifier in
the SCSI miniport value under the GroupOrderList subkey to define which
SCSI adapter to load first.

Type     REG_DWORD     Type constant

Specifies the type of service as follows:

Service Type   Description

0x1            A Kernel device driver.

0x2            File system driver, which is also
               a Kernel device driver.

0x4            A set of arguments for an adapter.

0x10           A Win32 program that can be started
               by the Service Controller and that
               obeys the service control protocol.
               This type of Win32 service runs in
               a process by itself.

0x20           A Win32 service that can share a process
               with other Win32 services.


For example, when you start Windows NT, the Boot Loader scans the Registry
for drivers with a Start value of 0 (which indicates that these drivers
should be loaded but not initialized before the Kernel) and a Type value of
0x1 (which indicates a Kernel device driver such as a hard disk or other
low-level hardware device driver). The drivers are then loaded into memory
in the order specified as the List value in
CurrentControlSet\Control\ServiceGroupOrder.

http://support.microsoft.com/kb/103000/ko



'창고 > 컴터' 카테고리의 다른 글

Zip 명령어  (0) 2011.09.27
Windows7에서 제어판의 시스템 이미지 백업/복원  (0) 2011.03.03
Posted by 촌돌애비
|

Zip 명령어

창고/컴터 2011. 9. 27. 12:11
Windows에서 아마도 (XP 이상) 귀찮아서 정확한 버전까지는 찾아보기 싫음..

그냥 cmd창에서

zip /help를 타이핑해서 뭔가 나오면... 있는 것이다...

 그 내용을 보면... 내컴의 경우 아래와 같다... 

 Copyright (c) 1990-2008 Info-ZIP - Type 'zip "-L"' for software license.
Zip 3.0 (July 5th 2008). Usage:
zip [-options] [-b path] [-t mmddyyyy] [-n suffixes] [zipfile list] [-xi list]
  The default action is to add or replace zipfile entries from list, which
  can include the special name - to compress standard input.
  If zipfile and list are omitted, zip compresses stdin to stdout.
 
-f   freshen: only changed files  
-u   update: only changed or new files
-d   delete entries in zipfile    
-m   move into zipfile (delete OS files)
-r   recurse into directories    
-j   junk (don't record) directory names
-0   store only                  
-l   convert LF to CR LF (-ll CR LF to LF)
-1   compress faster              
-9   compress better
-q   quiet operation              
-v   verbose operation/print version info
-c   add one-line comments        
-z   add zipfile comment
-@   read names from stdin        
-o   make zipfile as old as latest entry
-x   exclude the following names  
-i   include only the following names
-F   fix zipfile (-FF try harder)
-D   do not add directory entries
-A   adjust self-extracting exe  
-J   junk zipfile prefix (unzipsfx)
-T   test zipfile integrity      
-X   eXclude eXtra file attributes
-!   use privileges (if granted) to obtain all aspects of WinNT security
-$   include volume label        
-S   include system and hidden files
-e   encrypt                      
-n   don't compress these suffixes
-h2  show more help


대체 어쩌라는 것이냐...하면...다른 건 구찮아서 모르겠고... 

폴더 묶을땐 
zip -r mydir.zip mydir
Posted by 촌돌애비
|

시스템 이미지 백업에서 컴퓨터 복원

하드 디스크나 전체 컴퓨터의 작동이 중지될 경우 시스템 이미지를 사용하여 컴퓨터의 내용을 복원할 수 있습니다. 시스템 이미지에 대한 자세한 내용은 시스템 이미지란?를 참조하십시오.

경고

  • 시스템 이미지에서 컴퓨터를 복원하면 전체가 복원됩니다. 개별 항목을 선택하여 복원할 수 없으며 프로그램, 시스템 설정 및 파일 전체가 시스템 이미지의 내용으로 대체됩니다.

시작하기 전에 백업이 저장되어 있는 이동식 미디어가 사용 가능한지 확인하십시오(해당되는 경우). 또한 백업을 복원하려는 대상 디스크의 용량이 백업한 디스크의 용량보다 크거나 같은지 확인하십시오.

내용 표시 복구 제어판을 사용하여 복원하려면(권장)

    컴퓨터가 작동 중이고 제어판에 액세스할 수 있는 경우나 시스템 이미지 백업을 다른 컴퓨터에 복원하려는 경우 다음 단계를 따릅니다.

  1. 복구를 클릭하여 엽니다.

  2. 고급 복구 방법을 클릭합니다.

  3. 이전에 만든 시스템 이미지를 사용하여 컴퓨터 복구를 클릭하고 해당 단계를 따릅니다.


내용 표시 사전 설치된 복구 옵션을 사용하여 복원하려면

    제어판에 액세스할 수 없고 Windows(윈도우) 설치 디스크나 시스템 복구 디스크가 없는 경우 다음 방법에 따라 컴퓨터를 복원합니다.

  1. 컴퓨터의 전원 단추를 사용하여 컴퓨터를 다시 시작합니다.

  2. 다음 중 하나를 수행합니다.

    • 컴퓨터에 운영 체제가 하나만 설치되어 있으면 컴퓨터가 다시 시작될 때 F8 키를 누르고 있습니다. Windows 로고가 나타나기 전에 F8 키를 눌러야 합니다. Windows 로고가 나타나면 다시 시도합니다.

    • 컴퓨터에 운영 체제가 둘 이상 설치되어 있으면 화살표 키를 사용하여 시작할 운영 체제를 강조 표시한 다음 F8 키를 누릅니다.

  3. 고급 부팅 옵션 화면에서 화살표 키를 사용하여 컴퓨터 복구를 강조 표시한 다음 Enter 키를 누릅니다.

  4. 자판 배열을 선택하고 다음을 클릭합니다.

  5. 사용자 이름을 선택하고 암호를 입력한 다음 확인을 클릭합니다.

  6. 시스템 복구 옵션 메뉴에서 시스템 이미지 복구를 클릭한 다음 지시를 따릅니다.

내용 표시 Windows 설치 디스크 또는 시스템 복구 디스크를 사용하여 복원하려면

    제어판에 액세스할 수 없는 경우 Windows(윈도우) 설치 디스크나 시스템 복구 디스크(있는 경우)를 사용하여 컴퓨터를 복원할 수 있습니다.

  1. 설치 디스크나 시스템 복구 디스크를 삽입합니다.

  2. 컴퓨터의 전원 단추를 사용하여 컴퓨터를 다시 시작합니다.

  3. 메시지가 표시되면 아무 키나 눌러 설치 디스크 또는 시스템 복구 디스크에서 컴퓨터를 시작합니다.

    컴퓨터가 CD나 DVD에서 시작하도록 구성되어 있지 않으면 컴퓨터와 함께 제공된 정보를 확인하십시오. 컴퓨터의 BIOS 설정을 변경해야 할 수 있습니다. 변경할 설정에 대한 자세한 내용은 컴퓨터 제조업체의 웹 사이트를 확인하십시오. BIOS에 대한 자세한 내용은 BIOS: 질문과 대답의 정보를 참조하십시오.

  4. 언어 설정을 선택하고 다음을 클릭합니다.

  5. 컴퓨터 복구를 클릭합니다.

    이 단계는 Windows(윈도우) 설치 디스크를 사용하는 경우에만 적용됩니다.

  6. 복구 옵션을 선택하고 다음을 클릭합니다.


'창고 > 컴터' 카테고리의 다른 글

Windows Service Registry 하위키..  (0) 2011.10.20
Zip 명령어  (0) 2011.09.27
Posted by 촌돌애비
|