Last active
February 5, 2021 22:07
-
-
Save raku-cat/5a10b5e109019534ecc87fe8d783dc2f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "8.1.960.0", | |
"description": "NVidia Control Panel from the Micrososft Store", | |
"homepage": "https://www.microsoft.com/en-us/p/nvidia-control-panel/9nf8h0h7wmlt/", | |
"license": "Proprietary", | |
"url": "file:///c:/nvidia.appx#/NVIDIAControlPanel.7z", | |
"installer": { | |
"script": [ | |
"reg.exe ADD \"HKCU\\SOFTWARE\\Classes\\Directory\\Background\\Shell\\Nvidia\\command\" /f /t REG_SZ /ve /d \"$dir\\nvcplui.exe\"", | |
"reg.exe ADD \"HKCU\\SOFTWARE\\Classes\\Directory\\Background\\Shell\\Nvidia\" /f /t REG_SZ /v \"MUIVerb\" /d \"Nvidia Control Panel\"", | |
"reg.exe ADD \"HKCU\\SOFTWARE\\Classes\\Directory\\Background\\Shell\\Nvidia\" /f /t REG_SZ /v \"Icon\" /d \"$dir\\NvGpuUtilization.exe\"" | |
] | |
}, | |
"uninstaller": { | |
"script": [ | |
"reg.exe DELETE \"HKCU\\SOFTWARE\\Classes\\Directory\\Background\\Shell\\Nvidia\" /f" | |
] | |
}, | |
"bin": "nvCplUI.exe", | |
"shortcuts": [ | |
[ | |
"nvCplUI.exe", | |
"Nvidia Control Panel" | |
] | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment