大家好
从论坛搜寻到以下程式码: $i=1
$Regkey="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"
While 1
$i=$i+1
$var = RegEnumKey($Regkey, $i)
If $var="Microsoft .NET Framework 4 Client Profile" Then
MsgBox(0,"Auto Install Script","Microsoft .NET Framework 4 Client 已安装")
If @error <> 0 then ExitLoop
ExitLoop
EndIf
WEnd
;~ RunWait("dotNetFx40_Full_x86_x64.exe /norestart /passive ")
;~ msgbox(0, " Auto Install Script ", " dotNET Framework 4.0 安装完成 ",1)
目前已经可以判断出有安装这个DFN4这软件,可是机器上要是没有安装这软件,该怎么把最後两行程式码加进去,好让机器开始安装。 |