SDConfigGen


Neue Antwort erstellen
Erstellt
Aug. '08
letzte Antwort
Noch keine
2,8 T.
Aufrufe
0
„Gefällt mir“
1
Abo
Kefir
FAQ-Schreiber
FAQ-Schreiber


Anm. Datum: 01.01.2001
Beiträge: 14360
Wohnort: Belgien
Handy: Alle Möglichen zum Testen
BeitragSo 17. August, 2008 19:48
Antworten mit Zitat


First off, I'd like to thank Sleuth255 for SDAutoRun, and to mousio for his AutoRun tool which provided the inspiration for this project.

SDConfigGen is a command line tool for the PC which inspects a collection of files to be installed, then produces an SDConfig.txt and other associated scripts and provisioning files to allow SDAutoRun to automatically install them.

It differs from mousio's solution in that rather than having SDAutoRun call a MortScript to do all the work, this tool creates an SDConfig.txt to do the majority, only calling scripts for specific functionality when required. Scripts (and therefore MortScript) may not even be required, if nothing being installed needs automation.

Installation
Unzipping the contents of the archive will produce this folder structure:

Code:
\Storage Card\SDConfig\Cabs\Files\Scripts\Settings\Sys\



First things first - to use any of the script-based functionality a copy of the MortScript installation cab file must be placed within the Sys folder. Download MortScript-4.11b7.zip (or newer version) from http://www.sto-helit.de, then extract \cab\MortScript-4.11b7-PPC.cab from it.

Usage
If the name of the Storage Card will be different on your target device, then rename that folder to whatever it will be. Otherwise, just leave it as it is.

Within the sub-folders of SDConfig, add the files you want to be installed.

Cabs:
Any .cab files in this folder will be installed. If the installation of a .cab file requires user interaction (to confirm a license window, for example), then create a .mscr script file of the same name containing instructions to be executed while the cab file is being installed.

For example, if you need to install a cab file: "eWallet-PocketPC-Install.cab",
create a file called "eWallet-PocketPC-Install.mscr" too. This file contains
MortScript to be run while the cab installer is being run, for example:

Code:
windowTitle = "Software License Agreement"

WaitFor(windowTitle, 60)
SendLeftSoft(windowTitle)


Note that you don't need to worry about actually installing the cab, or waiting for installation to finish - just write the automation code itself.

The SDAutoRun UI will be hidden while an interactive cab is being installed like this, and a MortScript status window shown instead. The device will be responsive to user input, so if any non-automatable interaction is required, that can be done manually.

Files:
After the cab files have been installed, all files in this folder will be copied directly to the root folder. To copy files to sub-folders, place them in sub-folders of this folder. For example, to copy files to the Windows folder, create a Windows folder here and place the files within it.

Standard (English) folder names will automatically be replaced by variables, so files in the "Files\Program Files" folder here will be copied to %CE1% folder by SDAutoRun.

The file copy operation is actually performed by generating a CopyFiles.xml provisioning file in the Sys folder, and it is this that goes in the SDConfig.txt file. This method was chosen as it avoids the path length limit of copying directly in SDConfig.txt, and allows for the %CEn% variable subsitution scheme.

Settings:
After the files have been copied, any settings in this folder will be applied. Settings may either be .xml provisioning files (which are added directly to SDConfig.txt), or registry data in .reg, .rgu or .cereg files. Registry data files will be automatically converted to xml provisioning files within the Sys folder, which are then added to SDConfig.txt.

Scripts:
After the settings have been applied, any .mscr scripts within this folder will be executed. SDConfigGen will generate instructions in SDConfig.txt to automatically handle copying them to the \Temp folder and renaming them to replace spaces by underscores before execution if required.

Note that the device will not be interactive at this point, so don't write scripts that require user interaction.

Sys:
Apart from placing a copy of MortScript-4.11b7-PPC.cab in here, you shouldn't touch the contents of this folder; they will be automatically cleaned out and generated by the SDConfigGen tool.

Notes
I've provided RegToXml as a standalone .exe file so that registry data files can be manually converted to .xml provisioning files, if required. This is not generally necessary, though, as it will occur automatically as part of the SDConfigGen process.

