How do I make the 32-bit Perl read the 64-bit Windows registry?

后端 未结 3 650
情话喂你
情话喂你 2021-01-18 12:20

I have a 32-bit perl installer. Using this I need to be able to install and uninstall both 32- and 64-bit applications.

Installing 32- and 64-bit is fine. Uninstalli

3条回答
  •  北海茫月
    2021-01-18 12:55

    You could also call the reg tool directly, instead of the batch file:

    $WINDIR/system32/reg.exe
    

    This is the default location for reg.exe when included with operating system.

    $WINDIR/sysnative/reg.exe
    

    This is the virtual location of the native 64-bit reg.exe when executed from a 32-bit process.

提交回复
热议问题