-
-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[버그] 인터넷등기소 인쇄 기능 작동 안함 #108
Labels
버그
기능에 이상이 있습니다.
Comments
https://github.com/nfedera/run-as-trustedinstaller/blob/master/run-as-trustedinstaller/main.cpp 위의 내용을 토대로 VC++ 2008 런타임 재배포 패키지가 샌드박스 내에서 설치가 가능할지 살펴보려 함. |
다음의 PowerShell 명령어를 실행하여 VC++ 2008 Redist x86/x64가 모두 설치되는 것을 확인함. takeown /f c:\windows\winsxs /a /r /d Y
icacls "C:\windows\winsxs" /grant "Administrators:(OI)(CI)F" /T
mkdir C:\Windows\winsxs\Fusion | Out-Null
mkdir C:\Windows\winsxs\InstallTemp | Out-Null
Set-Service -StartupType Automatic -ServiceName TrustedInstaller
Start-Service -ServiceName TrustedInstaller |
결제 페이지로 넘어가지 않는 현상의 경우, 인터넷등기소는 IE Mode를 해제해야 하는 것으로 보여 카탈로그를 수정함. |
rkttu
pushed a commit
to yourtablecloth/TableClothCatalog
that referenced
this issue
Feb 4, 2023
yourtablecloth/TableCloth#108 관련 문제 해결 확인
추가 확인 - VC++ 2005 Redist Runtime 설치도 잘 통과되는 것을 확인함. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
인터넷등기소 인쇄 기능이 Windows Sandbox 상에서는 작동하지 않도록 차단된 것을 확인함 (2023-02-04)
<Package Name="VCRedistManual" Url="http://www.iros.go.kr/iris/VCRedist_sudong.exe" Arguments="/silent" MitigateWinSxS="True" />
아래는 2차 조사 기록:
샌드박스 내에서 Fusion 디렉터리를 Administrators 계정으로도 만들 수 있게 처리하는 방법이 필요하지 않을지 검토 필요.다만 위의 조건을 만족시키기 위한 절차가 까다로운편. WDAGUtilityAccount나 Administrators 중 어느쪽에 권한을 주는 것이 맞는지도 불명확. 수동 fix 가이드를 먼저 작성해야 할 필요가 있음.아래는 초기 조사 기록:
좀 더 확인해봤을 때, 원인은 VC++ 2008 재배포 패키지가 제대로 설치되지 않았기 때문인 것으로 보임. 그런데 Windows Sandbox에서는 2023년 2월 현재 VC++ 2008 재배포 패키지를 정상적으로 설치할 방법이 마땅치 않음.참고: 오류가 발생할 때 "Microsoft.VC90.ATL,version='9.0.30729.6161',publicKeyToken="1fc8b3b9a1e18e3b",processorArchitecture="x86",type="win32" 또는 Microsoft.VC90.ATL,version='9.0.30729.6161',publicKeyToken="1fc8b3b9a1e18e3b",processorArchitecture="amd64",type="win32" 어셈블리의 경로를 찾을 수 없다고 나옴.VC++ 2005, 2008 런타임 모두 비슷한 오류가 발생하고, VC++ 2010 런타임부터는 보이지 않음.호환성 문제를 개선할 여지가 있을지, 아니면 이전에 #97 에서 논의한 것과 같이 Hyper-V를 응용한 Sandbox 레플리카 VM을 Windows에서도 그대로 도입할지 고민이 필요한 부분이라고 생각함.The text was updated successfully, but these errors were encountered: