태터데스크 관리자

도움말
닫기
적용하기   첫페이지 만들기

태터데스크 메시지

저장하였습니다.

'Microsoft/NT'에 해당되는 글 11건

  1. 2010/11/03 Performance Tuning Guidelines for Windows Server 2003
  2. 2010/11/03 Windows 버전별 메모리 한계(Physical Memory limits)
  3. 2009/12/18 ADexport.VBS
  4. 2009/06/30 PSTool 을 이용한 local admin password 변경
  5. 2009/06/22 IIS Default Web Site 날려먹었을때
  6. 2009/06/22 [본문스크랩] 윈도우 7 : IT 부서가 영웅으로 거듭날 수 있는 기회
  7. 2009/06/18 비스타와 윈7 속도 비교(다나와)
  8. 2009/05/21 초간단 DC promotion 방법 캡쳐
  9. 2009/05/19 MS product list 2009
  10. 2009/05/18 ISA 2006 설치 및 구성 가이드

Performance Tuning Guidelines for Windows Server 2003

Microsoft/NT 2010/11/03 15:23

저작자 표시 비영리 동일 조건 변경 허락
Creative Commons License
Creative Commons License
Trackback 0 : Comment 0

Windows 버전별 메모리 한계(Physical Memory limits)

Microsoft/NT 2010/11/03 15:15

Physical Memory Limits: Windows 7

The following table specifies the limits on physical memory for Windows 7.

Version Limit in 32-bit Windows Limit in 64-bit Windows
Windows 7 Ultimate

4 GB

192 GB

Windows 7 Enterprise

4 GB

192 GB

Windows 7 Professional

4 GB

192 GB

Windows 7 Home Premium

4 GB

16 GB

Windows 7 Home Basic

4 GB

8 GB

Windows 7 Starter

2 GB

2 GB





Physical Memory Limits: Windows Server 2008 R2

The following table specifies the limits on physical memory for Windows Server 2008 R2. Windows Server 2008 R2 is available only in 64-bit editions.

Version Limit in 64-bit Windows
Windows Server 2008 R2 Datacenter

2 TB

Windows Server 2008 R2 Enterprise

2 TB

Windows Server 2008 R2 for Itanium-Based Systems

2 TB

Windows Server 2008 R2 Foundation

8 GB

Windows Server 2008 R2 Standard

32 GB

Windows HPC Server 2008 R2

128 GB

Windows Web Server 2008 R2

32 GB

 





Physical Memory Limits: Windows Server 2008

The following table specifies the limits on physical memory for Windows Server 2008. Limits greater than 4 GB for 32-bit Windows assume that PAE is enabled.

Version Limit in 32-bit Windows Limit in 64-bit Windows
Windows Server 2008 Datacenter

64 GB

1 TB

Windows Server 2008 Enterprise

64 GB

1 TB

Windows Server 2008 HPC Edition

Not applicable

128 GB

Windows Server 2008 Standard

4 GB

32 GB

Windows Server 2008 for Itanium-Based Systems

Not applicable

2 TB

Windows Small Business Server 2008

4 GB

32 GB

Windows Web Server 2008

4 GB

32 GB

 




Physical Memory Limits: Windows Server 2003

The following table specifies the limits on physical memory for Windows Server 2003. Limits over 4 GB for 32-bit Windows assume that PAE is enabled.

Version Limit in 32-bit Windows Limit in 64-bit Windows

Windows Server 2003 with Service Pack 2 (SP2), Datacenter Edition

128 GB

64 GB with 4GT

IA64 2 TB

X64 1 TB

Windows Server 2003 with Service Pack 2 (SP2), Enterprise Edition

64 GB

IA64 2 TB

X64 1 TB

Windows Storage Server 2003, Enterprise Edition

8 GB

Not applicable

Windows Storage Server 2003

4 GB

Not applicable

Windows Server 2003 R2 Datacenter Edition

Windows Server 2003 with Service Pack 1 (SP1), Datacenter Edition

128 GB

16 GB with 4GT

1 TB

Windows Server 2003 R2 Enterprise Edition

Windows Server 2003 with Service Pack 1 (SP1), Enterprise Edition

64 GB

16 GB with 4GT

1 TB

Windows Server 2003 R2 Standard Edition

Windows Server 2003, Standard Edition SP1

