'Etc.'에 해당되는 글 136건
- 2009.12.28 폴더 별 디스크 공간 비율 측정(사용률/용량)
- 2009.12.11 Windows Storage Server 2008 Partners
- 2009.11.19 도메인 컨트롤러 시간 동기화 오류 발생 시
- 2009.11.19 Windows Server 2008 R2 Core의 기능/역할 설치
- 2009.11.13 시작 상태가 Auto인데 중지된 상태인 서비스 쿼리 후 이벤트 찍기 - VB Script (VBS)
- 2009.09.09 전원 관련 명령어
- 2009.08.08 Vista & Windows 7 바로가기 아이콘 화살표 제거 유틸
- 2009.08.03 Sysprep 명령
- 2009.07.13 Windows Server 2008 버전별 지원 사항
- 2009.07.13 SPF 레코드 등록 방법 (Sender ID, SPF Record)
Windows Storage Server 2008 Partners Etc.2009. 12. 11. 09:22
도메인 컨트롤러 시간 동기화 오류 발생 시 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
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
시작 상태가 Auto인데 중지된 상태인 서비스 쿼리 후 이벤트 찍기 - VB Script (VBS) Etc.2009. 11. 13. 10:22
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
응용 프로그램 이벤트 로그
최대 절전 모드
%windir%\system32\rundll32.exe powrprof.dll,SetSuspendState Hibernate
절전 모드
%windir%\System32\rundll32 powrprof.dll,SetSuspendState
컴퓨터 잠금
%windir%\System32\rundll32.exe user32.dll,LockWorkStation
Sysprep 명령 Etc.2009. 8. 3. 13:15
Sysprep /quiet /generalize /oobe /shutdown
Sysprep 명령줄 구문
http://technet.microsoft.com/ko-kr/library/cc721973(WS.10).aspx
Windows Server 2008 버전별 지원 사항 Etc.2009. 7. 13. 18:14
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