달력

5

« 2024/5 »

  • 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
  • 31
2010. 2. 24. 15:22

System Center Configuration Manager Tools (SCCM) SystemCenter2010. 2. 24. 15:22

SCCM 2007 콘솔에 설치하는 엑세서리?
내부적으론 VBS와 PSEXEC 등의 유틸을 사용한다.



:
Posted by 커널64
SCCM 스키마 확장

1. Schema Admins 그룹 구성원 계정으로 로그인
2. \SMSSETUP\BIN\I386\extadsch.exe 실행
3. 시스템 드라이브의 루트 디렉토리의 extadsch.log 확인
4. ADSIEDIT.MSC 실행
5. Domain [Domain FQDN] -> <DN 확장> -> CN=System -> 우클릭 -> New
5. 개체 만들기 -> Container 클래스 선택 -> 다음 -> 값에 System Management 입력 -> 마침
6. dsa.msc 실행 -> 보기 -> '고급 기능' 체크
7. System 컨테이너 확장 -> System Management -> 우클릭 -> 속성
8. 보안 탭으로 이동 -> 추가 -> Site Server의 Computer Account 선택 -> 모든 권한 부여
9. 고급 -> 고급 보안 설정 창에서 Site Server Computer Account 선택 -> 편집
10. 적용 대상 -> 이 개체 및 모든 하위 개체 선택 -> 적용
11. SCCM 관리 콘솔에서 AD 개시 설정
:
Posted by 커널64

cd %Windir%\system32\inetsrv

AppCmd set config "Default Web Site/" /section:system.webServer/webdav/authoring /enabled:true /commit:apphost
AppCmd set config "Default Web Site/" /section:system.webServer/webdav/authoringRules /+[users='*',path='*',access='Read'] /commit:apphost
AppCmd set config "Default Web Site/" /section:system.webServer/webdav/authoring /properties.allowAnonymousPropfind:true /commit:apphost
AppCmd set config "Default Web Site/" /section:system.webServer/webdav/authoring /properties.allowCustomProperties:false /commit:apphost
AppCmd set config "Default Web Site/" /section:system.webServer/webdav/authoring /properties.allowInfinitePropfindDepth:true /commit:apphost
AppCmd set config "Default Web Site/" /section:system.webServer/webdav/authoring /fileSystem.allowHiddenFiles:true /commit:apphost
AppCmd set config "Default Web Site/" /section:system.webServer/webdav/authoring /fileSystem.allowHiddenFiles:true /commit:apphost

:
Posted by 커널64

SCCM 하드웨어 인벤토리 커스터마이징

- 레지스트리 정보 수집 및 보고(Resource Explorer)

 

Primary site server <ConfigMgr Install Directory>\inboxes\clifiles.src\hinv 폴더의 두 개의 MOF 파일(Configuration.mof, SMS_def.mof)을 기반으로 하드웨어 정보가 수집된다.

 

Configuration.mof

이 파일은 하드웨어 인벤토리 클라이언트 에이전트에 의해 수집되는 데이터 클래스를 정의하는데 사용된다.

데이터 클래스는 시스템에 존재하는 WMI 데이터나 레지스트리 키를 기반으로 생성될 수 있다.

 

SMS_def.mof

이 파일은 하드웨어 인벤토리 에이전트에 의해 수집된 데이터 정보를 보고에 보여줄지 말지를 정의한다.

보고 클래스는 WMI 데이터 클래스를 기반으로 하며 기본적으로 제공되는 클래스나 Configuration.mof에서 사용자 정의를 통해 추가된 클래스가 될 수 있다.

SMS_def.mof 파일에 설정된 클래스 보고 정보는 클라이언트의 컴퓨터 정책 실행 간격 중에 보고 정책으로 변환된다. 클라이언트는 새로운 보고 정책을 컴파일 한 후 보고 정책 정보는 클라이언트의 WMI 저장소의 Root\CCM\Policy\Machine 네임스페이스, InventoryDataItem 클래스에 저장된다.

 

 

