Kayıtlar

ııs'de bir işlem tarafından yüksek CPU kullanımı ile ilgili sorun giderme için hata ayıklama Tanılama Aracı nasıl kullanılır

Bir IIS işlem kullanılabilir CPU döngüsü daha yüksek bir yüzdesini kullanıyorsa, IIS istemci isteklerini işlerken, IIS işleminin tam bellek dökümü dosyasını oluşturmanızı öneririz. Hata ayıklama Tanılama Aracı, yakalamak ve ııS'YI, istemci isteklerini işlerken, bellek dökümü dosyaları çözümlemek için kullanabilirsiniz. Not  Tanılama Aracı hata ayıklama 1.0, IIS tanılama araç seti ile bulunur. 1. Adım: Yükleme ve sonra da Debug Tanılama Aracı yükleyin Hata ayıklama Tanılama Aracı'ı yüklemek ve kurmak için aşağıdaki Microsoft Web sitesini ziyaret edin: http://www.microsoft.com/downloadS/details.aspx?FamilyID=28bd5941-c458-46f1-b24d-f60151d875a3&displaylang=en 2. Adım: Performans izleyicisi günlüğü yapılandırma Performans izleyicisi günlüğü yapılandırmak için şu adımları izleyin: Başlat  ' ı tıklatın,  Çalıştır  ' ı tıklatın, Debug tanılama aracının yolunu yazın ve  Tamam  ' ı tıklatın. Not  Varsayılan olarak, hata ayıklama Tanılama Aracı, aşa...

Blackberry Unlock Kod Girme

Resim
Örnek olarak RIM Blackberry 9000 (Bold) unlock kodu girmeyi anlatımı: Adım 1 Ana menudeki options (seçenekler) menusune girin Adım 2 Buradan gelişmiş seçenekleri seçiyoruz Adım 3 Buradan simkart yazan menuye giriyoruz Adım 4 MEPD yazıyoruz Eğer kodu doğru yazdıysak aşağıdaki gibi bir menu çıkacak Adım 5 Dikkat ederseniz network yazan bölümde kilit gözüküyor Bu menude tekrardan alt tuşuna bastıktan sonra mepe yada meppe yada mep2 yazıyoruz Adım 6 Yaptığımız işlem doğru ise bizden 16 haneli network kodunu isteyecek. Buraya bizden almış olduğunuz kodu gireceksiniz. DİKKAT:  Sadece 10 Kod girme hakkınız olduğu için lütfen bu işlemi dikkatli ve uzman olmayan illagal yollarla alınan bilmediğiniz kodu girmeyiniz.

Display entries in Windows DNS cache

DNS search results are cached on local systems to prevent a lookup every time the search is required. Sometimes during troubleshooting it is helpful to see the contents of the DNS client cache. This recipe describes the process of viewing the Windows DNS cache. To view the DNS cache on the local system, type the following command from a command prompt: ipconfig /displaydns | more The  | more  is optional and will pause the output after each screenful which may be helpful since the DNS cache can get large and the output format uses several lines per record. A sample output from this command is shown below. This is an address lookup for the host microsoft.com. The  Record Name  and  A (Host) Record  lines show the request and answer. The  Time To Live  field shows the number of seconds before this entry expires. microsoft.com —————————————- Record Name . . . . . : microsoft.com Record Type . . . . . : 1 Time To Live  . . . ....

Command to Create a Dummy File

Dummy files can be very helpful in a Server environment. For example, having a 5 GB dummy file on the log and database partitions of an Exchange Server will help you resolve a space issue quickly. Simply delete the dummy file, and then you’d have some time to address the issue properly. Use below Windows Commands to create dummy files in a size of your choice. 1 GB dummy file (1024*1024*1024=1073741824): fsutil file createnew dummy.file 1073741824 5 GB dummy file (1024*1024*1024*5=5368709120): fsutil file createnew dummy.file 5368709120

Configuring BDE for Windows 7

Resim
Windows 7 can be very restrictive towards applications written for the previous versions of Windows. This is the case with the  Borland Database Engine (BDE) , which is not capable of running in Windows7 unless two settings have been changed: A permission for the BDE must be given in the windows registry database. A BDE attribute named “Net Dir” must be configured to an arbitrary folder other than the root drive (C:). This configuration is done in the “BDE Administrator” program that’s installed with the BDEInfoSetup utility. 1. First, configure the permission for the BDE in the registry… Make sure you are logged into your Windows7 machine with an administrator account. Then follow these directions: Go to Start | Run… Type regedit… Open the HKEY_LOCAL_MACHINE branch. Open the SOFTWARE branch. Right-Click on the entry labeled “Borland”. In the menu that shows select Permissions. The following dialog will appear: Click “Users”. Under “Permissions for Users ...

Resetting NTFS Permissions in Windows 7

Here’s the scenario. A friend of mine gave me his old disk drive to have it copied to a new drive. The old drive had permissions set on files and folders. Some of the files were not accessible, I was getting “Access Denied”. I tried to right-click/properties on the folders that were not accessible and changed their owner and changed permissions but some folders were still inaccessible not matter what I did. After some research, it turned out the tool “cacls” that allows one to display or change ACLs (access control lists) can help to reset ACLs. In Windows 7 it is called “icalcs”. To reset files permissions simply do this: Run “cmd” as Administrator Go to the drive or folder in question, for example: cd i: To reset all the files permissions, type: icacls * /T /Q /C /RESET That is it! After that, the files permissions were reset and I could access them just fine. icacls is a handy tool to change permissions of files en masse.

Test-Run a PowerShell or Exchange Management Shell Command

Exchange Management Shell/PowerShell commands allow the addition of the “-whatif” parameter, which will test your command without actually executing it. Example :  Set-Mailbox -Identity testmailbox -DisplayName “Test User”  -whatif