Win10 does change how the memory manager pages out driver code. Before W10 the driver is backed by the page file, allowing you to copy over the driver when it is loaded. In W10, the driver is backed by the driver file on disk (same behavior as a dll and
exe) and thus you cannot overwrite the file if the driver is still loaded
이에 대해서 아래 내용과 같이 파일의 이름을 바꾸어 문제를 피해갈 수 있는 방법이 있을 수 있습니다.
Simply rename the file. Once renamed the properly named file can be written in its place. This may not be a suitable or proper solution but it is certainly a suitable failover approach.
Win10 does change how the memory manager pages out driver code. Before W10 the driver is backed by the page file, allowing you to copy over the driver when it is loaded. In W10, the driver is backed by the driver file on disk (same behavior as a dll and
exe) and thus you cannot overwrite the file if the driver is still loaded
이에 대해서 아래 내용과 같이 파일의 이름을 바꾸어 문제를 피해갈 수 있는 방법이 있을 수 있습니다.
Simply rename the file. Once renamed the properly named file can be written in its place. This may not be a suitable or proper solution but it is certainly a suitable failover approach.