gitso

gitso Commit Details


Date:2008-08-07 19:55:10 (16 years 4 months ago)
Author:xburnerx
Branch:master
Commit:51e680e0baf342aeadc4bd8299e35ee6ba16f555
Parents: a39d7116458a97486bd2cd65d13a51c89c2dca6e
Message:fixed uninstall stuff and added some default registry options to make TightVNC work better

Changes:

File differences

gitso/trunk/makegitso.nsi
1818
1919
2020
21
21
2222
2323
2424
......
4040
4141
4242
43
44
45
4643
4744
4845
4946
5047
48
49
50
51
52
53
54
55
56
57
58
5159
5260
5361
......
5866
5967
6068
61
62
63
69
6470
6571
72
6673
6774
6875
69
7076
7177
7278
7379
74
;--------------------------------
; Version Information
VIProductVersion "0.0.0.0"
VIProductVersion "0.5.0.0"
VIAddVersionKey "ProductName" "Gitso"
VIAddVersionKey "Comments" "Gitso is to support others"
VIAddVersionKey "CompanyName" "http://code.google.com/p/gitso"
Section "Gitso"
SectionIn RO
SetOutPath $INSTALLDIR
File ".\icon.ico"
File ".\hosts.txt"
File ".\Gitso.py"
;need to add gitso's exe file here after created with py2exe or something like it
SetOutPath $WINDIR
File ".\arch\win32\vncviewer.exe"
File ".\arch\win32\WinVNC.exe"
File ".\arch\win32\VNCHooks.dll"
CreateShortCut "$INSTDIR\gitso.exe" "$INSTDIR\gitso.exe" "" "$INSTDIR\gitso.exe" 0
WriteRegDWORD HKCU "Software\ORL\WinVNC3" "RemoveWallpaper" 1
WriteRegDWORD HKCU "Software\ORL\WinVNC3" "EnableFileTransfers" 1
;set default password to something so WinVNC.exe doesn't complain about having no password
WriteRegBin HKCU "SOFTWARE\ORL\WinVNC3" "Password" "238f16962aeb734e"
WriteRegBin HKCU "SOFTWARE\ORL\WinVNC3" "PasswordViewOnly" "b0f0ac1997133bc9"
;Try to set it for all users, but I'm not positive this works
WriteRegDWORD HKLM "Software\ORL\WinVNC3" "RemoveWallpaper" 1
WriteRegDWORD HKLM "Software\ORL\WinVNC3" "EnableFileTransfers" 1
WriteRegBin HKLM "SOFTWARE\ORL\WinVNC3" "Password" "238f16962aeb734e"
WriteRegBin HKLM "SOFTWARE\ORL\WinVNC3" "PasswordViewOnly" "b0f0ac1997133bc9"
SectionEnd
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\RMTT"
DeleteRegKey HKLM SOFTWARE\RMTT
; Remove files and uninstaller
Delete $WINDIR\revealer.dll
Delete $WINDIR\revealer.exe
Delete $WINDIR\Startup.exe
Delete $WINDIR\vncviewer.exe
Delete $WINDIR\VNCHooks.dll
Delete $WINDIR\WinVNC.exe
Delete $INSTDIR\gitso.exe
RMDir /r $INSTDIR
Delete $INSTDIR\uninstall.exe
Delete "$DESKTOP\RMTT.lnk"
Delete "$WINDIR\Tasks\Spyware Scan.job"
; Remove shortcuts and folder
RMDir /r "$SMPROGRAMS\RMTT"
RMDir "$INSTDIR"
SectionEnd

Archive Download the corresponding diff file

Branches

Number of commits:
Page rendered in 0.08634s using 13 queries.