alroyso 1 tahun lalu
induk
melakukan
258c1631eb

+ 6 - 1
lib/app/modules/home/controllers/home_controller.dart

@@ -5,6 +5,7 @@ import 'package:get/get.dart';
 import 'package:naiyouwl/app/common/constants.dart';
 import 'package:naiyouwl/app/controller/GlobalController.dart';
 import 'package:naiyouwl/app/controller/controllers.dart';
+import 'package:naiyouwl/app/utils/shell.dart';
 import 'package:naiyouwl/app/utils/utils.dart';
 import 'package:url_launcher/url_launcher.dart';
 import '../../../common/LogHelper.dart';
@@ -107,7 +108,11 @@ class HomeController extends GetxController {
         controllers.config.clashCoreTunEnable.value = true;
         controllers.global.startTunMode();
         if(controllers.service.serviceMode.value == false){
-          await controllers.service.serviceModeSwitch(true);
+          if(!await isRunningAsAdmin()){
+            controllers.global.updateMsg("网卡模式需要管理模式运行...");
+            return;
+          }
+          //await controllers.service.serviceModeSwitch(true);
           serviceStuatus.value = true;
         }
 

+ 12 - 0
lib/app/utils/shell.dart

@@ -15,6 +15,18 @@ Future<void> killProcess(String name) async {
   }
 }
 
+
+Future<bool> isRunningAsAdmin() async {
+  final Shell shell = Shell();
+  // 使用 "net session" 命令,如果成功,则意味着我们有管理员权限
+  final List<ProcessResult> result = await shell.run('net session');
+  if (result.isNotEmpty && result[0].exitCode == 0)  {
+    return true;
+  } else {
+    return false;
+  }
+}
+
 Future<ProcessResult> runAsAdmin(String executable, List<String> arguments) async {
   String executablePath = shellArgument(executable).replaceAll(' ', r'\\ ');
   //executablePath = executablePath.substring(1, executablePath.length - 1);