Wednesday, 22 August 2012

Unable to setup alerts on a Drac / Integrated Dell Remote Access Controller 6 Enterprise

If you have a DRAC / Integrated Dell Remote Access Controller 6 - Enterprise and are unable to set up alerts via Google Chrome, I have noticed a little bug where the menu simply states "ok" instead of going to the correct page.



The easiest solution is simply to use Internet Explorer, however, I recommend you attempt to upgrade the DRAC to the latest version available, this is a painless process and does not require the server to be reset.

Next, try pressing the Control + F5 to refresh your cache and you should hopefully now be able to get in to the menu.

I have been seeing mixed reports on this - it appears to work for some people and others seem to still have the bug... Hopefully you will be one of the ones it works fine for.

Thursday, 2 August 2012

Android error sending email: Unable to sign or encrypt message certificate not installed

Someone in the office came to me with a problem today, saying that every time they tried to send an email, the following message is displayed:

unable to sign or encrypt message certificate not installed

It turns out that, for some reason, the option to sign outgoing messages had been turned on by accident - without any client certificate installed for this feature to actually work.

To fix it - there are two options:

1) Install a client certificate if you actually want to sign outgoing emails.

2) Turn signing off.

Hardly anyone signs emails and I am guessing that most people who want to use it will already know how to!

As for turning signing off, it is pretty straight forward.

1. Go to Email settings (Easiest is in the email client, click the menu button and go to settings).

2. Go down to Security Options

3. Untick sign.


Hope this helps!

Friday, 2 March 2012

How to generate a HTTP 400 error from a client

First blog post in a while! I have hardly had any free time... Will blog about it soon!

Anyway, I have needed to generate a 400 error on a server in order to test something - I tried a few things without success and then I discovered that the easiest way to generate a 400 error from a client is simply to add a percentage symbol (%) to the request.

For example, http://mysite.com/% should generate a 400.

Before I found out I could use the percentage symbol, I was looking for a method involving telnet/direct connections. Oliver Salzburg on Super User came up with the following -


... I don't know if this will help anyone, but, if I had found a post like this earlier today, it would have saved me quite a bit of time, so, I hope someone will find it useful!

Wednesday, 2 November 2011

How to remove an additional mailbox from opening with Outlook

I had a client today who's Outlook always opens a second mailbox of someone that they have delegated access over.

However, they no longer need it and it was being a pain to remove - no matter what option I tried, it just wouldn't go!

Trying to "Close" the mailbox results in the error
"This group of folders is associated with an e-mail account. To remove the account, click the File Tab, and on the info tab, click Account Settings. Select the e-mail account, and then click Remove."

After a while, I found that a solution was to go to the Exchange "account settings", then click "More Settings", go to the "Advanced" tab, and click "Add", choose a different Mailbox where the user has permissions.

This seems to refresh the Additional Mailbox section.

Next, click ok/next etc, and go back to that screen. The list should now be populated with the box you just added and the original box. You can remove both as usual.

Tuesday, 18 October 2011

How to reset a Windows password without third party tools

Whilst there are many tools that can change Windows account passwords, I personally like to do it manually as it doesn't take very long.

This trick will not work if you have Bitlocker full disk encyption - and, if you have EFS (Encrypting File System), your keys will become lost (as with any password resetting method).

Firstly, you need access to your hard drive - this can be from anywhere that has NTFS Write access (The easiest method is a Windows Vista/7 installation disk).

If you chose a Windows installation disk, simply boot from it and then at the first screen (Language/Location/Keyboard) click next, followed by holding Shift+F10. This will launch a command prompt window.

Depending on the amount of partitions and setup you have, Windows may be on a different drive. Try typing the following:

c:
dir
If this doesn't look like your hard drive, try changing c to d, and go through the alphabet until you reach your hard drive.

Once there, type the following:

cd\windows\system32
ren osk.exe osk_old.exe
copy cmd.exe osk.exe
Next, reboot Windows.

From here, click the accessibility\wheelchair icon and then the On Screen Keyboard option.

This will now launch a Command Prompt window as `SYSTEM` (Be careful!).

You have two options : the quickest, to change the password from the command line is:
net user username password
(Change username and password to... well, you can guess!).

There will be no confirmation, it will simply just change.

If you would rather use a UI, type `mmc` and press enter. From here, go to "File" > "Add/Remove Snap-in", Click "add", and choose "Local Users and Groups". click "close", then "ok".

Expand "Local Users and Groups" > "Users", and right click on a user, followed by "Set Password"... Choose whatever you want, and you are done!

To reset the earlier system changes, you have two options.

First, get to the command prompt from the Windows setup disk in the same way and type:

x: (where x is the drive)
cd\windows\system32
del osk.exe
ren osk_old.exe osk.exe

or, if you would rather just do it without the disk, go back to the login screen, launch command prompt and type this:

cd\windows\system32
start cmd
(Close the original command prompt window)
cd\windows\system32
del osk.exe
ren osk_old.exe osk.exe

and done!




Wednesday, 14 September 2011

How to enable the Start Menu in Windows 8 developer preview

If you want to enable the classic Start Menu on Windows 8, there is a simple registry switch you can use.

It is located at

"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer"

Simply change the "RPEnabled" entry from "1" to "0"


Changing this key changes a lot - it seems to put it back to a "Microsoft Internal" state displaying the following warnings on Winver and the desktop:


Please note, as with everything on the preview, this is a sort of "hack" which is not officially supported. It changes a heck of a lot - Pressing the start button in the bottom left corner works as expected... but, the ribbon bar disappears, you get classic Task Manager, and pressing the Windows keyboard key is buggy - the start menu appears, then disappears to reveal the metro interface, then metro interface disappears and the start menu loads!

