Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: dev_query.cmd

Issue 11058028: Developer installation, gyp version
Patch Set: Created July 2, 2013, 3:13 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« adblockplus.gyp ('K') | « dev_install.cmd ('k') | dev_uninstall.cmd » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dev_query.cmd
===================================================================
new file mode 100644
--- /dev/null
+++ b/dev_query.cmd
@@ -0,0 +1,21 @@
+@echo off
+if /i %PROCESSOR_ARCHITECTURE% equ x86 (
+ set REG="%WINDIR%\sysnative\reg.exe"
+ :: For the 32 bit OS case
+ if not exist %REG% set REG="%WINDIR%\system32\reg.exe"
+) else (
+ set REG="%WINDIR%\system32\reg.exe"
+)
+
+echo REG=%REG%
+%REG% query "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{FFCB3198-32F3-4E8B-9539-4324694ED664}" 2>nul
+%REG% query HKLM\Software\Classes\CLSID\{FFCB3198-32F3-4E8B-9539-4324694ED664} /ve 2>nul
+%REG% query HKLM\Software\Classes\CLSID\{FFCB3198-32F3-4E8B-9539-4324694ED664}\InprocServer32 2>nul
+%REG% query HKCU\Software\Classes\CLSID\{FFCB3198-32F3-4E8B-9539-4324694ED664} /ve 2>nul
+%REG% query HKCU\Software\Classes\CLSID\{FFCB3198-32F3-4E8B-9539-4324694ED664}\InprocServer32 2>nul
+
+%REG% query "HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{FFCB3198-32F3-4E8B-9539-4324694ED664}" 2>nul
+%REG% query HKEY_LOCAL_MACHINE\Software\Classes\Wow6432Node\CLSID\{FFCB3198-32F3-4E8B-9539-4324694ED664} /ve 2>nul
+%REG% query HKEY_LOCAL_MACHINE\Software\Classes\Wow6432Node\CLSID\{FFCB3198-32F3-4E8B-9539-4324694ED664}\InprocServer32 2>nul
+%REG% query HKEY_CURRENT_USER\Software\Classes\Wow6432Node\CLSID\{FFCB3198-32F3-4E8B-9539-4324694ED664} /ve 2>nul
+%REG% query HKEY_CURRENT_USER\Software\Classes\Wow6432Node\CLSID\{FFCB3198-32F3-4E8B-9539-4324694ED664}\InprocServer32 2>nul
« adblockplus.gyp ('K') | « dev_install.cmd ('k') | dev_uninstall.cmd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld