Skip to content

Commit

Permalink
[#382] missing quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
micjahn committed Jan 24, 2022
1 parent b1bc8d8 commit f6aadf3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Source/interop/register.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > NUL && set OS=32BIT || set OS=64BIT

"%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\regasm.exe" /unregister %~dp0zxing.interop.dll
"%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\regasm.exe" /codebase %~dp0zxing.interop.dll /tlb %~dp0zxing.interop.tlb
"%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\regasm.exe" /unregister "%~dp0zxing.interop.dll"
"%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\regasm.exe" /codebase "%~dp0zxing.interop.dll" /tlb "%~dp0zxing.interop.tlb"

if %OS%==64BIT "%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\regasm.exe" /unregister %~dp0zxing.interop.dll
if %OS%==64BIT "%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\regasm.exe" /codebase %~dp0zxing.interop.dll /tlb %~dp0zxing.interop.tlb
if %OS%==64BIT "%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\regasm.exe" /unregister "%~dp0zxing.interop.dll"
if %OS%==64BIT "%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\regasm.exe" /codebase "%~dp0zxing.interop.dll" /tlb "%~dp0zxing.interop.tlb"

pause

0 comments on commit f6aadf3

Please sign in to comment.