Archive for April, 2009

Tamer Kepçeler, Sistem Analizi 1. Vize Soruları (2009)

Tuesday, April 28th, 2009 Posted in Sistem Analizi | No Comments »

Aklımda kaldığı kadarını yazıyorum. Eksikler ya da fazlalıklar olabilir. 1) Optimizasyon nedir? Optimizasyon kriterleri nelerdir? Bir optimizasyon örneği vererek açıklayınız. 2) 65 m uzunluğunda bir bayrak direği imal edeceksiniz. Dikkat etmeniz gereken ... Read more..

Assign static mac id for virtual machine with Powershell on SCVMM

Tuesday, April 28th, 2009 Posted in Virtual Machine Manager, Windows Powershell | No Comments »

A few weeks ago, i had to assign static mac ids for virtual machines. I wrote this script to assign static mac ids to virtual machines on SCVMM 2008 with ... Read more..

Getting All VMs Uptimes with Powershell (SCVMM 2008)

Tuesday, April 28th, 2009 Posted in Virtual Machine Manager, Windows Powershell | No Comments »

I haven't post any scripts for a long time because I'm writing IIS7 scripts nowadays. Using IIS7 Powershell Snaping is real fun. But let's back to the SCVMM and do ... Read more..

PHP on Windows 7 – WIMP Server

Friday, April 24th, 2009 Posted in Hosting & IIS7, Windows Server | 2 Comments »

Wimp Server is a combination of Windows7, IIS7, MySQL and PHP. Wimp Server installs automatically on your server. You don't need to do any modifications. It also has a silent ... Read more..

How to change windows user password with Powershell?

Friday, April 24th, 2009 Posted in Windows Powershell | No Comments »

You can change windows users password with this function: # Change Windows User Password function change_password($username, $password) { $user = [adsi]("WinNT://localhost/$username, user") $change = $user.psbase.invoke("SetPassword", "$password") } change_password "$username" "$password" You should call function with 2 parameters named ... Read more..

Klinker hattı projesi ve tasarım hesapları

Saturday, April 18th, 2009 Posted in Sistem Analizi | No Comments »

Klinker hattı, çimento üretim fabrikalarında kullanılan klinker üretim tesisleridir esasen. Çimento'nun ham maddesi sayılabilecek, yarı mamul bir maddedir. İçersinde kalsiyum oksit (CaO), silisyum dioksit (SiO2) gibi malzemelerin bulunduğu, dönel fırınlarda ... Read more..

SCVMM – Virtual Machine List Script in Powershell

Wednesday, April 15th, 2009 Posted in Virtual Machine Manager, Windows Powershell | No Comments »

This is a basic script about listing vms in Powershell. Output will be Name and Operating System. Add-PSSnapin -name Microsoft.SystemCenter.VirtualMachineManager Get-Vmmserver localhost # VM List Script - Yusuf Ozturk # http://www.yusufozturk.info $VMProp = Get-VM | ... Read more..

SCVMM – Virtual Machine Status Script in Powershell

Tuesday, April 14th, 2009 Posted in Virtual Machine Manager, Windows Powershell | No Comments »

You can't find this any other website because I wrote it :) Please leave a comment if it works for you. Add-PSSnapin -name Microsoft.SystemCenter.VirtualMachineManager Get-Vmmserver localhost # VM Status Script - Yusuf Ozturk # ... Read more..

SCVMM 2008 – Missing ISO Warning (2903)

Monday, April 13th, 2009 Posted in Virtual Machine Manager | No Comments »

You may get this warning on SCVMM panel. Sometimes that can cause to stop your virtual machine: Warning (2903) VMM could not locate the specified file C:\Users\Administrator\Desktop\web.iso on the hyperv03.contoso.fabrikam.com server. This ... Read more..

SCVMM 2008 – Change Owner Error (11427)

Sunday, April 12th, 2009 Posted in Virtual Machine Manager | No Comments »

When changing owner of a virtual machine, you can get this error from SCVMM: Error (11427) The ownership for this virtual machine cannot be changed because the new owner is not ... Read more..