
Swimming_Bird
MemberContent Type
Profiles
Forums
Events
Everything posted by Swimming_Bird
-
Microsoft's AntiSpyware (Beta) Install
Swimming_Bird replied to 98EXL's topic in Application Installs
anyone tried messin with the setup.ini file? [Info] Name=INTL Version=1.00.000 DiskSpace=8000;DiskSpace requirement in KB [Startup] CmdLine= SuppressWrongOS=Y ScriptDriven=0 ScriptVer=1.0.0.1 DotNetOptionalInstallIfSilent=N OnUpgrade=1 RequireExactLangMatch=0404,0804 Product=Microsoft AntiSpyware PackageName=Microsoft AntiSpyware.msi MsiVersion=2.0.2600.0 EnableLangDlg=N DoMaintenance=N ProductCode={536F7C74-844B-4683-B0C5-EA39E19A6FE3} ProductVersion=1.0 SuppressReboot=Y PackageCode={0F5BF410-4D79-4DBE-AF54-C3271D47D4BD} looks like at the very lest you could add the command line info in there. PS this isnt the complete setup.ini file. -
http://www.daemon-tools.cc/dtcc/portal/dow...ory&catid=8
-
What Is The Earliest Wpi Can Berun?
Swimming_Bird replied to solohelp's topic in Windows Post-Install Wizard (WPI)
its not such a crazy idea. i odnt see why you coulndt modify some of the java to just generate the file that runs the installations and not actually run it. just have it generated to the a drive or something. -
Associate File-types With Programs
Swimming_Bird replied to AnimaliX's topic in Unattended Windows 2000/XP/2003
read through the forums using the search. i've looked it up its irritatingly compicated -
Which Installer Is The Best?
Swimming_Bird replied to xrated's topic in Unattended Windows 2000/XP/2003
WPI can be run however you want. Most people however do it via runonceex.cmd I havnt tried out xplode yet but it seems to be more powerful then WPI (i havnt done much research on xplode yet) but harder to config and design your own look. i'll prolly try out xplode next time i completely remake my UA cd -
i have yet to find a way to make the registering of the shell extensions dll's silent. Any help would be appreciated
-
bump Setup.exe /r doesnt seem to record the setup.iss file
-
Setting Resolution.
Swimming_Bird replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
this is prolly more of an "unattended windows" type question. -
if you have enough space for them on your UA CD/DVD you can just use robocopy to copy them over or you can make an SFX for each one and extract it to the propper dir. if you have shortcut.exe in your $OEM$\$$\System32 dir you can use that to make shortcuts wherever you want as well. Robocopy FAQ
-
how do you run/install these. If you just run the exe then all you have to do is copy them to the HDD
-
cdrom script ErroR... what gives?
Swimming_Bird replied to Astalavista's topic in Windows Post-Install Wizard (WPI)
CDROM=%%d @ asta you are missing that % key -
unattnded guide seems to have everything you need for a basic UA install.
-
i'm not a fan of MPC at all. I love light alloy
-
why do you need to? Klite does it good enough imho
-
This package contains the normal as well as real media splitter, the Shell extension, as well as the MKVMerge muxer. Unfortunately i have not yet found a way to Make the shell extension completely silent. When you register the dll associated with it it brings up some setup diologues. To install I used this batch file: @ECHO OFF SETLOCAL for %%i in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist %%i:\WIN51 set CDROM=%%i: REM Create's Directories to be installed to mkdir "%ProgramFiles%\Matroska\" mkdir "%USERPROFILE%\Start Menu\Programs\Matroska\" mkdir "%USERPROFILE%\Start Menu\Programs\Matroska\Shell Extension\" REM Installs the files required for Matroska Playback "%cdrom%\$OEM$\Install\Matroska\MPlay.exe" -y -o"%ProgramFiles%\Matroska" -aot regsvr32 /s "%ProgramFiles%\Matroska\MatroskaSplitter.ax" regsvr32 /s "%ProgramFiles%\Matroska\RealMediaSplitter.ax" regsvr32 /s "%ProgramFiles%\Matroska\VSFilter.dll" REM Installs the files used for the Matroska Shell Extension "%cdrom%\$OEM$\Install\Matroska\MShell.exe" -y -o"%ProgramFiles%\Matroska" -aot regsvr32 /s "%ProgramFiles%\Matroska\MatroskaProp.dll" shortcut /f:"%USERPROFILE%\Start Menu\Programs\Matroska\Shell Extension\Choose Icon.lnk" /a:c /t:"%PROGRAMFILES%\Matroska\MatroskaProp_ChooseIcon.exe" shortcut /f:"%USERPROFILE%\Start Menu\Programs\Matroska\Shell Extension\Configure.lnk" /a:c /t:"%PROGRAMFILES%\Matroska\MatroskaProp_Configure.exe" /i:"%PROGRAMFILES%\Matroska\matroskalogo_big.ico" shortcut /f:"%USERPROFILE%\Start Menu\Programs\Matroska\Shell Extension\Check Usage.lnk" /a:c /t:"%PROGRAMFILES%\Matroska\CheckUsage.exe" /i:"%PROGRAMFILES%\Matroska\Checkusage.exe" REM Installs the Program Used to mux matroska files "%cdrom%\$OEM$\Install\Matroska\MKVMerge.exe" -y -o"%ProgramFiles%\Matroska" -aot shortcut /f:"%USERPROFILE%\Start Menu\Programs\Matroska\MKV Info GUI.lnk" /a:c /t:"%PROGRAMFILES%\Matroska\mkvinfo.exe" /p:-g /i:"%PROGRAMFILES%\Matroska\Checkusage.exe" shortcut /f:"%USERPROFILE%\Start Menu\Programs\Matroska\MKV Merge GUI.lnk" /a:c /t:"%PROGRAMFILES%\Matroska\MKVtoolnix\mmg.exe" /i:"%PROGRAMFILES%\Matroska\matroskalogo_big.ico" REM Places the Uninstaller shortcut /f:"%USERPROFILE%\Start Menu\Programs\Matroska\Uninstall All.lnk" /t:"%PROGRAMFILES%\Matroska\Uninstall.bat" For this i have the files installed from the cd in the folder $OEM$\Install\Matroska\ i peronally placed a compiled uninstall.bat to uninstall.exe which i included with the plaback package. The Uninstall.bat looks something like this: @ECHO OFF SETLOCAL REM Unregisters registerd files REM These are for playback regsvr32 /s /u "%ProgramFiles%\Matroska\MatroskaSplitter.ax" regsvr32 /s /u "%ProgramFiles%\Matroska\RealMediaSplitter.ax" regsvr32 /s /u "%ProgramFiles%\Matroska\VSFilter.dll" REM this is for the shell extension regsvr32 /s /u "%ProgramFiles%\Matroska\MatroskaProp.dll" REM Deletes All shortcuts rd /S /Q "%ALLUSERSPROFILE%\Start Menu\Programs\Matroska\" REM Removes the directory rd /S /Q "%PROGRAMFILES%\Matroska\" As you can see there is one part that you would have to delete if you did not want the shell extension. Which i'd imagine a lot of you would not since it is not yet fully unattended. MPlay.exe MKVMerge.exe MShell.exe
-
i guess they disabled it then
-
Which is the proper way to go about it? shortcut /f:"%ALLUSERSPROFILE%\Start Menu\Programs\Matroska\MKV Info GUI.lnk" /a:c /t:""%PROGRAMFILES%\Matroska\mkvinfo.exe" -g" or shortcut /f:"%ALLUSERSPROFILE%\Start Menu\Programs\Matroska\MKV Info GUI.lnk" /a:c /t:"%PROGRAMFILES%\Matroska\mkvinfo.exe" /p:-g thanks.
-
I was wondering if anyone knew how to silently install this? I used PEiD and it sayd it was "Nullsoft PiMP Stub [Nullsoft PiMP SFX] *" I searched the forums but couldnt find anything on this. TIA
-
helper.bin download attachment dead.
-
This Line Is Freaking Out Wpi
Swimming_Bird replied to Swimming_Bird's topic in Windows Post-Install Wizard (WPI)
huh, rega and regb is foreign to me. How exactly do they work? And the reg file needs to be put in before the install. -
This Line Is Freaking Out Wpi
Swimming_Bird replied to Swimming_Bird's topic in Windows Post-Install Wizard (WPI)
Nevermind, i forgot the ' in cmd1 -
IT gives me that either the cmd1 or cmd2 has an invalid character: prog[pn]=['Dreamweaver'] uid[pn]=['MMDW'] desc[pn]=['A Web site editor'] cmd1[pn]=[regedit /S %cdrom%\\$OEM$\\Install\\Dreamweaver\\registration.reg] cmd2[pn]=['%cdrom%\\$OEM$\\Install\\Dreamweaver\\setup.exe /s'] dflt[pn]=['yes'] cat[pn]=['Multimedia'] pn++
-
cleanup.cmd trouble
Swimming_Bird replied to bart of borg's topic in Windows Post-Install Wizard (WPI)
meh, i guess i'll try them both, not that hard to change which one i use -
bump
-
Anyone know where the serial number is stored?