반응형 Programming4 [C++] Change dll order with SetDllDirectoryA windows system32 폴더에 onnxruntime.dll이 포함되면서 내 프로젝트와 맞지 않는 버전이 호출되는 문제가 생겼다. 그래서 찾아본 결과 MSDN 에 이렇게 나와있다. https://learn.microsoft.com/en-us/windows/win32/dlls/dynamic-link-library-search-order If safe DLL search mode is enabled, then the search order is as follows: DLL Redirection. API sets. SxS manifest redirection. Loaded-module list. Known DLLs. Windows 11, version 21H2 (10.0; Build 22000), and.. 2023. 6. 15. [Batch script] Windows Update Uninstall Script 작업 환경 -OS : Windows 8.1K 작업 개요 -Windows Update 삭제를 위한 배치 스크립트 1. Script @echo off wusa /uninstall /quiet /norestart /KB:업데이트 KB번호 exit 2017. 1. 21. [Batch script] Batch Script 사용법 작업 개요 -배치 스크립트 사용 방법 1. 사용법 메모장에서 배치스크립트 작성 저장 시 파일이름.bat 로 저장 실행 시 관리자 권한으로 실행 2. 배치 스크립트 기본 틀 스크립트 제작 시 자주 사용하는 기본 틀 @echo off :main cls set menu= set /p menu=번호를 입력 후 엔터를 눌러주세요 : if "%menu%" == "1" goto static if "%menu%" == "2" goto exit goto main :static goto exit :exit exit 3. 배치 스크립트 Compile 스크립트 제작 후 exe파일로 제공하고 싶을 때 툴을 사용하여 컴파일 후 배포 툴 사용법 : [Windows] F2KO Bat To Exe Converter [Windows] .. 2017. 1. 21. [C] 입출력 함수 printf, scanf 1. printf 사용법 printf("문자열") : "문자열" 출력 printf("\n") : 개행 printf("%d %c %s %f \n", int 변수, char 변수, char[] 변수, float 변수) : 각 변수 출력 2. scanf() 2016. 12. 26. 이전 1 다음 반응형