Jump to content

Priapus

Member
  • Posts

    9
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Denmark

Everything posted by Priapus

  1. Hej, This topic has been discussed earlier. Check it here; http://www.msfn.org/board/index.php?act=ST&f=80&t=28021 Cheers, Priapus
  2. Hej Fly, I assume that you want to install Citrix ICA Client. The full package contains Program Neighborhood Program Neighborhood Agent Web Client download the Citrix Presentation Server Client Packager - Version 9.150 from this link; http://www.citrix.com/English/SS/downloads...D=22400&pID=186 Msi file is called ica32pkg.msi. by writing msiexec.exe /a ica32pkg.msi will start an administrative installation of the package where you can choose which components to be installed and other options. At the end of the wizard, you can save the package as a new msi file. Cheers, Priapus
  3. Hej, Try to use at the beginning of the command line; start /wait %systemdrive%\Install\Microsoft ActiveSync 3.8\setup.exe /s "silent.ini"" /f or Start /w This will wait untill the application above is finished installing.
  4. Hi, While recording an .iss file with setup.exe -r , you can specify where your answer file setup.iss should be placed. The normal syntax would be like this; setup.exe -r -f1"c:\setup.iss" -f2"c:\setup.log" or setup.exe -r -f1%systemdrive% -f2%TEMP%\setup.log If you only type setup.exe -r the answer file always be created under C:\Windows or C:\WINNT Installing the software by using setup.iss file if you only write setup.exe -s , the setup.iss file must be in the same folder as setup.exe Normal usage; setup.exe -s -SMS -f1"c:\setup.iss" -f2"c:\setup.log" Always create a .log file to see if the installation was successfull. Read more on Installshields ; http://support.installshield.com/kb/view.a...ticleid=Q101901
  5. Hey, Did you try CTRL + Print Screen and then paste it to MSPAINT. This should take the whole Window...
  6. Hey, Check the MS Articles below; http://www.microsoft.com/windowsxp/home/using/productdoc/en/default.asp?url=/windowsxp/home/using/productdoc/en/reg.asphttp://www.microsoft.com/resources/documen.../en-us/reg.mspx Her is the usage of the command; REG ADD [ROOTKEY\]Key[\'ValueName']=Value [DataType] [\\Machine] - You can always set PAUSE after the first line to find out the error message. - Write your file from the scracth. Open Notepad and write 3 lines and test 2 apps see if it works.
  7. Hey, You can remove the MSN Messenger from the registry. If you delete the entry below from the registry, it should solve your problem Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run] "MsnMsgr"="\"C:\\Programmer\\MSN Messenger\\MsnMsgr.Exe\" /background"
  8. Hey everybody, I have been using WinInstall LE 2003 since a few months and it is working fine. I can create MSI files and modify them. But you have to know what you are doing otherwise your package will not work. Here are a few things I am modifying; - Removing HKCU entries, - Changing installation method to per machine. Important ! - Program Shortcuts ( Uninst.exe, do not need this file) - Removing unnecessary captured files ( Explorer --> Comdlg32) - Removing captured WinInstall entries. - I am also checking the files that will be copied. ( Any dll files overwritten ! ) - Installing the MSI file with start /wait / i /qb+ or /i /qn switch. - Except above, A few MSI rules; - The highest version of the file always wins. - A file without version number considered as user data. - For those who is intended to modify the MSI package, I suggest to read Windows Installer WhitePaper from Microsoft to get a familiar with this technology. Priapus
×
×
  • Create New...