|
@@ -18,13 +18,21 @@ Future<void> killProcess(String name) async {
|
|
|
|
|
|
Future<bool> isRunningAsAdmin() async {
|
|
|
final Shell shell = Shell();
|
|
|
-
|
|
|
- final List<ProcessResult> result = await shell.run('net session');
|
|
|
- if (result.isNotEmpty && result[0].exitCode == 0) {
|
|
|
- return true;
|
|
|
- } else {
|
|
|
+
|
|
|
+ try {
|
|
|
+
|
|
|
+ final List<ProcessResult> results = await shell.run('net session');
|
|
|
+
|
|
|
+
|
|
|
+ if (results.isNotEmpty && results[0].exitCode == 0) {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ } catch (e) {
|
|
|
+
|
|
|
return false;
|
|
|
}
|
|
|
+
|
|
|
+ return false;
|
|
|
}
|
|
|
|
|
|
Future<ProcessResult> runAsAdmin(String executable, List<String> arguments) async {
|