About the JSON Extender

 

The JSON extender provides WinBatch scripts easy access to JSON data. JSON stands for JavaScript Object Notation  and is a lightweight, easy to understand  format used to store and transport data. It is often used to send data to and from web pages but it is increasingly used by local applications to store data locally. The extender's functions make it possible to easily parse and access JSON data or create new JSON data for either local use or for transmission to a Web server.

 

To access the functions in this extender, add the following to your script:

 

32-bit Extender

 

AddExtender('ILCJS44I.DLL')

 

Requires:Windows Vista/2008 or newer.

 

64-bit Extender

 

AddExtender('ILCJS4I.DLL')

 

Requires:Windows Vista/2008 or newer.

 

32-bit and 64-bit Extender

 

AddExtender('ILCJS44I.DLL',0,'ILCJS4I.DLL')

 

Requires:Windows Vista/2008 or newer.

 

Note: The JSON extender requires Windows Vista/2008 or newer. Using this extender on older versions of Windows may result in a kernel exceptions and abrupt script termination.

 

 

 

 

 

Acknowledgments:

 

  • Extender developed by Anonymous.

  • Help file by Anonymous.

  • JSON support libraries provided by Boost.org.

 

 

 

Island Lake Consulting LLC is grateful to the groups and individuals above for their contributions.