IT Guys blog

Information Technology Tips & Tricks

FREE Authorize.Net Set-Up


 

IT-ETC in collboration with SSL4ALL.com has worked a great deal with Authorized.net (Leader in internet gateway) and E-Onlinedata (online merchant) where all of our referrals would get special rates and pay no setup fees. This is in celebration of the launch of SSL4ALL.com

ITETC is excited to offer specially priced Internet Merchant Accounts to our valued clients! When it comes to conducting smart business, a REAL Merchant Account is the right choice.

Start accepting credit cards or UPGRADE your payment system from Pay Pal and enjoy these benefits:

  • Anyone can pay you: your customer does not need to be a “member” of Pay Pal.
  • Your business name & phone number appear on your customer’s credit card statement.
  • Your funds are directly deposited into your local checking account daily.
  • Access the Authorize.Net Virtual Terminal for key entered phone orders.
  • Real time processing seamlessly integrated into your (ITETC) system.
  • Online reporting and management of all your transactions.

If your business or organization needs to accept Visa and MasterCard (AMEX and Discover Card available) to boost sales and income, click the link below to find out more about the special program we have negotiated for you with leading eCommerce Merchant Account provider e-onlinedata (the biggest Authorize.net partner).

Sign up now and take advantage of the FREE Authorize.Net Set Up, a savings of $79.00.

The Authorize.Net Payment Gateway system is fully compatible with ITETC systems and we have technical support standing by to assist you in launching your eCommerce storefront.

To learn more about our Merchant Accounts with FREE Authorize.Net for a limited time please click here: https://www.e-onlinedata.com/itetc

Here are the main details you would be looking for so you can beleive how good of a deal it is:

Guaranteed = Rates will NOT increase unless Visa/MC increases Interchange* 

  • NO Application Fees
  • NO Annual Fees
  • NO Address Verification (AVS) Fees
  • NO Leasing
  • NO Termination Penalties
  • NO Batch Header Fees
  • 2.19% VISA/MasterCard Qualified Discount Rate
  • $0.25 per Transaction
  • $10.00 Monthly Service Fee (includes Monthly Statement)
  • $25.00 Monthly Processing Minimum
  • Toll Free 24/7 Tech Support and daily Customer Service Support

As far as Authorize.net deal you will get:

 

FREE

Setup, $10.00/monthly and   first 250 trans free monthly, then $0.05 each

Signup Today https://www.e-onlinedata.com/itetc


Honest and independant web hosting review website


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


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


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


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


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.