HKLM\SOFTWARE\Custom Value 키 하위로 다음과 같은 키가 있는 상황을 예로 들면

사용자 삽입 이미지

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 




 


1. 먼 Configuration.mof 파일에 다음과 같은 내용을 추가한다.

 

#pragma namespace("\\\\.\\root\\cimv2")

#pragma deleteclass("Win32Reg_CustomValue",NOFAIL)

 

[ dynamic,

provider("RegProv"),

ClassContext("local|HKEY_LOCAL_MACHINE\\SOFTWARE\\Custom Value")

]

 

class Win32Reg_CustomValue

{

[Key] string ApplicationName;

[PropertyContext("ProductName")] string ProductName;

[PropertyContext("ProductFile")] string ProductFile;

[PropertyContext("ProductVer")] string ProductVer;

};

 

위 내용을 요약하면

- cimv2 네임스페이스에 있는 Win32Reg_CustomValue 클래스 제거

- HKEY_LOCAL_MACHINE\\SOFTWARE\\Custom Value에 대한 레지스트리 검색 프로바이더 정의

- Win32Reg_CustomValue 클래스 생성 및 값 설정


 

2. 다음으로 SMS_def.mof 파일에 다음과 같은 내용을 추가한다.

 

#pragma namespace ("\\\\.\\root\\cimv2\\sms")

#pragma deleteclass("Win32Reg_CustomValue",NOFAIL)

 

[ SMS_Report (TRUE),

SMS_Group_Name ("Custom Inventory")

SMS_Class_ID ("KWANGSEOK|CustomInventory|1.0") ]

 

class Win32Reg_CustomValue : SMS_Class_Template

{

[SMS_Report (TRUE), Key ] string ApplicationName;

[SMS_Report (TRUE)] string ProductName;

[SMS_Report (TRUE)] string ProductFile;

[SMS_Report (TRUE)] string ProductVer;

};

 

위 내용을 요약하면

- cimv2\sms 네임스페이스에 있는 Win32Reg_CustomValue 클래스 제거

- 보고 여부 설정 및 그룹 이름, 클래스 ID 설정

- Win32Reg_CustomValue 클래스 생성 및 값 입력


 

3. 위 과정이 완료된 후 컴퓨터 정책/하드웨어 인벤토리 실행이 끝나면

Resource Explorer > Hardware 하위에서 확인이 가능하다.

:
Posted by 커널64
SCCM System Center Configuration Manager 2007 Push Install
Client Push Installation을 하기 위한 클라이언트의 요구 사항 (방화벽 사용 시)
다음 예외 적용 GPO Group Policy 그룹 정책
- File and Printer Sharing
- Windows Management Instrumentation (WMI)

Windows 2003



Windows 2008


그룹 정책에서 정책 수정 시에는위와 같이 컴퓨터 구성 > 관리 템플릿 > 네트워크 > 네트워크 연결 > Windows 방화벽 > 도메인 프로필 > 원격 관리 허용, 파일 및 프린터 공유 허용
:
Posted by 커널64

클라이언트 로그 위치
32bit : %WINDIR%\System32\CCM\Logs
64bit : %WINDIR%\SysWOW64\CCM\Logs

서버 로그 위치
Server Log : <INSTALL_PATH>\Logs
Site Role Log : %ProgramFiles%\SMS_CCM\Logs

SCCM Toolkit을 이용해서 분석하면 좀 더 쉽게 분석이 가능하다.

-클라이언트 로그 파일-
CAS - Content Access Service. Maintains the local package cache.
Ccmexec.log - Records activities of the client and the SMS Agent Host service.
CertificateMaintenance.log - Maintains certificates for Active Directory directory service and management points.
ClientIDManagerStartup.log - Creates and maintains the client GUID.
ClientLocation.log - Site assignment tasks.
ContentTransferManager.log - Schedules the Background Intelligent Transfer Service (BITS) or the Server Message Block (SMB) to download or to access SMS packages.
DataTransferService.log - Records all BITS communication for policy or package access.
Execmgr.log - Records advertisements that run.
FileBITS.log - Records all SMB package access tasks.
Fsinvprovider.log (renamed to FileSystemFile.log in all SMS 2003 Service Packs) - Windows Management Instrumentation (WMI) provider for software inventory and file collection.
InventoryAgent.log - Creates discovery data records (DDRs) and hardware and software inventory records.
LocationServices.log - Finds management points and distribution points.
Mifprovider.log - The WMI provider for .MIF files.
Mtrmgr.log - Monitors all software metering processes.
PolicyAgent.log - Requests policies by using the Data Transfer service.
PolicyAgentProvider.log - Records policy changes.
PolicyEvaluator.log - Records new policy settings.
Remctrl.log - Logs when the remote control component (WUSER32) starts.
Scheduler.log - Records schedule tasks for all client operations.
Smscliui.log - Records usage of the Systems Management tool in Control Panel.
StatusAgent.log - Logs status messages that are created by the client components.
SWMTRReportGen.log - Generates a usage data report that is collected by the metering agent. (This data is logged in Mtrmgr.log.)

-서버 로그 파일-
Ccm.log - Client Configuration Manager tasks.
Cidm.log - Records changes to the client settings by the Client Install Data Manager (CIDM).
Colleval.log - Logs when collections are created, changed, and deleted by the Collection Evaluator.
Compsumm.log - Records Component Status Summarizer tasks.
Cscnfsvc.log - Records Courier Sender confirmation service tasks.
Dataldr.log - Processes Management Information Format (MIF) files and hardware inventory in the Configuration Manager 2007 database.
Ddm.log - Saves DDR information to the Configuration Manager 2007 database by the Discovery Data Manager.
Despool.log - Records incoming site-to-site communication transfers.
Distmgr.log - Records package creation, compression, delta replication, and information updates.
Hman.log - Records site configuration changes, and publishes site information in Active Directory Domain Services.
Inboxast.log - Records files that are moved from the management point to the corresponding SMS\INBOXES folder.
Inboxmgr.log - Records file maintenance.
Invproc.log - Records the processing of delta MIF files for the Dataloader component from client inventory files.
Mpcontrol.log - Records the registration of the management point with WINS. Records the availability of the management point every 10 minutes.
Mpfdm.log - Management point component that moves client files to the corresponding SMS\INBOXES folder.
MPMSI.log - Management point .msi installation log.
MPSetup.log - Records the management point installation wrapper process.
Ntsvrdis.log - Configuration Manager 2007 server discovery.
Offermgr.log - Records advertisement updates.
Offersum.log - Records summarization of advertisement status messages.
Policypv.log - Records updates to the client policies to reflect changes to client settings or advertisements.
Replmgr.log - Records the replication of files between the site server components and the Scheduler component.
Rsetup.log - Reporting point setup log.
Sched.log - Records site-to-site job and package replication.
Sender.log - Records files that are sent to other child and parent sites.
Sinvproc.log - Records client software inventory data processing to the site database in Microsoft SQL Server.
Sitecomp.log - Records maintenance of the installed site components.
Sitectrl.log - Records site setting changes to the Sitectrl.ct0 file.
Sitestat.log - Records the monitoring process of all site systems.
Smsdbmon.log - Records database changes.
Smsexec.log - Records processing of all site server component threads.
Smsprov.log - Records WMI provider access to the site database.
SMSReportingInstall.log - Records the Reporting Point installation. This component starts the installation tasks and processes configuration changes.
SMSSHVSetup.log - Records the success or failure (with failure reason) of installing the System Health Validator point.
Srvacct.log - Records the maintenance of accounts when the site uses standard security.
Statmgr.log - Writes all status messages to the database.
Swmproc.log - Processes metering files and maintains settings.

-관리 콘솔 로그 파일-
RepairWizard.log - Records errors, warnings, and information about the process of running the Repair Wizard.
ResourceExplorer.log - Records errors, warnings, and information about running the Resource Explorer.
SMSAdminUI.log - Records the local Configuration Manager 2007 console tasks when you connect to Configuration Manager 2007 sites.

