Sunday, June 28th, 2009 Posted in Data Protection Manager, Windows Server | No Comments »
Sanırım biraz haksızlık etmiş olabilirim DPM'e. Bugün yapmış olduğum lab denemelerinde, gayet iyi bir performans çıkardı. Yalnız gerçek yapı, hiç bir zaman lab ortamı gibi olamıyor malesef. Çünkü gerçek bir ... Read more..Saturday, June 27th, 2009 Posted in Data Protection Manager, Exchange Server | No Comments »
You need Eseutil.exe and Ese.dll x86 versions for System Center Data Protection Manager (x86) to backup your Microsoft Exchange Server. As you know, you can't use x64 files in DPM ... Read more..Saturday, June 27th, 2009 Posted in Linux Server | No Comments »
Aşağıdaki adımları izleyerek, Linux üzerine Cpanel kurabilirsiniz. 1. cd /home — /home klasörüne götürür. 2. wget http://layer1.cpanel.net/latest —Kurulum dosyasını çeker. 3. sh latest — Kurulumu başlatır. 4. /usr/local/cpanel/cpkeyclt — Kurulum sonrası ... Read more..Saturday, June 27th, 2009 Posted in Data Protection Manager | No Comments »
You may get this error when you install DPM agent on target server: Agent operation failed. (ID 370) The agent operation failed because of a communication error with the DPM Agent Coordinator ... Read more..Friday, June 26th, 2009 Posted in Data Protection Manager, Windows Server | No Comments »
Installing Data Protection Manager was a real nightmare for me. I think (still thinking) DPM is the worst Microsoft product, I have ever used. Every time when I tried to ... Read more..Wednesday, June 24th, 2009 Posted in Exchange Server, Windows Server | No Comments »
I tried to install Microsoft Exchange Server 2010 Beta on Windows Server 2008 Standard R2 RC but I got this error: Microsoft Exchange Server 2010 Beta is not supported ... Read more..Wednesday, June 24th, 2009 Posted in Hosting & IIS7, Windows Server | No Comments »
My website yusufozturk.info is now on Windows Server 2008 ... Read more..Tuesday, June 23rd, 2009 Posted in Hosting & IIS7, Windows Powershell, Windows Server | No Comments »
You can join Windows user to Windows group from Powershell: # Add IIS User to IIS Group function add_user_to_iis_group($username) { $computergroup = [ADSI]("WinNT://localhost,computer") $admins = $computergroup.psbase.children.find("IIS_IUSRS") foreach ($member in $admins.psbase.Invoke("Members")) { $member_name = $member.GetType().InvokeMember("Name", ‘GetProperty’, $null, $member, $null) if ... Read more..Tuesday, June 23rd, 2009 Posted in Windows Powershell, Windows Server | 4 Comments »
You can create Windows user from Powershell: function create_user($username, $password) { $computer = [ADSI]"WinNT://localhost" foreach ($user in $computer.psbase.children) { if ($user.Name -eq $username) { Write-Host $user.Name "already exist." Return } } $user_obj = $computer.Create("user", "$username") $user_obj.Put("description", "$username") $user_obj.SetInfo() $user_obj.SetPassword($password) $user_obj.SetInfo() $user_obj.psbase.invokeset("AccountDisabled", "False") $user_obj.SetInfo() Write-Host "$username created." } create_user "$username" "$password" It checks ... Read more..Tuesday, June 23rd, 2009 Posted in Hosting & IIS7, Windows Powershell, Windows Server | No Comments »
You can remove MySQL user from Powershell with MySQL connector: # Powershell Args $dbusername = $args[0] # user01073 $dbpassword = $args[1] # RadoreTelekom $dbname = $args[2] # db01073 # Add MySQL Data Connector [void][system.reflection.Assembly]::LoadWithPartialName("MySql.Data") # ... Read more..