Powershell에서 System.IO.Compression.FileSystem.dll을 사용할때 아래와 같은 오류가 발생한다면,
Add-Type : 유형을 추가할 수 없습니다. 'system.io.compression.filesystem' 어셈블리를 찾을 수 없습니다. |
아래의 소스 코드를 수정합니다.
수정 전
Add-Type -assembly "system.io.compression.filesystem" |
수정 후
Add-Type -Path "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\System.IO.Compression.FileSystem.dll" |
수정 후 명령을 다시 실행해보면, 아래와 같이 잘 실행됩니다.
'etc' 카테고리의 다른 글
(GitHub) Repository 삭제 (0) | 2020.07.02 |
---|---|
델 Intel 6세대 (Skylake) CPU 사용 컴퓨터에 Windows 7 설치 방법 (0) | 2016.11.15 |
Powershell System.IO.Compression.FileSystem.dll 오류 (0) | 2016.07.15 |
Powershell 실행 오류 (0) | 2016.07.15 |
컴퓨터 인증서, 사용자 인증서 MMC 실행 명령 (0) | 2016.06.29 |