-관리 포인트 로그 파일-
MP_Ddr.log - Records the conversion of XML.ddr records from clients, and copies them to the site server.
MP_GetAuth.log - Records the status of the site management points.
MP_GetPolicy.log - Records policy information.
MP_Hinv.log - Converts XML hardware inventory records from clients and copies the files to the site server.
MP_Location.log - Records location manager tasks.
MP_Policy.log - Records policy communication.
MP_Relay.log - Copies files that are collected from the client.
MP_Retry.log - Records the hardware inventory retry processes.
MP_Sinv.log - Converts XML hardware inventory records from clients and copies them to the site server.
MP_Status.log - Converts XML.svf status message files from clients and copies them to the site server.

-모바일 장치 관리 로그 파일-
DmClientHealth.log - Records the GUIDs of all the mobile device clients that are communicating with the Device Management Point.
DmClientRegistration.log - Records registration requests from and responses to the mobile device client in Native mode.
DmpDatastore.log - Records all the site database connections and queries made by the Device Management Point.
DmpDiscovery.log - Records all the discovery data from the mobile device clients on the Device Management Point.
DmpFileCollection.log - Records mobile device file collection data from mobile device clients on the Device Management Point.
DmpHardware.log - Records hardware inventory data from mobile device clients on the Device Management Point.
DmpIsapi.log - Records mobile device communication data from device clients on the Device Management Point.
dmpMSI.log - Records the MSI data for Device Management Point setup.
DMPSetup.log - Records the mobile device management setup process.
DmpSoftware.log - Records mobile device software distribution data from mobile device clients on the Device Management Point.
DmpStatus.log - Records mobile device status messages data from mobile device clients on the Device Management Point.
FspIsapi.log - Records Fallback Status Point communication data from mobile device clients and client computers on the Fallback Status Point.

-모바일 장비 클라이언트 로그 파일-
DmCertEnroll.log - Records certificate enrollment data on mobile device clients.
DMCertResp.htm (in \temp) - Records HTML response from the certificate server when the mobile device Enroller program requests a client authentication certificate on mobile device clients.
DmClientSetup.log - Records client setup data on mobile device clients.
DmClientXfer.log - Records client transfer data for Windows Mobile Device Center and ActiveSync deployments.
DmCommonInstaller.log - Records client transfer file installation for setting up mobile device client transfer files on client computers.
DmInstaller.log - Records whether DMInstaller correctly calls DmClientSetup and whether DmClientSetup exits with success or failure on mobile device clients.
DmInvExtension.log - Records Inventory Extension file installation for setting up Inventory Extension files on client computers.
DmSvc.log - Records mobile device management service data on mobile device clients.

-운영체제 배포 로그 파일-
CCMSetup.log - Provides information about client-based operating system actions.
CreateTSMedia.log - Provides information about task sequence media when it is created. This log is generated on the computer running the Configuration Manager 2007 administrator console.
DriverCatalog.log - Provides information about device drivers that have been imported into the driver catalog.
MP_ClientIDManager.log - Provides information about the Configuration Manager 2007 management point when it responds to Configuration Manager 2007 client ID requests from boot media or PXE. This log is generated on the Configuration Manager 2007 management point.
MP_DriverManager.log - Provides information about the Configuration Manager 2007 management point when it responds to a request from the Auto Apply Driver task sequence action. This log is generated on the Configuration Manager 2007 management point.
MP_Location.log - Provides information about the Configuration Manager 2007 management point when it responds to request state store or release state store requests from the state migration point. This log is generated on the Configuration Manager 2007 management point.
Pxecontrol.log - Provides information about the PXE Control Manager.
PXEMsi.log - Provides information about the PXE service point and is generated when the PXE service point site server has been created.
PXESetup.log - Provides information about the PXE service point and is generated when the PXE service point site server has been created.
Setupact.log Setupapi.log Setuperr.log Provide information about Windows Sysprep and setup logs.
SmpIsapi.log - Provides information about the state migration point Configuration Manager 2007 client request responses.
Smpmgr.log - Provides information about the results of state migration point health checks and configuration changes.
SmpMSI.log - Provides information about the state migration point and is generated when the state migration point site server has been created.
Smsprov.log - Provides information about the SMS provider.
Smspxe.log - Provides information about the Configuration Manager 2007 PXE service point.
SMSSMPSetup.log - Provides information about the state migration point and is generated when the state migration point site server has been created.
Smsts.log - General location for all operating system deployment and task sequence log events.
TaskSequenceProvider.log - Provides information about task sequences when they are imported, exported, or edited.
USMT Log loadstate.log - Provides information about the User State Migration Tool (USMT) regarding the restore of user state data.
USMT Log scanstate.log - Provides information about the USMT regarding the capture of user state data.

