Skip to main content

Windows XP PRO SP2 üzerinde IIS kuramama

Eğer Windows’unuzu kurduktan sonra IIS kurmadan SP2 kurduysanız muhtemelen artık IIS kuramayacaksınız demektir. Başta staxmem.dll olmak üzere bir den fazla dosya isteyecektir sizden. Bu dosyaları ise SP2 cd si üzerinden göstermenizi isteyecektir. Siz SP2 dosyalarını extract etsenizde, SP2 li bir cd göstersenizde yinede kurmayacaktır.
Mevcut olan soruna göre makinenizi formatlamanız en doğru çözüm olarak gözükmekte ise yanılıyorsunuz.

Start (Başlat) -> Run (Çalıştır) -> CMD -> [Enter]

Karşınıza çıkan prompt’a

esentutl /p %windir%\security\database\secedit.sdb

komutunu yazmanız ve çıkan uyarı mesajında OK tuşuna tıklamanız yeterli olacaktır.

Windows’un bozulan ya da değişen security db si eski hakine dönecek ve artık rahat rahat IIS kurabileceksiniz. Bunun sizin güvenliğinize de herhangi bir etkisi olmayacak.

Comments

Popular posts from this blog

DigiTurk Magazine Reader

DigiTurk is the first and only fully digital satellite television provider in Turkey. In addition to satellite TV for millions of customers in Turkey, they publish magazines and run DigiWeb portal. Like many other magazing publishers, DigiTurk saw value in using Silverlight to provide a richer reading experience. But they took the idea a step further, and built a tool which can be used by any magazine publisher to create Silverlight-based magazines. Tim Sneath sat down with the team from DigiTurk to get a demo and hear about how they built this cool solution. http://www.visitmix.com/blogs/news/digiturk/

Ajax with the ASP.NET MVC Framework

Hopefully everyone had a good few days off. Before the holiday break, I did some app-building on top of the ASP.NET MVC framework. Actually rather than building some sort of fancy app, instead I was prototyping some features on top of the framework bits slated for an initial release. I've shared out the sample code, sample app and tests - yes, sorry for another tease :-)... but stay tuned... and you'll soon have actual bits to play with as well. Until then, you can download the sample code and browse it locally, and follow along the rest of the post. In particular there are two projects within the solution: TaskList (the web app) and AjaxMVC (a class library with Ajax extensions). One of the prototypes is around bringing some basic Ajax functionality - basically to get post-back-less partial rendering and some behavior-like extensions to associate with DOM elements - sort of like ASP.NET Ajax but in a manner that fits with the pattern around how controllers and views are writte...

Random number generation using C++ TR1

Random number generation using C++ TR1 Overview This article explains how to use the random number generation facilities in C++ using the TR1 (C++ Standards Committee Technical Report 1 ) extensions. We will cover basic uniform random number generation as well as generating samples from common probability distributions: Bernoulli, binomial, exponential, gamma, geometric, normal, and Poisson. We will point out a few things to watch out for with specific distributions such as parameterization conventions. Finally we will indicate how to generate from probability distributions not directly supported in the TR1 such as Cauchy, chi-squared, and Student t. Support for TR1 extensions in Visual Studio 2008 is added as a feature pack . Other implementations include the Boost and Dinkumware . GCC added experimental support for C++ TR1 in version 4.3. The code samples in this article use fully qualified namespaces for clarity. You could make your code easier to read by adding a few using stat...