zoneAliasRowStatus. 1.23

When I tried to change something on Cisco Fabric Manager for Cisco MDS Switches and I am faced this error : zoneAliasRowStatus. 1.23: Permission denied or feature disabled- Switchname zoneAliasRowStatus. 1.23

 

When I focused on Permission denied error I saw that I don’t have rights to change configuration on switches.

My root user has Admin rights but for SNMP it has network-operator rights

Solution;

– Connect your Fibre switches and type this “sh snmp” on enable mode

-  you will see this little bit below

                                           SNMP USERS
______________________________________________________________

User                          Auth  Priv(enforce) Groups
____                          ____  _____________ ______
root                         md5   des(no)       network-operator

 

– jump to Config mode with conf t

– and type this “snmp-server user admin network-admin

and then get sh snmp again

                  SNMP USERS
______________________________________________________________

User                          Auth  Priv(enforce) Groups
____                          ____  _____________ ______
root                         md5   des(no)       network-operator
                                                             network-admin

How to Install Windows 8

If you installed Windows 7 before, you will see that installation windows 8 has same steps.

Quick look to hardware requirements;

  • 1 GHz or faster processor
  • 1 GB RAM (32-bit) or 2 GB RAM (64-bit)
  • 16 GB available hard disk space (32-bit) or 20 GB (64-bit)
  • DirectX 9 graphics device with WDDM 1.0 or higher driver
    Installation Steps;
    ** you can find how to install windows 8 to VMware workstation 8 articles in my posts

Continue reading “How to Install Windows 8”

How to install Windows 8 to VMware workstation

If you are using Virtual Box, VMware workstation 7 or older, you cannot install Windows 8. I have tried lots of trick but they didn’t work.

There is only way to install Windows 8 is using VMware Workstation 8. Moreover having VMware workstation 8 is not enough to install windows 8. Actually Windows 8 is not supported by virtualization  companies because of it is not released.

Steps;

1- Open VMware Workstation 8

2- Choose new virtual machine

3- Select Typical

4- Select I will install the operating system later

5- Other and Other 64-bit

6- Give a name and choose Path

7- Change disk size to minimum 20 GB

8- before starting customize Memory to minimum 1024Mb

Let’s run it

Windows 8

Property Owner is not available for Database

No matter which version of SQL server you are using, When DB owner is deleted you cannot look DB’s properties.

Error Message

Cannot show requested dialog.

Additional information:

Cannot show requested dialog. (SqlMgmt)

Property Owner is not available for Database ’[ ]’. This property may not exist for this object, or may not be retrievable due to insufficient access rights.

(Microsoft.SqlServer.Smo)

Troubleshootingsql

Solution is easy that change the owner using this query

Use DATABASENAME

Exec sp_changedbowner “USERNAME”

You have to run this for each DB

What is SoftwareDistribution Folder

I think, some of you have faced this problem and always I am asked why this folder is too large. let me tell what is this folder?

This folder comprises Windows patches. If Automatic windows update option is enable, this folder will be grown. Therefore you can disable that option or delete files which are already installed. Actually you cannot understand which one is installed, which one not. Best thing is delete all files under download folder.

1- create a new text file on desktop.

2- open it and copy this code

net stop wuauserv
cd %systemroot%SoftwareDistribution
ren Download Download.old
net start wuauserv

3- save it and close

4- rename file to rename.bat

5- double click on it.

After the service has been started again, a new download folder will be created again. This will give you a change to delete the folder named download.old

Create a free website or blog at WordPress.com.

Up ↑