-네트워크 접근 보호(NAP) 로그 파일-
Ccmcca.log - Logs the processing of compliance evaluation based on Configuration Manager NAP policy processing and contains the processing of remediation for each software update required for compliance.
CIAgent.log - Tracks the process of remediation and compliance. However, the software updates log file, *Updateshandler.log - provides more informative details on installing the software updates required for compliance.
locationservices.log - Used by other Configuration Manager features (for example, information about the client’s assigned site) but also contains information specific to Network Access Protection when the client is in remediation. It records the names of the required remediation servers (management point, software update point, and distribution points that host content required for compliance), which are also sent in the client statement of health.
SDMAgent.log - Shared with the Configuration Manager feature desired configuration management and contains the tracking process of remediation and compliance. However, the software updates log file, Updateshandler.log, provides more informative details about installing the software updates required for compliance.
SMSSha.log - The main log file for the Configuration Manager Network Access Protection client and contains a merged statement of health information from the two Configuration Manager components: location services (LS) and the configuration compliance agent (CCA). This log file also contains information about the interactions between the Configuration Manager System Health Agent and the operating system NAP agent, and also between the Configuration Manager System Health Agent and both the configuration compliance agent and the location services. It provides information about whether the NAP agent successfully initialized, the statement of health data, and the statement of health response.

-시스템 상태 검사 포인트 로그 파일-
Ccmperf.log -Contains information about the initialization of the System Health Validator point performance counters.
SmsSHV.log - The main log file for the System Health Validator point; logs the basic operations of the System Health Validator service, such as the initialization progress.
SmsSHVADCacheClient.log - Contains information about retrieving Configuration Manager health state references from Active Directory Domain Services.
SmsSHVCacheStore.log - Contains information about the cache store used to hold the Configuration Manager NAP health state references retrieved from Active Directory Domain Services, such as reading from the store and purging entries from the local cache store file. The cache store is not configurable.
SmsSHVRegistrySettings.log - Records any dynamic changes to the System Health Validator component configuration while the service is running.
SmsSHVQuarValidator.log - Records client statement of health information and processing operations. To obtain full information, change the registry key LogLevel from 1 to 0 in the following location:HKLM\SOFTWARE\Microsoft\SMSSHV\Logging\@GLOBAL

-DCM(Desired Configuration Management) 로그 파일-
ciagent.log - Provides information about downloading, storing, and accessing assigned configuration baselines.
dcmagent.log - Provides high-level information about the evaluation of assigned configuration baselines and desired configuration management processes.
discovery.log - Provides detailed information about the Service Modeling Language (SML) processes.
sdmagent.log - Provides information about downloading, storing, and accessing configuration item content.
sdmdiscagent.log - Provides high-level information about the evaluation process for the objects and settings configured in the referenced configuration items.

-Wake On LAN(WOL) 로그 파일-
Wolmgr.log - Contains information about wake-up procedures such as when to wake up advertisements or deployments that are configured for Wake On LAN.
WolCmgr.log - Contains information about which clients need to be sent wake-up packets, the number of wake-up packets sent, and the number of wake-up packets retried.

