Skip to content

Commit 24a430a

Browse files
committed
Update to v2.7.1
Fix fake error tips.
1 parent fbb64b4 commit 24a430a

5 files changed

+10
-4
lines changed

CMWTAT_DIGITAL/MainWindow.xaml.cs

+8-2
Original file line numberDiff line numberDiff line change
@@ -1208,9 +1208,15 @@ private void RunAct()
12081208
}
12091209

12101210
runend = RunCScript(slmgr_self, "-ato").Trim();
1211-
1211+
12121212
ConsoleLog(runend);
1213-
if (runend.EndsWith("successfully.") || runend.Contains("0xC004F074") || runend.Contains("0xC004C003")) //0xC004F074 是 KMS38 长期激活会出的提示,Error 0xC004C003: The activation server determined that the specified product key is blocked. 是因为未连接激活服务器,下次连接时会自动激活。
1213+
1214+
var xprrunend = RunCScript(slmgr_self, "-xpr").Trim();
1215+
var activated = (xprrunend.Contains("activated") || xprrunend.Contains("activation will expire"));
1216+
1217+
ConsoleLog(xprrunend);
1218+
1219+
if (runend.EndsWith("successfully.") || activated || runend.Contains("0xC004C003")) // Error 0xC004C003: The activation server determined that the specified product key is blocked. 是因为未连接激活服务器,下次连接时会自动激活。
12141220
{
12151221
if (runend.Contains("0xC004C003"))
12161222
{

CMWTAT_DIGITAL/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
5252
// 方法是按如下所示使用“*”: :
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("2.7.0.0")]
55-
[assembly: AssemblyFileVersion("2.7.0.0")]
54+
[assembly: AssemblyVersion("2.7.1.0")]
55+
[assembly: AssemblyFileVersion("2.7.1.0")]

CMWTAT_Digital_Release_2_7_0_0.zip

-4.44 MB
Binary file not shown.
Binary file not shown.

CMWTAT_Digital_Release_2_7_1_0.zip

4.49 MB
Binary file not shown.

0 commit comments

Comments
 (0)