Author Archives: admin

Windows 8 Activation Error: DNS name does not exist Error Code: 0x8007232B

Depending on where the installation media was obtained from (MSDN, TechNet subscription download,..) the activation wizard  by default will look for a Key Management Service (KMS) host on your internal network. It will not try to activate using the internet to reach Microsoft Activation servers.

The solution is to manually change the product key to a Multiple Activation Key (MAK) most likely provided with your MSDN or TechNet subscription.

To change the product key, use the slmgr.vbs script included with your Windows installation.

  1. Run the command prompt as an administrator
  2. Enter slmgr -ipk xxxxx-xxxxx-xxxxx-xxxxx-xxxxx where xxxxx-xxxxx-xxxxx-xxxxx-xxxxx is your product key.

Excel – How to make first character Uppercase, the rest lowercase?

make a quick test file
see what this is going to do. if its what you want, then try it in your original

– Right Click on your sheet1 tab and choose View code (or just hit Alt F11)
– cut and paste this


Sub SentenceCase()
 For Each cell In Selection.Cells
 s = cell.Value
 Start = True
 For i = 1 To Len(s)
 ch = Mid(s, i, 1)
 Select Case ch
 Case "."
 Start = True
 Case "?"
 Start = True
 Case "a" To "z"
 If Start Then ch = UCase(ch): Start = False
 Case "A" To "Z"
 If Start Then Start = False Else ch = LCase(ch)
 End Select
 Mid(s, i, 1) = ch
 Next
 cell.Value = s
 Next
 End Sub

– then highlight your column (or whatever you want to change)
– then run the macro
– click tools
– click macro
– choose sentance case and run

Windows 8 RTM System Requirements

Today August 15th, 2012, Microsoft releases the RTM version of Windows 8 for MSDN and TechNet subscribers along with an evaluation version of Windows 8 Enterprise to early adopters and developers; if you want to give a try and not sure about minimum system requirements then this blog post helps you to determine whether your existing PC is capable to install it or not.

Microsoft has kept its promise that Windows 8 won’t require any more hardware than Windows 7. Grant George, Corporate VC of Windows Test repeats on Bulding Windows 8 blog what Microsoft has said in the past. So Windows 8 RTM works great on the same hardware that powers Windows Vista and Windows 7:

  • 1 GHz or faster 32-bit (x86) or 64-bit (x64) 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
  • Taking advantage of touch input requires a screen that supports multi-touch
Got all… Then you can download the Windows 8 RTM and experience first-hand the beautiful, fast and fluid experience.

Code Translation for .NET (C#<->VB.NET)

This service will translate the code for you, just start typing the code or upload a file to convert it.
For now it only supports from VB.NET to C# and from C# to VB.NET.
To use it you can either:

  1. Start typing your code.
  2. Copy and Paste the code in the Code Text Box.
  3. Translate an entire file using the file upload.

Disclaimer: No copy is done whatsoever of the code that you either type, or upload for translation. Everything is processed in the server in memory and returned immediately to the browser.
If you want to give feedback on the translation, please send me an email including the code you used and the desired translation to me@carlosag.net.

http://www.carlosag.net/Tools/CodeTranslator/

see also:

http://www.developerfusion.com/tools/convert/csharp-to-vb/

Windows 8: HAL_INITIALIZATION FAILED.

“HAL INITIALIZATION FAILED”, means the hardware is not compatible with Windows 8 Operating System.

Windows 8 developer installation is supported on only below platforms.

 

 

How to unlock android phones after too many pattern attempts

Microsoft Exchange POP3 Service Stuck on ‘Starting’ State

The Microsoft Exchange POP3 service  stuck in an infinite state of  ”Starting” status after tried to manually restart it .

Try

  1. Open Task Manager. [Ctrl+Alt+Delete]
  2. Find the process “inetinfo.exe” .
  3. Click on ‘End Process’

The service should now start .

GeoIP Database

Test integrations and create custom products using MaxMind’s open source data and APIs.

GeoLite Data

http://www.maxmind.com

http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz

ASP.NET 4.0 potentially dangerous Request.Form value was detected

This was because .NET detected something in the entered text which looked like an HTML statement.
This is a feature put in place to protect your application cross site scripting attack and followed accordingly.

To disable request validation, I added the following to the existing “page” directive in that .aspx file.

ValidateRequest=&quot;false&quot;

For .NET 4, we need to add requestValidationMode=”2.0″ to the httpRuntime configuration section of the web.config file like the following:

&lt;httpRuntime requestValidationMode=&quot;2.0&quot;/&gt;

But if there is no httpRuntime section in the web.config file, then this goes inside the <system.web> section.

If anyone wants to turn off request validation for globally user, the following line in the web.config file within <system.web> section:

&lt;pages validateRequest=&quot;false&quot; /&gt; 

Metro style app

A Metro style app is a new type of application that runs on Windows 8 Release Preview devices. Read on if you want to learn more about what makes Metro style apps different from traditional desktop apps.

Apps have one window that supports multiple views

Unlike traditional desktop apps, a Metro style app has a single, chromeless window that fills the entire screen by default, so there are no distractions.

A Metro style app that fills the screen

read more »