|
||||
|
KPS script files are a lot more powerful than single command operations, but are also more complicated. You need to have heavy experience in C# programming and the KeePass 2.x internals. Within KPS files you can do everything that KeePass does. What are KPS files? KPS files are C# files that are loaded,
compiled and executed by the The main differences to "normal" C# files are:
Here's the famous Hello World program as KPS script: public static void Main() { MessageService.ShowInfo("Hello World!"); } For the most important namespaces, KPScript automatically adds
Executing a KPS file: To run a KPS file, you simply pass it to KPScript: KPScript.exe C:\KeePass\MyScriptFile.kps It is important that the file extension is |
|
||