Sie sind auf Seite 1von 5

Home

Support

Tutorial

Applications that only use files in their folder are naturally portable, but most of them use registry, files and folders on host computer (local).

Prepare portable
Get program files
First of all you have to extract files from setup w ith a program such as Universal Extractor and if you can't you have to install. In this case monitor setup with Total Uninstall (doing so you w ill be able to clean your computer and know w hat need program). The simpliest example is CCleaner, download portable and unzip in CCleanerPortable\App\CCleaner (you can create these 3 folders at one time with Total Commander).

Monitor running and/or setup


Launch Total Uninstall, click Install, Browse to CCleanerPortable\App\CCleaner\CCleaner.exe Click on Next to Build A New Snapshot Click on Next to Launch setup application Now CCleaner launch in english. Look in Options-Advanced that Save all settings to INI file can't be uncheck (due to portable.dat file). Choose your language in Options-Settings and close CCleaner. Click Next in Total Uninstall to Make the post install snapshot and find the changes. Click Close to view changes:

There is no change! CCleaner is naturally portable.

Prepare launcher
In this case launcher is useless but it can do some settings and move them in Data. If there is no portable.dat file in its folder, CCleaner use ini file only if found in its folder. Otherwise, use registry HKEY_CURRENT_USER\Software\Piriform. A good thing is to force use ini creating portable.dat, another is to move ini file in Data to keep settings w hen update. Launcher can also w rite in CCleaner.ini to fix some settings:

[Options] Language=1036 BackupDir=L:\PortableApps\CCleanerPortable\Backups

1036 is the decimal id of french and can be returned by GetUserDefaultLangID of kernel32, w e w ill use it to fix automatically language.

Launch app
Launcher is a small exe in *Portable folder compiled with NSIS. Download and install NSIS.

Minimal launcher
Copy-paste the script below in Notepad++ and save as CCleanerPortable.nsi in CCleanerPortable folder.

Copy-paste the script below in Notepad++ and save as CCleanerPortable.nsi in CCleanerPortable folder. Right-click and Compile NSIS Script, it w ill create a some tens of kB executable

WindowIcon Off SilentInstall Silent AutoCloseWindow True OutFile CCleanerPortable.exe Section ExecWait "$EXEDIR\App\CCleaner\CCleaner.exe" SectionEnd

launcher don't display icon launcher don't display screen output launcher automatically close when completed launcher name will be CCleanerPortable.exe Code executed must be in Section: Execute CCleaner.exe and w ait to quit ($EXEDIR is the path of the launcher)

Structured launcher
Download and extract CCleanerPortableSources in your CCleanerPortable folder. Open in Notepad++ CCleanerPortable_1.nsi. To use alw ays the same parts of scrpit we use constants and we use functions called in main section to have a clear structure of running. Lines begining w ith semicolons are commented and not compiled. Read comments and search in NSIS help to understand.

Complete launcher
Open in Notepad++ CCleanerPortable_2.nsi. Added: version info, securities before starting, customization, splash and passing receipts parameters. You w ill need FindProcDLL plug-in: download and install Optimized by size binaries.

Final launcher
Open in Notepad++ CCleanerPortable_3.nsi. Same script than 2, but common parts with all launchers are moved to PortableApp.nsh called w ith !include.

Backup and restore registry keys


Registry plug-in
You w ill need this NSIS plug-in for registry to compile. Download, extract and Install (in Desktop): it w ill copy Registry.dll in Plugins and Registry.nsh in Include.

Target: Audacity 1.2.6


