Plugins Reference

This topic of the documentation contains details of the scripting API
for creating and using plugins that Silent Install Builder provides.

Plagin Zip.dll

The plugin is enabled by default.

ExpandZIP(string path_zip, string expand_path)

Unpacks the archive to the specified location.

Parameters

  • path_zip (string) zip archive.
  • expand_path (string) path to unpack the archive.

Returns

Example


    ///Unpack the zip archive to the specified location
    Zip.ExpandZIP("zip.zip","C:\\ExpandZIP");

PackingZIP(string dir_path, string path_zip)

Packing the zip archive to a specified location.

Parameters

  • dir_path (string) path to packing the archive.
  • path_zip (string) zip archive.

Returns

Example


    //packing the zip archive to a specified location
    Zip.PackingZIP("C:\\PackZIP", "zip.zip");