Jump to content


anyweb

Root Admin
  • Posts

    9182
  • Joined

  • Last visited

  • Days Won

    366

Everything posted by anyweb

  1. If you are interested in testing the Internet Explorer 9 then checkout this link Speed Demos Take full advantage of your hardware with background compiled JavaScript * Flying Images * Text Size Animated * Test Justification Animated * Map Zooming * Pulsating Bubbles HTML5 Demos Deliver rich interoperability with the next generation of Web standards * Border Radius * CSS3 Selectors * DOM Events * DOM Style * HTML5 T-Shirt Designer Graphics Demos Create next-generation experiences with GPU-powered HTML5 graphics * Falling Balls * SVG–oids * Business Charts * Organization Chart * Atlas zur Europawahl
  2. works fine here as before can one of you post your netsetup.log file here ? is the domain join user correctly specified ? are you specifying the OU to join ?
  3. anyweb

    Windows 7 and KMS

    25 is the minimum number, once you've reached that the KMS server will happily activate them all
  4. the first package, which I mentioned above
  5. via http://support.microsoft.com/kb/839513 Follow these steps to adjust the size of the cache, to modify the location of the cache, or to remove all cache content: 1. On the SMS 2003 Advanced Client computer, click Start, click Settings, and then click Control Panel. 2. Double-click System Management. 3. In System Management Properties, click the Advanced tab. 4. Follow one or more of the following steps: * To adjust the size of the cache, under Temporary Program Download Folder, click the slider bar to change the Amount of disk space to use setting. * To modify the location of the cache, click Change Location, and then specify a new folder. * To remove all cache content, click Delete Files. To modify the Advanced Client cache settings for the whole SMS 2003 site, we recommend that you use a script. You can deploy a script by using an advertisement, by using Group Policy, or as part of the logon process. For more information about programmatically modifying these cache settings and for sample scripts, search the SMS 2003 Software Development Kit (SDK) for "CacheInfo." To obtain the SMS 2003 SDK, visit the following Microsoft Web site: http://www.microsoft.com/downloads/details.aspx?FamilyID=58833cd1-6dbb-45bb-bb77-163446068ef6&
  6. no its not required, unless you intend to deploy Windows Updates via SCCM's sup role (software update point) in which case it is required.
  7. try setting the wds service to start with delayed start
  8. what do you need to run once ? have you looked at any of the built in commands via unattend.xml check this post on msfn.org http://www.msfn.org/board/topic/139150-working-unattendxml-and-applications-installs/ and I quote: also checkout this from Technet > about SetupComplete.cmd > http://technet.microsoft.com/en-us/library/cc766314%28WS.10%29.aspx Add a Custom Script to Windows Setup You can add custom scripts to Windows Setup that can be configured to run in different circumstances. You can run a custom script: * Immediately after Windows Setup completes. * If Windows Setup encounters a fatal error. Run a Custom Script after Windows Setup Completes You can make further customizations after Windows Setup completes by adding commands to the %WINDIR%\Setup\Scripts\SetupComplete.cmd file. This file enables you to install additional applications, run custom Windows scripts (cscript/wscript), or make other modifications to the system before a user logs on. Note Commands in the Setupcomplete.cmd file are executed with local system privilege. After Windows is installed, but before the logon screen appears, Windows Setup searches for the SetupComplete.cmd file in the %WINDIR%\Setup\Scripts\ directory. If a SetupComplete.cmd file is found, the file is executed. Otherwise, installation continues normally. Windows Setup logs the action in the Setupact.log file. Note You cannot reboot the system and resume running SetupComplete.cmd. Setup does not verify any exit codes or error levels in the script after executing SetupComplete.cmd. The functionality of Setupcomplete.cmd differs from the RunSynchronous and RunAsynchronous commands in that Setupcomplete.cmd runs after Windows Setup completes while the RunSynchronous and RunAsynchronous commands run during Windows Setup. Run a Custom Script if Windows Setup Encounters a Fatal Error If Windows Setup encounters a fatal error, you can configure Setup to automatically launch a script that contains custom commands or actions. A fatal error is an error in which Windows Setup is prevented from completing the installation. This functionality is useful when you automate the installation of many systems at the same time. By enabling this functionality, you can immediately detect when an error occurs during Windows Setup and run custom actions. If Setup encounters a fatal error and is prevented from completing the installation, Setup searches for a command script in the following directory: %WINDIR%\Setup\Scripts\ErrorHandler.cmd. One of two actions will occur, depending on whether the script is found. * If the script is not found, a dialog box is displayed with the error text. A user must dismiss the dialog box before Setup exits. * If the script is found, the script executes synchronously. No dialog box or error text is displayed. After the ErrorHandler.cmd script completes, Windows Setup exits. Depending on the phase of Windows Setup, the computer will return to the environment from which Setup was executed (for example, a downlevel operating system or Windows PE). There are several ways that you can add the ErrorHandler.cmd file by using the $OEM$ directory structure. * Create a Sources\$OEM$\$$\Setup\Scripts folder in the Windows distribution. Copy the ErrorHandler.cmd file to this directory. For more information about using $OEM$ files, see Add Content to $OEM$ Folders. * Create a temporary folder that contains a $$\Setup\Scripts folder structure. Copy the ErrorHandler.cmd file to this directory, and then run Windows Setup with the /m:temp_folder parameter. For example, if you create C:\Temp\SetupFiles\$$\Setup\Scripts\ErrorHandler.cmd, use the following command: setup.exe /m:C:\temp\SetupFiles For more information about the setup.exe /m parameter, see Windows Setup Command-Line Options. There may be instances when Windows Setup encounters more than one error and runs the ErrorHandler.cmd script more than once. When developing the code for ErrorHandler.cmd, ensure that you can run this script multiple times. Sample SetupComplete.cmd file here's a sample Setupcomplete.cmd file from srvops SetupComplete.cmd @echo off cd\ start /wait regedit.exe /s c:\windows\setup\win7regsettings.reg exit win7regsettings.reg Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System] "ConsentPromptBehaviorAdmin"=dword:00000000 [HKEY_CLASSES_ROOT\Folder\shell\Cmd Here] @="Command &Prompt" [HKEY_CLASSES_ROOT\Folder\shell\Cmd Here\command] @="cmd.exe /k pushd %L" [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management] "DisablePagingExecutive"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SL] "SkipRearm"=dword:00000001 ;1st setting - Turn off UAC Prompt for Admin Elevation ;Next 2 settings - Create a Command Prompt entry on the right click menu ;4th setting - is to put the Windows Kernel in memory. Only do this if you have more than 512MB of RAM ;5th setting - setting this to 1 allows for 8 "rearmings of activation" in Vista Business and Ultimate editions. ;A setting of zero allows for only 3 rearms. cheers niall
  9. Just in case any of you try this, if you have a task sequence with a 64 bit boot image assigned to it, and you try to deploy an X86 (32 bit) image, the task sequence will fail, as it's not supported. It will fail in the Apply Operating System step with an error simlar to the following: To resolve, simply change the boot image for the task sequence to X86 and try again.
  10. you dont need to configure WDS, is dhcp server and wds on the same machine ? or different ? is sccm on the same server as wds ?
  11. I actually came across the \boot\bcd error today myself on my home lab, restarting the Windows Deployment Service resolved it
  12. it couldnt be easier, either use the capture windows 7 task sequence i already pointed you to, and advertise that to the windows vista machine complete with all it's apps, and when you see the ts popup in RAP then click on it, the system will be rebooted into windows PE and it will start capturing the image. or create a brand new build and capture task sequence, disable the build part, advertise it to a collection, add the computer to that collection and as above let the ts kick off... or create a capture CD (right click on task sequences node in osd and choose create task sequence media, choose capture..
  13. using the DCCU is really really easy, download it, create a package to apply the bios setting you want (eg: boot order in bios) save that EXE file, create a package in sccm and deploy it to a test box, verify it works, deploy it to more boxes. i don't know how IBM handles this cheers niall
  14. 1. smspxe.log file is on the server hosting the pxe support point role. 2. start the capture within Windows by kicking off the capture task sequence via the Run Advertised Programs, it can then prestage windows PE and reboot, then capture Vista...
  15. ok, well this topic is about Capturing Windows 7, so really you should only be asking about Capturing Windows Vista in the vista section, this is to avoid confusing the topic, confusing others, confusing me.....
  16. ok have you tried capturing it using the task sequence provided in this topic ?
  17. it's most likely picking those names up from your chosen DISCOVERY methods, is Active Directory discovery enabled ? are those objects in AD ?
  18. what OS are you trying to capture ?
  19. no I don't work for Microsoft, I work as a Technical Consultant for Logica, my point is simply this, why re-invent the wheel when there are solutions out there already, plus any custom solution you figure out will only be supported by you and no one else,
  20. any updates for SCCM SP2 R2 should be listed here, but they are usually only hotfixes http://blogs.technet.com/configurationmgr/default.aspx
  21. yes of course it can be done and the answer is this topic, try it ! cheers niall
  22. click on the SCCM 2007 Guides link and scroll down to Capturing OS if you have a new problem, please raise it in the appropriate section cheers niall
  23. hi there Jordan and welcome via > http://technet.microsoft.com/en-us/library/bb680929.aspx cheers niall
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.