Windows Server 2003, Standard Edition SP2

4 GB

32 GB

Windows Server 2003, Datacenter Edition

128 GB

16 GB with 4GT

512 GB

Windows Server 2003, Enterprise Edition

32 GB

16 GB with 4GT

64 GB

Windows Server 2003, Standard Edition

4 GB

16 GB

Windows Server 2003, Web Edition

2 GB

Not applicable

Windows Small Business Server 2003

4 GB

Not applicable

Windows Compute Cluster Server 2003

Not applicable

32 GB

 

Physical Memory Limits: Windows XP

The following table specifies the limits on physical memory for Windows XP.

Version Limit in 32-bit Windows Limit in 64-bit Windows
Windows XP

4 GB

128 GB

Windows XP Starter Edition

512 MB

Not applicable




출처: http://msdn.microsoft.com/en-us/library/aa366778(VS.85).aspx
저작자 표시 비영리 동일 조건 변경 허락
Creative Commons License
Creative Commons License
Trackback 0 : Comment 0

ADexport.VBS

Microsoft/NT 2009/12/18 14:15
ActiveDirectory Users&computer에 있는 AD계정을 Excel형태의 파일로 출력해주는 간단 스크립트.




Dim ObjWb
Dim ObjExcel
Dim x, zz
Set objRoot = GetObject("LDAP://RootDSE")
strDNC = objRoot.Get("DefaultNamingContext")
Set objDomain = GetObject("LDAP://" & strDNC) ' Bind to the top of the Domain using LDAP using ROotDSE
Call ExcelSetup("Sheet1") ' Sub to make Excel Document
x = 1
Call enummembers(objDomain)
Sub enumMembers(objDomain)
On Error Resume Next
Dim Secondary(20) ' Variable to store the Array of 2ndary email alias's
For Each objMember In objDomain ' go through the collection

If ObjMember.Class = "user" Then ' if not User object, move on.
x = x +1 ' counter used to increment the cells in Excel

objwb.Cells(x, 1).Value = objMember.Class
' I set AD properties to variables so if needed you could do Null checks or add if/then's to this code
' this was done so the script could be modified easier.
SamAccountName = ObjMember.samAccountName
Cn = ObjMember.CN
FirstName = objMember.GivenName
LastName = objMember.sn
initials = objMember.initials
Descrip = objMember.description
Office = objMember.physicalDeliveryOfficeName
Telephone = objMember.telephonenumber
EmailAddr = objMember.mail
WebPage = objMember.wwwHomePage
Addr1 = objMember.streetAddress
City = objMember.l
State = objMember.st
ZipCode = objMember.postalCode
Title = ObjMember.Title
Department = objMember.Department
Company = objMember.Company
Manager = ObjMember.Manager
Profile = objMember.profilePath
LoginScript = objMember.scriptpath
HomeDirectory = ObjMember.HomeDirectory
HomeDrive = ObjMember.homeDrive
AdsPath = Objmember.Adspath
LastLogin = objMember.LastLogin

zz = 1 ' Counter for array of 2ndary email addresses
For each email in ObjMember.proxyAddresses
If Left (email,5) = "SMTP:" Then
Primary = Mid (email,6) ' if SMTP is all caps, then it's the Primary
ElseIf Left (email,5) = "smtp:" Then
Secondary(zz) = Mid (email,6) ' load the list of 2ndary SMTP emails into Array.
zz = zz + 1
End If
Next
' Write the values to Excel, using the X counter to increment the rows.

objwb.Cells(x, 2).Value = SamAccountName
objwb.Cells(x, 3).Value = CN
objwb.Cells(x, 4).Value = FirstName
objwb.Cells(x, 5).Value = LastName
objwb.Cells(x, 6).Value = Initials
objwb.Cells(x, 7).Value = Descrip
objwb.Cells(x, 8).Value = Office
objwb.Cells(x, 9).Value = Telephone
objwb.Cells(x, 10).Value = EmailAddr
objwb.Cells(x, 11).Value = WebPage
objwb.Cells(x, 12).Value = Addr1
objwb.Cells(x, 13).Value = City
objwb.Cells(x, 14).Value = State
objwb.Cells(x, 15).Value = ZipCode
objwb.Cells(x, 16).Value = Title
objwb.Cells(x, 17).Value = Department
objwb.Cells(x, 18).Value = Company
objwb.Cells(x, 19).Value = Manager
objwb.Cells(x, 20).Value = Profile
objwb.Cells(x, 21).Value = LoginScript
objwb.Cells(x, 22).Value = HomeDirectory
objwb.Cells(x, 23).Value = HomeDrive
objwb.Cells(x, 24).Value = Adspath
objwb.Cells(x, 25).Value = LastLogin
objwb.Cells(x,26).Value = Primary

' Write out the Array for the 2ndary email addresses.
For ll = 1 To 20
objwb.Cells(x,26+ll).Value = Secondary(ll)
Next
' Blank out Variables in case the next object doesn't have a value for the property
SamAccountName = "-"
Cn = "-"
FirstName = "-"
LastName = "-"
initials = "-"
Descrip = "-"
Office = "-"
Telephone = "-"
EmailAddr = "-"
WebPage = "-"
Addr1 = "-"
City = "-"
State = "-"
ZipCode = "-"
Title = "-"
Department = "-"
Company = "-"
Manager = "-"
Profile = "-"
LoginScript = "-"
HomeDirectory = "-"
HomeDrive = "-"
Primary = "-"
For ll = 1 To 20
Secondary(ll) = ""
Next
End If

' If the AD enumeration runs into an OU object, call the Sub again to itinerate

If objMember.Class = "organizationalUnit" or OBjMember.Class = "container" Then
enumMembers (objMember)
End If
Next
End Sub
Sub ExcelSetup(shtName) ' This sub creates an Excel worksheet and adds Column heads to the 1st row
Set objExcel = CreateObject("Excel.Application")
Set objwb = objExcel.Workbooks.Add
Set objwb = objExcel.ActiveWorkbook.Worksheets(shtName)
Objwb.Name = "Active Directory Users" ' name the sheet
objwb.Activate
objExcel.Visible = True
objwb.Cells(1, 2).Value = "SamAccountName"
objwb.Cells(1, 3).Value = "CN"
objwb.Cells(1, 4).Value = "FirstName"
objwb.Cells(1, 5).Value = "LastName"
objwb.Cells(1, 6).Value = "Initials"
objwb.Cells(1, 7).Value = "Descrip"
objwb.Cells(1, 8).Value = "Office"
objwb.Cells(1, 9).Value = "Telephone"
objwb.Cells(1, 10).Value = "Email"
objwb.Cells(1, 11).Value = "WebPage"
objwb.Cells(1, 12).Value = "Addr1"
objwb.Cells(1, 13).Value = "City"
objwb.Cells(1, 14).Value = "State"
objwb.Cells(1, 15).Value = "ZipCode"
objwb.Cells(1, 16).Value = "Title"
objwb.Cells(1, 17).Value = "Department"
objwb.Cells(1, 18).Value = "Company"
objwb.Cells(1, 19).Value = "Manager"
objwb.Cells(1, 20).Value = "Profile"
objwb.Cells(1, 21).Value = "LoginScript"
objwb.Cells(1, 22).Value = "HomeDirectory"
objwb.Cells(1, 23).Value = "HomeDrive"
objwb.Cells(1, 24).Value = "Adspath"
objwb.Cells(1, 25).Value = "LastLogin"
objwb.Cells(1, 26).Value = "Primary SMTP"
End Sub
MsgBox "Done" ' show that script is complete
저작자 표시 비영리 동일 조건 변경 허락
Creative Commons License
Creative Commons License
Trackback 0 : Comment 0

PSTool 을 이용한 local admin password 변경

Microsoft/NT 2009/06/30 15:41

도메인에 가입된 컴퓨터의 로컬어드민 패스워드 변경은 스크립트 파일을 이용할 수도 있지만,

간단하게,
PSTools 내에 pspasswd로 도메인내의 컴퓨터에 local administrator패스워드를 일괄 변경시킬수 있다.


pspasswd 이외에 유용한 툴들의 모음집(?) 이다. 자세한내용은 링크된 웹사이트 참조


실행은 도메인 컨트롤러에서 수행하여야 동일 도메인아래의 모든 컴퓨터 패스워드가 변경 가능하다.
다운로드후 설치된 디렉토리로 이동,,cmd 커맨드를 이용하여 pspasswd 를 실행한다.


