Jump to content

ricktendo

Member
  • Posts

    2,261
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Honduras

Everything posted by ricktendo

  1. Does TR use inno installer, if so this is the cmdlines for it Inno Setup ® Installer. setup.exe /Option Install Options /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. /LANG=language Specifies the language to use. language specifies the internal name of the language as specified in a [Languages] section entry. When a valid /LANG parameter is used, the Select Language dialog will be suppressed. /DIR="x:\dirname" Overrides the default directory name displayed on the Select Destination Location wizard page. A fully qualified pathname must be specified. /GROUP="folder name" Overrides the default folder name displayed on the Select Start Menu Folder wizard page. If the [Setup] section directive DisableProgramGroupPage was set to yes, this command line parameter is ignored. /NOICONS Instructs Setup to initially check the Don't create any icons check box on the Select Start Menu Folder wizard page. /NOCANCEL Prevents the user from cancelling during the installation process, by disabling the Cancel button and ignoring clicks on the close button. Useful along with '/SILENT' or '/VERYSILENT'. /COMPONENTS="comma separated list of component names" Overrides the default components settings. Using this command line parameter causes Setup to automatically select a custom type. /TASKS="comma separated list of task names" * Applies to Inno Setup version 5.1.4, and above. Specifies a list of tasks that should be initially selected or deselected. To deselect a task, prefix its name with a "!" character. Only the specified tasks (and their children) will be selected; the rest will be deselected. Use the /MERGETASKS parameter instead if you want to keep the default set of tasks and only select/deselect some of them. Examples: Deselect all tasks, then select the "desktopicon" and "fileassoc" tasks: /TASKS="desktopicon,fileassoc" Deselect all tasks, then select a parent task item, but exclude one of its children: /TASKS="parent,!parent\child" /MERGETASKS="comma separated list of task names" * Applies to Inno Setup version 5.1.4, and above. Like the /TASKS parameter, except the specified tasks will be merged with the set of tasks that would have otherwise been selected by default. If UsePreviousTasks is set to yes, the specified tasks will be selected/deselected after any previous tasks are restored. Examples: Keep the default set of selected tasks, but additionally select the "desktopicon" and "fileassoc" tasks: /MERGETASKS="desktopicon,fileassoc" Keep the default set of selected tasks, but deselect the "desktopicon" task: /MERGETASKS="!desktopicon" /PASSWORD=password Specifies the password to use. If the [Setup] section directive Password was not set, this command line parameter is ignored. When an invalid password is specified, this command line parameter is also ignored. Display Options /SP- Disables the This will install... Do you wish to continue? prompt at the beginning of Setup. Of course, this will have no effect if the DisableStartupPrompt [Setup] section directive was set to yes. /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 DisableStartupPrompt or 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? message box. If it's very silent it will reboot without asking. /SUPPRESSMSGBOXES Instructs Setup to suppress message boxes. Only has an effect when combined with '/SILENT' and '/VERYSILENT'. The default response in situations where there's a choice is: Yes in a 'Keep newer file?' situation. No in a 'File exists, confirm overwrite.' situation. Abort in Abort/Retry situations. Cancel in Retry/Cancel situations. Yes (=continue) in a DiskSpaceWarning/DirExists/DirDoesntExist/NoUninstallWarning/ExitSetupMessage/ConfirmUninstall situation. Yes (=restart) in a FinishedRestartMessage/UninstalledAndNeedsRestart situation. 5 message boxes are not suppressible: The About Setup message box. The Exit Setup? message box. The FileNotInDir2 message box displayed when Setup requires a new disk to be inserted and the disk was not found. Any (error) message box displayed before Setup (or Uninstall) could read the command line parameters. Any message box displayed by [Code] support function MsgBox. Restart Options /NORESTART Instructs Setup not to reboot even if it's necessary. /RESTARTEXITCODE=exit code Specifies the custom exit code that Setup is to return when a restart is needed. Useful along with '/NORESTART'. Logging Options /LOG Causes Setup to create a log file in the user's TEMP directory detailing file installation and [Run] actions taken during the installation process. This can be a helpful debugging aid. For example, if you suspect a file isn't being replaced when you believe it should be (or vice versa), the log file will tell you if the file was really skipped, and why. The log file is created with a unique name based on the current date. (It will not overwrite or append to existing files.) The information contained in the log file is technical in nature and therefore not intended to be understandable by end users. Nor is it designed to be machine-parseable; the format of the file is subject to change without notice. /LOG="filename" Same as /LOG, except it allows you to specify a fixed path/filename to use for the log file. If a file with the specified name already exists it will be overwritten. If the file cannot be created, Setup will abort with an error message. CMenu Options AutoIt Usage Template AutoIt Script, requires no recording. Create the Au3 template script. Edit any variables at the start of the script, and and shortcuts, that require deletion. Refer to the CMenu Help Guide. It displays sample highlighted items, to edit. Compile the script, into an exe, and keep it with the installer. Run the compiled exe, to install. ; If recorded with CMenu, the ProgramName.inf is saved to the installer directory. Command line Usage Record an installation. Change filenames in command, to suit. Setup.exe /SAVEINF="c:\ProgramName.inf" The ProgramName.inf is saved to the root of c:\ drive, as to above command. But, CMenu record will save the ProgramName.inf to the installer directory. To silently install, use: Setup.exe /VERYSILENT /SP- /LOADINF="Full Address to\ProgramName.inf" You can add more parameters, as required. ; Or not record the install, and use parameters above, to the commandline.
  2. I suspect its due to some of the updates you are integrating...they are not all supported plus you don't need to add any updates for the ie8 or wmp10 addons they should be already updated OH and rootsupdate is not compatible with nLite
  3. Happens to me too sometimes...I just open the taskmgr and kill it
  4. You can do them both (integrate updatepack/addons & remove components) at the same time, you integrate the updatepack with ie8, wmp10 or 11 and any other addons and you like, also remove any components you don't want in the same session...If the updatepack maker is like me he would have use [KeepFiles] and [NeededComponents] in their entries.ini to protect any components from nLite removal that will affect his/her updatepack Just be conservative with what you remove
  5. If you are already using addons why not go a step further and use a updatepack. OnePiece, user_hidden and redxii all have updatepacks...they are basically what you want, all the updates extracted and packaged so that nLite integrates them neatly
  6. When do you want it to change, during setup or your 1st login? If it fails during login then you may need to integrate your display driver
  7. Better to use 1st logon commands in your Autounattend.xml to launch wpi
  8. http://www.msfn.org/board/convertxtodvd-3-...ll-t117831.html
  9. I notice with the Windows XP from Windows XP Mode when I do CTRL+ALT+DEL I get this screen, but when I do it on my regular XP I get the Windows Task Manager Is it caused by a regtweak or update or something I removed with nLite (I dont remove much, if anything). tia Edit: Sorry I think I found out how
  10. Cant be the cat files, my updatepack has over 220 cat files and no problem with any file being unsigned Do you integrate any drivers or driverpacks?
  11. If you want to have the most up to date wmp11 files with all the fixes use boooggy's list, if you just want just the critical security fixes then just use the ones MS update tells you to install Here is the list I use in my Spanish x86 updatepack BTW here is a new hotfix that is out but will not be on MS update KB974905
  12. Can I ask how you found the MapID's for the new Time Zones? Where can I read more on what the numbers mean? BTW are you absolutely sure your timezones are fully up to date, because I dont see "Venezuela Standard Time" and this is a new one
  13. You can utilize sc.exe DESCRIPTION: SC is a command line program used for communicating with the Service Control Manager and services. USAGE: sc <server> [command] [service name] <option1> <option2>... The option <server> has the form "\\ServerName" Further help on commands can be obtained by typing: "sc [command]" Commands: query-----------Queries the status for a service, or enumerates the status for types of services. queryex---------Queries the extended status for a service, or enumerates the status for types of services. start-----------Starts a service. pause-----------Sends a PAUSE control request to a service. interrogate-----Sends an INTERROGATE control request to a service. continue--------Sends a CONTINUE control request to a service. stop------------Sends a STOP request to a service. config----------Changes the configuration of a service (persistent). description-----Changes the description of a service. failure---------Changes the actions taken by a service upon failure. failureflag-----Changes the failure actions flag of a service. sidtype---------Changes the service SID type of a service. privs-----------Changes the required privileges of a service. qc--------------Queries the configuration information for a service. qdescription----Queries the description for a service. qfailure--------Queries the actions taken by a service upon failure. qfailureflag----Queries the failure actions flag of a service. qsidtype--------Queries the service SID type of a service. qprivs----------Queries the required privileges of a service. qtriggerinfo----Queries the trigger parameters of a service. qpreferrednode--Queries the preferred NUMA node of a service. delete----------Deletes a service (from the registry). create----------Creates a service. (adds it to the registry). control---------Sends a control to a service. sdshow----------Displays a service's security descriptor. sdset-----------Sets a service's security descriptor. showsid---------Displays the service SID string corresponding to an arbitrary name. triggerinfo-----Configures the trigger parameters of a service. preferrednode---Sets the preferred NUMA node of a service. GetDisplayName--Gets the DisplayName for a service. GetKeyName------Gets the ServiceKeyName for a service. EnumDepend------Enumerates Service Dependencies. The following commands don't require a service name: sc <server> <command> <option> boot------------(ok | bad) Indicates whether the last boot should be saved as the last-known-good boot configuration Lock------------Locks the Service Database QueryLock-------Queries the LockStatus for the SCManager Database EXAMPLE: sc start MyService
  14. If you use nLite and have XP vlk then you remove or skip oobe
  15. You edit WINNT.SIF with the "Component" you want turned on/off [Components] AccessOpt = on ; accessibility wizard Calc = on ; calculator CertSrv = off ; certificate services compontents of the certificate server CertSrv_Client = off ; web client components of the certificate server CertSrv_Server = off ; server components of the certificate server CharMap = off ; enables insertion of symbols and characters into documents Chat = on ; chat client Clipbook = on ; clipboard viewer Complusnetwork = off ; COM+ network access DeskPaper = on ; desktop wallpaper Dialer = on ; phone dialer Dtcnetwork = off ; DTC network access Fax = on ; Fax components fp_extensions = off ; Front Pager Extensions fp_vdir_deploy = off ; Visual Interdev RAD remote deployment freecell = off ; freecell game hearts = off ; hearts game hypertrm = on ; hyperterm IEAccess = on ; installs visible entry points (shortcuts) for IE IEHardenAdmin = off ; harden IE for administrators, power users IEHardenUser = off ; harden IE for users Iis_Common = off ; common set of files needed by internet information services Iis_Ftp = off ; ftp service Iis_Htmla = off ; html based administration tools for iis Iis_Inetmgr = off ; microsoft management console based administration tools for iis iis_nntp = off ; NNTP server. iis_nntp_docs = off ; NNTP server docs. iis_pwmgr = off ; personal web manager, valid only for w2k professional iis_smtp = off ; SMTP server. iis_smtp_docs = off ; SMTP server docs. iis_www = off ; www service iis_www_vdir_printers = off ; Web printing components iis_www_vdir_terminalService = off ; Installs terminal Services Active X control into the virtual directory IisDbg = on ; script debugger indexsrv_system = off ; indexing services, requires iis_common, iis_inetmgr, iis_www and com = on inetprint = off ; internet printing, requires iis_common, iis_inetmgr, and iis_www LicenseServer = off ; Disable Terminal Services licensing. media_clips = on ; Sample Sounds Media_Utopia = on ; utopia sound scheme minesweeper = off ; game mousepoint = off ; mouse pointers Mplay = on ; Windows media player msmq_ADIntegrated = off ; Integrates MSMQ into AD msmq_Core = off ; MSMQ core components msmq_HTTPSupport = off ; Enables MSMQ to use HTTP msmq_LocalStorage = off ; Allows messages to be stored locally msmq_MQDSService = off ; Provides AD and site recognition msmq_RoutingSupport = off ; Provides MSMQ routing msmq_TriggerService = off ; associates message arrival with com objects msnexplr = off ; Installs MSN Explorer MsWordPad = on ; Word Pad NetCis = off ; microsoft com internet services, requires iis_common, iis_inetmgr, iis_www and com = on NetOc = on ; additional optional networking components, requires [NetOptionalComponents] section ObjectPkg = off ; object packager OEAccess = off ; hide Outlook Express icons Paint = on ; MS Paint pinball = off ; game rec = on ; sound recorder reminst = off ; remote installation services rootautoupdate = on ; OCM update root certificates RStorage = off ; remote storage services enable the use of tape libraries as extensions of ntfs volumes solitaire = off ; Solitaire game spider = off ; spider game Templates = on ; document templates TerminalServer = off ; Installs Terminal Services on SERVERs only TsClients = off ; if TsEnable = On then tsClient files for creating client disks, appx 10MB TsWebClient = off ; Installs the ActiveX component for terminal services. requires IIS vol = on ; volume control wmaccess = on ; show Windows Messenger shortcuts wmPOCM = on ; show Windows Media Player shortcuts Wms = off ; windows media technologies components Wms_Admin_asp = off ; windows media technologies server administration tools web components wms_admin_mmc=off ; Windows Media MMC snap in Wms_Server = off ; windows media technologies server, requires Wms_Admin zonegames = off ; Installs MS Game Zone internet games
  16. Yes not all regtweaks work with setupcomplete.cmd, thats why I use FirstLogonCommands to do reg add in my autounattend.xml <SynchronousCommand wcm:action="add"> <CommandLine>reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer /v Link /t REG_BINARY /d 00000000 /f</CommandLine> <Description>Remove '- Shortcut' Suffix from shortcuts</Description> <Order>5</Order> <RequiresUserInput>false</RequiresUserInput> </SynchronousCommand>
  17. I use INF instead of REG in my setupcomplete.cmd, here is how I call it (you dont need to add DefaultInstall for LaunchINFSection because its called by default) :: Tweaks %SYSTEMROOT%\System32\rundll32 advpack.dll,LaunchINFSection %SYSTEMROOT%\Setup\Scripts\Se7enTweaks.inf BTW only reason I use advpack.dll,LaunchINFSection is because I use Cleanup=1 to self delete the INF, otherwize I would simply use InfDefaultInstall.exe in System32 %SYSTEMROOT%\System32\InfDefaultInstall.exe %SYSTEMROOT%\Setup\Scripts\nameofinf.inf
  18. Not during slipstreaming no but during setup yes, %windir%\setuperr.log will let you know if any system file has been tampered with Also all MS hotfixes are digitally signed, if you right click the hotfix and choose properties you can verify its from MS BTW you can use sigverif.exe to verify/test the digital signatures of your hotfix files http://www.ryanvm.net/forum/viewtopic.php?t=7790
  19. Bootcritical-Option nice...
  20. Yes if you are worried about people rebooting before its done by all means use passive BTW I think the best way to install sp3 is to integrate it into your CD and do a clean install with it
  21. You mean 50%...you wont see the same performance Not tricky at all
  22. 3 days til automatic activation, you still have 30 or whatever the number is days Edit: I think you may be correct, my bad
  23. I told you guys my way is much easier...just because it integrates other masssorage controllers and adds compatibility for a HUGE number of other drives does not mean its a bad thing I actually have the same brand PC as the guy in question, so one would think I know WTF im talking about when it comes to this subject
  24. Yea, you could replace/update explorer.exe with a more recent one found in KB955109 (click view and request hotfix and order it)
  25. LS Patch (Logoff Shutdown Patch) was used on it, it removes the text so some Vista themes look better
×
×
  • Create New...