Categories
Sponsors
Archive
Blogroll Badges
Community
|
Posted in Virtual Machine Manager, Windows Server | No Comment | 1,947 views | 08/10/2009 23:33
VXEON05 sunucusu, kapasite arttırımı yapabilmek için amacıyla şuan aktif durumda. Dell EqualLogic ve Dell Blade mimarisi üzerinde çalışan VXEON05 isimli sunucu, 16 çekirdekli Intel Xeon işlemciye ve 48 gb rame sahip Dell M610 üzerinde hazır durumda. Windows Server 2008 R2 ve Hyper-V R2’nin sanallaştırma avantajlarından yararlanmak ve uygun fiyatlara maksimum performans alabilmek için hemen Radore Vxeon serisi sunucularından bir tane satın alabilirsiniz. Açıklama kısmına Windows Server 2008 R2 kurulmasını istemeniz yeterli olacaktır.
Posted in Hayattan | No Comment | 2,038 views | 06/10/2009 22:20
Bu hafta çok işim var.. 1) 5 adet DC kurulacak. (Windows Server 2008 R2)
2) 35 sanal sunucu transfer edilecek. (35 x 40 GB) 3) 2 adet System Center Virtual Machine Manager 2008 R2 kurulacak, ayarlanacak ve VM eklenecek. 4) Powershell scriptleri, SCVMM 2008’den SCVMM R2’ye göre düzenlenecek. 5) 4 adet Exchange Server 2010 Beta kurulacak. 6) Altyapı, olduğu gibi R2’ye taşınacak. Yapı, Forest’lara ayrılacak. 7) Gerisini sayacak enerjim kalmadı.. Hadi bakalım neler olacak bu bir hafta göreceğiz :D
Posted in Windows Server | No Comment | 2,344 views | 04/10/2009 16:46
Bir müşteri sunucusuna bağlandınız ve SQL’i farklı bir sunucuya taşımanız gerekiyor. Müşteri sizden aynı SQL edition’ı olmasını istedi fakat hangi edition’ı kullandığını bilmiyor. Ayrıca lisanslama gereği, yine aynı Edition’ı kurmanız gerekmekte. Böyle bir senaryo ile karşılaşırsanız, SQL’e giriş yapıp, aşağıdaki query’i çalıştırın: SELECT SERVERPROPERTY(‘productversion’), SERVERPROPERTY (‘productlevel’), SERVERPROPERTY (‘edition’)
Size, kullanılan SQL sunucusunun, Edition, Product Level ve Product Version bilgilerini verecektir.
Posted in Exchange Server, Windows Powershell | No Comment | 6,422 views | 04/10/2009 02:48
We generated a certificate request before. Now, we’ll import our SSL certificate to Exchange Server 2010 with Powershell.
As you see, we can’t use -Path command with Import-ExchangeCertificate anymore. Importing SSL certificate in Exchange Server 2007:
If you try to execute Exchange Server 2007 command, you get this error: A positional parameter cannot be found that accepts argument ‘-path’.
+ CategoryInfo : InvalidArgument: (:) [Import-ExchangeCertificate], ParameterBindingException + FullyQualifiedErrorId : PositionalParameterNotFound,Import-ExchangeCertificate After importing SSL certificate, you can use Enable-ExchangeCertificate to enable SSL on services.
Posted in Exchange Server, Windows Powershell | No Comment | 6,451 views | 04/10/2009 01:06
This is a second shock after ServerManagerCMD for me. I don’t know why they changed it but there is no -Path switch anymore. We have to use Set-Content instead of -Path switch. When I use -Path switch with New-ExchangeCertificate, I get this error: A positional parameter cannot be found that accepts argument ‘-Path’.
+ CategoryInfo : InvalidArgument: (:) [New-ExchangeCertificate], ParameterBindingException + FullyQualifiedErrorId : PositionalParameterNotFound,New-ExchangeCertificate Generating CSR request in Microsoft Exchange Server 2007 with Powershell:
Generating CSR request in Microsoft Exchange Server 2010 with Powershell:
Using a second command shouldn’t be necessery. I don’t know why they add Set-Content for this action.
Posted in Windows Powershell, Windows Server | No Comment | 3,214 views | 03/10/2009 22:14
Powershell üzerinden DNS kullanarak kontrol yaptırdığım scriptime, SPF desteğini ekleyerek bir üst sürüme çıkardım. Şuan sadece size SPF kayıtlarını sunuyor. Fazla vaktim olmadığı için SPF kayıtlarının kontrol ettirmedim. # PTR Record Test
# Yusuf Ozturk – MCSE+S # http://www.yusufozturk.info $local:ErrorActionPreference = “SilentlyContinue” # Error Action Preference [void][System.Reflection.Assembly]::LoadWithPartialName(‘Microsoft.VisualBasic’) $DomainName = [Microsoft.VisualBasic.Interaction]::InputBox(“Domain Name:”, “”, “bing.com”) $SPFRecord = Nslookup -type=TXT $DomainName 4.2.2.2 | Out-File C:\Results.txt $Hostnames = Nslookup -type=mx $DomainName 4.2.2.2 | Out-File C:\Results.txt $IPAddress = [System.Net.Dns]::GetHostAddresses(“$Hostname”) $Status = “1” Foreach ($IP in $IPAddress) Write-Host Hostname: $Hostname If ($IP -like “192.168*”) If ($ReverseDNS -eq “$Hostname”) Remove-Item C:\Results.txt Gereksiz olarak eklemiş olduğum Pause function kaldırıldı. Ayrıca artık C sürücüsü içersinde bir dosya bırakmıyoruz, çıkarken siliyor :)
Posted in Hayattan, Windows Powershell | 2 Comments | 2,297 views | 03/10/2009 20:20
Büyük bir başarı bence. Ne MSHowto, ne Çözümpark, ne de bir başkası şuan Google’da sahip olduğum konumda. Powershell üzerine yazdığım 100. yazıya yaklaşırken, artık insanların Powershell öğrenebileceği bir blog sayfasına haline gelmeye başladı burası. Her türlü konu hakkında Powershell yazısı bulabilirsiniz; Exchange Server, Virtual Machine Manager, IIS7, Windows Server.. İşte aramalardan bir kaçı; Exchange Server 2010 Powershell komutları: Virtual Machine Manager Powershell komutları: IIS7.5 Powershell komutları: Bunlar çok basit aramalar. Şuan bir Matlab Powershell yazıldığında bile benim sitem çıkıyorsa, çalışmalarım boş yere değil, sonuç veriyor demektir. Umarım Powershell üzerindeki çalışmalarımla Radore’ye daha fazla yarar sağlayabilirim. Beni takip etmeye devam edin :P |