-소프트웨어 업데이트 서버 로그 파일-
ciamgr.log - Provides information about the addition, deletion, and modification of software update configuration items.
distmgr.log - Provides information about the replication of software update deployment packages.
objreplmgr.log - Provides information about the replication of software updates notification files from a parent to child sites.
PatchDownloader.log - Provides information about the process for downloading software updates from the update source specified in the software updates metadata to the download destination on the site server.
replmgr.log - Provides information about the process for replicating files between sites.
smsdbmon.log - Provides information about when software update configuration items are inserted, updated, or deleted from the site server database and creates notification files for software updates components.
SUPSetup - Provides information about the software update point installation. When the software update point installation completes, Installation was successful is written to this log file.
WCM.log - Provides information about the software update point configuration and connecting to the Windows Server Update Services (WSUS) server for subscribed update categories, classifications, and languages.
WSUSCtrl.log - Provides information about the configuration, database connectivity, and health of the WSUS server for the site.
wsyncmgr.log -Provides information about the software updates synchronization process.

-WSUS 서버 로그 파일-
Change.log - Provides information about the WSUS server database information that has changed.
SoftwareDistribution.log - Provides information about the software updates that are synchronized from the configured update source to the WSUS server database.

-소프트웨어 업데이트 클라이언트 컴퓨터 로그 파일-
CAS.log - Provides information about the process of downloading software updates to the local cache and cache management.
CIAgent.log - Provides information about processing configuration items, including software updates.
LocationServices.log - Provides information about the location of the WSUS server when a scan is initiated on the client.
PatchDownloader.log - Provides information about the process for downloading software updates from the update source to the download destination on the site server. This log is only on the client computer configured as the synchronization host for the Inventory Tool for Microsoft Updates.
PolicyAgent.log - Provides information about the process for downloading, compiling, and deleting policies on client computers.
PolicyEvaluator - Provides information about the process for evaluating policies on client computers, including policies from software updates.
RebootCoordinator.log - Provides information about the process for coordinating system restarts on client computers after software update installations.
ScanAgent.log - Provides information about the scan requests for software updates, what tool is requested for the scan, the WSUS location, and so on.
ScanWrapper - Provides information about the prerequisite checks and the scan process initialization for the Inventory Tool for Microsoft Updates on Systems Management Server (SMS) 2003 clients.
SdmAgent.log - Provides information about the process for verifying and decompressing packages that contain configuration item information for software updates.
ServiceWindowManager.log - Provides information about the process for evaluating configured maintenance windows.
smscliUI.log - Provides information about the Configuration Manager Control Panel user interactions, such as initiating a Software Updates Scan Cycle from the Configuration Manager Properties dialog box, opening the Program Download Monitor, and so on.
SmsWusHandler - Provides information about the scan process for the Inventory Tool for Microsoft Updates on SMS 2003 client computers.
StateMessage.log - Provides information about when software updates state messages are created and sent to the management point.
UpdatesDeployment.log - Provides information about the deployment on the client, including software update activation, evaluation, and enforcement. Verbose logging shows additional information about the interaction with the client user interface.
UpdatesHandler.log - Provides information about software update compliance scanning and about the download and installation of software updates on the client.
UpdatesStore.log - Provides information about the compliance status for the software updates that were assessed during the compliance scan cycle.
WUAHandler.log - Provides information about when the Windows Update Agent on the client searches for software updates.
WUSSyncXML.log - Provides information about the Inventory Tool for the Microsoft Updates synchronization process. This log is only on the client computer configured as the synchronization host for the Inventory Tool for Microsoft Updates.

-윈도우 업데이트 에이전트 로그 파일-
WindowsUpdate.log - Provides information about when the Windows Update Agent connects to the WSUS server and retrieves the software updates for compliance assessment and whether there are updates to the agent components.

:
Posted by 커널64
2009. 3. 18. 21:28

SCCM Toolkit SystemCenter2009. 3. 18. 21:28

