UltimateZip 2.x
Company: Unknown
Setup Type: Legacy setup with switch support
Package Difficulty Rating: TBD [ Rate It or View Ratings ]
Most Commonly Reported Method: not yet established
Record Created On: 7/2/2002
Number of Views: 6,140
 
  
 
Software Knowledge Base: The software knowledge base contains details on over 60,000. The closest record matching this software package is displayed here. Browse the Software KB directly to find similar records.

Full Name: UltimateZip 2.7

Version: 2.71

Publisher: SWE von Schleusen

Help: http://www.ultimatezip.com

Uninstall String: "C:\Program Files\UltimateZip 2.7\unins000.exe" "C:\Arquivos de programas\UltimateZip 2.7\unins000.exe" "F:\Program Files\UltimateZip 2.7\unins000.exe"

More Info URL: http://www.ultimatezip.com

Categories: Unknown

Threat: Unknown

 
 
Command Lines: Command line details for installation and removal of this software. Details may include available command line arguments and/or public properties.

No information at this time. Discuss this package in the forum or click here if you have something to contribute!

 
 
Notes: Shared "notes from the field" covering how to handle the automated installation of this software.

This product uses "Inno Setup". Some of the switches common to this installer are as follows -

/SP- Disables the This will install... Do you wish to continue? prompt at the beginning of Setup.

