원래 목적은 부대에서 컴퓨터들 포맷하고 여러 프로그램 설치 중 수동으로 설치하는게 불편해서 이를 자동화하고 싶었음설치프로그램 확장자는 msi, exe인데 한번 검색해봤음. msi는 msiexec.exe /? 해보면 옵션이 나옴/quiet /passive /q[n,f,...] 등등 해보니까 됐음엄청 간단했다. 근데 exe는 뭘로 만들었냐에 따라 다른듯InstallShield도 있고 NSIS도 있고 sfx도 있다는데 보통 /s로 silent install이 가능하다나와있었지만 다 안됐음몇몇 프로그램은 반디집으로 열면 그 안에 dotnet.msi, install.msi 이런식으로 있었는데 install.msi만 빼서 위의 방법으로 해도 되는진 모르겠음프로그램마다 옵션은 있는것같은데 /s로 해도 잘안됨
분류 전체보기
Semaphore vs. Monitors - what's the difference? Monitor A Monitor is an object designed to be accessed from multiple threads. The member functions or methods of a monitor object will enforce mutual exclusion, so only one thread may be performing any action on the object at a given time. If one thread is currently executing a member function of the object then any other thread that tries to call ..
복잡한 선언문을 어떻게 읽어야하나에 관한 글입니다. 헷갈려서 찾아봤더니 좋은글이 있더군요. 번역해서 올려보려 했는데 영어로 읽는게 차라리 읽기 더 편한것 같아 링크만 올려봅니다. C Right-Left Rule(Rick Ord's CSE 30 - UC San Diego) http://ieng9.ucsd.edu/~cs30x/rt_lt.rule.html