Failed to access IIS metabase

January 2nd, 2009

This error was happening when I first tried using ASP.NET on the XP Machines we have in the office.  I tried adjusting the permission using MetaAcl Tool, but that did not do it for me.  After further research on “Failed to access IIS metabase” error it appeared that when .Net is installed prior to installing IIS this error will occur.

To fix the problem, just run the following command to reinstall APS.NET and reupdated the permissions:

%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i

 If that does not work, you can try adjusting the permissions as shown in the following Microsoft article:

http://support.microsoft.com/?kbid=267904

Error the system administrator has set policies to prevent this installation when installing or upgrading to vmware 2.0 on windows 2003

October 6th, 2008

Some people have reported they ran into an issue when trying to upgrade to VMware 2.0 and the error was during the install stating: Error the system administrator has set policies to prevent this installation  when installing.

The best fix or work around is this, it worked for me:

 Click Start -> Control Panel

  1. Open Administrative Tools
  2. Open Local Security Settings
  3. Click Software Restriction Policies
    1. If no software restrictions are defined, right click the Software Restriction Policies node and select New Software Restriction Policy
  4. Double click Enforcement
  5. Select “All users except local administrators”
  6. Click OK
  7. Reboot the machine
  8. Install VMWare 2.0 and it should proceed with no issues.

Good Luck :)

install Windows Server 2003 management tools on a Windows Vista-based computer – Error MMC could not create the snap-in.

October 3rd, 2008

CAUSE

Microsoft Management Console (MMC) could not create the snap-in

This issue occurs because the Administration Tools Pack is not installed by a user who has administrative user rights. New security enhancements in Windows Vista require elevated user rights when a .dll file is registered. Therefore, Windows Vista security enhancements require that certain snap-ins are installed only by a user who has local administrative user rights.

MMC could not create the snap-in

To resolve this issue, register the Windows Server 2003 management tools on a domain user account. To do this, follow these steps:

1. Log on to Windows Vista as a user who has local administrator permissions.
2. Create the RegisterAdminPak.cmd script. To do this, follow these steps:

a. Start Notepad, and then open a blank document.
b. Paste the following code to the document in Notepad:

@echo off  REM RegisterAdminPak.cmd REM (c) 2006 Microsoft Corporation.  All rights reserved.
set filelist=adprop.dll azroles.dll azroleui.dll ccfg95.dll
set filelist=%filelist% certadm.dll certmmc.dll certpdef.dll certtmpl.dll
set filelist=%filelist% certxds.dll cladmwiz.dll clcfgsrv.dll clnetrex.dll
set filelist=%filelist% cluadmex.dll cluadmmc.dll cmproxy.dll cmroute.dll
set filelist=%filelist% cmutoa.dll cnet16.dll debugex.dll dfscore.dll
set filelist=%filelist% dfsgui.dll dhcpsnap.dll dnsmgr.dll domadmin.dll
set filelist=%filelist% dsadmin.dll dsuiwiz.dll imadmui.dll lrwizdll.dll
set filelist=%filelist% mprsnap.dll msclus.dll mstsmhst.dll mstsmmc.dll
set filelist=%filelist% nntpadm.dll nntpapi.dll nntpsnap.dll ntdsbsrv.dll
set filelist=%filelist% ntfrsapi.dll rasuser.dll rigpsnap.dll rsadmin.dll
set filelist=%filelist% rscommon.dll rsconn.dll rsengps.dll rsjob.dll
set filelist=%filelist% rsservps.dll rsshell.dll rssubps.dll rtrfiltr.dll
set filelist=%filelist% schmmgmt.dll tapisnap.dll tsuserex.dll vsstskex.dll
set filelist=%filelist% w95inf16.dll w95inf32.dll winsevnt.dll winsmon.dll
set filelist=%filelist% winsrpc.dll winssnap.dll ws03res.dll
for %%i in (%filelist%) do ( 	echo Registering %%i ... 	regsvr32 /s %%i  )
echo. Echo Command Completed

c. On the File menu, click Save.
d. In the Save as type box, click All Files, type C:\Users\UserAccountName\RegisterAdminPak.cmd in the File name box, and then click Save.Notes
UserAccountName represents the folder name of the user who is currently logged in.You must run this script in Windows Vista only.
3. Run RegisterAdminPak.cmd from an elevated command prompt. To do this, follow these steps:

a. Click Startthe Start button, click All Programs, click Accessories, right-click Command Prompt, and then click Run as administrator.User Account Control permission If you are prompted for an administrator password or for confirmation, type your password, or click Continue.
b. At the command prompt, type the following command, and then press ENTER.Note If you are running a 64-bit version of Windows Vista, type cd %systemroot%\syswow64 before you run the following command.

C:\Users\UserAccountName\RegisterAdminPak.cmd

How to redirect traffic to another domain aka 301 redirect

June 5th, 2008

301 Redirect

301 redirect is the most efficient and Search Engine Friendly method for webpage redirection. It’s not that hard to implement and it should preserve your search engine rankings for that particular page. If you have to change file names or move pages around, it’s the safest option. The code “301″ is interpreted as “moved permanently”.

You can Test your redirection with Search Engine Friendly Redirect Checker

Below are a Couple of methods to implement URL Redirection

IIS Redirect

  • In internet services manager, right click on the file or folder you wish to redirect
  • Select the radio titled “a redirection to a URL”.
  • Enter the redirection page
  • Check “The exact url entered above” and the “A permanent redirection for this resource”
  • Click on ‘Apply’

ColdFusion Redirect

<.cfheader statuscode=”301″ statustext=”Moved permanently”>
<.cfheader name=”Location” value=”http://www.new-url.com”>

PHP Redirect

<?
Header( “HTTP/1.1 301 Moved Permanently” );
Header( “Location: http://www.new-url.com” );
?>

ASP Redirect

<%@ Language=VBScript %>
<%
Response.Status=”301 Moved Permanently”
Response.AddHeader “Location”,”http://www.new-url.com/”
%>

ASP .NET Redirect

<script runat=”server”>
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = “301 Moved Permanently”;
Response.AddHeader(“Location”,”http://www.new-url.com”);
}
</script>

JSP (Java) Redirect

<%
response.setStatus(301);
response.setHeader( “Location”, “http://www.new-url.com/” );
response.setHeader( “Connection”, “close” );
%>

CGI PERL Redirect

$q = new CGI;
print $q->redirect(“http://www.new-url.com/”);

Ruby on Rails Redirect

def old_action
headers["Status"] = “301 Moved Permanently”
redirect_to “http://www.new-url.com/”
end

Redirect Old domain to New domain (htaccess redirect)

Create a .htaccess file with the below code, it will ensure that all your directories and pages of your old domain will get correctly redirected to your new domain.
The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)

Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]

Please REPLACE www.newdomain.com in the above code with your actual domain name.

In addition to the redirect I would suggest that you contact every backlinking site to modify their backlink to point to your new website.

Note* This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.

Redirect to www (htaccess redirect)

Create a .htaccess file with the below code, it will ensure that all requests coming in to domain.com will get redirected to www.domain.com
The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)

Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]

Please REPLACE domain.com and www.newdomain.com with your actual domain name.

Note* This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.

How to Redirect HTML

Please refer to section titled ‘How to Redirect with htaccess’, if your site is hosted on a Linux Server and ‘IIS Redirect’, if your site is hosted on a Windows Server.

There is a good resource site that talks into similar details about domain forwarding, search engine friendly methods and so forth. check it out

http://www.webconfs.com 

 

IP address upgrade from IPv4 to IPv6

January 14th, 2008

It’s about time for an IP address upgrade, don’t you think?! Well, before I go any further, if you’re not sure, an IP address is a unique address that is assigned to a network device by the network. Every computer that connects to a network or the Internet is assigned an IP address. It basically allows that computer to communicate with the network or the Internet.