/SILENT, /VERYSILENT - Instructs Setup to be silent or very silent. When Setup is silent the wizard and the background window are not displayed but the installation progress window is. When a setup is very silent this installation progress window is not displayed. Everything else is normal so for example error messages during installation are displayed and the startup prompt is (if you haven't disabled it with the '/SP-' command line option explained above). If a restart is necessary and the '/NORESTART' command isn't used (see below) and Setup is silent, it will display a Reboot now? messagebox. If it's very silent it will reboot without asking.

/NORESTART - Instructs Setup not to reboot even if it's necessary.

/LOADINF="filename" - Instructs Setup to load the settings from the specified file after having checked the command line. This file can be prepared using the '/SAVEINF=' command as explained below. Don't forget to use quotes if the filename contains spaces.

/SAVEINF="filename" - Instructs Setup to save installation settings to the specified file. Don't forget to use quotes if the filename contains spaces.

/DIR="x:\dirname" - Overrides the default directory name. A fully qualified pathname must be specified.

/GROUP="folder name" - Overrides the default folder name displayed on the Select Start Menu Folder wizard page.


It does not however turn off the systray icon, or stop it from making a desktop icon even though you tell it that during the /saveinf function. If anyone makes an .adm for this product to automatically associate it with files, turnoff the systray icon or more please feel free to add it here.

Above Entry Provided on 7/25/2002 by kkbass
Rate It
Rating
119

Option Explicit

On Error Resume Next

Dim Return, ofso,oShell, oNetwork, AllUsersDesktopPath, AllUsersStartMenuPath, DesktopPath
set ofso = CreateObject("Scripting.FileSystemObject")
Set oShell=WScript.CreateObject("Wscript.Shell")
Set oNetwork = WScript.CreateObject("Wscript.Network")


DesktopPath = oShell.SpecialFolders("Desktop")
AllUsersDesktopPath = oShell.SpecialFolders("AllUsersDesktop")
AllUsersStartMenuPath = oShell.SpecialFolders("AllUsersStartMenu")


' 1. setup
Return = oShell.Run("uzsetup /sp /verysilent /norestart /dir=""%systemdrive%\Compression\Ultimate Zip 2.7""", 1, True)

' 2. configuration
'
'Modification du registre
'Pas d'astuce au démarrage
oShell.regwrite "HKEY_CURRENT_USER\Software\SWE von Schleusen\UltimateZip\Main\Tip","2","REG_SZ"

'Delete Destop's Icon
'For current user
If ofso.fileExists(DesktopPath & "\UltimateZip.lnk") Then
ofso.deletefile DesktopPath & "\UltimateZip.lnk", True
End If

'For all users
If ofso.fileExists(AllUsersDesktopPath & "\UltimateZip.lnk") Then
ofso.deletefile AllUsersDesktopPath & "\UltimateZip.lnk", True
End If

Above Entry Provided on 3/17/2004 by cipriano94
Rate It
Rating
118

; This policy template has been written to work with UltimateZip 2.7.
;
; This is a System Policy template and does not use the preferred Group Policy
; method as the UltimateZip developers have not allowed for it in the development of
; their software. Refer to Microsoft TechNet article Q323639 for further information.
; Therefore these registry settings are permanent.
;
; When viewed via a Group Policy Object Editor, you must enable the view for system
; policies, which will appear as red icons as oppose to the standard blue ones.
;
; Windows 2000 Active Directory Group Policies:
; Click on Administrative Templates
; Righ click
; View >
; Select Show Policies Only so that it removes the tick.
;
; Windows 2003 Active Directory Group Policies:
; Click on Administrative Templates
; Righ click
; View >
; Select Filtering...
; Deselect Only show policy settings that can be fully managed so that it removes the
; tick.
; Select OK
;
; As seen below, there is both a Machine (Computer) and User section to this policy,
; so there may be a need to use Loopback processing in order for the user
; components to be applied.
;
; All you need to do is enable the policies. The default settings we have set are
; standard. You will only need to make two changes if UltimateZip is not deployed to
; "%SystemDrive%\Program Files". If you do change these locations, you must
; remember to truncate them by using the DOS (8 dot 3) format file structure, as we
; have. UltimateZip will not work if you don't.
; e.g. "%SystemDrive%\Program Files" becomes "%SystemDrive%\PROGRA~1"
;
; By default when you enable the "UltimateZip file associations" policy .zip and .cab
; files are left unchecked. It has been purposely written this way to allow for the
; built-in support of ZIP and CAB files in Windows 2003 and XP.
;
; There are two non-documented tricks we learnt when writing this policy template.
; 1. If you want to write to the (Default) value, use "" (double quotes).
; e.g. VALUENAME ""
; 2. If you need to place part of a string in double quotes, you will need to define a
; string variable and use it instead, otherwise you will receive an error when adding it
; to the GPO.
; e.g. Place the following in your policy:
; DEFAULT !!UZCOMMAND
; Then place the following under the [strings] section:
; UZCOMMAND =%SystemDrive%\PROGRA~1\ULTIMA~1.7\uzip.exe "%1"
; This will ensure that the double quotes remain around the %1 part of the string. This
; is important as %1 is an expanding variable that may contain spaces.
;
; Written by Jeremy.Saunders@au1.ibm.com on 5th November 2003.
; Modified by Jamie.Morrison@au1.ibm.com on 7th December 2004.

CLASS MACHINE

CATEGORY "UltimateZip 2.7"
POLICY "UltimateZip association"
KEYNAME "SOFTWARE\Classes\UltimateZip"
PART "UltimateZip Association" EDITTEXT
VALUENAME ""
DEFAULT "UltimateZip File"
END PART
END POLICY

POLICY "UltimateZip Default Icon"
KEYNAME "SOFTWARE\Classes\UltimateZip\DefaultIcon"
PART "UltimateZip Association" EDITTEXT EXPANDABLETEXT
VALUENAME ""
DEFAULT "%SystemDrive%\PROGRA~1\ULTIMA~1.7\uzip.exe,0"
END PART
END POLICY

POLICY "UltimateZip Open Command"
KEYNAME "SOFTWARE\Classes\UltimateZip\Shell\Open\Command"
PART "UltimateZip Association" EDITTEXT EXPANDABLETEXT
VALUENAME ""
DEFAULT !!UZCOMMAND
END PART
END POLICY

POLICY "UltimateZip file associations"
KEYNAME "SOFTWARE\Classes\.zip"
PART "Associate .zoo files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.zoo"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .zip files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.zip"
VALUENAME ""
VALUEON "UltimateZip"
VALUEOFF "CompressedFolder"
END PART

PART "Associate .z files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.z"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .xxe files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.xxe"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .wsz files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.wsz"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .uze files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.uze"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .uzb files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.uzb"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .uue files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.uue"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .uu files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.uu"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .tgz files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.tgz"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .tbz2 files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.tbz2"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .tbz files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.tbz"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .tar files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.tar"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .rar files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.rar"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .pk_ files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.pk_"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .pk3 files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.pk3"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .pak files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.pak"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .lzh files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.lzh"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .lha files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.lha"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .jar files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.jar"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .ha files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.ha"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .gz files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.gz"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .enc files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.enc"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .cab files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.cab"
VALUENAME ""
VALUEON "UltimateZip"
VALUEOFF "CLSID\{0CD7A5C0-9F37-11CE-AE65-08002B2E1262}"
END PART

PART "Associate .bz2 files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.bz2"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .bz files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.bz"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .bh files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.bh"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .arj files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.arj"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .arc files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.arc"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART

PART "Associate .ace files" CHECKBOX
KEYNAME "SOFTWARE\Classes\.ace"
VALUENAME ""
VALUEON "UltimateZip" DEFCHECKED
END PART
END POLICY
END CATEGORY


CLASS USER

CATEGORY "UltimateZip 2.7"

POLICY "Configuration"
KEYNAME "Software\SWE von Schleusen\UltimateZip\Main"
PART "Check file associations at startup." DROPDOWNLIST REQUIRED
VALUENAME "Asso"
ITEMLIST
NAME "no" VALUE "no" DEFAULT
NAME "yes" VALUE "yes"
END ITEMLIST
END PART

PART "Tip of the Day:" DROPDOWNLIST REQUIRED
VALUENAME "Tip"
ITEMLIST
NAME "Always show tips at startup" VALUE "0"
NAME "Show tips at startup if not opening an archive" VALUE "1"
NAME "Never show tips at startup" VALUE "2" DEFAULT
END ITEMLIST
END PART

PART "Start at tip number:" NUMERIC REQUIRED TXTCONVERT
VALUENAME "TipNo"
MAX 30
MIN 0
SPIN 1
DEFAULT 0
END PART
END POLICY
END CATEGORY

[strings]
UZCOMMAND =%SystemDrive%\PROGRA~1\ULTIMA~1.7\uzip.exe "%1"

Above Entry Provided on 1/3/2005 by jeremyts
Rate It
Rating
119
 
 
Virtualization: Information regarding how to work with this software in creating a virtual deployment package for products like Altiris SVS and Microsoft SoftGrid.

No information at this time. Discuss this package in the forum or click here if you have something to contribute!

 
 
Terminal Services: Notes on how to address problems working with this software in a Terminal Services session as with Citrix shared environments.

No information at this time. Discuss this package in the forum or click here if you have something to contribute!

 
 
Related Links: Additional resources to reference in regards to the deployment and configuration of this software.
 
Security Information: Details covering which files, directories and/or registry entries must be opened to standard users for operation in a locked down environment.

No information at this time. Discuss this package in the forum or click here if you have something to contribute!

 
 
Discussion threads: Discussion topics in the AppDeploy message boards that have been linked as relevant information to this entry.
 

 


Report a problem
  Printer Friendly Version