The start menu really is not officially supported in this release and does seem to have a few bugs (mainly style related). I am not sure if Microsoft have disabled it on purpose from the preview in order to get people to use Metro and it will be there in the final product, or if it will be dropped entirely from final product - (or in the state it is in now for some sort of legacy reason.

A big downside is that apart from seeing a glimpse of the metro interface when you press the Windows key, it does actually break it and the ability to deploy/test applications on it - which is the whole point of the developer preview. So... do this once, have a look around and put it back!

(Error starting a tile application)

As you can guess, the preview is unfinished and I am sure they will change the start menu (either disable completely or simply modify behaviour) before release.

If you are not comfortable editing the registry, here are some ready made .REG files for you:

Change the key to 0 (Enable the start menu)
Change the key to 1 (Disable the start menu)

UPDATE---
If you force close and reopen Explorer after changing this key, it stops the Metro app from flashing up when pressing the Windows Key - however - tile based apps and running from Visual Studio still do not work. That being said, you can change the target in Visual Studio to an Emulator which runs the tile applications fast. I haven't looked in to this more, but it is a really cool application that allows you to test touch amongst other things.

Monday, 8 August 2011

The Office 365 partner experience. Is Microsoft trying to get rid of us?

I originally wanted one blog post, but, it turns out that I had more to say than I thought, so, I am doing this as a two parter! Click here to read My take on Google Apps Vs Office 365 .

I first heard about Office 365 at a Microsoft partner briefing towards the end of last year, I have been wanting to sign a customer up to it for a while, but, I was simply not willing to do it whilst it was in Beta.

Now it is out, this blog post will give my experiences as a Microsoft Partner. I have already given my experiences as a user comparing it to Google Apps in the first part.

To get started - As I hope it came across in the first part, I really think Office 365 is a good solution, but, for the partner experience - I simply hate it! It is my honest belief that Microsoft are trying to cut partners out and that we are a complete after thought for Office 365.

The only controls available to partners are to send a trial code and to send a purchase offer at the end of the trial.... This is really just about it!

So, with one customer, I sent them a 30 day trial for Office 365 Plan E3. It became clear during the trial that they had no intention of using any of the additional Office 365 features and simply wanted Exchange Online. Here comes the first problem!

Almost no one at Microsoft seems to understand the different plans on offer through Office 365! I rang up the support line three times, firstly I got a "No, not possible", next I got a reassuring "Yes, I think it is possible, You may loose all data during the move", and then the third time I was told that they would look in to it and get back to me.

The same sort of experience can be seen on the official forums where I asked the same question - Someone from MS giving the wrong answer, not understanding what I wrote - but then, eventually someone else from Microsoft answers giving an answer I wanted...

However, I was far from convinced and purchased a licence myself in order to test the scenario - this is one of the major faults with Office 365 - Whilst there is quite a bit of help and support listed, there are not enough real world situations and examples. When I ring up the helpline, all they seem to do is a search of the same knowledge base and if they can't find an answer, I get the impression that they just guess.

In the end, I found out that it is perfectly fine and I was able to migrate my customer easily, without losing any data (or having any down time). But, if so many people from Microsoft do not understand the different subscription levels, I do not know how they expect us to! That being said, it isn't really that hard and I knew the levels, which is why I was so annoyed at Microsoft not knowing and giving me silly answers back.

Again, I just feel that the partner experience was an after though. There is no way that I have seen to manage clients at all.

There is a section about delegated administration - but... it doesn't work at all. The option is simply not there.



So, the best I have been able to do is to create an administrator account for myself under my clients account - it is not ideal, but it works.

Towards the end of the trial, when it came to selling them the license, I went to increase the count on the one I had already purchased. I did nothing special other than to order them, however, I got the following two emails straight after each other:


So quite frankly, without a good administration panel, I haven't a clue what is going on here, or even if I will get a single penny for signing up my client. This takes me straight to the next point:

I feel that Microsoft are really screwing partners in two ways. Firstly, the new hosted Exchange solution costs less and offers more than any hosted solution from any partner I have seen - I simply do not know why any partner will want to offer their own hosted Exchange going forward.

And next, the partner fees for Hosted Exchange are 6% for the time you are the partner on record and a further 12% for the first year of signing a company up, meaning that if you are a partner who signed someone up during the first year, you can earn a combined 18%/ However, once again, due to the way the partner system works, and the fact that there is a 30 day grace period, at the end of one year, you are much better off simply ditching/letting a license expire and signing your customer up to a brand new 1 year licence. This results in the customer getting a free month and the partner getting another 18% for the next year instead of just 6%.

I just have very mixed feelings over Office 365, I believe that it is probably the best solution out there, but, I really hate the partner experience, or complete lack of one.

I have seen one of the biggest annoyances people have been saying about is lack of partner billing support, I do not see this as a big problem as it is easy to simply not give your client access to the license section and buy the licence yourself, then charge your client at the end of every month direct. I personally have no intention of charging my clients over the price set my Microsoft... but... it would be nice to have the option to do so....

... When I say this, I am not talking about ripping off my customers in any way, simply put, I have always been used to giving my clients a single bill at the end of every month or quarter which covers everything I do - email hosting included. I find it annoying to change my business processes to have to fit in to the way that Microsoft thinks is best.

I feel it would be so much better if they simply offered licences to partners for sale at 18% off the retail price and let us do what we like with our clients. I for one would love this and by far think it is a superior solution.

However, again, I do not see Microsoft doing this any time soon, I think they have slapped together the bare minimum to call it a cloud partner program and are going to leave it there.

I signed another client up on a trial and they had a small issue on the control panel - they decided to call Microsoft for help as the control panel has a support link - this is not customisable to partners and they did it because they thought it was the right thing to do. Upon speaking to Microsoft, they were asked to go in to PowerShell and type a bunch of commands - they were out of their comfort zone and rang me up to do it for them...

I just don't think Microsoft understands the relationships that support companies have with their clients, I would be willing to get a cheaper licence without end user support thrown in... That line must cost a bit to have and the whole point of being a partner is that we want to be the single point of call for our clients.

I just think within the next few years, we are going to see a lot more of Microsoft targeting end users directly and attempting to cut out partners as much as they can.

Going back to this support line - It is the most stupidest use of VOIP and localisation I have seen - No matter what country you ring from, you get forwarded to the same country/target, but, it is only open during working hours in your country. I had an urgent issue in the middle of the night, so, I rang up the Australian help number and it was the exact same IVR/Option, and I went through to the same help line! Why can't they just keep the number open 24x7?

And... If anyone wants any free trial links to Office 365, here are some for you!

Office 365 E3 25 user trial
Office 365 K2 25 user trial
Office 365 P1 10 user trial
Office Professional Plus 25 user trial
Exchange Online Archiving 25 user trial

If you want to purchase Office 365 and do not have a partner, feel free to get in contact with me and I will be happy to set you up - I would still say I am a Microsoft fan and I really hope they improve the partner program, I for one would love to be proved wrong on many of the points I have made here - I just unfortunately do not see it happening. I still feel Office 365 is a brilliant solution... Just not for partners!