Due to limitations of SDAutoRun, during installation some files need to be copied to the \Temp folder on the device before execution. A TempCleanup.xml provisioning file is generated in the Sys folder by SDConfigGen which is the last thing executed by SDConfig.txt. It should remove any temporary files that were placed in the \Temp folder, but will not remove the folder itself, or any other files within it.

SDAutoRun also requires that SDConfig.txt be ASCII, which means that if any files contain characters outside that range (such as accented characters), they can not be directly referenced. SDConfigGen will automatically detect this, and generate provisioning XML files to transparently rename the files before processing them, then back again afterwards.

The last statement in the SDConfig.txt is the RST: Reset statment, to reset the device.

The only part of the file structure that can be changed is the name of the "Storage Card" folder - the other folders cannot be renamed or moved. By default, when the SDConfigGen tool is run, it works with the first sub folder under the folder the .exe file is placed. To override this behaviour, pass the folder path to SDConfigGen.exe as a command line argument.

Cabs, settings and scripts are executed in alphabetical order, grouped by subfolder. Subfolders will be executed first, so for example the contents of Cabs\Prerequisites\ would be installed before the files directly in Cabs\ (but after files in Cabs\A\). All interactive cabs are executed first, followed by non-interactive ones.

All generated files (except SDConfig.txt) are in Unicode UTF-16 encoding.

To have SDConfigGen create a log file of the generation process, use the SDConfigGenWithLog.bat file included in the archive. It will create a results.log file containing the messages that would normally be output to the console.

This is still an early version, so there will probably be bugs with it. I've used it successfully for setting up my own device several times now, but I can't make any guarantees. Please do post any bug reports or suggestions here though!

Updates

0.6:

  • All output files are now in UTF-16 encoding, with the exception of SDConfig.txt, which is in ASCII.
  • If files referenced by SDConfig.txt have names containing non-ASCII characters, provisioning files to automatically rename them before they are accessed, and to restore them afterwards will be generated.
  • Subfolders are now supported in the Cabs, Settings and Scripts folders. Files within subfolders will be processed first, in alphabetical order of subfolder name.
  • File folder variable substition made case insensitive
  • Added SDConfigGenWithLog.bat file for easy logging of output to a log file

0.5.1:

  • Removed .svn files from the file structure (oops!)

0.5:

  • Made warning message on skipping registry files less confusing
  • RegToXml: Now supports empty values for String, MultiString and Binary values
  • RegToXml: Made ,ore robust to invalid data - if a value contains invalid data, only that value is skipped.
  • RegToXml: The line number is now reported with any error or warning message.
  • RegToXml: Whitespace allowed to surround the = in value lines.

0.4:

  • RegToXml: Fixed nesting bug with registry key deletion conversion
  • RegToXml: Now supports comments (lines starting with ; )

0.3:

  • RegToXml now assumes that registry files without Unicode BOM's are encoded in the system default ANSI codepage, rather than UTF-8 (this means that if your registry file is UTF-8, it must contain a Byte Order Mark to be read correctly)

0.2:

  • Files are now installed in alphabetical order by file name (within their own group). For example, first interactive cabs A-Z, then non-interactive cabs A-Z. This allows control over installing cabs that require others to be installed before or after them.


.NET Framework (required)

Warum willst Du den Post von Kefir melden?




Angehängte Datei
mousio's AutoRun.zip (3.11 KB, 1 mal)

MD5: bd55ec7ef20ae558b69c47f88cd0241c
SHA1: 7f6521bc57a13d1d0adf6e0d80e5272da78bb527
CRC32: f0b26525

Angehängte Datei
SDConfigGen.0.6.zip (17.83 KB, 1 mal)

MD5: 8b63d3a1f9223b0c646ace2b67f6deed
SHA1: 793b327d1acc777e0d3c5bc7052fb8914da3278f
CRC32: bc842080

Benutzer-Profile anzeigen Private Nachricht senden

 Post #1

Werbung
World4You Webhosting

Beiträge der letzten Zeit anzeigen:      

Neue Antwort erstellen

Kurze URL:

Du hast bereits für diesen Post angestimmt...

;-)




Alle Zeiten sind GMT + 1 Stunde

Top