CKV Self-Extractor: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
Line 19: Line 19:


This is still under development.
This is still under development.
== Car Insurance - How To Get Free Car Insurance Quotes ==
Everybody that owns a vehicle is required to have a [http://www.insurancebuffs.com/ '''Car Insurance'''] in most state. Sometimes you can find such problem in getting the best offer because there are many companies of insurance that will come into your mind. In time you can easily find and evaluate such various '''vehicle insurance''' quotes for you to get a excellent '''insurance''' policy. Another one also with this service is that it will not cost you to much trouble and even for your pocket. Here are things that you need to do if you do like to get a quotes from different companies. First of all you will need to gather all the information and even your personal details fro you to avail for the service. There are many things for you also to have on the service so better for you also to be prepared on this concern.
When you will get a [http://www.sikhiwiki.org/index.php/Bibi_Viro '''Car Insurance'''] make sure also that you will assemble all the papers needed in the transaction. If you do have already the quotes of different '''insurance''' companies then better for you also that you will compare the rates. When you decided already then get to the companies on the '''automobile insurance''' so that you can start the transaction from your vehicle


== How To Use ==
== How To Use ==

Revision as of 15:00, 26 January 2011

Author: TrueparuEx (talk, contrib)


Links

Links Broken

Exe.gif ckvse.exe (149 KB)
Zip.gif ckvse.zip (143 KB)
Ckvse.zip (143 KB) (alternative)
Development Versions

Description

Version: 0.14c.

ckv Self-Extractor Kit is a collection of scripts and custom user interfaces to create self-extracting files with NSIS. This is way simpler built than NSIS Self-Extractor kit for a lighter interface. This also includes a wizard for the easy creation of self-installers. This also can:

  • Open the extration directory and/or read-me at end.
  • Show the license before the extraction occurs.
  • choose from 1 of 3 UI's available: default, tiny and simple.

This is still under development.


Car Insurance - How To Get Free Car Insurance Quotes

Everybody that owns a vehicle is required to have a Car Insurance in most state. Sometimes you can find such problem in getting the best offer because there are many companies of insurance that will come into your mind. In time you can easily find and evaluate such various vehicle insurance quotes for you to get a excellent insurance policy. Another one also with this service is that it will not cost you to much trouble and even for your pocket. Here are things that you need to do if you do like to get a quotes from different companies. First of all you will need to gather all the information and even your personal details fro you to avail for the service. There are many things for you also to have on the service so better for you also to be prepared on this concern.


When you will get a Car Insurance make sure also that you will assemble all the papers needed in the transaction. If you do have already the quotes of different insurance companies then better for you also that you will compare the rates. When you decided already then get to the companies on the automobile insurance so that you can start the transaction from your vehicle

How To Use

Simplest way to use ckv Self-Extractor is to include ckvse.nsh in to beginning of any existing NSIS script file, replace first Section with ${FileExtraction}, and use the commands as said in the documentation (included with zip file).

However this way you only get NSIS installer with Self-Extractor look. Better idea is to use the ckv Self-Extractor wizard (ckvsewizard.exe) that can create Self-Extractor from a directory or zip file.

Example Script

!include "ckvse.nsh"
SetCompressor lzma
 
!insertmacro ProductName "My product"
!insertmacro OutFileName "outfile.exe"
!insertmacro ExtractDir "C:\Sample"
!insertmacro IconFile "C:\my\file\source\icon.ico"
 
!insertmacro OpenDirFunc "off" 1
!insertmacro OwprompFunc "on" 1
!insertmacro OpenReadme "off" 1 "$INSTDIR\readme.txt"
!insertmacro ShowLicense "C:\my\file\source\license.txt" "off"
!insertmacro SetUI "default"
 
${FileExtraction}
  SetOutPath "$INSTDIR"
  !insertmacro EXTRACT_FILE "C:\my\file\source\" "readme.txt"
  !insertmacro EXTRACT_FILE "C:\my\file\source\" "license.txt"
  !insertmacro EXTRACT_FILE "C:\my\file\source\" "product.exe"
 
  SetOutPath "$INSTDIR\subdir"
  !insertmacro EXTRACT_FILE "C:\my\file\source\" "data.dat"
  !insertmacro EXTRACT_FILE "C:\my\file\source\" "more_data.dat"
${FileExtractionEnd}