├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── ncc.yml ├── .gitignore ├── .gitmodules ├── Assets ├── icon.ico └── icon.png ├── GUI_Concepts ├── Form2.kxf ├── NotCPUCores_KODAConcept.au3 ├── NotCPUCores_METROConcept.au3 ├── includes │ ├── MetroGUI_UDF.au3 │ ├── MetroThemes.au3 │ └── MetroUDF-Required │ │ ├── SSCtrlHover.au3 │ │ └── StringSize.au3 └── parent.au3 ├── Includes ├── _Bitwise.au3 ├── _Bitwise64.au3 ├── _Core.au3 ├── _ExtendedFunctions.au3 ├── _FreezeToStock.au3 ├── _GetEnvironment.au3 ├── _GetLanguage.au3 ├── _ModeSelect.au3 └── _WMIC.au3 ├── LICENSE.md ├── Lang ├── 07.ini ├── 09.ini ├── 0A.ini ├── 15.ini ├── 19.ini ├── Languages.md ├── Old │ └── 1.7.0.0 │ │ ├── 04.ini │ │ ├── 07.ini │ │ └── 19.ini └── Template.ini ├── NotCPUCores.au3 ├── Plugins └── child.au3 ├── README.md ├── Settings.ini ├── installer.nsi └── r └── rcmaehl └── NotCPUCores └── 1.7.3.0 ├── rcmaehl.NotCPUCores.installer.yaml ├── rcmaehl.NotCPUCores.locale.en-US.yaml └── rcmaehl.NotCPUCores.yaml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ncc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/.github/workflows/ncc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/.gitmodules -------------------------------------------------------------------------------- /Assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Assets/icon.ico -------------------------------------------------------------------------------- /Assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Assets/icon.png -------------------------------------------------------------------------------- /GUI_Concepts/Form2.kxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/GUI_Concepts/Form2.kxf -------------------------------------------------------------------------------- /GUI_Concepts/NotCPUCores_KODAConcept.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/GUI_Concepts/NotCPUCores_KODAConcept.au3 -------------------------------------------------------------------------------- /GUI_Concepts/NotCPUCores_METROConcept.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/GUI_Concepts/NotCPUCores_METROConcept.au3 -------------------------------------------------------------------------------- /GUI_Concepts/includes/MetroGUI_UDF.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/GUI_Concepts/includes/MetroGUI_UDF.au3 -------------------------------------------------------------------------------- /GUI_Concepts/includes/MetroThemes.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/GUI_Concepts/includes/MetroThemes.au3 -------------------------------------------------------------------------------- /GUI_Concepts/includes/MetroUDF-Required/SSCtrlHover.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/GUI_Concepts/includes/MetroUDF-Required/SSCtrlHover.au3 -------------------------------------------------------------------------------- /GUI_Concepts/includes/MetroUDF-Required/StringSize.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/GUI_Concepts/includes/MetroUDF-Required/StringSize.au3 -------------------------------------------------------------------------------- /GUI_Concepts/parent.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/GUI_Concepts/parent.au3 -------------------------------------------------------------------------------- /Includes/_Bitwise.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Includes/_Bitwise.au3 -------------------------------------------------------------------------------- /Includes/_Bitwise64.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Includes/_Bitwise64.au3 -------------------------------------------------------------------------------- /Includes/_Core.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Includes/_Core.au3 -------------------------------------------------------------------------------- /Includes/_ExtendedFunctions.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Includes/_ExtendedFunctions.au3 -------------------------------------------------------------------------------- /Includes/_FreezeToStock.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Includes/_FreezeToStock.au3 -------------------------------------------------------------------------------- /Includes/_GetEnvironment.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Includes/_GetEnvironment.au3 -------------------------------------------------------------------------------- /Includes/_GetLanguage.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Includes/_GetLanguage.au3 -------------------------------------------------------------------------------- /Includes/_ModeSelect.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Includes/_ModeSelect.au3 -------------------------------------------------------------------------------- /Includes/_WMIC.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Includes/_WMIC.au3 -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Lang/07.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Lang/07.ini -------------------------------------------------------------------------------- /Lang/09.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Lang/09.ini -------------------------------------------------------------------------------- /Lang/0A.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Lang/0A.ini -------------------------------------------------------------------------------- /Lang/15.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Lang/15.ini -------------------------------------------------------------------------------- /Lang/19.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Lang/19.ini -------------------------------------------------------------------------------- /Lang/Languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Lang/Languages.md -------------------------------------------------------------------------------- /Lang/Old/1.7.0.0/04.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Lang/Old/1.7.0.0/04.ini -------------------------------------------------------------------------------- /Lang/Old/1.7.0.0/07.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Lang/Old/1.7.0.0/07.ini -------------------------------------------------------------------------------- /Lang/Old/1.7.0.0/19.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Lang/Old/1.7.0.0/19.ini -------------------------------------------------------------------------------- /Lang/Template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Lang/Template.ini -------------------------------------------------------------------------------- /NotCPUCores.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/NotCPUCores.au3 -------------------------------------------------------------------------------- /Plugins/child.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Plugins/child.au3 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/README.md -------------------------------------------------------------------------------- /Settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/Settings.ini -------------------------------------------------------------------------------- /installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/installer.nsi -------------------------------------------------------------------------------- /r/rcmaehl/NotCPUCores/1.7.3.0/rcmaehl.NotCPUCores.installer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/r/rcmaehl/NotCPUCores/1.7.3.0/rcmaehl.NotCPUCores.installer.yaml -------------------------------------------------------------------------------- /r/rcmaehl/NotCPUCores/1.7.3.0/rcmaehl.NotCPUCores.locale.en-US.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/r/rcmaehl/NotCPUCores/1.7.3.0/rcmaehl.NotCPUCores.locale.en-US.yaml -------------------------------------------------------------------------------- /r/rcmaehl/NotCPUCores/1.7.3.0/rcmaehl.NotCPUCores.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcmaehl/NotCPUCores/HEAD/r/rcmaehl/NotCPUCores/1.7.3.0/rcmaehl.NotCPUCores.yaml --------------------------------------------------------------------------------