View information and/or run CPL files
View and/or run CPL files in the Windows\System32 folder for the Microsoft Control Panel (control.exe)
CPL Explorer 32 Bit
CPL Explorer 64 Bit
Release Page - Source Files
ControlPanelObj()
{ A_SysDir := A_WinDir "\System32\"
if InStr(FileExist(A_SysDir),"D")
{ tmpObj := {}
loop,files,%A_SysDir%*.cpl
{ thisFile := A_LoopFileFullPath
SplitPath,thisFile,thisFileName,thisDir,thisExt,thisNoExt,thisDrive
tmpObj[thisNoExt] := { "full" : thisFile
, "path" : { "filename" : thisFileName
, "directory" : thisDir
, "extension" : thisExt
, "noextension": thisNoExt
, "drive" : thisDrive}
, "info" : FileInfo(thisFile)}
}
return tmpObj
}
}
I wanted a better way to view and run CPL files.
Portable program (Plans for installer and portable option).
I have tested on Windows 10 64 Bit
Ian Pride @ faithnomoread@yahoo.com - [Lateralus138] @ New Pride Services
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
License provided in the License folder on the source page