We're actually staying in White Plains... just want to type that in because I'm tired of locating myself in Manhattan for the 3rd straight day. Looks like our tiredness finally caught up to us. We woke up pretty late today and one of us is sick. Must've been from the rain and the wind yesterday. The weather was so BAD that it actually reminded me of home. Our first stop today was the Metropolitan
Pariscapade
Everyone goes to Paris thinking they'll leave with more love in their hearts... But is that really the case When I go to new places I usually try to go with an open mind without all the expectations the media drill to our brains. See when you don't have expectations you can't be disappointed. You'll never hear the lines I expected more... or This isn't what everyone said it'd be.... It u
Galati day 2
Morning came early as usual and thankfully mama had a modest offering for breakfast. The coffee is what I call 'campfirestyle' because its just grounds tossed into a small pot of water and boiled like my mom did when camping. It's rather novel to me but at least I was expecting it so I could drink around the grounds. They are perplexed that I water it down and add my milkcocoa mix but quit
salzberg proper
wandered all around salzberg looking for a camping place that turned out to be kaput...gona..nothing there...very frustrating. but we finally got a place that was closer. i was worried it didnt allow tent camping..but they did..and its nice...camping ina nice soft pitch..pool..but its too cold...bike rental...helpful nice place...mostly older motor home campers.anyway.....got to the hellbrun pala
Verrckte Australier Outback Wheel Barrow Race
Trinke heien Tee mit Honig...es wird kalt hier...wer htte das gedacht Na ich natrlich Deshalb habe ich mich in den Norden aufgemacht mit der Hoffnung noch ein paar wrmere Sonnenstrahlen einzufangen. Flug gebucht und bei meinem Kumpel Mick eingebucht und schon konnte das Abenteuer welches leider nur 4 Tage dauerte losgehen....endlich wieder ein backpacker sein...Es ging brigens nach Cai
Akaroa and Okains Bay
This morning we went into the main part of Christchurch for a look around. We watched some guys playing giant chess in Cathedral Square for awhile. They seemed very serious about a giant chess game Then we headed out to walk along the Avon river. It was really pretty there lots of weeping willows and greenery. It was weird to feel so transported from the large town around us to a serene sm
The Answer My Friend is Blowing in the Wind
This is a piece I originally wrote for a wider blog for outdoory types living in China. But I think it should be just at home here because at the end of the day noone can travel to China anymore and not pass concern for the air they breath or infact the global effects of Chinarsquos emissions on the environment.If yoursquore reading this blog Irsquom flashing a guess that yoursquore an
random photo’s and stuff
Last evening we explored some more...boy this city really comes alive at night
Boosters find official residence for UMass med school chancellor – Worcester Telegram
Boosters find official residence for UMass med school chancellor Worcester Telegram By Shaun Sutner TELEGRAM & GAZETTE STAFF WORCESTER — University of Massachusetts Medical School officials and civic leaders are set to close a deal this ... |
Praise, concern greet DCHCDS – The Dartmouth
![]() TopNews United Kingdom (blog) | Praise, concern greet DCHCDS The Dartmouth Dartmouth Medical School and undergraduate curricula will both be expanded to include courses in health care delivery. “I think this is a very unique and ... Health Care From All DisciplinesInside Higher Ed College forms Health Care Delivery CenterThe Dartmouth $35M for Dartmouth health care delivery centerThe Associated Press Media Newswire (press release) all 217 news articles » |
Minding the Gap: A Medical School Looks at the Divide Between the Sciences and … – Newswise (press release)
Minding the Gap: A Medical School Looks at the Divide Between the Sciences and ... Newswise (press release) "As a philosopher at a medical school, I think that anything we can do to bring about a dialogue between the two cultures is a good thing," Dr. de ... |
Hands-on look into medical school – Joliet Herald News
Hands-on look into medical school Joliet Herald News "I always had medical school on my mind," O'Hagan said. "The tour helped solidify it and made it more of a reality." And this year he helped lead the tour. ... |
Wynne named dean of UND medical school – Dickinson Press
Wynne named dean of UND medical school Dickinson Press AP - GRAND FORKS, ND Dr. Joshua Wynne has been picked as the new dean of the University of North Dakota's medical school. UND President Robert Kelley ... UND announces new med school deanGrand Forks Herald UND announces new medical school deanIn-Forum |
Final Program Announced for Symposium at Harvard Medical School on the … – MarketWatch (press release)
Final Program Announced for Symposium at Harvard Medical School on the ... MarketWatch (press release) ... ("PBI" and the "Company") today announced the final Program for the Symposium it is hosting on Friday, May 21st at Harvard Medical School ("HMS"). ... |
Mirroring Server Content and Configuration in IIS7
I recently worked on an application that required we mirror content and configuration across multiple web servers running IIS 7.5 on Windows 2008r2. Because the server configuration in IIS for this application is relatively complicated, doing it over and over would not only be tedious but it would probably introduce some human error. While the possibility of human error is mitigated by the application’s detailed documentation, I looked for a more automated approach to the process.
Using IIS 7’s shared configuration management, it’s possible to replicate the content and configuration folders between web servers. As I worked through the steps of mirroring the content and server configuration for our application, I took notes on the process to create this guide for you to use the next time you approach a similar project.
You will need a domain account – or local account on each web server if your web servers aren’t joined to an Active Directory domain – which will be used to access the shared configuration. The account only accesses this configuration and a file share to store the configuration. Your web applications continue to run under whatever application pool identity you’ve set.
Assuming you’ve configured your IIS-based web server, we can start by exporting the configuration:
- On the first web server that will host the shared configuration, create a directory and share it with full share and ntfs permissions to the service account you create. All other permissions should be removed.
- In IIS manager, click on the server node in the left pane, then open “Shared Configuration” in the right pane.

