批处理脚本 - 自动设置exe属性

时间:2013-01-01 10:35:04

标签: windows batch-file batch-processing cmd

我有一个exe我想在批处理脚本中设置它与Windows XP sp3的兼容性 使用批处理脚本

因此,例如,如果我右键单击我得到一个对话框

 'candle' properties

在此我选择

 'compatibility' option

有一个复选框,写的文字是

 'Run this program in compatibiltiy mode for '

然后有一个可用的操作系统列表,我希望在我的批处理文件中复制相同的操作系统

1 个答案:

答案 0 :(得分:2)

从此post

reg.exe Add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers" /v "C:\Program Files\MyApp\Test.exe" /d "WINXPSP3"

可用的兼容模式:

Value         Description
WIN95         Windows 95
WIN98         Windows 98
WIN4SP5       Windows NT 4.0 SP5
WIN2000       Windows 2000
WINXPSP2      Windows XP SP2
WINXPSP3      Windows XP SP3
VISTARTM      Vista
VISTASP1      Vista SP1
VISTASP2      Vista SP2
WIN7RTM       Windows 7 
WINSRV03SP1   Windows Server 2003 SP1
WINSRV08SP1   Windows Server 2008 SP1