diff options
| author | a1xd <[email protected]> | 2020-09-27 22:51:43 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2020-09-27 22:51:43 -0400 |
| commit | a0be98df9546733c3f9e476b808e6c8f8eb843c4 (patch) | |
| tree | 89f5966e33f8ff85b987d32075e912923acfd618 /installer/install.manifest | |
| parent | Fix for second dot not clearing: (diff) | |
| download | rawaccel-a0be98df9546733c3f9e476b808e6c8f8eb843c4.tar.xz rawaccel-a0be98df9546733c3f9e476b808e6c8f8eb843c4.zip | |
add os detection to installer
it --probably-- doesn't run installation on anything older than W10
Diffstat (limited to 'installer/install.manifest')
| -rw-r--r-- | installer/install.manifest | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/installer/install.manifest b/installer/install.manifest new file mode 100644 index 0000000..0478246 --- /dev/null +++ b/installer/install.manifest @@ -0,0 +1,16 @@ +<?xml version='1.0' encoding='UTF-8' standalone='yes'?> +<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'> + <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> + <application> + <!-- Windows 10 --> + <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/> + </application> + </compatibility> + <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> + <security> + <requestedPrivileges> + <requestedExecutionLevel level='requireAdministrator' uiAccess='false' /> + </requestedPrivileges> + </security> + </trustInfo> +</assembly>
\ No newline at end of file |