开发者

Is it possible to launch a 64 bit command line from a 32 bit application?

开发者 https://www.devze.com 2023-03-22 09:17 出处:网络
Anyone know if it\'s possible to launch a 64 bit command line from a 32 bit application? We have to copy our applic开发者_开发技巧ationHost.config file into C:\\Windows\\System32\\inetsrv\\Config\\

Anyone know if it's possible to launch a 64 bit command line from a 32 bit application?

We have to copy our applic开发者_开发技巧ationHost.config file into C:\Windows\System32\inetsrv\Config\ using a 32 bit process but it would be nice if the batch file that does that could take care of making that happen so we could launch it from a 32 bit program like VS2010.


Do I understand correctly that you want to access the "real" System32 directory, normally visible from 64-bit processes only, from a 32-bit process?

To do that just use "sysnative" instead of "system32" from the 32-bit process, e.g.:

%Windir%\Sysnative\Inetsrv...

0

精彩评论

暂无评论...
验证码 换一张
取 消