Jump to content


anyweb

Root Admin
  • Posts

    9242
  • Joined

  • Last visited

  • Days Won

    368

Everything posted by anyweb

  1. Part 3. Verify that you have Authorization and Authentication configured In IIS Manager, click on Default Web Site in the left pane, and choose the Authentication icon under IIS. in this example (default install of IIS 7 in Windows Server 2008) we can see the following Authentication types are installed Anonymous Authentication - Enabled ASP.NET Impersonation - Disabled Forms Authentication - Disabled We want to add Basic Authentication and Windows Authentication to proceed further. To do this Click on Server Manager and scroll down to Roles Summary. Click on Web Server (IIS) and scroll down to Role Services. In this example both Basic and Windows Authentication are not installed, so let's install them. click on Add role services in the actions pane to the right. scroll down to security and put a check mark in Basic and Windows Authentication, click next. confirm your selections and click install, once done you'll see a results screen At this point you can close the IIS server manager, restart the World Wide Web Publishing Service service (W3SVC) and go back into the IIS server manager, when you click on Default Web Site now and the Authentication icon, you should see the two new authentication methods added. Right click on Windows Authentication and choose Enable (Note: You can use Basic Authentication with WebDAV, but the WebDAV redirector will only use Basic Authentication with SSL connections, so we will not be using it here, I just installed it so that you were aware of it.) In IIS Manager, click the Default Web Site under the Sites node in the tree, Double-click the Authorization rules icon. NOTE: if (like me) you do not see the Authorization rules icon (feature) then go back into Server Manager, select Roles, Select Web Server (IIS), select Roles services and scroll down to Security, check if URL Authorization is installed, if it is not installed, click on Add role Services in the right pane and install it, then restart the Internet Information Services (IIS) Manager. The icon (feature) should now appear.... When the Authorization feature opens, make sure that an Allow rule is defined that includes the administrator account. IE: the default rule for IIS allowing access to All Users will include the administrator account. you can now test logging into your WebDav site using your administrator account by opening a command prompt and typing this net use * http://localhost/ after a few moments you should see a result like this If you don't see the above, for example if you get a an error like this then install the Desktop Experience Feature using the Add Features Wizard) reboot the server and try again. The reason we need the Desktop Experience feature installed in Server 2008 is because it will install the Webclient service which is required for this. Note: if you now get a new error which states Then you must open up IIS Manager, click on Default Web Site, and go into the WebDav Authoring Rules and add the current user you are attempting to do this as (eg: add user DOMAIN\user). See below screenshot. Tip: for a list of webdav errors and solutions to resolving them see this page so now we have mapped drive Z: to the WebDav site, using the administrator account and using the authorization rules we setup above, we have read/write/source acccess to the directory.
  2. get it from here Microsoft® SQL Server® 2008 Express SQL Server 2008 Express is a free edition of SQL Server that is ideal for learning and building desktop and small server applications, and for redistribution by ISVs. Overview Microsoft SQL Server 2008 Express is a powerful and reliable data management system that delivers a rich set of features, data protection, and performance for embedded application clients, light Web applications, and local data stores. Designed for easy deployment and rapid prototyping, SQL Server 2008 Express is available at no cost, and you are free to redistribute it with applications. It is designed to integrate seamlessly with your other server infrastructure investments. For more information about SQL Server Express, including other versons and downloadable components now available, see Microsoft SQL Server Express. Instructions Note: You must have administrative rights on the computer to install SQL Server 2008 Express. We recommend that you read the Release Notes and Readme before installing SQL Server 2008 Express. Step 1: Download and install Microsoft .Net Framework 3.5 SP1. Step 2: Download and install Windows Installer 4.5. Step 3: Download SQL Server 2008 Express by clicking the appropriate link later on this page. To start the installation immediately, click Run. To install SQL Server Express at a later time, click Save. Note: Note: SQL Server 2008 Express includes both 32-bit and 64-bit versions. SQLEXPR32_x86 is a smaller package that can be used to install SQL Server 2008 Express onto only 32-bit operating systems. SQLEXPR_x86 is the same product but supports installation onto both 32-bit and 64-bit (WoW) operating systems. SQLEXPR_x64 is a native 64-bit SQL Server 2008 Express and supports installation onto only 64-bit operating systems. There is no other difference between these packages.
  3. I downloaded a wmv file about SCCM 2007, and when I clicked on it I was greeted with this I chose the default (check web services for a solution) and it showed me the following web page. and I quote: Yes, it's amusing that Microsoft doesn't understand it's own WMV file format. thinking it was a Firefox issue, I tried the same URL in Internet Explorer http://shell.windows.com/fileassoc/0409/xml/redir.asp?EXT=wmv Oddly I got the same result, apparently Windows own websites don't understand what the WMV file extension is for.... A quick google shows lot's of sites that correctly identify the .wmv extension as a Windows Media Video file. Anyway, back to my problem, by default I can't play a wmv file in Windows Server 2008, so to fix this I do as follows:- Open server manager, click on Add features (found under Features Summary), select Desktop Experience and next and then Install, you'll be informed that the Server will need to be restarted after the installation. after the restart, the Add roles wizard will complete it's actions and you'll be able to watch WMV in all it's glory. Alternatively you could save yourself the pain and install VLC.
  4. From the SCCM 2007 ConfigMgr Console --> Site Database --> Site Management --> right click your site + Properties you should see the version number there (see screenshot) Help --> About System Center Configuration Manager displays the same correct version number. Below are the current versions of SCCM 2007 For RTM, it is 4.00.5931.0000 For SP1, it is 4.00.6221.1000 For SP2, it is 4.00.6487.2000 so based on this, the screenshot above is from a SCCM 2007 SP1 system. Is R2 installed ? If you right click on Site Properties you'll see the version number plus you can identify if R2/R3 are installed - see below What about Beta and Release Candiate versions ? For SP2 beta, it is 4.00.6425.2000 For SP2 RC, it is 4.00.6468.2001 cheers niall
  5. you can do it two ways, either by logging in as Administrator and choose Add roles from the Server manager, then add the Web Server role, or as a script here's the script start /w pkgmgr /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors;IIS-HttpRedirect;IIS-ApplicationDevelopment;IIS-ASPNET;IIS-NetFxExtensibility;IIS-ASP;IIS-CGI;IIS-ISAPIExtensions;IIS-ISAPIFilter;IIS-ServerSideIncludes;IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries;IIS-RequestMonitor;IIS-HttpTracing;IIS-CustomLogging;IIS-ODBCLogging;IIS-Security;IIS-BasicAuthentication;IIS-WindowsAuthentication;IIS-DigestAuthentication;IIS-ClientCertificateMappingAuthentication;IIS-IISCertificateMappingAuthentication;IIS-URLAuthorization;IIS-RequestFiltering;IIS-IPSecurity;IIS-Performance;IIS-HttpCompressionStatic;IIS-HttpCompressionDynamic;IIS-WebServerManagementTools;IIS-ManagementConsole;IIS-ManagementScriptingTools;IIS-ManagementService;IIS-IIS6ManagementCompatibility;IIS-Metabase;IIS-WMICompatibility;IIS-LegacyScripts;IIS-LegacySnapIn;IIS-FTPPublishingService;IIS-FTPServer;IIS-FTPManagement;WAS-WindowsActivationService;WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI
  6. Part 2. Download and install Webdav for IIS 7 Note: If you are using Server 2008 R2 which has Webdav 7.5 then read this post first An important note from Microsoft:- pick your version below Microsoft WebDAV Extension for IIS 7.0 (x64) or Microsoft WebDAV Extension for IIS 7.0 (x86) Accept the license agreement and let it install itself Once we have installed Webdav, we need to Enable WebDAV Publishing Using the IIS Manager. Enabling WebDAV Publishing Using the IIS Manager. Startup IIS Manager and in the Connections pane, expand the Sites node in the tree, then click the Default Web Site, then double-click the WebDAV Authoring Rules icon. Click enable webdav in the Actions pane on the right side Once you've clicked it it will then say 'Disable webdav' so be sure not to click there again, now we need to click the Add Authoring Rule task in the Actions pane and set your options as below That's it, you've now enabled WebDAV authoring in IIS 7. We will return to Webdav later in the guide, if you want to do them now then read Step 1 of this post or just continue with the below as we will get to it later anyway.
  7. here's a working SIF and here's the install.bat file referenced in the SIF to install apps/drivers that can't be installed via the SIF
  8. here's a working SIF file and here are the contents of the install.bat file referred to in the sif
  9. The following Step by Step 3 part guide to Deploying Windows Server 2008 using SCCM 2007 covers all the steps necessary to get you up and running in no time at all, screenshots and helpful text show you how to do IT including preconfiguring roles such as Active Directory (ADDS) and DNS. This 3 part guide is aimed at those of you who can succesfully deploy applications (such as Microsoft Office or Firefox) and Operating Systems (such as Windows Vista SP1 and Windows XP sp3. You'll need to be familiar with Microsoft SMS or SCCM and understand what packages, advertisements and collections mean, the guide will however link you to other guides to bring you every step of the way down the entire path. Part 1. * Add new Operating System Install Package * Import new Task Sequence Part 2. * Create and then Update distribution points for the MDT Server packages * Editing the Task Sequence * Adding Server Roles and Features Part 3. * Create a new collection * Advertise the Task sequence to a collection * Add server to collection * Set the IP address as a variable * The Deployment * Troubleshooting PXE errors The guide above has taken a lot of time to document and I'm quite sure that you will find it helpful (lots of screenshots of every step..) good luck, cheers anyweb
  10. With all Windows PE problems and errors that you may (most likely will..) encounter during SCCM OSD Deployment, you'll want to enable the F8 feature in your Windows PE boot images, which allows you to do some basic testing by giving you access to a CMD prompt within the Windows PE session So how do you enable this troubleshooting feature ? locate your boot images in the Operating System Deployment section of SCCM right-click on your chosen boot image (for example 32 bit) and choose Properties Select the Windows PE tab from the properties, and place a checkmark in Enable command support then click apply Don't forget to re-distribute your boot images to their Distribution Points after making this change, and give them some time for doing so. Once distributed, when you PXE boot your clients and you want to troubleshoot any Windows PE deployment issues, press F8 once Windows PE has loadedand you'll get a command prompt. In addition this will keep Windows PE operational in situations where whatever error you were getting would cause Windows PE to reboot with no warnings thereby giving you a chance to read the logs and perform troubleshooting. SMSTS Log File location If the task sequence completes when running in the full operating system with a Configuration Manager 2007 client installed on the computer: <CCM Install Dir>\Logs If the task sequence completes when running in the full operating system with no Configuration Manager 2007 client installed on the computer: %Temp%\SMSTSLOG If the task sequence completes when running in Windows PE: <largest fixed partition>\SMSTSLOG Note: In addition, the logs for SCCM (during the Windows PE phase) are stored in X:\Windows\Temp\SMSTSLog\ and C:\SMSTSLog and C:\_SMSTaskSequence. More often than not, the Log file you need to be reading is the smsts.log file to see what is going wrong in your deployment... After Windows PE is done and Windows installation is complete you can find the logs elsewhere such as C:\Windows\System32\CCM\Logs or C:\Windows\SysWOW64\CCM\Logs for 32bit and 64bit respectively. In those directories you'll find a log file named (for example) smsts-20081125-122856.log, the actual name of the file will change based on the date/time that you do the deployment. I've enabled Command Prompt Support, now what ? Once command prompt support is enabled you've got lots of options for troubleshooting. network testing (ipconfig/ping...) or map a share such as net use h: \\servername\share If the user you are trying to logon with is a DOMAIN user then use this format Enter the user name for 'servername': DOMAIN\domainuser disk testing (diskpart...) read LOGS to look for errors that explain why the deployment is failing... using notepad Troubleshooting Links List of Custom Error Codes for Configuration Manager 2007. Troubleshooting tips on Technet see here Troubleshooting made easy > http://blogs.msdn.co...e-easy-way.aspx Sample Troubleshooting Session The Below is taken from a real troubleshooting session... During the Windows PE phase of a Windows Server 2008 Deployment I got an error In the example above it's complaining about a Validate issue in the Task Sequence deployment of Windows Server 2008, looking at the log file located at X:\Windows\Temp\SMSTSLog\ztivalidate I can see that it's complaining about the speed of the processor (because this is a Virtual Machine) so to fix this problem required editing the Validate section of the Task Sequence and removing the check for CPU speed
  11. You need to have completed Part 1 and Part 2 before starting this part. Create a new collection In ConfigMgr right click on Collections and choose new collection for collection name call it Deploy Windows Server 2008 and fill in the comments for membership, click next and ok to the warning, for advertisements and security click next also click close once done and you should see your new empty collection listed. Advertising the Task Sequence to a collection Under the Computer Management node in SCCM ConfigMgr, right-click the collection we have just made (Deploy Windows Server 2008) and choose advertise task sequence fill in the description Build Task Sequence, ..... the task sequence should then be selected by clicking on Browse, select the Server Task Sequence we made earlier select Make this task sequence available to both media and PXE Alternatively, right click the task sequence itself and choose 'advertise' to get to this same step. Schedule Set your schedule depending on whether you are in a Lab or Production Environment. For a Lab Environment Make the Task Sequence mandatory by clicking on the yellow star and select As soon as possible. Select ignore maintenance windows when runing program and allow system restart, set the program rerun behaviour to always rerun program so that we can rerun the task sequence over and over as we require for testing. For a Production Environment In a Production environment set the advertisement from Mandatory to Optional, this gives us less risk of an accidental deployment but also introduces the possibilty of choice. if you want to remove choice then keep the advertisement mandatory but change the program rerun behaviour to never rerun (see below screenshot). Distribution Points set to Access content directly from a distribution point as we will be wiping the hard disc as our first task in the task sequence Interaction adjust interaction to suit your needs Security and security review the summary and click next to proceed, then verify that all went well in the confirmation window. at this point right clicking on our chosen collection and clicking on the Advertisements tab will list the Task Sequence we just added. Add server to collection Under Operating System Deployment, right click on Computer Association and choose import computer information, select Import Single Computer (if you want to import multiple computers select using a file instead) in the example below i'm just giving the server a name and using it's MAC address click next to the data preview and then for Choose Target Collection, hit browse and select the collection we made above click next until the wizard is complete
  12. You need to have completed Part 1 before starting this part. Create and then Update distribution points for the MDT Server packages Now that we have created the Task Sequence, packages files and folders necessary to support the Server deployment we need to make sure to create and then update distribution points for each MDT Server package, the Configuration Manager Client Installation package has already been pushed out to the distribution points so we don't need to do that again. Expand Microsoft MDT Server Settings files and right click on distribution points, click new distribution points and when the wizard starts click next. Select the standard distribution point only and click next, then close when done. Right click the Distribution point and choose upadte distribution points, answer yes at the confirmation screen Repeat the above (create distribution points and then update them) for Microsoft MDT Server Source Files.
  13. Please note that this guide is designed to get you Deploying Windows Server 2008 with SCCM in a LAB Environment as quickly as possible. This guide is provided as is, if you find any errors please report them in the forums. In a production environment please consult Technet for best practise, see below links: Operating System Deployment: Operating System Deployment in Configuration Manager Overview of Operating System Deployment Configuration: System Center Configuration Manager 2007 Best Practices: Configuring Configuration Manager Sites for Best Performance Checklist for Security Best Practices Best Practices for Central and Primary Site Hardware and Software Configuration Best Practices for Operating System Deployment Add new Operating System Install Package We will make an Operating System install package, this package will contain the files necessary to support the installation of the Windows Server 2008. In SCCM ConfigMgr expand the Operating System Deployment node and select Operating System Install Package from the list of available options., right click and choose Add Operating System Install Package point to the UNC path of the root of our Windows Server 2008 DVD (which we copied to a network share earlier) eg: \\WIN-AE2V1IRN067\iso\Server 2008 fill in the details click next and review the summary and then click close now that we've added this package, we again need to distribute it to our distribution point, however we will add it only to the normal distribution point and not the pxe one. Expand the Operating System Install Package node we've just added, right click on Distribution Points and choose New Distribution Points. click next when the wizard appears and select the first of the two dist points, then next again click close when done.
  14. Welcome to Engineering Windows 7 Welcome to our first post on a new blog from Microsoft—the Engineering Windows 7 blog, or E7 for short. E7 is hosted by the two senior engineering managers for the Windows 7 product, Jon DeVaan and Steven Sinofsky. Jon and Steven, along with members of the engineering team will post, comment, and participate in this blog. Beginning with this post together we are going to start looking forward towards the “Windows 7” project. We know there are tons of questions about the specifics of the project and strong desire to know what’s in store for the next major release of Windows. Believe us, we are just as excited to start talking about the release. Over the past 18 months since Windows Vista’s broad availability, the team has been hard at work creating the next Windows product. ... We’re excited about this blog. As active bloggers on Microsoft’s intranet we are both looking forward to turning our attention and blogging energies towards the community outside Microsoft. We know the ins and outs of blogging and expect to have fun, provide great information, and also make a few mistakes. We know we’ll misspeak or what we say will be heard differently than we intended. We’re not worried. All we ask is that we have a dialog based on mutual respect and the shared goal of making a great release of Windows 7. Our intent is to post “regularly”. We’ll watch the comments and we will definitely participate both in comments and potentially in follow-up posts as required. We will make sure that members of the Windows 7 development team represent themselves as such as well. While we want to keep the dialog out in the open, please feel free to use email to steven.sinofsky@microsoft.com should you wish to. In particular, email is a good way to suggest topics we might have a chance to discuss on the blog. With that, we conclude our welcome post and ask you to stay tuned and join us in this dialog about the engineering of Windows 7. Steven and Jon The full article > http://blogs.msdn.com/e7/
  15. The Windows 7 craze is barely over, and yet the internet is already buzzing with the next big thing from Microsoft: a project called Midori. The SD Times claims to have seen internal Microsoft documents detailing what Midori actually is, and they say it's the clean-break from Windows many of us have been waiting for. The SD Times article is heavy on the details, and quite technical, but luckily Ars Technica provides a more accessible summary of what Microsoft has in store for Midori. via osnews.com
  16. what steps did you follow to setup DHCP in ipv6 mode ? if it was a guide then give me a link and i'll check it out do your vista clients have a firewall enabled ?
  17. Part 2. Run the SCCM 2007 SP1 installation wizard. Click Next to continue and choose the default option which is to 'Upgrade...'. accept the license and click next decide if you want to participate in the CEIP let the wizard check for updates.... create a new local directory and then give that path to the wizard for the local updates to be stored... updates are downloaded (89 in my case...) you'll be told the update download is complete, and you'll get an upgrade summary clicking next will run the pre-requisite checker again ! but now you'll see a new button, Begin Install Clicking that will start the actual process (how long winded can it all get ?) and this process can take some time (no kidding...) so go make a cup of coffee... or 10 after what seems like an eternity the process will finish and you have to click next... if you liked this guide and would like to see more Free guides, then please DIGG it.
  18. when you try to upgrade SCCM 2007 to SCCM 2007 SP1 by first running the pre-requisite checker, you may see a warning which states:- If you open the file ConfigMgrPrereq.log and look at the errors within, just before the above statement will be a line which reads something like this:- <08-10-2008 21:04:57> Failed to connect to registry for KB940848 with 203. If you have already applied the hotfix from Microsoft then you might need this workaround. The reason for the pre-requisite test getting confused appears to be that it is looking for a string in the REGISTRY but it doesn't match what it's expecting to find Using RegMon from sysinternals I logged the entire process while doing the pre-requisite checks and sure enough it fails to find some keys in the registry even though we have installed the correct hotfix (KB940848), the checker looks for the following key(s) HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\KB940848 HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\KB940848\DisplayName However they are not found because when we installed the hotfix it placed them at HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\KB940848-v3 as a workaround I created a new regedit file with the exact same info as the v3 one (I exported that key in regedit). Here's the file, rename by removing .txt and run to add this key to the registry. uninstallkb.reg.txt I then did a search and replace, and replaced -v3 with blank. Running the resulting reg file and then starting the pre-req checker again now finally removes the MMC warning from the list ! cheers anyweb
      • 1
      • Like
  19. This guide was done on a Windows 2003 Server (sp2) running SCCM 2007 which in turn was upgraded from SMS 2003. As a result, your results may vary, if they do, post them here. Part 1. Run the Pre-requisite checks and fix the warnings/errors reported. First of all download the Service Pack 1 update and then run the EXE file which will unzip it to a folder of your choice (I chose to call the folder sccm2007sp1) Once unzipped you can burn that to a DVD or run the splash.hta file contained in C:\sccm2007sp1\SCConfigMgr07_UPD_EN Once it starts you can run the prerequisite checker to see what you need to fix before continuing... you will be presented with a prerequisite check I left everything as it was and clicked on OK once done you'll get a list of errors that need to be resolved such as below, double click on any one to see what the recommended action is and then action each one My first error told me that I needed to do as follows: as this was a hotfix i was pleasantly surprised to see that Microsoft now allow you to download the hotfix semi-directly, you have to enter your email address twice and input a number displayed on screen, you then get an email with the hotfix download details... So I downloaded the first one and extracted it with the password supplied in the email. While the hotfix installed I clicked OK on the prerequisite checker for SCCM 2007 sp1. Once the hotfix was done installing, it wanted a reboot, so I rebooted. And then I ran the SCCM 2007 SP1 prerequisite checker again by starting at the beginning and running splash.hta... This time however I was down to only 3 warnings Next up I had to do the following:- That brought up a page with 3 download links (xp/windows server and so on).... confusing, inconsistent ? yep.. but I got the following file WindowsServer2003-KB936059-x86-ENU.exe I must have been lucky because when I ran the SCCM sp1 prerequisite checker again, I was only shown 2 warnings (below) Next up was my MMC update Once installed, I ran the SCCM 2007 SP1 pre requisite checker again, it told me i still needed this fix, so I decided to reboot (the hotfix didn't request it), the reboot didn't help it still listed it as a warning... so I viewed the ConfigMgrPrereq.log file (stored in the root of C:\) and it had a line that read Failed to connect to registry for KB940848 with 203 that lead me to this post Using regmon from Sysinternals I found the missing key and made a reg file of it, if you want it make sure you've applied the correct hotfix first then:- As a workaround I've produced the following hack. FQDN Warning. As my SCCM 2007 site is mixed mode I chose to resolve this warning by doing as follows:- To fix the FQDN error try the following: 1. Start SCCM Console 2. Click Site Database 3. Click Site Management 4. Click on Site 5. Click Site Settings 6. Go to Site Systems 7. Click on SCCM Server (where State Migration Point is located) 8. Right click on “Configmgr Site System” 9. Click on Properties 10. In the "Specify a fully qualified domain name (FQDN) for this site system on the intranet” change the Intranet FQDN to something like my example here it was WINDOWS-DOBMTWV I changed it to windows-noob.sccm2007.local and clicked apply, after waiting a few minutes for SCCM 2007 to udpate itself I ran the pre-req checker again and finally, success !
  20. Microsoft Deployment Toolkit (MDT) 2008 Update 1 is now available from here What’s New in MDT 2008 Update 1? MDT 2008 Update 1 includes new capability for OEM preload scenarios, a revised System Center Operations Manager Management Pack, bug fixes, and revised documentation. This updated version provides guidance in the .chm help file format only. If you need the guidance in .doc file format, you can download it here. MDT 2008 Update 1 enables deployment of the following Microsoft products: * Windows Vista Business, Enterprise, and Ultimate (32 and 64 bit) RTM and SP1 * Office Professional, Professional Plus, Enterprise, and Ultimate 2007 * Windows Server 2008 * Windows Server 2003 R2 (32 and 64 bit) * Windows XP Professional with Service Pack 2 and Service Pack 3 (32 and 64 bit) or Windows XP Tablet PC Edition Choosing the Right Version Microsoft Deployment Toolkit 2008 Update 1 is offered in two versions to support Solution Accelerator component installation on x64 or x86 hosts. Select the version that corresponds with your host hardware type. Both versions of Microsoft Deployment Toolkit support deployment of x86 and x64 Windows operating systems. The Quick Start and Getting Started guides for MDT 2008 Update 1 are available as a separate download on this page for those who want to quickly evaluate MDT by viewing condensed, step-by-step instructions for using it to install Windows operating systems. Send questions or feedback to us directly at SATfdbk@microsoft.com I cannot download MDT 2008 !!! Can't find the download any more ? don't worry, it's still available right here
  21. the download (1gb) is available here System Requirements System Center Configuration Manager 2007 installed Please see the Configuration Manager 2007 SP1 System Requirement page for detailed requirements.
  22. i'm sure we could get around this problem without the need to use a cd, have you tried diskpart at all ?
  23. is there any chance you can remove the servers hard disc and replace it with one that DOESN't have grub on it and then re-run the WDS test, just to see if it works ok if it does then we know that we have to find a way to remove grub via WDS and my guess would be that will need to be done via diskpart
  24. this sounds to me like wds is deploying ok but that it is NOT removing grub (the linux boot loader) if you mount one of these server hard discs do you see windows installed on it or not ?
  25. what do people think of Windows Vista ? well..... how about what do people think of Windows when it's The Mojave Experiment
×
×
  • 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.