아래예제 처럼 도메인내 모든 컴퓨터로("\\*") 지정할 수도 있고 특정 컴퓨터만 따로 지정할 수 있다.





저작자 표시 비영리 동일 조건 변경 허락
Creative Commons License
Creative Commons License
Trackback 0 : Comment 0

IIS Default Web Site 날려먹었을때

Microsoft/NT 2009/06/22 18:05
The Default Website in IIS is not really any special. It is just a website, created after the installation of IIS. Some applications do however work only with the Default Website, and when you try install them after you have deleted the default website, it will fail. So there has to be something special with the Default Website, right?

Every website in IIS has a unique site identification number. The Default Website always has number 1. This number is probably what these applications are looking for.

So, to re-create the Default Website, you just have to give a website the ID number of 1. This can be done with Metabase Explorer. Start Metabase Explorer, click the website ID, and click F2 on your keyboard. Then write a new number, and close Metabase Explorer.
So, there is really no default website, the first website created (during the installation) just happen to be named "Default Website".
저작자 표시 비영리 동일 조건 변경 허락
Creative Commons License
Creative Commons License
tags : ISS
Trackback 0 : Comment 0

[본문스크랩] 윈도우 7 : IT 부서가 영웅으로 거듭날 수 있는 기회

Microsoft/NT 2009/06/22 17:42

얼마 전 가브리엘라 슈스터가 윈도우 비즈니스 블로그에 다음과 같은 글을 올려 소비자들을 혼란스럽게 하고 있다.

 

“마이크로소프트는 일부 소비자들이 오늘날 윈도우 비스타를 설치하는 대신 윈도우 7이 출시될 때까지 기다리는 방안을 고려중임을 알고 있다. 이들은 향후 당황하는 일이 없도록 다음의 고려 사항들을 인지해 두길 바란다. 비스타를 건너뛴 기업들은 애플리케이션들이 윈도우 XP에서 지원이 중단되고 윈도우 7에서는 아직 지원되지 않는 상황에 직면할 수 있다. (이 같은 설치 현실을 감안할 때) 여러분들은 여타 신규 운영체제와 마찬가지로 설치에 앞서 윈도우 7이 각자의 PC 환경에 적합한지 여부를 평가하길 원할 것이다. 윈도우 7이 비스타와 약 3년의 간격을 두고 출시될 예정인 점을 감안할 때, 이들이 윈도우 7을 설치하는데 까지 걸리는 총 소요시간은 비스타 출시 이후 5년 이내가 될 가능성이 높다.”

 

과연 이것이 무슨 의미일까? 혼란스럽다고 느끼지 않을 수 없는 것이, 윈도우 XP에서 지원이 중단되고 윈도우 7에서는 아직 지원되지 않고 있다는 이들 애플리케이션들은 정확히 어떤 것들인지, 그리고, 이와 관련해 비스타가 어떻게 도움을 주겠다는 것인지 궁금하다.

 

마이크로소프트가 윈도우 7의 장점들을 테스트해보고 나서 마이그레이션 결정을 하는 것보다 비용 부담이 두 배로 늘어나는 XP -> 비스타 -> 윈도우 7의 마이그레이션을 권장하는 것이 진정 현명한 것일까? 마이크로소프트가 사용자들이 윈도우 7의 출시를 기다리는 동안 시장이 냉각되기를 원하지 않을 것이라는 점은 잘 알고 있다. 마이크로소프트는 현재 비스타 라이선스의 매출을 증대시키길(또는 적어도 IT 전문가들이 이미 확보해 둔 비스타 라이선스를 설치하길) 바라고 있을 것이다. 그러나 이 같은 권고는 마이크로소프트가 줄곧 이야기해 왔던 운영체제 호환성 이야기와 상반되는 것이다.

 

한편, 다가오는 늦봄에는 윈도우 7의 안정화 버전이 등장할 것으로 보인다.(결국, 윈도우 7은 비스타의 업데이트 버전이었다.) 이런 예상대로라면 IT 부서들은 전례 없는 기회를 얻게 된다. 비스타 단계 전체를 건너뛰는 윈도우 7 안정화 버전을 이용해 조직 전체의 순차적인 윈도우 7 도입을 준비하는 것이다. 이들은 비용이 많이 드는 비스타로의 마이그레이션을 현명하게 피했다 칭송 받으며 IT 영웅 대접을 받을 수 있을 것이다. 이를 현실화하기 위해 IT 부서들이 지금 준비해야 하는 것들에는 어떤 것들이 있을까?

 

