Jump to content

paper

Member
  • Posts

    31
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About paper

Contact Methods

  • Website URL
    http://www.eatpaper.net

paper's Achievements

0

Reputation

  1. I'm trying to push Office 2007 via GPSI. I added a few machines to a test OU and this is what happens when it reboots... ------------------- Event Type: Error Event Source: Application Management Event Category: None Event ID: 102 Date: 4/10/2008 Time: 2:08:44 AM User: NT AUTHORITY\SYSTEM Computer: computer1 Description: The install of application Microsoft Office Enterprise 2007 from policy Office 2007 Software Push failed. The error was : The installation source for this product is not available. Verify that the source exists and that you can access it. For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp. Event Type: Information Event Source: Application Management Event Category: None Event ID: 303 Date: 4/10/2008 Time: 2:08:45 AM User: NT AUTHORITY\SYSTEM Computer: computer1 Description: The removal of the assignment of application Microsoft Office Enterprise 2007 from policy Office 2007 Software Push succeeded. For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp. Event Type: Error Event Source: Application Management Event Category: None Event ID: 108 Date: 4/10/2008 Time: 2:08:45 AM User: NT AUTHORITY\SYSTEM Computer: computer1 Description: Failed to apply changes to software installation settings. Software changes could not be applied. A previous log entry with details should exist. The error was : The installation source for this product is not available. Verify that the source exists and that you can access it. For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp. Event Type: Error Event Source: Userenv Event Category: None Event ID: 1085 Date: 4/10/2008 Time: 2:08:45 AM User: NT AUTHORITY\SYSTEM Computer: computer1 Description: The Group Policy client-side extension Software Installation failed to execute. Please look for any errors reported earlier by that extension. For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp. -------------------- The office 2007 installation is located on a software server. In group policy, I put it in under Computer Config>Software Installation and directed it to the path to: \\SoftwareServer\Install\Office 2007\Enterprise.WW\EnterpriseWW.msi The folder I gave authenticated users, domain computers, almost full control (except ownership). I don't know what to do anymore... is there something i am missing?! Please help.. I am relatively new in this area.
  2. paper

    config.xml

    <!--- and ---> basically just signify comments. You want to remove ALL of these. whitespaces don't matter ... but basically you want it readable.
  3. telnet's not gonna work. I need to deploy this to some 400 clients.. I figured part of it out.. it had to do with the quotes but now it's saying the install is invalid. Weird bc if you manually click on setup.exe it runs fine, but running from the script it doesnt... i'm thinking it may be the quotes again.. still troubleshooting.. psexec \\computer -u domain/Admin -p Password "\\Software\Installation Software\Office\Office 2007 Enterprise\setup.exe /adminfile" "\\Software\Installation Software\Office\Office 2007 Enterprise\o2kdisplaybasic.MSP"
  4. gah. help! this why doesn't this work?! The computer returns a 1, stating it's not installed and attempts to run setup.exe but fails. It's throwing errors at the "setup.exe /adminfile blah.msp" part If i use either it says that both either /config and /adminfile is an invalid switch?! Invalid switch - /adminfile setlocal REM ********************************************************************* REM Environment customization begins here. Modify variables below. REM ********************************************************************* REM Get ProductName from the Office product's core Setup.xml file. set ProductName=Enterprise REM Set DeployServer to a network-accessible location containing the Office source files. set DeployServer="\\Software\Installation Software\Office\Office 2007 Enterprise\Enterprise.WW" REM Set ConfigFile to the configuration file to be used for deployment REM (required) set ConfigFile="\\Software\Installation Software\Office\Office 2007 Enterprise\Enterprise.WW\config.xml" REM Set LogLocation to a central directory to collect log files. set LogLocation="\\Software\Installation Software\Office\Office 2007 Enterprise\O2k7Log" REM ********************************************************************* REM Deployment code begins here. Do not modify anything below this line. REM ********************************************************************* IF NOT "%ProgramFiles(x86)%"=="" SET WOW6432NODE=WOW6432NODE\ reg query HKEY_LOCAL_MACHINE\SOFTWARE\%WOW6432NODE%Microsoft\Windows\CurrentVersion\Uninstall\%ProductName% if %errorlevel%==1 (goto DeployOffice) else (goto End) REM If 1 returned, the product was not found. Run setup here. :DeployOffice REM start /wait %DeployServer%\setup.exe /config %ConfigFile% start /wait %DeployServer%\setup.exe /adminfile %DeployServer%\ok27displaybasic.MSP" echo %date% %time% Setup ended with error code %errorlevel%. >> %LogLocation%\%computername%.txt REM If 1 returned - Product not found. Attempted to run setup. REM If 0 or other returned - Product was found or another error occurred. Do nothing. :End Endlocal and possibly dumb question.. how come i can't use PsExec to push this out as it doesn't seem to work? even tried throwing the setup.exe command in a BAT and tried to run it with PsExec but it just seemed to hang on the computer. psexec \\computer -u domain/Admin -p Password "\\Software\Installation Software\Office\Office 2007 Enterprise\setup.exe" /adminfile "\\Software\Installation Software\Office\Office 2007 Enterprise\o2kdisplaybasic.MSP"
  5. paper

    config.xml

    you need to uncomment anything you want used (remove the <!-- and --> ) read the big sticky topic on O2k7. very useful. below is an example of a real basic config file... <Configuration Product="SHAREPOINTDESIGNER"> <Display Level="basic" CompletionNotice="yes" SuppressModal="yes" AcceptEula="yes" /> <PIDKEY Value="xxxxx-xxxxx-xxxxx-xxxxx-xxxx /> <USERNAME Value="Customer" /> <COMPANYNAME Value="MyCompany" /> </Configuration>
  6. have you tried to launch the setup with setup.exe /adminfile yourfile.msp? im using this way and is working great. i have now deploy it to about 5 machines and all went fine. thanks for the post guys.. i'm confused.. how did you push it remotely to other machines? I've had problems with PsExec and setup.exe files.. MSIs work great but setup.exe's.. not so much.. psexec \\computer -u domain/Adminacct -p Password "\\Software\Installation Software\Office\Office 2007 Enterprise\setup.exe" /adminfile "\\Software\Installation Software\Office\Office 2007 Enterprise\o2kdisplaybasic.MSP" basically says "The system cannot find the file specified"
  7. ok! i used zorphnog's suggestion and used boot.wim instead to see if I could at least get the boot to work. that seemed to do the trick as it finally boots and goes to that WinPE command prompt. So good deal! Now my problem is the computer's not recognizing any drives.. but that's another matter. The one thing I was hoping to do was to be able to somehow put a GUI over the Winpe command prompt so you wouldn't have to type in the commands. Ahs wells.. one step at a time huh? Thanks guys for the help. I'll keep on trying and let ya know how far I get.
  8. oh ok. huh. So instead of winpe, you edited boot instead.. hmmm.. i redid the winpe.. and now it won't even boot at all. funny. my 2nd try it at least booted and loaded and then it got an error. but this time (my 3rd try) it didn't even go there.. it stayed stuck after BIOS was installed succesfully.. Well.. ok.. trying to redo it again this time using boot.wim. btw.. when you copy the image.wim to the ISO folder.. do you need to rename it anything special (like install.wim)? or does that not matter..
  9. oh and 1 thing i'm still confused about.. probably a dumb question .. but whats the difference from boot.wim and winpe.wim? From my limited experience, it looked like winpe.wim handles the image capture while boot.wim handles the image install? If this is right, then why am I putting winpe.wim in the iso instead of the original boot.wim?
  10. i'm in the process of redoing the winpe right now.. so I'll let you guys know how it turns out. Iceman, I was looking at your paper, and while it's great.. it looks like when this loads, I'll need to type in commands to diskpart and all that. I was hoping to somehow "use" the GUI of the Capture WinPE with this to make it easier for the user to step thru (instead of having to type the commands out to format, etc.). The reason being is I'm creating this DVD for the service desks folks at another site who'd know NOTHING about typing in commands. They just want to pop in a DVD and click "next". If I sound confusing I mean.. In the WDS Server, you click start>all programs>Admin Tools>Windows Deployment Services It should list the WDS Server and expanding the tree, you should see a Boot Image folder. Expand that, and my WinPE.wim (which does the capture) is loaded there as well as Boot.wim (which does the apply image) Now when I right click WinPE.wim and select "create Capture Image" it creates a 2nd winpe.wim. So now I have 3 WIMs sitting in the boot folder. The 2nd Winpe.wim is different in this case, if I select this option upon network boot, it pulls up a nice "wizard" type view that lets you capture image and partition/format the drives by just clicking a few options (instead of typing them), put the image in the right folder and all that good stuff. Have you guys done something like this before.. incorporating the "wizard" view of it on a dvd? After I'm done with buring the DVD i'm making now per Iceman's instructions.. I was going to try to see if I could export the "capture winpe.wim" and replace boot.wim with that (instead of using the original winpe.wim) and see if it would work.. Would this be possible?
  11. i think Iceman mentioned it on his paper.. (the removing of that prompt.. not the increase timer) http://www.msfn.org/board/index.php?showtopic=101383 ok found it.. he had it on page 18 (thanks iceman ) remove bootfix.bin frim winpe\iso\boot before the oscdimg
  12. wow sweet, that looks super useful! i always wondered why MS didn't think of a guide for XP for WDS as well as the Vista one. I think I sort of have the general idea.. but now I think I'm stuck again. Here's what I did. c:\winxp c:\winxp\ISO xcopy c:\winpe\winpe.wim c:\winpe\iso\sources\boot.wim /y Copy WINXP.WIM to c:\winpe\iso oscdimg -n -m -h -bc:\winpe\etfsboot.com c:\winpe\iso c:\winpe\winpe.iso burned to dvd.. I tried to boot it.. it got to the black screen and loading progress bar After that it threw an error on WINLOAD.EXE - saying: windows\system32\boot\winload.exe 0xc000000f The selected entry could not be loaded because the application is missing or corrupt. Is this just an issue of me including a bad image or am I just doing this plain wrong or am I missing a step? If this is generally right.. then I guess I need to go back and format the WINPE correctly? Weird thing is, everything works perfectly on the network. For the WINPE.WIM.. I just extracted the image from the existing one we had on the server.. so I thought it would be ok. I also extracted WINXP.WIM from an existing install image we had on the server as well...
  13. Ok.. thanks for the replies guys. Let me get this straight.. I need to include winpe in there somewhere so how do I make the connection from WINPE to the Windows XP Image itself? In these folders: c:\winxp c:\winxp\ISO where the ISO folders contain all those boot files: ETFSBoot.com, etc.. Replace boot.wim with WINPE.wim (instead?) at c:\winxp\ISO\sources But then.. what do I do with WinXP.wim? This WIM is the actual captured image of a computer that has XP. So it's not an OS only install but includes drivers, additional apps, etc as well. Do I just drop the WIM in the ISO folder? Or is there more to it? Do I need to do an imagex /append or mount it and do something with it? Thanks for the help so far.. all the tutorials I saw for oscdimg involved burning WINPE to a CD and I wasn't sure how that related to the creating a dvd for the actual install image itself. I'm slow, I know.
  14. Ok.. should be simple but for some reason I'm not getting the right results. Am I doing this right? I have a winxp.wim that I created that is working image (i've tested by applying it across the network). Now I just want to make it into a bootable DVD so I can just use the DVD to image a computer. What I did was create folders like so: c:\winxp c:\winxp\ISO where the ISO folders contain all those boot files: ETFSBoot.com, etc.. I renamed winxp.wim to boot.wim and replaced the one in c:\winxp\ISO\sources then ran: oscdimg -n -h -bc:\winxp\etfsboot.com c:\winxp\iso c:\winxp\winxp.iso Is this right? Becauuse it tries to load the files but then gives a boot error saying required device is not accessible..
  15. i'm in the same situation. My WIM is over 5GB and I need it burned on 2 DVDS. Able to split.. but how to convert to ISO and span it across 2 DVDs?! I've scoured all over the place and have yet to find an answer.. I posted this link in another post.. which looked promising, but I was unable to do the last part.. as it just wouldn't work for me. http://wmug.co.uk/blogs/larus/archive/2007/04/26/198.aspx
×
×
  • Create New...