Change Volume ID of Hard Disk

November 4, 2008

 

Untuk apa? Mungkin hal tersebut yang pertama kita pikirkan. Pada saat saya melakukan converting dari Physical ke Virtual (VMware Implementation) kemudian completed dan melakukan testing application kemudian tampil error yang mengatakan Serial Number Invalid. Ternyata application tersebut membaca Volume ID sebagai acuan untuk Serial Number. Dan ketika kita melakukan converting, maka VMware akan generate Volume ID baru yang berbeda dengan Volume ID Physical Server.

Dengan mengganti Volume ID di Virtual Machine maka application tersebut berjalan normal.

Microsoft menyediakan tools untuk hal ini, berikut link-nya:

http://technet.microsoft.com/en-us/sysinternals/bb897436.aspx

Caranya:

Volumeid c: xxxx-xxxx

 

Kemudian restart server/virtual machine.


Windows Server 2008 Virtualization

March 5, 2008

Server Virtualization adalah kemampuan dari satu system/server untuk menjadi host bagi multiple guest OS. Banyak server di data center yang hanya mempunyai performance processor  dibawah 5%-10%, artinya adalah masih banyak kemampuan processor yang tidak digunakan. Dengan menggabungkan beberapa server menjadi satu, akan menjadikan perusahaan dapat memaksimalkan performance dari sebuah server dan tentunya banyak penghematan disisi power, cooling, space, maintenance cost dan networking environment. Microsoft telah meluncurkan sebuah aplikasi virtualisasi baru dalam upayanya untuk menyaingi pemimpin pasar dalam bidang virtualisasi komputer yaitu VMware.

Integrasi Teknologi Hypervisor di Windows Server 2008

Micorosot banyak melakukan perubahan besar kedalam Operating System untuk menuju Next Generation Virtual Server Technology. Didalam Windows Server 2008, Microsoft memasukkan teknologi virtualisasi yang disebut Hypervisor (Hyper-V).

Windows Server 2008 menggunakan model virtualisasi microkernelized dimana satu VM adalah partisi parent sedangkan yang lain adalah partisi child. Sebuah partisi adalah basic unit yang disupport oleh hypervisor. Sebuah partisi dibuat oleh sebuah physical address space dengan satu atau lebih virtual prosesor sehingga kita dapat meng-assign CPU cycles, memory, dan devices ke partisi tersebut. Partisi parent adalah partisi yang membuat dan mengorganisasi partisi child dan partisi ini memiliki virtualization stack yang digunakan oleh partisi child. Partisi parent juga menjadi default owner dari semua hardware resources sehingga bertanggung jawab terhadap misalnya power management, plug and play, loading, dan booting hypervisor.

Hyper-V

Windows Server Virtualization hanya mendukung  x64 Edition technology dan tidak bisa diinstall di arsitektur x86. Dia butuh hardware processor dengan hardware-assisted virtualization support, jadi cuma processor AMD-V dan Intel VT support.Hyper-V tersedia di Windows Server 2008 Standard, Enterprise dan Datacenter.

Fitur Baru dari Hyper-V

·         Mendukung x64-bit untuk guest OS.

·         Memory allocation lebih besar dari 32GB per session.

·         Mendukung Quad Core per guest OS.  
 

Microsoft Hyper-V Server sebagai Role di Windows Server 2008

Virtual Server installation dapat diaktifkan sebagai server role seperti fungsi lainnya di dalam Windows 2008 seperti Terminal Services, Network Protection, SharePoint services, dsb.


Disable Automatic Updates

November 28, 2007

Disable Automatic Updates


To turn it off completely and for good do as follows:

1.  Go into Control Panel > Administrative Tools > Services.

2.  Highlight the service called “Automatic Updates”.  You will know when you have the correct one because you will see a description about it telling you what it does.

3. Right click once highlighted and click stop to terminate the service.

4. Right click on it again and go to Properties.  Half way down the first tab there is “Startup Type:” change this to disabled.

Congratulations.  You have now disabled Automatic Updates service.  Not only will this make certain the service won’t run, but by disabling it properly you are freeing up system resources as they won’t be diverted to running a service that you don’t use.


Enable the clock in the Taskbar for all remote sessions

October 31, 2007

The Terminal Server Client (whether 16-bit or 32-bit) does not show the clock by default. The clock is turned off because screen updates occur every minute, resulting in network traffic.


If the clock is enabled on the Client, the Terminal Server computer will push a total frame of 113 bytes to the client. The client will acknowledge with a total frame of 60 bytes. Administrators wanting to enable the Taskbar clock function should factor an additional bandwidth usage of 173 bytes (1384 bits) for each minute for each client.

There’s a GPO setting:

User configuration – Administrative templates – Start Menu and Taskbar

“Remove Clock from the system notification area”


But disabling this setting will not force the clock to display in the system tray, it will only allow users to enable the clock if they have access to the system tray on the Terminal Server. And in most situations, they haven’t. To force the display of the clock in the taskbar, you will need to modify a setting in the registry.


Start regedit and go to

HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerStuckRects2

You’ll see a “Settings” value, which contains something like this:

28 00 00 00 ff ff ff ff 02 00 00 00 03 00 00 00 6d 00 00 00 20 00 00 00 00 00 00 00 e0 03 00 00 00 05 00 00 00 04 00 00

The nineth pair of digits determines the Taskbar properties. Possible values are:
Always on top= 0×02  
Auto hide= 0×01
Show small icons in Start menu= 0×04
Hide clock= 0×08 

Combine the properties you want and set the byte. For example:
Always on top + Show small icons + Show clock = 06  
Always on top + Show small icons + Hide clock = 0e 

Note that the changes do not take effect immediately, you have to restart Explorer, or logoff and logon again to see the changes. 

If you want to set this for all users, you’ll have to export the registry key into a .reg file and import it into the user profile in a logon script. Start the logon script in your GPO to make sure that it runs (and imports the registry file) before Explorer is started.