1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
!verbose 3
!include "WinMessages.NSH"
!verbose 4
; AddToPath - Adds the given dir to the search path.
; Input - head of the stack
; Note - Win9x systems requires reboot
; Usage:
; Push "directory" or ".ext"
; Push "true" or "false"
; Push "PATH" or "PATHEXT"
; Call AddToPath
Function AddToPath
Pop $R8 ; env variable; PATH or PATHEXT
Pop $R7 ; "true" or "false" if admin user
Exch $0
Push $1
Push $2
Push $3
StrCpy $4 "$0" ;save install directory in $4
; don't add if the new item already exists in the registry value
StrCmp $R7 "true" ReadPath_AllUsers
ReadRegStr $1 HKCU "Environment" "$R8"
Goto ReadPath_UserCont
ReadPath_AllUsers:
ReadRegStr $1 HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "$R8"
ReadPath_UserCont:
Push "$1;"
Push "$0;"
Call StrStr
Pop $2
StrCmp $2 "" "" AddToPath_done
Push "$1;"
Push "$0\;"
Call StrStr
Pop $2
StrCmp $2 "" "" AddToPath_done
;
; Only compare shortpath if PATH env variable
;
StrCmp $R8 "PATH" "" AddToPath_Not_PATH
GetFullPathName /SHORT $3 $0
Push "$1;"
Push "$3;"
Call StrStr
Pop $2
StrCmp $2 "" "" AddToPath_done
Push "$1;"
Push "$3\;"
Call StrStr
Pop $2
StrCmp $2 "" "" AddToPath_done
Goto AddToPath_cont
AddToPath_Not_PATH:
StrCpy $3 $0
AddToPath_cont:
Call IsNT
Pop $1
StrCmp $1 1 AddToPath_NT
; Not on NT
StrCpy $1 $WINDIR 2
FileOpen $1 "$1\autoexec.bat" a
FileSeek $1 -1 END
FileReadByte $1 $2
IntCmp $2 26 0 +2 +2 # DOS EOF
FileSeek $1 -1 END # write over EOF
FileWrite $1 "$\r$\nSET $R8=%$R8%;$3$\r$\n"
FileClose $1
SetRebootFlag true
Goto AddToPath_done
AddToPath_NT:
StrCmp $R7 "true" AddToPath_AllUsers
ReadRegStr $1 HKCU "Environment" "$R8"
Goto AddToPath_UserCont
AddToPath_AllUsers:
ReadRegStr $1 HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "$R8"
AddToPath_UserCont:
StrCpy $2 $1 1 -1 # copy last char
StrCmp $2 ";" 0 +2 # if last char == ;
StrCpy $1 $1 -1 # remove last char
StrCmp $1 "" AddToPath_NTdoIt ; if current value is blank, do not prepend existing value
StrCpy $0 "$1;$0"
AddToPath_NTdoIt:
StrCmp $R7 "true" AddToPath_AllUsers_doit
; writing registry for current user
WriteRegExpandStr HKCU "Environment" "$R8" $0
DetailPrint "$4 added to $R8 for Current User"
Goto AddToPath_UserCont_doit
AddToPath_AllUsers_doit:
; writing registry for all users
WriteRegExpandStr HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "$R8" $0
DetailPrint "$4 added to $R8 for All Users"
AddToPath_UserCont_doit:
SendMessage ${HWND_BROADCAST} ${WM_SETTINGCHANGE} 0 "STR:Environment" /TIMEOUT=10000
AddToPath_done:
Pop $3
Pop $2
Pop $1
Pop $0
FunctionEnd
; RemoveFromPath - Remove a given dir from the path
; Input: head of the stack
; Usage:
; Push "directory" or ".ext"
; Push "true" or "false"
; Push "PATH" or "PATHEXT"
; Call un.RemoveFromPath
Function un.RemoveFromPath
Pop $R8 ; env variable; PATH or PATHEXT
Pop $R7 ; "true" or "false" if admin user
Exch $0
Push $1
Push $2
Push $3
Push $4
Push $5
Push $6
IntFmt $6 "%c" 26 # DOS EOF
Call un.IsNT
Pop $1
StrCmp $1 1 unRemoveFromPath_NT
; Not on NT
StrCpy $1 $WINDIR 2
FileOpen $1 "$1\autoexec.bat" r
GetTempFileName $4
FileOpen $2 $4 w
;
; Only compare shortpath if PATH env variable
;
StrCmp $R8 "PATH" "" unRemoveFromPath_Not_PATH
GetFullPathName /SHORT $0 $0
unRemoveFromPath_Not_PATH:
StrCpy $0 "SET $R8=%$R8%;$0"
Goto unRemoveFromPath_dosLoop
unRemoveFromPath_dosLoop:
FileRead $1 $3
StrCpy $5 $3 1 -1 # read last char
StrCmp $5 $6 0 +2 # if DOS EOF
StrCpy $3 $3 -1 # remove DOS EOF so we can compare
StrCmp $3 "$0$\r$\n" unRemoveFromPath_dosLoopRemoveLine
StrCmp $3 "$0$\n" unRemoveFromPath_dosLoopRemoveLine
StrCmp $3 "$0" unRemoveFromPath_dosLoopRemoveLine
StrCmp $3 "" unRemoveFromPath_dosLoopEnd
FileWrite $2 $3
Goto unRemoveFromPath_dosLoop
unRemoveFromPath_dosLoopRemoveLine:
SetRebootFlag true
Goto unRemoveFromPath_dosLoop
unRemoveFromPath_dosLoopEnd:
FileClose $2
FileClose $1
StrCpy $1 $WINDIR 2
Delete "$1\autoexec.bat"
CopyFiles /SILENT $4 "$1\autoexec.bat"
Delete $4
Goto unRemoveFromPath_done
unRemoveFromPath_NT:
StrCmp $R7 "true" unRemoveFromPath_AllUsers
ReadRegStr $1 HKCU "Environment" "$R8"
Goto unRemoveFromPath_UserCont
unRemoveFromPath_AllUsers:
ReadRegStr $1 HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "$R8"
unRemoveFromPath_UserCont:
StrCpy $5 $1 1 -1 # copy last char
StrCmp $5 ";" +2 # if last char != ;
StrCpy $1 "$1;" # append ;
Push $1
Push "$0;"
Call un.StrStr ; Find `$0;` in $1
Pop $2 ; pos of our dir
StrCmp $2 "" unRemoveFromPath_done
; else, it is in path
# $0 - path to add
# $1 - path var
StrLen $3 "$0;"
StrLen $4 $2
StrCpy $5 $1 -$4 # $5 is now the part before the path to remove
StrCpy $6 $2 "" $3 # $6 is now the part after the path to remove
StrCpy $3 $5$6
StrCpy $5 $3 1 -1 # copy last char
StrCmp $5 ";" 0 +2 # if last char == ;
StrCpy $3 $3 -1 # remove last char
;
; If the value is now empty, delete it
;
StrCmp $3 "" "" unRemoveFromPath_rewrite
; we need to delete the value
StrCmp $R7 "true" unRemoveFromPath_AllUsers_delete
DeleteRegValue HKCU "Environment" "$R8"
DetailPrint "$0 removed from $R8 for Current User"
Goto unRemoveFromPath_UserCont_doit
unRemoveFromPath_AllUsers_delete:
DeleteRegValue HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "$R8"
DetailPrint "$0 removed from $R8 for All Users"
Goto unRemoveFromPath_UserCont_doit
unRemoveFromPath_rewrite:
StrCmp $R7 "true" unRemoveFromPath_AllUsers_rewrite
WriteRegExpandStr HKCU "Environment" "$R8" $3
DetailPrint "$0 removed from $R8 for Current User"
Goto unRemoveFromPath_UserCont_doit
unRemoveFromPath_AllUsers_rewrite:
WriteRegExpandStr HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "$R8" $3
DetailPrint "$0 removed from $R8 for All Users"
unRemoveFromPath_UserCont_doit:
SendMessage ${HWND_BROADCAST} ${WM_SETTINGCHANGE} 0 "STR:Environment" /TIMEOUT=10000
unRemoveFromPath_done:
Pop $6
Pop $5
Pop $4
Pop $3
Pop $2
Pop $1
Pop $0
FunctionEnd
;====================================================
; EmptyDirectory - Determines if directory passed is empty
; and deletes it and from PATH if not empty
; Returns: nothing
; Input - PATH
; - "true" or "false"
;====================================================
Function un.EmptyDirectory
Pop $R7 ; "true" or "false" if admin user
Pop $R5
FindFirst $2 $1 "$5\*.*"
StrCmp $1 "" empty
StrCmp $1 "." cont
StrCmp $1 ".." cont
Goto done
cont:
FindNext $2 $1
;Dumpstate::debug
StrCmp $1 "" empty
StrCmp $1 "." cont
StrCmp $1 ".." cont
; to get here we have a real file, so get out now
Goto done
empty:
; Remove the directory from PATH
Push $R5
Push $R7
Push "PATH"
Call un.RemoveFromPath
done:
FindClose $2
FunctionEnd
###########################################
# Utility Functions #
###########################################
; StrStr
; input, top of stack = string to search for
; top of stack-1 = string to search in
; output, top of stack (replaces with the portion of the string remaining)
; modifies no other variables.
;
; Usage:
; Push "this is a long ass string"
; Push "ass"
; Call StrStr
; Pop $R0
; ($R0 at this point is "ass string")
!macro StrStr un
Function ${un}StrStr
Exch $R1 ; st=haystack,old$R1, $R1=needle
Exch ; st=old$R1,haystack
Exch $R2 ; st=old$R1,old$R2, $R2=haystack
Push $R3
Push $R4
Push $R5
StrLen $R3 $R1
StrCpy $R4 0
; $R1=needle
; $R2=haystack
; $R3=len(needle)
; $R4=cnt
; $R5=tmp
loop:
StrCpy $R5 $R2 $R3 $R4
StrCmp $R5 $R1 done
StrCmp $R5 "" done
IntOp $R4 $R4 + 1
Goto loop
done:
StrCpy $R1 $R2 "" $R4
Pop $R5
Pop $R4
Pop $R3
Pop $R2
Exch $R1
FunctionEnd
!macroend
!insertmacro StrStr ""
!insertmacro StrStr "un."
|