아래글 보시기 전에 정책임님의 글을 먼저 보시는 편이 나을듯하여
맨위에 추가적으루다가 적습니다.

Microsoft .NET Framework 2.0 Configuration 수동 설치
; http://www.sysnet.pe.kr/2/0/223




Windows 2008 Server  에서  .NET Framework Configuration 도구를 찾을 수 없는 사태가 발생했습니다.
ㅡㅡ'

현재 Windows 2008 Server 에서 VisualStudio 2008 루다가 개발을 진행중에 있는데요...
보안 정책을 설정, 배포 해야할일이 있어서 찾아 보게되었는데...
이게 왠걸... ㅡㅡ'

당연히 있을 거라 생각했던 녀석이 없는 것이 아니겠습니까? ㅡㅡ'

구글링 결과
이 녀석을 다운 받아서 설치하라는 군요..

Windows SDK for Windows Server 2008 and .NET Framework 3.5

아래는 설치 화면 모습입니다.








그러나 !!! ㅡㅡ'

나타나지 않더라는...
한마디로 그 긴시간동안 헛짓, 뻘짓, 삽질했다는... ㅡㅡ'

그래서 찾아다니다...
한 사이트를 찾았습니다.
http://www.technowise.in/2009/03/net-framework-20-configuration-tool.html

Configuration Tool 만 설치해주는... ㅡㅡ'




이제야 나타났군요...
아주 작은 것에 기뻐하는... ^^'

위 사이트페이지에 가시면 받으실 수 있지만...
저도 휘리릭... 링크걸어봅니다.

.NET Framework configuration tool installer(MSI)


이제 할 걸 해봐야겠습니다. ^^

행복한 고수되십시요...
반응형

'.NET' 카테고리의 다른 글

[.NET] Bit 연산에 대한 내용입니다.  (0) 2014.05.07
[.NET] Telerik Code Convertor  (0) 2014.05.07
[.NET] Visual Studio 2010 Express  (0) 2010.05.11
[.NET] Silverlight 4 Training  (0) 2010.04.25
[.NET] VS 2010 Keyboard Shortcut Posters  (0) 2010.04.16

1) Process 를 이용해서 Powerpoint 를 실행

    1         Dim MyStartInfo As New Diagnostics.ProcessStartInfo(strFileName)

    2 

    3         Dim MyProcess As New Diagnostics.Process

    4         MyProcess.StartInfo = MyStartInfo

    5         MyProcess.Start()


2) PowerPoint 의 instance 를 생성하여 선언한 변수에 할당

    1 

    2         Dim app As Microsoft.Office.Interop.PowerPoint.Application

    3         Dim pre As Microsoft.Office.Interop.PowerPoint.Presentation

    4 

    5         'app = DirectCast(GetObject("Powerpoint.Application"), Microsoft.Office.Interop.PowerPoint.Application)

    6         app = DirectCast(CreateObject("Powerpoint.Application", ""), Microsoft.Office.Interop.PowerPoint.Application)

    7 

    8         app = New Microsoft.Office.Interop.PowerPoint.Application()

    9 

   10         Pre = app.Presentations.Open(strFileName, Microsoft.Office.Core.MsoTriState.msoTrue, Microsoft.Office.Core.MsoTriState.msoTriStateMixed, 0)


3) 1)을 이용해서 생성한 PowerPoint 의 instance 를 BindToMoniker 를 이용해서 선언한 변수에 할당

    1         Dim MyStartInfo As New Diagnostics.ProcessStartInfo(strFileName)

    2         Dim MyProcess As New Diagnostics.Process

    3 

    4         MyProcess.StartInfo = MyStartInfo

    5         MyProcess.Start()

    6 

    7         Dim pre As Microsoft.Office.Interop.PowerPoint.Presentation

    8 

    9         pre = DirectCast(System.Runtime.InteropServices.Marshal.BindToMoniker(strFileName), Microsoft.Office.Interop.PowerPoint.Presentation)



흠... 그런데 안타까운 것은 위 모든 방법들이 XP 에서는 통용이 되지만
Window7 으로 올라와서는 Error 를 발생한다는 것.
간단한 예제에서는 에러 없이 실행이 되지만 많은 COM 들 속에서는 에러를 발생한다는 것.
하나하나 잡아야 하는 숙제가 있긴 하지만 많은 Case 를 테스트해 나가야하는 숙제가 남아 있다.

각 OS 에 대한, 각 Office Version 에 대한 Test를 진행해야한다.

대표적인 에러는
다음과 같다.


으잉? Monikor 에 대한 에러메세지만 있네...

다른 에러메세지는 캡쳐해서 다시 올리겠습니다.^^'


행복한 고수되십시요...

반응형

아래에서 다운로드 받으셔요... ㅡㅡ'

Download details: Office 2003 Editions Resource Kit Tools

행복한 고수되셔요...
반응형

+ Recent posts