Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(595)

Side by Side Diff: recovery/repair_exe/msp/testApplying300Patches.bat

Issue 624713003: Keep only base/extractor.[cc|h]. (Closed) Base URL: https://chromium.googlesource.com/external/omaha.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « recovery/repair_exe/msp/setup_env.bat ('k') | recovery/repair_exe/mspexecutableelevator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 @echo off
2
3 rem normally, only 127 patches can be applied to an msi
4
5 set /A ii=0
6
7 rem msiexec /i GoogleUpdateHelper.msi /qn
8 rem echo original product installed
9
10 :repeat
11
12 msiexec /update GoogleUpdateHelperPatch.msp REINSTALL=ALL /qn /L*v patchapply%ii %.log
13 echo patch %ii% applied
14 if %ii% GEQ 127 pause
15 msiexec /uninstall {E0D0D2C9-5836-4023-AB1D-54EC3B90AD03} /package {A92DAB39-4E2 C-4304-9AB6-BC44E68B55E2} /qn /L*v patchremove%ii%.log
16 echo patch %ii% removed
17
18 set /A ii=%ii%+1
19
20 if %ii% NEQ 300 goto repeat
21 rem if %ii% NEQ 127 goto repeat
22
23 set ii=
OLDNEW
« no previous file with comments | « recovery/repair_exe/msp/setup_env.bat ('k') | recovery/repair_exe/mspexecutableelevator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698