달력

1

« 2025/1 »

  • 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
2008. 12. 21. 00:27

결혼 후 호칭 Etc.2008. 12. 21. 00:27

사용자 삽입 이미지

:
Posted by 커널64
2008. 12. 20. 08:53

Forefront Client Security(FCS) S/W 요구 사항 Security2008. 12. 20. 08:53

Forefront Client Security Server Requirement

OS
Windows Server 2003 Service Pack 1 Standard Edition or Enterprise Edition
Windows Server 2003 R2 Standard Edition or Enterprise Edition

SQL
SQL Server 2005 Enterprise Edition or Standard Edition with Service Pack 1
(including Database Services, Reporting Services, Workstation Components, and Integration Services)

WSUS
Windows Server Update Services 2.0 with Service Pack 1 or Windows Server Update Services 3.0


Forefront Client Security Agent Requirement

Microsoft Windows® 2000 SP4
Windows XP Service Pack 2 (x86 or x64)
Windows Vista Business (x86 or x64)
Windows Vista Enterprise (x86 or x64)
Windows Vista Ultimate (x86 or x64)
Windows Server 2003 Service Pack 1 (x86 or x64)
Windows Server 2003 R2 (x86 or x64)
:
Posted by 커널64
2008. 12. 20. 01:17

스크립트(WMI)를 이용해 프로세스 실행 Etc.2008. 12. 20. 01:17

set process = GetObject("winmgmts:{impersonationLevel=impersonate}!Win32_Process")
result = process.Create ("notepad.exe",null,null,processid)
:
Posted by 커널64
2008. 12. 20. 01:16

WMI 관련 툴 Etc.2008. 12. 20. 01:16

WMI CIM Studio


Scriptomatic Version 2.0

:
Posted by 커널64

특정 폴더(Parameter 1)의 파일 수가 일정 수(Parameter 2)를 넘지 않는지에 대한 모니터

Monitor -> New -> Scripting -> Timed Script Two State Monitor

Parameter
"
<Folder Name>" <Number Of Files>

사용자 삽입 이미지













State Expression

For Unhealthy Expression Property[@Name='State'] Equals BAD
For Healthy Expresion Property[@Name='State'] Equals GOOD

------------------------------------------------------------

Check.Folder.vbs

On Error Resume Next

Dim oAPI, oBag, objFSO, objFldr

Set oAPI = CreateObject("MOM.ScriptAPI")
Set oBag = oAPI.CreateTypedPropertyBag(StateDataType)
Set oArgs = WScript.Arguments

MessageText = ""

If oArgs.Count < 1 Then
Call oAPI.LogScriptEvent("Check.Folder.vbs", 500, 0, "Script aborted. Not enough parameters provided.")
WScript.Quit -1
End If

strFldr = oArgs(0)
NumberOfFiles = int(oArgs(1))
Set objFSO=CreateObject("Scripting.FileSystemObject")
Set objFldr=objFSO.GetFolder(strFldr)

If objFldr.Files.Count > NumberOfFiles Then
strReturn = "Number of Files in " & strFldr& " is greater than " & NumberOfFiles
                Call oBag.AddValue("State","BAD")
                Call oBag.AddValue("ret",strReturn)
Else
                Call oBag.AddValue("State","GOOD")
End If
Call oAPI.Return(oBag) 

:
Posted by 커널64

Rule -> New -> Collection Rules -> Probe Base -> Script(Perfomance)

Parameters
1: IP-adress to ping - 192.168.0.10
2: Timeout (ms) - 1000
3: Buffertsize - 4096
ex) 127.0.0.1 1000 4096

Performance mapper
Object = PingRoundtrip
Counter = $Data/Property[@Name='serverToPingFrom']$
Instance = $Data/Property[@Name='serverToPingIP']$
Value = $Data/Property[@Name='Roundtrip']$

--------------------------------------------------------------------------------------------

Option Explicit
Dim serverToPingIP, serverToPingFrom, pingTimeout, pingBufferSize, perfData
Dim oArgs, oPing, oStatus, oAPI, oBag

'- Get parameters
Set oArgs = WScript.Arguments
serverToPingIP = oArgs.Item(0)
pingTimeout = oArgs.Item(1)
pingBufferSize = oArgs.Item(2)
Set oArgs = Nothing

'- Get computername
Set oArgs = WScript.CreateObject("WScript.Network")
serverToPingFrom = oArgs.ComputerName
Set oArgs = Nothing

'- Ping the host
Set oPing = GetObject("winmgmts:{impersonationLevel=impersonate}")._
        ExecQuery("select * from Win32_PingStatus where address =  '" & serverToPingIP & "' and BufferSize=" & pingBufferSize & " And Timeout=" & pingTimeout)

For Each oStatus in oPing
        If IsNull(oStatus.StatusCode) Or oStatus.StatusCode<>0 Then
                perfData = pingTimeout   'Got no answer. logging maxTime
        Else
                perfData = oStatus.ResponseTime   'Got answer, logging responsetime
        End If
Next
Set oPing = Nothing
Set oStatus = Nothing

'- Create properies in SCOM
Set oAPI = CreateObject("MOM.ScriptAPI")
Set oBag = oAPI.CreatePropertyBag()

oBag.AddValue "serverToPingIP", serverToPingIP
oBag.AddValue "serverToPingFrom", serverToPingFrom
oBag.AddValue "pingTimeout", pingTimeout
oBag.AddValue "pingBufferSize", pingBufferSize
oBag.AddValue "Roundtrip", perfData
oAPI.AddItem(oBag)
oAPI.ReturnItems

Set oAPI = Nothing
Set oBag = Nothing

:
Posted by 커널64
2008. 12. 17. 22:20

OCS와 Cisco/Nortel/Avaya 연동 시 설정 Collaboration2008. 12. 17. 22:20

Direct SIP Connection with Nortel Communication Server 5.0

Cisco Call Manager 5.1 PBX Configuration Note

Cisco Unified Communications Manager 6.0 PBX Configuration Note

Cisco Unified Communications Manager 7.0 PBX Configuration Note

Application Notes for Microsoft Office Communicator Clients with Avaya Communication Manager Phones
:
Posted by 커널64

OCS 중재 서버에서 발신되는 모든 SIP 통신에서 '+' 를 자동으로 제거하는 방법 (Cisco direct SIP 환경)

[E.164로 Nomalize할 때 Cisco 장비에 혼란을 줄 수 있는 요인을 제거]

MediationServerSvc.exe.config 파일을 MediationServerSvc.exe 파일의 위치에 생성한다.
(예: C:\Program Files\Microsoft Office Communications Server 2007\Mediation Server)


MediationServerSvc.exe.config 파일의 내용은 다음과 같다.

<?xml version=”1.0″ encoding=”utf-8″ ?>
<configuration>
<appSettings>
<add key=”RemovePlusFromRequestURI” value=”Yes”/>
</appSettings>
</configuration>


:
Posted by 커널64
2008. 12. 16. 23:47

SCOM 2007의 용량 계획 및 고가용성 구성 SystemCenter2008. 12. 16. 23:47

:
Posted by 커널64
2008. 12. 16. 09:13

Forefront Client Security(FCS) 아키텍쳐 Security2008. 12. 16. 09:13

사용자 삽입 이미지
:
Posted by 커널64