https://blog.techinline.com/2018/11/21/disable-microsoft-edge-and-internet-explorer-in-windows-10/

 

 Disable Microsoft Edge in Windows 10

  1. Go to C:\Windows\SystemApps.
  2. Locate the Microsoft Edge folder. Copy and save the name of the folder anywhere you like, as you might need it later on if you want to re-enable the app.
  3. Right-click the Microsoft Edge folder and rename it (you can give it any name you want).
  4. Click Continue. After this, Microsoft Edge should be disabled.

To re-enable the application, give the Microsoft Edge folder its original name back.

CFX Launcher --> Tool --> Command


cfx5cmds -read -def mydef.def -text mydef.txt  (transforms def file into text file)





Then Edit mydef.txt file 



THERMAL CONDUCTIVITY:

Option = Orthotropic Cartesian Components

Thermal Conductivity X Component = 1200[W m^-1 K^-1]

Thermal Conductivity Y Component = 1200 [W m^-1 K^-1]

Thermal Conductivity Z Component = 10 [W m^-1 K^-1]





Now apply modified txt file to def file 

 


cfx5cmds -write -def mydef.def -text mydef.txt 


Windows 설치를 사용하여 UEFI 기반 PC에 Windows를 설치할 경우 하드 드라이브 파티션 스타일은 UEFI 모드 또는 레거시 BIOS 호환 모드를 지원하도록 설정해야 합니다.

예를 들어 "이 디스크에 Windows를 설치할 수 없습니다. 선택한 디스크가 GPT 파티션 스타일이 아닙니다”라는 오류 메시지가 표시되는 것은 PC가 UEFI 모드에서 부팅되었지만 하드 드라이브가 UEFI 모드를 지원하도록 구성되지 않았기 때문입니다. 몇 가지 옵션이 있습니다.

  1. 레거시 BIOS 호환 모드에서 PC를 다시 부팅합니다. 이 옵션을 사용하면 기존 파티션 스타일을 유지할 수 있습니다. 자세한 내용은 UEFI 모드 또는 레거시 BIOS 모드로 부팅을 참조하세요.

  2. GPT 파티션 스타일을 사용하여 UEFI를 지원하도록 드라이브를 다시 포맷합니다. 이 옵션을 사용하면 PC의 UEFI 펌웨어 기능을 사용할 수 있습니다.

Windows 설치 내에서 Shift+F10을 눌러 명령 프롬프트 창을 엽니다.

드라이브를 다시 포맷합니다.

  • UEFI 모드: DiskPart를 사용하여 드라이브를 정리하고 GPT 파티션 스타일로 변환합니다.

    diskpart
    list disk
    select disk <disk number>
    clean
    convert gpt
    exit
    
  • 레거시 BIOS 호환 모드: DiskPart를 사용하여 드라이브를 정리하고 기본 파티션 스타일(MBR)을 사용합니다.

    diskpart
    list disk
    select disk <disk number>
    clean
    exit
    

이때 명령 프롬프트 창을 닫은 다음 Windows 설치 프로그램 설치를 계속할 수 있습니다.


출처 : https://msdn.microsoft.com/ko-kr/library/dn336946.aspx?f=255&MSPPError=-2147217396



+ Recent posts