- 애플리케이션 분리수거. 비스타에서 작동되지 않는 애플리케이션들은 모두 제거한다. 비스타에서 작동되지 않는다면, 윈도우 7에서도 작동되지 않을 가능성이 높다. 점진적으로 이들 구 애플리케이션들을 제거하고 신규 애플리케이션 설치를 고려한다.

 

- 매니지드 PC 환경. 매니지드 PC 환경은 비매니지드 PC 환경에 비해 지원이 훨씬 수월하다. 매니지드 PC 환경에서는 행정적 업무들이 수월해질 것이며, 지원 비용도 크게 낮아질 것이다. 그리고 (마이크로소프트가 마이그레이션하라고 명령할 때가 아니라 마이그레이션할 준비가 되었을 때) 더욱 원활한 마이그레이션도 기대할 수 있다.

 

- 단계적 업그레이드. 힘든 부분이다. 그러나 윈도우 95/98/2000 등의 모든 운영체제를 떠나보내야 할 때다. 그러나 이들 모두를 한꺼번에 해야 할 필요는 없다. 통상적인 기기교체의 일환인 것처럼 윈도우 7을 설치하는 단계적 마이그레이션이 이를 도와줄 것이다. XP에서는 사용 가능한 기기들이 윈도우 7에서는 사용 불가능한 경우들이 있을 것이다. 따라서, 베타 버전을 이용한 테스트가 요구된다. 현재로써는 XP 서비스 팩 3에 중점을 두어라. 윈도우 7은 출시되면 그때 생각해도 된다.

 

윈도우 7이 매력적인 것은 사실이지만, 업그레이드가 반드시 윈도우를 의미하는 것만은 아니다. 향후 2년간은 조직 내 각 부서들에 적합한 운영체제가 어떤 것인지를 판별할 수 있는 좋은 기회가 될 것이다. 리눅스와 맥이 대표적인 대체 운영체제인데, 리눅스의 경우 아직까지 데스크톱 부문에서는 미진한 부분이 많지만 점차 개선되고 있으며, 특정 환경에 탁월한 성능을 보인다. 맥의 경우 안정적인 유닉스 기반의 운영체제로, 지원 리소스를 과도하게 사용하지 않고도 수많은 비즈니스 요구를 충족시킬 수 있다.

 

모든 IT 부서들은 시종일관 두 가지 과제에 직면하고 있는데, 하나는 부고기사를 멀리하는 것이며, 다른 하나는 이따금씩 머리기사에 등장하는 것이다. 윈도우 7의 출시는 이들에게 긍정적인 머리기사를 안겨줄 좋은 기회이다. 마이크로소프트의 충고를 심각하게 받아들이지 않는 한 말이다.  editor@idg.co.kr

저작자 표시 비영리 동일 조건 변경 허락
Creative Commons License
Creative Commons License
tags : win7
Trackback 0 : Comment 0

비스타와 윈7 속도 비교(다나와)

Microsoft/NT 2009/06/18 12:25


출처: 다나와 묻지마 실험실 www.danawa.com 실험결과: 높은 성능의 PC일수록 더 빨라진 윈칠이를 느낄수 있다고 한다.
저작자 표시 비영리 동일 조건 변경 허락
Creative Commons License
Creative Commons License
tags : 비스타, 윈7
Trackback 0 : Comment 0

초간단 DC promotion 방법 캡쳐

Microsoft/NT 2009/05/21 11:25
정말 간단하게 단일 도메인 환경의 AD구성예제
쓰고나서 봐도 정말 간단하다....ㅡㅡ;;;

리부팅하면 AD완성!~
Creative Commons License
Creative Commons License
Trackback 0 : Comment 0

MS product list 2009

Microsoft/NT 2009/05/19 15:20
Microsoft Product List for FY09

Creative Commons License
Creative Commons License
Trackback 0 : Comment 0

ISA 2006 설치 및 구성 가이드

Microsoft/NT 2009/05/18 17:37
ISA 2006 설치 및 구성 가이드

Creative Commons License
Creative Commons License
Trackback 0 : Comment 0