Jump to content

Nanaki

Member
  • Posts

    507
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Belgium

Everything posted by Nanaki

  1. I install anything at T-12. Everything's applied under Default User and Administrator, it looks waaaay better (with XPlode) and it's a bit faster (no reboot required after install) ^^
  2. Yup, I tried editing the key before installing Office, didn't work. I could write and read to it then though... stupid Office
  3. Sorry, not really an XML-expert. Another log-file would be handy?
  4. Alright, I'm less tired now. Well, when Office is installed with /QN, it doesn't install. The reason? It gives an error, and because of that error the whole install is aborted. "Crap!" But when the install is launched with /QB or /QR, the error is shown. It's an error revolving around some registry entry. That registry entry is needed for Error Sending. That same registry entry is GENERATED every time you launch Office anyway! So this is basically an AutoIt script which launches the setup with /QB, hides the spawned window and clicks "IGNORE" when the error pops up. Hey, it works! I'll put up the simple script here soon, so anyone can use it. ^^
  5. Well, it's been awhile since I used MSIE (it blows ), but try this; Options -> Advanced There should be some subtitle called "HTTP 1.1 options". Try toggling off/on the "Via proxy"-checkbox.
  6. Well, presetup.cmd launches BEFORE the normal setup (in which DetachedProgram launches), so I'm guessing it would be better to copy your data there.
  7. [Data] AutoPartition=0 MsDosInitiated="0" UnattendedInstall="Yes" AutomaticUpdates=Yes [Unattended] UnattendMode=FullUnattended OemSkipEula=Yes OemPreinstall=Yes TargetPath=\WINDOWS FileSystem=ConvertNTFS UnattendSwitch="Yes" Repartition=No [GuiUnattended] AdminPassword=* EncryptedAdminPassword=No OEMSkipRegional=1 TimeZone=85 OemSkipWelcome=1 [UserData] ProductKey=XXXXX-XXXXX-XXXX-XXXXX FullName="Nigel" OrgName="Home Use" ComputerName=nigel1 [Display] BitsPerPel=32 Xresolution=1024 YResolution=768 ConfigureAtLogon=1 [RegionalSettings] LanguageGroup=1 Language=00000809 UserLocale=00000809 InputLocale=0409:00000409 [URL] Home_Page=http://www.msfn.org [FavoritesEx] Title1="msfn.url" URL1="http;//www.msfn.org" [Identification] JoinWorkgroup=ploverly [Networking] InstallDefaultComponents=Yes [GuiRunOnce] "%systemdrive%\Install\start.bat" Try this, you just have to change serial. Favorites: I dunno, sorry
  8. Goddamnit, doesn't "RTFM" has no meaning anymore? :/ You're using old code, this is the new one: <execute display='Installing .NET Framework v1.1 ...'> <program>%systemdrive%\install\netframework\netfx.msi</program> <arguments>/QN</arguments> </execute>
  9. It's perfectly stable to be used in your discs. Which one's that? Maybe I could learn. ^^ 0.4a (21-03): - GUI variabled updated - Image files can now be of different size. Make 'em as large as you want, the app detects the size. - cdswitchback.jpg, cdswitchback.gif and cdswitchback.bmp can now be used. If multiple are found: JPG > BMP > GIF download here
  10. Try this: http://www.msfn.org/board/index.php?showtopic=41967
  11. Well, I've been using this for a while, and looks like there's more people wanting to use it. It's a little script making it possible to install Office at T-12. Maybe on other times, dunno, haven't tested those. Just be happy by the fact Office'll install perfectly fine. Alright, another thing, only the versions I write here will work, if it isn't listed, don't try to use a script of another version, as it will NOT WORK, no doubt. Make sure your transform is named "UNATTENDED.MST". Thanks. Now, the apps, place the needed version in the root office folder, right next to "setup.exe" and "unattended.mst": *links moved a bit down* Two notes when using this: For the love of god, only use this when you experience problems. It could very well be the installation works without this script! There's a downside to this method, being that if you want to launch Office Update, you need to insert the disc. This happens because the installation files aren't cached (this saves disk space tho, I always manually delete those files anyway). Before you start writing this script yourself, take a look if you can't use one of these precompiled scripts: Office 2003 English Professional Edition officeexec_ENG_PRO.zip Office 2003 English Standard Edition Download here (thanks to pontiacmn for this one) Office 2003 Dutch Professional Edition Download here Alright, let's get started. If you don't want to read all this crap, just take a look at the simplified version in the attached template: officeexec_template.au3 ----------------------------------------------------------------------------------------------- Tutorial For the explanation, I will use the Office 2k3 ENG Professional script as a template. <span style='font-size:21pt;line-height:100%'>1</span> First, learn to write and compile an AutoIT-script. See this topic for a decent explanation. <span style='font-size:21pt;line-height:100%'>2</span> Here's the simple script: Opt("SendKeyDelay", 1) Opt("WinWaitDelay", 1) Run("SETUP.EXE TRANSFORMS=Unattended.MST /QB") WinWaitActive("Windows Installer") WinSetState("Windows Installer", "", @SW_HIDE) WinWaitActive("Microsoft Office Professional Edition 2003", "1406") Send("!I") WinWaitClose("Microsoft Office Professional Edition 2003") The first two lines (Opt...) makes sure the script runs as fast as possible. The third line (Run...) runs the setup, using the specified MST-file. Note that the /QB parameter is used. When /QN is used, the installation will rollback and cancel when an error occurs. We don't want this to happen of course. The fourth line (WinWaitActive...) waits until the window with the title "Windows Installer" pops up. This is a line you shouldn't change, as all .MSI-installers start out with this window. The fifth line (WinSetState...) makes that same window invisible, so that no installer will be seen. The sixth line (WinWaitActive...) waits until the window with title "Microsoft Office Professional Edition 2003" and error code "1406" pops up. The title must be modified to the language version you use. You can only get to know this title by launching setup with /QB and letting the error occur. The seventh line (Send...) sends ALT+I. When you hold ALT when the error dialog occurs, you see that one letter per button is underlined. You need to press ALT plus the underlined letter to activate that button. The button we want to press is "Ignore". Every language versions has a different name for that button, so also a different underlined letter. Please don't remove the "!", this represents the ALT. The eighth line (WinWaitClose...) waits until the window called "Microsoft Office Professional Edition 2003" closes. This is the same window as "Windows Installer", but has renamed itself. This title also differs from language version to version. This line is needed because otherwise the script will exit too soon, meaning that RunOnceEx/Batchfile/blah will continue, even while Office is still installing. ----------------------------------------------------------------------------------------------- This post probably needs some updating, but I'll leave it like this for now.
  12. Yeah, the folder which icon has to be changed.
  13. No error, just check your answer file for flaws.
  14. Place a file called "desktop.ini" in the folder. In it put this stuff: [.ShellClassInfo] IconFile=%SystemRoot%\DropBox Dealie.ico IconIndex=0 The icon "DropBox Dealie" is in my Windows-folder, but you can place 'em anywhere if course. Then run a batch file with the following code: Attrib +s <FolderName>
  15. Nanaki

    Xpize 3.0 Released

    You can run the recovery console with the setup disc.
  16. - All DriverPacks - ACDSee, Acrobat7, Azureus, BSplayer, DC++, Dreamweaver, Fireworks, Firefox, Irfanview, Java, Kaspersky, KCeasy + FastTrack, Kerio, mIRC, msAntiSpyware, MSN, Photoshop, PowerToys, Thunderbird, FileZilla, Flash/Shockwave, all codecs, Real, Quicktime, WiMP10, Office 2k3, Nero + NeroVision + LanguagePacks, OpenOffice 2b, Paint.NET, Spybot, TrueDownloader, VMware, VMware Tools (for testing), Winamp, WinRAR, WinSCP, XPize, .NET Framework, Regshot, SiSoftware Sandra, VB6 runtimes and Steam (HL one and CS:S). All with their own seperate configurations. - All the current Hotfixes (installed seperatly) - XPlode - My spiffy app ^^ Total: 973 MB O.o
  17. How did you do that?!? I'm still on two discs and I think I have a lot. I still have to implement Visual Studio .net though. >_<
  18. Use tags. This is a quick compile for the lazy people.
  19. Err, my brains? I mean when you see something like <program display='BSplayer'> You know what to edit, right? Just open it in Notepad and mess around a bit.
  20. 0.3 (20-03) - Code clean-up, it's a bit faster now - Error repressing of parameters, informing you about what you did wrong - Instead of "f:" as a drive now "f" can also be used. - Hitting ESC will exit the program - The supplied drive is checked if its a CD/DVD-drive and if it exists There, that's enough for today. ^^
  21. I actually don't see the problem. This is how I learned it, withouth XML-knowledge or whatsoever: - Take an example file - Edit it the way you want it - "Hey, it works!"
  22. Thanks 0.3b: - Tray now opens when no disc is inserted - When the correct disc is already present, the tray won't eject - The disc-letter must now be supplied
  23. Nanaki

    Xpize 3.0 Released

    I had the same problem by installing SP2, when it occurs, just place that file back from the cd.
  24. Just search the forum, it's been discussed.
×
×
  • Create New...