The current IP address standard, called IPv4, uses 32-bits, which looks something like this: 192.168.0.1. This IP address standard was created in 1981 when the Internet was just a baby. The early creators of the Internet did not believe it would become as large as it is today, especially since it was originally designed only for a few universities and the United States Government. Over time, many large corporations and even the U.S. Government have come to realize that there is a large need to switch over to a new IP standard. The new version will be called IPv6 and it will use 128-bits.

 The IPv6 IP address looks something like this: 2001:0db8:85a3:08d3:1319:8a2e:0370:7334.On August 2, 2005, the Federal Government of the United States issued a memorandum, stating that all Federal Government agencies will transition their network backbones to IPv6 by June 30, 2008. The IPv4 version only allows for four billion IP addresses, which greatly limits the number of devices that can be given a unique, globally routable location on the Internet. The IPv4 standard has slowed the growth of the Internet worldwide and it constricts the amount of computers and other devices that can be connected to each other via the Internet. On the other hand, the IPv6 standard allows for an almost unlimited number of IP addresses. In all actuality, the IPv6 allows for over 300,000,000,000,000,000,000,000,000,000,000,000,000 different addresses. (And no, I’m not kidding!) The movement from IPv4 to the new IPv6 will allow us users to have more technology in our lives, because we will now be able to assign more IP addresses to more devices. Soon, mobile phones, televisions and even toasters will be assigned IP addresses! Imagine this: you’re leaving work and you would like a hot cup of coffee when you arrive home. With the IPv6, you would be able to do much more.

This transition is not going to be easy or simple, it will require a lot of manpower professionals to get involved and oversee these projects.

Error code 2738 When Installing iTunes + Quicktime on Windows Vista

January 7th, 2008

I just downloaded the latest iTumes version, but when I tried to install it, I got the following error: 

iTunes Logo

The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2738.

After research I found the following link: 

 http://docs.info.apple.com/article.html?artnum=304405

The solution was to re-register vbscript.dll.  I also selected “Run as Administrator” option when I reran after reregistering the dll.

To register the dll, please do the following:

  1. On the Start menu, click Run.
  2. In the “Open” field, enter the following command and click OK.
    regsvr32 vbscript.dll
  3. A message should appear stating that the “DllRegisterServer in C:\WINDOWS\system32\vbscript.dll succeeded.”
  4. Click OK and try installing iTunes or QuickTime again.

Thanks for Apple Support for the posting…

FREE eBay Auction Sniper Service

January 3rd, 2008

Have you ever wondered why when you are trying to bid on an otem on ebay and you are the highest bidder then all of a sudden you right before the auction ends, someone comes in and snatches it from you whether it is in the middle of the day or middle of the night, it just happens. The chances are, the person overbidding you is not really sitting in front of the computer, all what this person did is use a sniping program or a website service like Gixen where you enter the ebay item number and the highest amount you are trying to bid and what the website service do is go out a few seconds before the auction ends and place the bid for you. This way you avoid getting into bidding war, you do not have to stick around the computer to find out make sure no one overbids you, and lastly, you bid like a pro.

We have evaluated different programs and website services that offer snipping services, truth told, the real nice one we liked was Gixen. It is a website service that is offered to the public for free and you can bid on as many items as you want. it uses SSL for encypting and securing the data transmission.

Other competitor websites and programs would charge you a fixed percentage of won items or insertion fees.

 I have been using Gixen for a few months and have been very pleased with the service therefore, have decided to share the wealth about this free ebay sniping website service.

PHP error 5.2.4 Getting error “Error in my_thread_global_end(): 1 threads didn’t exit”

October 25th, 2007

We have noticed a few web server admins to be getting an error message Getting error “Error in my_thread_global_end(): 1 threads didn’t exit” when running php on IIS windows servers in CGI. the issue is caused by libmysql.dll found in php directory. The file size for the libmysql.dll was 1.94 MB (2,035,712 bytes).

To fix the issue and clear the error message, you must replace libmysql.dll with an earlier version from release 5.2.1 of PHP.

I noticed many people were not able to get their hands on it so we have uploaded it to our server to make it easily availble.
Download php mysql libmysql.dll

VMWare Host and Guest Cannot Communicate Over Network Shares on Dell PowerEdge and Broadcom TOE

October 10th, 2007

Many people have encoutnered issues with the TOE on the Dell PowerEdge servers (especially the 2900) where it caused weird issues with networking components, most noticeable on VMware boxes and ISA servers.

A few days ago I had the same issue with our PowerEdge 2900 after I upgraded to the latest drivers and firmware, the server was running windows 2003 with SP2 loaded on it, once the server was rebooted, the host OS could not access the guest systems via UNC or RDP ( Remote Desktop) however I was able to ping the guest OS by IP and common name with no issues.

after researching the issue, I discovered, it is a problem with the Broadcom Network Cards, Windows 2003SP2 and the TOE (Tcpip Offload Engine)

