windows (2) 썸네일형 리스트형 .bat 파일, 배치파일(batch) 안 보이게 실행시키기 보통 이렇게 다들 적어놓던데 Set WshShell = CreateObject("WScript.Shell") WshShell.Run chr(34) & ["실행시킬 배치 스크립트 파일등의 전체경로"] & Chr(34), 0 Set WshShell = Nothing이렇게 하면 물론 되지만 동적으로 파일 경로를 설정해야 하는 경우가 있다. 현재 폴더의 service.bat 파일을 숨김 상태로 실행시키려면 이렇게 하면 된다. Set WshShell = CreateObject("WScript.Shell") Path = WScript.ScriptFullName Path = Left(Path, InStrRev(Path, "\")) WshShell.CurrentDirectory = Path WshShell.run Ch.. NSIS StrContains 해당 문자가 있는지 확인 참조 https://nsis.sourceforge.io/StrContains String에 해당 문자가 있는지 확인하기 Function Code ; StrContains ; This function does a case sensitive searches for an occurrence of a substring in a string. ; It returns the substring if it is found. ; Otherwise it returns null(""). ; Written by kenglish_hi ; Adapted from StrReplace written by dandaman32 Var STR_HAYSTACK Var STR_NEEDLE Var STR_CONTAINS_VAR_1 Var ST.. 이전 1 다음