달력

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
2009. 12. 28. 12:19

폴더 별 디스크 공간 비율 측정(사용률/용량) Etc.2009. 12. 28. 12:19

:
Posted by 커널64
2009. 12. 11. 09:22

Windows Storage Server 2008 Partners Etc.2009. 12. 11. 09:22

:
Posted by 커널64
2009. 11. 19. 18:29

도메인 컨트롤러 시간 동기화 오류 발생 시 Etc.2009. 11. 19. 18:29

도메인 컨트롤러 시간 동기화 오류 발생 시
-> 도메인 컨트롤러 OU에 적용된 그룹 정책인 'Default Domain Controller Policy' 수정
-> 또는 PDC Emulator 역할을 가지는 도메인 컨트롤러에 적용

Windows NTP 서버 사용: 사용
Windiws NTP 클라이언트 사용: 사용
Windows NTP 클라이언트 구성: 사용
NtpServer: time.windows.com,0x1
형식: NTP
CrossSiteSyncFlags: 2
ResolvePeerBackoffMinutes: 15
ResolvePeerBackoffMaxTimes: 7
SpecialPollInterval: 3600
EventLogFlags: 0

:
Posted by 커널64
2009. 11. 19. 16:56

Windows Server 2008 R2 Core의 기능/역할 설치 Etc.2009. 11. 19. 16:56

Powershell 설치
설치된 기능 쿼리
Dism /online /get-features /format:table

Powershell 설치를 위해 .NET Framework 2.0 설치
Dism /online /enable-feature /featurename:NetFx2-ServerCore

Powershell 설치
Dism /online /enable-feature /featurename:MicrosoftWindowsPowerShell

ServerManager, BestPractices 설치
Dism /online /enable-feature /featurename:ServerManager-PSH-Cmdlets
Dism /online /enable-feature /featurename:BestPractices-PSH-Cmdlets


Powershell 실행
c:\windows\system32\WindowsPowerShell\v1.0\powershell.exe

기능 및 역할 설치를 위해 ServerManager 모듈 Import
Import-Module ServerManager

설치된 기능 쿼리
Get-WindowsFeature | Where {$_.installed –eq $true}

기능 설치/제거 (예: Hyper-V Role)
Add-WindowsFeature Hyper-V
Remove-WindowsFeature Hyper-V

:
Posted by 커널64

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")

Set colListOfServices = objWMIService.ExecQuery _
        ("Select * from Win32_Service")
For Each objService in colListOfServices
If (objService.StartMode = "Auto") and (objService.State = "Stopped") then

Set objShell = CreateObject("Wscript.Shell")
objShell.LogEvent 2, "Service " & objService.DisplayName & " is not running. (" & objService.Name & ")"
End If
Next

응용 프로그램 이벤트 로그

:
Posted by 커널64
2009. 9. 9. 19:37

전원 관련 명령어 Etc.2009. 9. 9. 19:37

최대 절전 모드
%windir%\system32\rundll32.exe powrprof.dll,SetSuspendState Hibernate

절전 모드

%windir%\System32\rundll32 powrprof.dll,SetSuspendState

컴퓨터 잠금
%windir%\System32\rundll32.exe user32.dll,LockWorkStation

:
Posted by 커널64
:
Posted by 커널64
2009. 8. 3. 13:15

Sysprep 명령 Etc.2009. 8. 3. 13:15

SCVMM의 라이브러리에 저장하거나 부모 디스크로 사용할 VHD 파일의 Sysprep 시
Sysprep /quiet /generalize /oobe /shutdown

Sysprep 명령줄 구문
http://technet.microsoft.com/ko-kr/library/cc721973(WS.10).aspx
:
Posted by 커널64
2009. 7. 13. 18:14

Windows Server 2008 버전별 지원 사항 Etc.2009. 7. 13. 18:14

:
Posted by 커널64
2009. 7. 13. 14:16

SPF 레코드 등록 방법 (Sender ID, SPF Record) Etc.2009. 7. 13. 14:16

1. DNS Management 를 열어서 추가할 도메인 선택 후 우클릭 -> 다른 새 레코드
2. 레코드 종류를 텍스트 형식으로 선택
3. 아래와 같은 형식으로 입력한다. (~와 -에 따라 처리 방법 다름)
domain.com.  IN  TXT  "v=spf1 ip4:1.1.1.1 ip4:2.2.2.2 ip4:3.3.3.3 -all"
===> 보내는 메일 서버가 일치하지 않는 경우 -> 수신 거부

domain.com.  IN  TXT  "v=spf1 ip4:1.1.1.1 ip4:2.2.2.2 ip4:3.3.3.3 ~all"
===> 보내는 메일 서버가 일치하지 않는 경우 -> 받는 서버 정책에 따라 처리

4. 하루 정도 지난 후에 DNS 적용된 것이 확인되면 화이트 도메인 등록 요청
5. DNS 적용 여부 확인은 Command 창에서
nslookup -> set q=txt -> domain.com

:
Posted by 커널64