I tired many different thigs except uninstalling the SP2 from the Host OS as it was not a fix for me (not good enough solution) so what I did was opened up the case and removed the TOE component which is like a little white adapter that plugs into the motherborad of the 2900 PowerEdge server. The connector itself is like a phone plug. I have attached a picture of the adapter.

To remove the TOE adapter, slide open the case, look in the center next to the CPU, there will be a white chip (looks like a one of those tranceievers) sticking out and labeled TOE 2) Just unplug it (you would unplug it just like how you unplug a phone from a phone jack).

Once I removed the TOE adapter from the server and powered it back on, everything worked like a charm. I phoned Dell and talked to their senior techs and they did elaborate that this was a problem they have been running into recenlty and this was the right fix.

I hope this helps you out. if it does please post to let me know.  

TOE Adapter for Dell PowerEdge 2900

TOE Dell PowerEdge adapter

Video Tutorials for Share Point 2007

October 3rd, 2007

Microsoft Share Point 2007 is getting hotter and hotter every day. Knowing Share Point 2007 is goldmine due to the services and features it offers. Yet with the high demand on it, many IT Guys lack the knowledge and understanding of its capabilities and expandabilities.  We did our homework and searched for good resources and found this free video tutorial on Share Point 2007. It is by far one of the best resrouces we have found on the internet for Microsoft Sharepoint 2007.

the website is: Microsoft Share Point 2007 Video Tutorial

Command check computer specs and uptime in windows XP

August 26th, 2007

Ever had a doubt what utilities do what. Windows XP has so many built in features and utilities that most sysadmins do not bother to utilize as they try to find a way of getting by with the same old commands (like ipconfig and stuff) they do not realize that newer OSes often include more utilities that could help in streamlining the support daily tasks and troubleshooting.

Try this command which is built in into Microsoft Windows XP.  

in command prompt, type the following     systeminfo

it will give you good useful information about system configs, system uptime, original install date (windows xp installation) hotfixes installed, NIC card info and so forth. it can be run on another machine remotely.

Here is a systeminfo parameter:

C:\DOCUME~1\aamin>systeminfo /?

SYSTEMINFO [/S system [/U username [/P [password]]]] [/FO format] [/NH]

Description:
    This command line tool enables an administrator to query for basic
    system configuration information.

Parameter List:
    /S      system           Specifies the remote system to connect to.

    /U      [domain\]user    Specifies the user context under which
                             the command should execute.

    /P      [password]       Specifies the password for the given
                             user context. Prompts for input if omitted.

    /FO     format           Specifies the format in which the output
                             is to be displayed.
                             Valid values: “TABLE”, “LIST”, “CSV”.

    /NH                      Specifies that the “Column Header” should
                             not be displayed in the output.
                             Valid only for “TABLE” and “CSV” formats.

    /?                       Displays this help/usage.

Examples:
    SYSTEMINFO
    SYSTEMINFO /?
    SYSTEMINFO /S system
    SYSTEMINFO /S system /U user
    SYSTEMINFO /S system /U domain\user /P password /FO TABLE
    SYSTEMINFO /S system /FO LIST
    SYSTEMINFO /S system /FO CSV /NH

I hope you find this tool useful and helpful. If so let us know and we will post more.

If you have tips to share, please do not hesitate to contribute.

Goodlink stops syncing contacts on Treo Palm or other PDA devices

August 25th, 2007

If you have a device running Good Messaging (formerly known as GoodLink) and it stops syncing, the first thing to do is make sure you have a data connection by attempting to go out to an internet site (such as www.google.com) from your device. If that doesn’t work, then contact your wireless provider, because your data connection is not available or you have no data coverage where you are. If you can get out to website, you probably just need to reset the Goodlink software.

 Here are instructions for to reset your goodlink software on a treo or a PDA device:

  1. On your wireless device, go into Good Preferences | About Good Mobile Messaging
  2. Type in “debug” without quotes. You will not see the text on the screen as you type, but it will open a hidden command prompt.
  3. When a command prompt window opens, type in “reprov” without quotes and press the enter key.
  4. You will be prompted that this will erase all data from the handheld. This only refers to data synced with the Good software. Type in “yes” without quotes and press the enter key.
  5. Your device will restart and the Good software will resync all of your emails/calendar/contacts/etc.

This usually does the trick and all should work like a charm.

I hope this tip helped you out.

Computer Wholesaler Network

