Forum Replies Created

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • in reply to: Patcher for the Office 2011 Installer #381838
    wadewei
    Participant

    [QUOTE][u]Quote by: yoshi[/u][p]Mine seems to work ok but has the licensing problem. Still working on it[/p][/QUOTE]

    Hi yoshi,

    What’s your email address, I have a long debug about http://dl.dropbox.com/u/6496412/Office_2011_14.2.1_Update.dmg, but can not reply here, as it is say ing something like “Spam is detected, the post was deleted”.

    Thanks,

    /Wade

    in reply to: Patcher for the Office 2011 Installer #381534
    wadewei
    Participant

    Report: Office for Mac 2011 [b]14.1.4[/b] works fine for me on making Snow Leopard(10J3210) and Lion(11C74) images after applying:
    [url]http://dl.dropbox.com/u/11466/InstaDMG%20PatchOfficeUpdate%200.4.dmg[/url]
    and
    [url]http://dl.dropbox.com/u/429559/patchOffice2011_1410Update_v041.dmg[/url]

    Host Machine: Mac OS X Server 10.7.2
    InstaDMG svn:425

    Cheers!

    /Wade

    in reply to: Bind Lion to Active Directory with a shell script #381107
    wadewei
    Participant

    [QUOTE][u]Quote by: Macleod[/u][p]If you look at dsconfigad, you will see that the arguments have changed.
    10.6:
    dsconfigad [-f] [-a computerid] -domain fqdn -u username [-p password]
    [-lu username] [-lp password] [-ou dn] [-status]
    10.7:
    dsconfigad -add domain -username value [-computer value] [-force]
    [-password value] [-ou dn] [-preferred server]
    [-localuser value] [-localpassword value]
    Update your scripts to use the new arguments, and you should be fine.
    You should note though that dsconfigad now automatically adds “All Domains” to the search path on bind, and few options can be configured before the machine is bound, since there is no longer a persistent plist tracking the ad options. If you turn off “All Domains”, you will need to manually remove it from the Search Path.

    –DH[/p][/QUOTE]

    I agree with that, and we should use new bind script specially for Lion with correct syntax and parameters order of command dsconfigad to try it. According to some tests on Lion 10.7.1 with Win 2003 AD, I wrote a simple one bind script. Sure, it’s still based on previous AD bind scripts, but you can see some things are changed in “#Bind to AD” and “#Configure advanced options” sections. Please feel free to try, and give feedback.
    [code]
    #!/bin/sh

    # Active Directory Bind Script For Lion Client
    # Modified by Wade Wei according to previous popular bind script

    #Basic parameters
    computerid=`scutil –get LocalHostName`
    domain=”contoso.com”
    udn=”macbinder”
    password=”afp54801!”
    ou=”OU=maccomputers,DC=contoso,DC=com”

    #Advanced parameters
    alldomains=”enable”
    localhome=”enable”
    protocol=”smb”
    mobile=”enable”
    mobileconfirm=”disable”
    useuncpath=”enable”
    user_shell=”/bin/bash”
    preferred=”ad1.contoso.com”
    admingroups=”CONTOSO\Domain Users”
    localadmin=”maclocaladmin”
    localpwd=”mac01!”
    ksauthority=”enable”
    namespace=”domain”
    packetsign=”require”
    packetencrypt=”require”

    # Bind to AD
    dsconfigad -add $domain -username $udn -password “$password” -computer $computerid -ou “$ou” -preferred $preferred -force -localuser $localadmin -localpassword “$localpwd” -packetencrypt $packetencrypt
    sleep 5

    #Configure advanced options
    dsconfigad -localuser $localadmin -localpassword “$localpwd” -alldomains $alldomains -localhome $localhome -groups “$admingroups” -mobile $mobile -mobileconfirm $mobileconfirm -namespace $namespace -packetsign $packetsign -useuncpath $useuncpath -protocol $protocol -shell $user_shell -authority $ksauthority
    echo “Bind domain done!”
    exit 0
    [/code]

    Thanks,

    Wade

    in reply to: Questions About InstaDMG and 10.7 Lion #381101
    wadewei
    Participant

    [QUOTE][u]Quote by: yoshi[/u][p]dumb question but how you reference the packages that you want to install with instadmg.bash ?

    cause I always used instaup2date and catalog files

    😆 [/p][/QUOTE]

    Though not good at shell script, but I got the tip from the comment line 841 of instadmg.bash

    [code]
    …….
    # install packages from a folder of folders (01, 02, 03…etc)
    ……
    [/code]

    And yes, page 4 of InstaDMG1-6rc1.pdf mentioned it too, thanks Allister for that.

    Wade

    in reply to: Questions About InstaDMG and 10.7 Lion #381096
    wadewei
    Participant

    My test workflow seems fine with instadmg.bash, please check if you are interested:

    [code]
    sudo ./instadmg.bash -s -I ./InstallerFiles/BaseOS/InstallESD.dmg -n “Macintosh HD” -m LionTest

    12:16:58 ###### InstaDMG build initiated ######
    InstaDMG version 1.6rc1 (svn revision: 425)
    Host OS: Mac OS X Server 10.7
    Host Hardware: Macmini4,1
    Output file name: LionTest
    Output disk name: Macintosh HD
    12:16:58 ###### Finding main MacOS X installer disk ######
    12:16:58 ###### Looking for a Cached Image ######
    Mounting the shadow file (/private/tmp/idmg.oSro/38BCFEA8-E141-47CC-B76B-F830629BB1EA.shadowfile) onto the cached image (./Caches/BaseImageCache/48FC2F98.dmg)
    Target OS: Mac OS X 10.7 (11A511)
    WARNING: Chroot jails only work with 10.5, so disabling that functionality
    WARNING: Installer daemon-jailing does not currently work with 10.7, disabling that functionality as well
    12:17:07 ###### Beginning Update Installs from ./InstallerFiles/BaseUpdates ######
    Working on folder 01 (12:17:08)
    Installing MacOSXUpd10.7.1.pkg
    Folder 01 done (12:27:05)
    12:27:05 ###### Beginning Update Installs from ./InstallerFiles/CustomPKG ######
    Working on folder 01 (12:27:05)
    Installing clearReg.pkg
    Folder 01 done (12:27:14)
    Working on folder 02 (12:27:14)
    Installing CreateLionUser_LocalMacadm.pkg
    Folder 02 done (12:28:25)
    Working on folder 03 (12:28:25)
    Installing Office Installer.mpkg
    Folder 03 done (12:38:40)
    Working on folder 04 (12:38:40)
    Installing VolumeOffice2011.pkg
    Folder 04 done (12:38:56)
    Working on folder 05 (12:38:57)
    Installing Office 2011 14.0.1 Update.mpkg
    Folder 05 done (12:40:55)
    Working on folder 06 (12:40:55)
    Installing Office 2011 14.0.2 Update.mpkg
    Folder 06 done (12:42:46)
    Working on folder 07 (12:42:46)
    Installing Office 2011 14.1.0 Update.mpkg
    Folder 07 done (12:46:27)
    Working on folder 08 (12:46:27)
    Installing Office 2011 14.1.2 Update.mpkg
    Folder 08 done (12:49:21)
    Working on folder 09 (12:49:21)
    Installing Communicator Update.mpkg
    Folder 09 done (12:51:08)
    Working on folder 10 (12:51:08)
    Installing Communicator Installer.mpkg
    Folder 10 done (12:51:09)
    Working on folder 11 (12:51:09)
    Installing Communicator 13.1.2 Update.mpkg
    Folder 11 done (12:51:16)
    Working on folder 12 (12:51:16)
    Installing BindAD.pkg
    Folder 12 done (12:51:23)
    12:51:24 ###### Correcting some generic installer errors ######
    Correcting symlinks that point off the disk
    Closing programs that have opened files on the disk
    Deleting Extensions.mkext cache file
    Deleting cache files created during installations
    11:05:56 ###### Creating the deployment DMG and scanning for ASR ######
    Rename the deployment volume: Macintosh HD
    Create a read-only image
    Scanning image for ASR: ./OutputFiles/LionTest.dmg
    ASR image scan complete
    11:18:38 ###### InstaDMG Complete ######
    11:18:38 ###### Cleaning up ######
    Ejecting images
    Deleting scratch DMG
    [/code]

    in reply to: Patcher for the Office 2011 Installer #380887
    wadewei
    Participant

    [QUOTE][u]Quote by: Goldberg[/u][p]Has anyone successfully deployed Office updates 14.1.0 and 14.1.2 in instaDMG? How did you do it?[/p][/QUOTE]

    Goldberg,

    As I mentioned already, I got them worked in InstaDMG, what need to do is let the updates apply the following droplet patches, the patches order does not matter.

    [url]http://dl.dropbox.com/u/11466/InstaDMG%20PatchOfficeUpdate%200.4.dmg[/url]

    and

    [url]http://dl.dropbox.com/u/429559/patchOffice2011_1410Update_v041.dmg[/url]

    Thanks for the authors of the patches.

    Wade

    in reply to: Advice #380870
    wadewei
    Participant

    [QUOTE][u]Quote by: zesh1[/u][p]Hi Guys

    I want to create an image with just the OS and admin account on.

    Then use deploystudio to deploy it. I also was to install other applications in packages but do not want these to be part of the main build as different users require different software and its much easyer updating a package rather than a whole image.

    Can i somehow delpoy these packages through deploystudio in the imaging process?

    I have used casper before. Whats the best way to do this with instadmg and deploystudio?

    Do i need to use instaup2date?

    All i have managed to do is create a vanila image from a base image which pulled some updates from somewere? The Base image was 10.6.3 and i ended up with a 10.6.7 image?

    I have read the google pages for this but am getting confused between instaDMG and the uptdatebit?

    Some help would be appricated

    Thanks

    [/p][/QUOTE]

    Mr Karl Kuehn has provided clean train of thought is: InstaDMG—->DeployStudio—->Munki

    Good luck.

    in reply to: Active Directoy and Lion #380869
    wadewei
    Participant

    WIth what server? Snow Leopard Server or Lion Server when you extended AD? I believe there must be different changes between them. And we should use Lion Server Admin Tools to mange 10.6 and 10.7.

    wadewei
    Participant

    Yes, I think so.

    [url]https://www.afp548.com/forum/viewtopic.php?forum=45&showtopic=28374[/url]

    in reply to: Patcher for the Office 2011 Installer #380839
    wadewei
    Participant

    [QUOTE][u]Quote by: wadewei[/u][p][QUOTE][u]Quote by: dead2sin[/u][p][QUOTE][u]Quote by: cyberatz[/u][p]No special patcher is required to fix this 😯

    Basically, download the update file (see links above) from MS. Kill any running instances of Communicator. Move the file from your Applications folder to trash. Run the updater. The updater will basically reinstall communicator with the correct 13.1.0 version.

    None of this patcher stuff.

    Enjoy.

    [/p][/QUOTE]

    This is specifically for building images using InstaDMG. Communicator shouldn’t be installed on your build system to begin with, so I assume you are referring to installing the update on a standard client system?

    Nate[/p][/QUOTE]

    Any luck for new published update ” Office Update 14.1.0 and 14.1.2″? I’ve tried with InstaDMG(with the OfficeUpdatePatch run for them) and DeployStudio, but no luck, still stayed in 14.0.2

    [/p][/QUOTE]

    With the following patchs run, the problem was gone with InstaDMG, not tested yet with DeployStudio

    [url]http://dl.dropbox.com/u/11466/InstaDMG%20PatchOfficeUpdate%200.4.dmg[/url]
    and
    [url]http://dl.dropbox.com/u/429559/patchOffice2011_1410Update_v041.dmg[/url]

    Cheers and Thanks,

    Wade

    in reply to: Patcher for the Office 2011 Installer #380831
    wadewei
    Participant

    [QUOTE][u]Quote by: dead2sin[/u][p][QUOTE][u]Quote by: cyberatz[/u][p]No special patcher is required to fix this 😯

    Basically, download the update file (see links above) from MS. Kill any running instances of Communicator. Move the file from your Applications folder to trash. Run the updater. The updater will basically reinstall communicator with the correct 13.1.0 version.

    None of this patcher stuff.

    Enjoy.

    [/p][/QUOTE]

    This is specifically for building images using InstaDMG. Communicator shouldn’t be installed on your build system to begin with, so I assume you are referring to installing the update on a standard client system?

    Nate[/p][/QUOTE]

    Any luck for new published update ” Office Update 14.1.0 and 14.1.2″? I’ve tried with InstaDMG(with the OfficeUpdatePatch run for them) and DeployStudio, but no luck, still stayed in 14.0.2

    in reply to: Patcher for the Office 2011 Installer #380448
    wadewei
    Participant

    [QUOTE][u]Quote by: dead2sin[/u][p][QUOTE][u]Quote by: dknisely[/u][p]I think I must be an idiot, but I can’t seem to get the patcher to do anything. Is it supposed to work on the “Communicator13.1_ALL.dmg” file? I still get the same error when I try to run the updated version. Am I supposed to drop the dmg file on the patcher or the extracted mpkg file? Neither has any effect.

    Any help would be appreciated as the repeated requests by Microsoft Office Autoupdater are very annoying and it appears there are new features in 13.1.[/p][/QUOTE]

    For Communicator, you’ll want the Office Update Patcher: [url]http://dl.dropbox.com/u/11466/InstaDMG%20PatchOfficeUpdate%200.4.dmg[/url]

    The Update patcher will patch 2008, 2011 and Communicator updates.

    The Office 2011 Installer patcher is strictly for the Office 2011 installer.

    Basically, you need to drag the .pkg/.mpkg to your desktop or any other folder that isn’t a read-only DMG. Then, drop the .mpkg on the patcher and it will make the changes necessary for it to work with InstaDMG.

    If you mount the .dmg from Microsoft and try to just drag the .mpkg onto the patcher directly, it won’t do anything because the .dmg is read only.

    Let me know if you run into any other issues.

    Nate[/p][/QUOTE]

    Hi, Nate

    Thanks for your patchs.

    But I can not download Update patch from http://dl.dropbox.com/u/11466/InstaDMG%20PatchOfficeUpdate%200.4.dmg, and can not download Installer patch V1 though I tried many times with the help of friends in different places, I just can download Installer patch V2 and V3.
    So would you mind sending Update patch and installer patch v1 to my email [email protected]?
    And
    For installer Patch, Is the installing process as V1—->V2—->V3? or just installing V3 is OK?

    Thanks very much.

    Wade

Viewing 12 posts - 1 through 12 (of 12 total)