Client Spy - 소프트웨어 배포, 인벤토리, 소프트웨어 미터링 트러블슈팅
Policy Spy - 정책 뷰어, 정책 관련 트러블슈팅
Trace32 - Configuration 서버/클라이언트의 로그 뷰어(분석)
Security Configuration Wizard Template for Configuration Manager 2007 - SCW Template
DCM Model Verification - Desired Configuration Management 검증 및 아이템 테스트
DCM Digest Conversion - SMS 2003에서 생성한 DCM을 SCCM 2007 용으로 변환

:
Posted by 커널64

<InstalledDir>\inboxes\clifiles.src\hinv\SMS_DEF.MOF
다음 11가지 AI 관련 Report를 기본값인 FALSE에서 TRUE로 변경

Installed Software
Installed Software MS
System Console Usage
System Console User
Software Shortcut
AUtoStart Software
Installed Executable
Browser Helper Object
USB Device
SW Licensing Service
SW Licensing Product


<InstalledDir>\inboxes\clifiles.src\hinv\Configuration.MOF
CCM_CALTrackconfig 설정

CALCollectionType : 기본값(0 - Disable),  1 - User CAL, 2 - Device CAL, 3 - All
CALCollectionTypeFrequencyDays : 주기 기본값은 7일

:
Posted by 커널64
2008. 12. 9. 15:50

SCCM Agent의 지원 운영체제 SystemCenter2008. 12. 9. 15:50

운영체제

x86

x64

ia64

Windows 2000 Professional SP4

O

   
Windows XP Professional (SP2/SP3)

O

O

 
Windows XP Tablet PC SP2

O

   
Windows Embedded Standard 2009

O

   
Windows Embedded for Point of Service (WEPOS)

O

   
Windows Embedded POSReady 2009

O

   
Windows Fundamentals for Legacy PCs (WinFLP)

O

   
Windows Vista Business Edition (RTM/SP1)

O

O

 
Windows Vista Enterprise Edition (RTM/SP1)

O

O

 
Windows Vista Ultimate Edition (RTM/SP1)

O

O

 
Windows 2000 Server SP4

O

   
Windows 2000 Advanced Server SP4

O

   
Windows 2000 Datacenter SP4

O

   
Windows Server 2003 Web Edition (SP1/SP2)

O

   
Windows Server 2003 Standard Edition (SP1/SP2)

O

O

 
Windows Server 2003 Enterprise Edition (SP1/SP2)

O

O

O

Windows Server 2003 Datacenter Edition (SP1/SP2)

O

O

O

Windows Server 2003 R2 Standard Edition

O

O

 
Windows Server 2003 R2 Enterprise Edition

O

O

 
Windows Server 2003 R2 Datacenter Edition

O

O

 
Windows Server 2008 Standard Edition

O

O

 
Windows Server 2008 Enterprise Edition

O

O

 
Windows Server 2008 Datacenter Edition

O

O

 
Windows Server 2008 for Itanium-Based Systems    

O

:
Posted by 커널64
2008. 12. 9. 13:13

IIS 웹사이트의 식별자 변경 Etc.2008. 12. 9. 13:13

SCCM의 MP(Management Point)의 경우 기본적으로 IIS://LocalHost/W3SVC/1 위치에 웹사이트를 생성하기 때문에 기본웹사이트를 지우고 재생성했다면 식별자가 변경되어 MP 설치 작업이 실패하게 된다.
이런 경우 다음 명령을 이용해 기본 웹 사이트의 식별자를 변경해야 할 수도 있다.

CSCRIPT %SYSTEMDRIVE%\Inetpub\AdminScripts\adsutil.vbs STOP_SERVER W3SVC/old_identifier_number

CSCRIPT %SYSTEMDRIVE%\Inetpub\AdminScripts\adsutil.vbs MOVE W3SVC/old_identifier_number W3SVC/new_identifier_number

CSCRIPT %SYSTEMDRIVE%\Inetpub\AdminScripts\adsutil.vbs START_SERVER W3SVC/new_identifier_number
:
Posted by 커널64