August 20th, 2007

Computer market is becoming more and more competitive which keeps the prices down for all consumer business. However, the market is much more competitve in the second hand computers and wholesalers. Many of these wholesalers are dealing in the gray market. We found a great directory where these computer wholesalers and drop shippers are listed and actively interact together releasing their hottest inventory along with their contact info.

if you are intrested in buying second hand computers or brand new computer  from the gray market area make sure you check out the Computer Wholesalers Directory

RSS Readers Sharp Reader

August 13th, 2007

I remember back in the days when I had two or three favorite sites, but nowadays, with so many different topics, gadget news, website deals, and more, it is hard to keep visit all of them more often, this is where RSS comes to the rescue and offer you the ease of keeping up with all the sites in one simple application with highlights of each website… Not all website have RSS capability, but it is becoming more and more common.

There are two main ways to get the RSS feeds, the first way is through a web application (kind of like different Google Reader where you have to have your web browser open and logged in to your Google account, Yahoo, and MSN offer it too) or a desktop application where you can open it up like Microsoft Outlook… I have been through a few RSS readers and found Sharp Reader to be the best one out there due to its simplicity, new RSS notifications, and most of all, stability (the coolest thing, it is FREE).

Download Sharp Reader Software RSS Reader

PST Password Recovery for Microsoft Outlook Free

August 13th, 2007

So many passwords, only a few can be remembered, the ones that are hard to remember usually are the ones that are seldom used. This is the case with my friend Jane who setup a password on her PST file a few months ago and now needed to get some emails out of it, the only problem is she could not open it as she did not know the password.

Thankfully, when she called me, I had the PST Recover Password utility available and was able to crack it open. It is a free utility, almost impossible to find one like it for free.

Download Recover PST Password for Microsoft Outlook

Online Training Library Courses for $30/month

August 11th, 2007

 There are many online training sites out there these days that offer access to their entire training library for monthly subscribtion. We have done an extensive research on which one has the most selections, more advanced courses and offer latest products.   Virtual Training Company (VTC) by far stood out in all of our comparisons. We compared it to Lynda.com which was pretty much the same price but fewer selections.

VTC Online University is one of the most valuable training resources on the web . For just US$30* per month you will have access to in-depth training on hundreds of today’s most sought-after applications, with over 43,327 narrated QuickTime movies. (And yes, you do have access to ALL VTC VTC Logocontent.) These can be streamed over any connection to the Internet directly to your computer

 

3 Ways To Lock Windows XP

August 10th, 2007

To lock a Windows XP workstation you can use of the 2 methods below:

 1)  Keyboad Combination:  You can lock your Windows XP workstation by Pressing the Windows key + the letter L to lock.

2)  DOS Command: You can also lock a Windows XP workstation by typing the following DOS command,

rundll32.exe user32.dll, LockWorkStation

This command can be execute by either click on Start -> Run and typing the in the command, or by creating a shortcut.

3)  Normal way: Click on Ctrl + Alt + Del, and select “Lock”

Honest and independant web hosting review website

August 10th, 2007

It is very important to search and research web hosting companies before signing up with one. after all it is a service you are receiving from them let alone your data is housed with them. I found web hosting review to be an honest review website on web hosting companies, completely unbiased and straight to the point. check them out.

Free utility to import N2K file

August 10th, 2007

Microsoft Outlook 2003 and Microsoft Outlook 2007 do not store email addresses you correspond to via email in your address book, what it does, it stores all these email addresses in what is called the cached file called N2K file. The N2K  file cannot be read via a regular text editor nor can it be directly imported into outlook contacts.

Many users get bumped when they find this out, (especially noticeable when they receive a new computer).

The utility we have can open up the N2K file and export all the addresses into a CSV file. Best of all, it is free. :)

the N2K file can be located at the following path C:\Documents and Settings\(Your USERNAME)\Application Data\Microsoft\Outlook\Outlook.NK2

Download the N2K tool.

If you have similar tools or cool tools please share it with us…. we will credit you for it
Enjoy

Attached is a utility that would extract the nk2 files into csv (so they can be imported into address book) 

Once in a CSV, you can easily delete invalid exchange addresses and maintain the smtp addresses.

Please let me know if you have any questions.

it is a beta version but has always worked for me.  ;)

Control ALT Delete in microsoft terminal windows session

