Visual C++ Redistributable / vcredist_x86.exe 배포 - NSIS Script

http://blog.daum.net/aonezip/37

 

NSIS Sample Script – Visual C++ 2008 Redistributable 9.0.30729.17

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
!define TIMEDOT "vcredist_x86.exe"
  
Function .onInstSuccess
  Call CheckVCRedist
   Pop $R0 
   StrCmp $R0 "-1" 0 +3
   MessageBox MB_OK|MB_ICONSTOP "프로그램 실행을 위해 Visual C++ 2008 Redistributable를 설치합니다."
   ExecWait "$INSTDIR\${TIMEDOT}"   
FunctionEnd
  
Function CheckVCRedist
   Push $R0
   ClearErrors
   ReadRegDword $R0 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{9A25302D-30C0-39D9-BD6F-21E6EC160475}" "Version"
  
   ; if VS 2005+ redist SP1 not installed, install it
   IfErrors 0 VSRedistInstalled
   StrCpy $R0 "-1"
  
VSRedistInstalled:
   Exch $R0
FunctionEnd