달력

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
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

1. 드라이버 추가
Windows Server 2008 R2의 드라이버와 호환
1-1. 드라이버 파일을 임시 폴더에 복사
1-2. Command 창에서 복사한 폴더로 이동
1-3. pnputil -i -a <driver.inf>

2. 드라이버 목록 쿼리
Sc query type= driver

3. 드라이버 사용 안함
Sc delete <SERVICE_NAME>

:
Posted by 커널64