IT/C#

[C#][Solved] Couldn't process file From '.resx' due to its being in the internet

Ella.J 2024. 4. 4. 16:20
728x90
반응형

 

Couldn't process file From '.resx' due to its being in the internet or Restricted zone or having the mark of the web on the file. Remove the mark of the web if you want to process these files.
'.resx' 파일은 인터넷 또는 제한 영역에 있거나 파일에 웹 표시가 있으므로 처리할 수 없습니다. 이러한 파일을 처리하려면 웹 표시를 제거하세요.
 
 

첫 번째 방법.

파일 속성에서 바꾸는 방법.

 

1. 해당 폴더에서 *.resx 모든 파일 검색

 

2. 해당 resx 파일 우클릭 > Properties (속성) 클릭

 

3. Unblock 체크 후 Apply 클릭

This file came from another computer and might be blocked to help protect this computer.
 이 파일은 다른 컴퓨터로부터 왔으며 사용자의 컴퓨터를 보호하기 위해 차단되었을 수도 있습니다.

 
 

두 번째 방법.

Windows PowerShell 관리자 권한으로 폴더 내의 파일 전부 Unblock 해주기.

 

1. Windows PowerShell 검색 > Run as Administrator (관리자 권한으로 실행하기)

 

2. gci -Recurse "폴더경로" | Unblock-File 입력하기

 

728x90
반응형