Pages

Search This Blog

Sunday, June 30, 2013

Unique IP and file sharing in VMWare Player

I wish to test to run application which need a unique IP and file sharing in the same LAN using in VMWare Player.

In Click on edit virtual machine settings.
In the Hardware tab, click on Network Adapter
In Network connection, select Bridged: Connected directly to the physical network.




Click on Options tab.
Then click on Shared Folders and then select Always Enabled.
Click on OK button to save the settings.





Now, start the virtual machine and i can share my folder in the virtual machine now.


dotnet 3.5 not found in IIS 8 windows server 2012

I've tried to setup my web application in in IIS 8 windows server 2012 and found that asp.net 3.5 or dotnet 3.5 not in IIS 8.

What i do is, go to add role and add in ASP.NET 3.5 in Web Server Role (IIS) -> Role Services, under Application Development. You can select others role if needed.


Click next to proceed until the installation complete.

In IIS 8, you can select .NET V2.0 Integrated or .NET V2.0 Classic in application pools for application that running is .net 3.5

To know more details, please visit http://www.iis.net/learn/get-started/whats-new-in-iis-8/iis-80-using-aspnet-35-and-aspnet-45

Sunday, June 23, 2013

How to check IBM x3650 RAID configuration in window server?

How to check whether the RAID configuration in IBM x3650 M4 is correct in Window Server 2012? I have done my RAID configuration using IBM Server Guide 9.4 and now i want to check the setting in IS which is Window Server 2012. There is a tools call MegaRAID Storage Manager which is able to download from IBM website. You need to install the tool in your OS and you can check the RAID setting using this tool.


How to know IBM X3650 M4 IMM IP Address?

Most of the article stated that IMM default IP is 192.168.70.125 but it's not in my case. I try to figure out the IP because i want to access to IMM2 web interface to install key for Features On Demand (fod). In order to get the IP, i have downloded IBM Advanced Settings Utility (ASU) and unzip it into my C drive. Use command prompt to local ASU.exe or ASU64.exe.

type command asu64 show

It will shows many information but the first information will be displayed in the IP Address. You can to check on it quickly before it jump to the end. By the way, my IMM IP is 169.254.95.118.


Monday, June 17, 2013

'powershell' is not recognized as an internal or external command, operable program, or batch file.

Try to install/enable GUI in windows server 2012 but first thing we need to do is use powershell. When i try to use this powershell command, it shows error message

'powershell' is not recognized as an internal or external command, operable program, or batch file.

What we can do is execute command below one by one

dism.exe /online /enable-feature /featurename:MicrosoftWindowsPowerShellRoot
dism.exe /online /enable-feature /featurename:MicrosoftWindowsPowerShell /all

and remember to restart the server before continue.