- Select the”Export Configuration” option on the right, store the export in the directory you created in step 1.

- Create an encryption key. This key should be recorded, as it is needed for all nodes accessing the shared configuration.
- After the configuration is exported, tick the ‘Enable shared configuration’ box, and enter the UNC path to the configuration and the username, domainserviceaccount and password for that account.

- Press apply, and you will be prompted for the encryption key created in step 2.

- Restart the server or run an
iisresetto apply configuration. Check to ensure that IIS is still functioning and the IIS manager can be accessed.
After completing those steps, your web server will be running from the shared configuration, so the next step is to replicate the web content and configure all other web servers to work from the same configuration.
There are several ways of replicating the physical content, DFSR is one option, however I chose not to use it. The content on this application’s web servers is static, so frequent updates to the other nodes is unnecessary. Instead, I used robocopy – a built-in feature since Vista / Server 2008 – to mirror the content from the configured server to all others. This was executed on the web server receiving the content:
robocopy \configuredwebserverc$inetpubwwwroot c:inetpubwwwroot /MIR
Once the file content is in place, two quick steps are required to configure IIS to use the shared configuration:
- In IIS manager, click on the server node in the left pane, then open “Shared Configuration” in the right pane.
- Tick the ‘Enable shared configuration’ box. Enter the UNC path to the configuration as specified on the first web server.

- Enter the username, domainserviceaccount and password for that account. Press apply and enter the encryption key.

- Restart the IIS server to apply configuration, and check to ensure that IIS is still functioning and the IIS manager can be accessed.
You’re done. You’ve replicated all application pools and IIS configurations. If you have ODBC data sources – things external to IIS which your web applications are using – you will need to find a way to replicate these settings as well.
If the shared configuration is unavailable for any reason, IIS may act up. In Server 2008 (not R2), if the configuration disappears, IIS will essentially stop. In R2, the server will detect this, continue working and reconnect when the configuration source comes back online.
To safeguard against connectivity issues, enable offline files by following these steps:
- On the web server, in “Control Panel,” open “Offline Files.”
- In the Offline Files dialog box, click Enable Offline Files. Do not reboot the machine yet.
- Ensure that the cache is set to read only by running the following command:
REG ADD "HKLM\System\CurrentControlSet\Services\CSC\Parameters" /v ReadOnlyCache /t REG_DWORD /d 1 /f - Reboot the Web server.
- Browse to the shared configuration folder on the web server. Right click and select “Always Available Offline”.
- Go back to the “Offline Files” in “Control Panel” and select the “Schedule” option.
The sync center option is available on Windows 2008 server only when Desktop experience is enabled. KB 951043: You cannot start Sync Center from Windows Explorer on a Windows Server 2008-based computer.
- Schedule offline file sync every day or per your requirements. Even without setting up any scheduler, the moment I change anything in applicationhost.config file, it is reflected on the web server.
Hopefully this method should save you from a few headaches and give you another option when setting up multiple IIS 7 web servers. Being able to use the same configuration minimize deployment time and makes administration a breeze.
Let me know if you have any questions or would like any additional details about the process.
-Marlin
Related Posts:
DVD Feature Film Review: The Girl on the Train
A complex and well-acted French film about lying and other deceptions that bring dark clouds and bad weather into the lives of the characters.
DVD Feature Film Review: Extraordinary Measures
An inspiring drama about a man who possesses great perseverance, a spiritual character quality that includes patience, flexibility, and resilience in the face of challenges and constant change.
DVD Feature Film Review: Invictus
An astonishing and incredibly entertaining movie about the power of forgiveness, the importance of sports, the art of transformative leadership, and the reconciliation of the races.
DVD Feature Film Review: The Messenger
An emotionally affecting drama about the birth of compassion in an Iraq war hero assigned to work for the Casualty Notification Office.
Audio Review: Celtic Origins
An extraordinary collection of devotional songs, folk ballads, and popular songs rendered with elegance and emotion by the Irish group Anuna.