August 10th, 2007

Have you ever wanted to get the control alt delete in windows terminal session and wondered how it can be done (may be to get task manager, change password, lock workstation… etc

In the windows terminal session, press  CTRL ALT END  instead of CTRL ALT Del and that should bring it up for you.

Cool tip huh…. :)

DOS IF command to check file if exist

August 10th, 2007

Simple opertations can seem easy but in some instances it is challenging.

Many network administrators can find this useful when deploying new files to the company computer using batch files.

Here is some good info on how to use the if statement.

Performs conditional processing in batch programs.

IF [NOT] ERRORLEVEL number command
IF [NOT] string1==string2 command
IF [NOT] EXIST filename command

  NOT               Specifies that Windows XP should carry out
                    the command only if the condition is false.

  ERRORLEVEL number Specifies a true condition if the last program run
                    returned an exit code equal to or greater than the number
                    specified.

  string1==string2  Specifies a true condition if the specified text strings
                    match.

  EXIST filename    Specifies a true condition if the specified filename
                    exists.

  command           Specifies the command to carry out if the condition is
                    met.  Command can be followed by ELSE command which
                    will execute the command after the ELSE keyword if the
                    specified condition is FALSE

The ELSE clause must occur on the same line as the command after the IF.  For
example:

    IF EXIST filename. (
        del filename.
    ) ELSE (
        echo filename. missing.
    )

The following would NOT work because the del command needs to be terminated
by a newline:

    IF EXIST filename. del filename. ELSE echo filename. missing

Nor would the following work, since the ELSE command must be on the same line
as the end of the IF command:

    IF EXIST filename. del filename.
    ELSE echo filename. missing

The following would work if you want it all on one line:

    IF EXIST filename. (del filename.) ELSE echo filename. missing

If Command Extensions are enabled IF changes as follows:

    IF [/I] string1 compare-op string2 command
    IF CMDEXTVERSION number command
    IF DEFINED variable command

where compare-op may be one of:

    EQU – equal
    NEQ – not equal
    LSS – less than
    LEQ – less than or equal
    GTR – greater than
    GEQ – greater than or equal

and the /I switch, if specified, says to do case insensitive string
compares.  The /I switch can also be used on the string1==string2 form
of IF.  These comparisons are generic, in that if both string1 and
string2 are both comprised of all numeric digits, then the strings are
converted to numbers and a numeric comparison is performed.

The CMDEXTVERSION conditional works just like ERRORLEVEL, except it is
comparing against an internal version number associated with the Command
Extensions.  The first version is 1.  It will be incremented by one when
significant enhancements are added to the Command Extensions.
CMDEXTVERSION conditional is never true when Command Extensions are
disabled.

The DEFINED conditional works just like EXISTS except it takes an
environment variable name and returns true if the environment variable
is defined.

%ERRORLEVEL% will expand into a string representation of
the current value of ERRORLEVEL, provided that there is not already
an environment variable with the name ERRORLEVEL, in which case you
will get its value instead.  After running a program, the following
illustrates ERRORLEVEL use:

    goto answer%ERRORLEVEL%
    :answer0
    echo Program had return code 0
    :answer1
    echo Program had return code 1

You can also using the numerical comparisons above:

    IF %ERRORLEVEL% LEQ 1 goto okay

%CMDCMDLINE% will expand into the original command line passed to
CMD.EXE prior to any processing by CMD.EXE, provided that there is not
already an environment variable with the name CMDCMDLINE, in which case
you will get its value instead.

%CMDEXTVERSION% will expand into a string representation of the
current value of CMDEXTVERSION, provided that there is not already
an environment variable with the name CMDEXTVERSION, in which case you
will get its value instead.

BlackBerry Wireless syncronization disappeared for Contacts or email

August 10th, 2007

Blackberry users sometimes encounter a weird issue with their blackberries where the wireless syncronization disappears from the contacts or messages menu (where you can turn it off or on). To fix it simply go into the service book (under Options) and delete the Desktop CMIME) once deleted you can go into the BES server and send Service Book again and that should fix it.  This also fixes the issue when a user cannot send emails where the send option disappears. this happens because the CMIME gets corrupted.

If the issue is with Wireless Syncronization, then you want to delete the Desktop CICAL which is responisble for calendar wireless syncronization.

I hope you find this helpful.