File tree 4 files changed +21
-6
lines changed
CMWTAT_DIGITAL/Properties
4 files changed +21
-6
lines changed Original file line number Diff line number Diff line change 7
7
// 有关程序集的一般信息由以下
8
8
// 控制。更改这些特性值可修改
9
9
// 与程序集关联的信息。
10
- [ assembly: AssemblyTitle ( "CMWTAT Digital Edition V2 " ) ]
11
- [ assembly: AssemblyDescription ( "CloudMoe Windows 10 Activation Toolkit V2 " ) ]
10
+ [ assembly: AssemblyTitle ( "CMWTAT Digital Edition" ) ]
11
+ [ assembly: AssemblyDescription ( "CloudMoe Windows 10+ Activation Toolkit" ) ]
12
12
[ assembly: AssemblyConfiguration ( "" ) ]
13
13
[ assembly: AssemblyCompany ( "CloudMoe Network" ) ]
14
- [ assembly: AssemblyProduct ( "CMWTAT Digital Edition V2 " ) ]
15
- [ assembly: AssemblyCopyright ( "Copyright © CloudMoe Saltfish Studio 2022 " ) ]
14
+ [ assembly: AssemblyProduct ( "CMWTAT Digital Edition" ) ]
15
+ [ assembly: AssemblyCopyright ( "Copyright © CloudMoe Saltfish Studio 2024 " ) ]
16
16
[ assembly: AssemblyTrademark ( "CloudMoe Saltfish Studio" ) ]
17
17
[ assembly: AssemblyCulture ( "" ) ]
18
18
51
51
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
52
52
// 方法是按如下所示使用“*”: :
53
53
// [assembly: AssemblyVersion("1.0.*")]
54
- [ assembly: AssemblyVersion ( "2.7.1 .0" ) ]
55
- [ assembly: AssemblyFileVersion ( "2.7.1 .0" ) ]
54
+ [ assembly: AssemblyVersion ( "2.7.2 .0" ) ]
55
+ [ assembly: AssemblyFileVersion ( "2.7.2 .0" ) ]
Original file line number Diff line number Diff line change
1
+ $isAdmin = (New-Object Security.Principal.WindowsPrincipal([Security.Principal.WindowsIdentity ]::GetCurrent())).IsInRole([Security.Principal.WindowsBuiltInRole ]::Administrator)
2
+
3
+ if (-not $isAdmin ) {
4
+ Start-Process powershell - ArgumentList " irm https://tgsan.github.io/CMWTAT_Digital_Edition/DirectRun.ps1 | iex" - Verb RunAs
5
+ Exit
6
+ }
7
+
8
+ # $exePath = ".\CMWTAT_DIGITAL\bin\Debug\CMWTAT_DIGITAL.exe"
9
+ # $exeBytes = [System.IO.File]::ReadAllBytes($exePath)
10
+ # $bytes = $exeBytes
11
+
12
+ $bytes = (Invoke-WebRequest " https://tgsan.github.io/CMWTAT_Digital_Edition/CMWTAT_Digital_Release_2_7_2_0.exe" ).Content
13
+ $assembly = [System.Reflection.Assembly ]::Load($bytes )
14
+ $entryPointMethod = $assembly.EntryPoint
15
+ $entryPointMethod.Invoke ($null , @ ())
You can’t perform that action at this time.
0 commit comments