diff options
author | brenda-br | 2023-03-03 17:19:40 +0530 |
---|---|---|
committer | brenda-br | 2023-03-04 11:35:07 +0530 |
commit | f92b631fc873a48fb8fa9950ace719003e7bc145 (patch) | |
tree | 8f0b6fb233cfda6a7990d73dade2eeb1dafe4b08 | |
parent | bddcbfad0a1a8e420dd91c087a7b5cc38eada8c0 (diff) | |
download | Chemical-Simulator-GUI-f92b631fc873a48fb8fa9950ace719003e7bc145.tar.gz Chemical-Simulator-GUI-f92b631fc873a48fb8fa9950ace719003e7bc145.tar.bz2 Chemical-Simulator-GUI-f92b631fc873a48fb8fa9950ace719003e7bc145.zip |
Admin Privilege
-rw-r--r-- | requirements.txt | 2 | ||||
-rw-r--r-- | src/main/python/mainApp.py | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/requirements.txt b/requirements.txt index 14e451a..8183dcf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,3 +2,5 @@ pyqtgraph==0.10.0 pandas==1.0.1 numpy==1.17.3 PyQt5==5.15.1 +pyuac +pywin32 diff --git a/src/main/python/mainApp.py b/src/main/python/mainApp.py index d278f83..a2869b0 100644 --- a/src/main/python/mainApp.py +++ b/src/main/python/mainApp.py @@ -5,6 +5,7 @@ import ctypes import sys import datetime from functools import partial +import pyuac current = os.path.dirname(os.path.realpath(__file__)) parentPath = os.path.dirname(current) @@ -410,4 +411,7 @@ def main(): if __name__ == '__main__': - main() + if not pyuac.isUserAdmin(): + pyuac.runAsAdmin() + else: + main() |