Download audacity-win-1.2.6.zip and unzip in AudacityPortable\App\Audacity Monitor running of audacity.exe w ith Total Uninstall (don't associate to .AUP) Open and save an audio file. Do some settings in Edit: Preferences... Files Format: MP3 Export Setup: Find Library to locate lame_enc.dll Directories: Choose Temp. Directory Location Close and view changes:

Export Registry Changes in W in9x/NT4 Registration File Type:

REGEDIT4 [HKEY_CURRENT_USER\Software\Audacity\Audacity] "WantAssociateFiles"=dword:00000000 [HKEY_CURRENT_USER\Software\Audacity\Audacity\Directories] "TempDir"="C:\\DOCUME~1\\Admin\\LOCALS~1\\Temp\\AudacityPortableTemp\\" [HKEY_CURRENT_USER\Software\Audacity\Audacity\MP3] "MP3LibPath"="L:\\PortableApps\\AudacityPortable\\App\\LAME\\lame_enc.dll"

Only the above registry entries have to be done by launcher (others are user settings that have to be kept in Data). Download Reg2Nsis and install context menu. Right-click on reg file and Convert to nsis script you w ill get this .nsh file:

WriteRegDWORD HKEY_CURRENT_USER "Software\Audacity\Audacity" "WantAssociate Files" 0x0 WriteRegStr HKEY_CURRENT_USER "Software\Audacity\Audacity\Directories" "Tem pDir" \ "C:\DOCUME~1\Admin\LOCALS~1\Temp\AudacityPortableTemp\" WriteRegStr HKEY_CURRENT_USER "Software\Audacity\Audacity\MP3" "MP3LibPath" \ "L:\PortableApps\AudacityPortable\App\LAME\lame_enc.dll"

C:\DOCUME~1\Admin\LOCALS~1\Temp is the system temporary directory: $TEMP L:\PortableApps\AudacityPortable is the directory containing the launcher: $EXEDIR Download an extract AudacityPortable Open AudacityPortable_1.nsi in Notepad++ In TU monitor w e saw that only one registry key was used by Audacity HKEY_CURRENT_USER\Software\Audacity but can be used by a possible installed version.

BackupLocalKeys
HKEY_CURRENT_USER\Softw are\Audacity is renamed in HKEY_CURRENT_USER\Softw are\AudacityBackupByAudacityPortable.

RestorePortableKeys
Settings saved in Data\Audacity.reg (w hen closing a previous run of portable) are merged to registry.

Init
This function force settings needed to be portable, update paths and overw rite those previously restored.

Close
Audacity is closed: delete temp folder.

BackupPortableKeys
Settings saved in Data\Audacity.reg.

RestoreLocalKeys
Opposite of backup.

Backup and restore folders


Target: Instant Color Picker
Download icp_setup.exe and extract files w ith Universal Extractor or Inno Setup Unpacker Copy the content of {app} in InstantColorPickerPortable\App\InstantColorPicker and the content of {userappdata}\Young Smart Software in InstantColorPickerPortable\Data\InstantColorPicker "Install" icp.exe with Total Uninstall Close and view changes:

ICP only use Young Smart Software folder in C:\Documents and Settings\Admin\Application Data ($APPDATA for NSIS) Download and extract InstantColorPickerPortable. Open InstantColorPickerPortable_Lite.nsi in Notepad++

BackupLocalDirs
In Application Data, Young Smart Software folder is renamed in Young Smart Software--BackupByInstantColorPickerPortable

RestorePortableDirs
Portable settings in Data\InstantColorPicker are copied in Application Data\Young Smart Software. (W e have to use CopyFiles instead of Rename because drives are differents).

BackupPortableDirs
ICP is closed, w e do reverse of RestorePortableDirs.

RestoreLocalDirs
Reverse of BackupLocalDirs

Backup and restore files


Same w ay than for folders. Download this template where you w ill foud actions on registry, folders and files. If you have several of them you have to copy lines and increase index of lines w ith tab:

!define REGKEY1 "HKEY_LOCAL_MACHINE\SOFTWARE\MyProg" !define REGKEY2 "HKEY_CURRENT_USER\Software\MyProg" ;... ${registry::DeleteKey} "${REGKEY1}-BackupBy${APP}Portable" $R0 ${registry::MoveKey} "${REGKEY1}" "${REGKEY1}-BackupBy${APP}Portabl e" $R0 ${registry::DeleteKey} "${REGKEY2}-BackupBy${APP}Portable" $R0 ${registry::MoveKey} "${REGKEY2}" "${REGKEY2}-BackupBy${APP}Portabl e" $R0 ;...

Deletion of backup not needed in normal use, but if there was a crash not recovered, old backup prevent MoveKey. Comment or delete constants, functions and calls not used.

Complements
Read NSIS User Manual Chapter 4: Scripting Reference to learn more about Functions, Instructions, Variables, Constants...

NSIS Constants
Many constants ($APPDATA, $SYSDIR...) are defined in NSIS and their values depends of Window s version and localization. Run NSIS_Constants to write in an ini file the values of these constants on your computer. They are often the same with SetShellVarContext current or all.

Po rta ble AppZ.blogspot.com | P orta bleApps.com

Das könnte Ihnen auch gefallen