Feb 012011
 

Here is my ASCII Code generator that I created: ASCII CODE GENERATOR.

MailTo.Link.Using.JavaScript.html

Encrypt.Email.Address.html

Some Mathematics characters are part of the Unicode character set, so you need to declare that in the head of your documents:

<meta http-equiv=”content-type” content=”text/html;charset=utf-8″ />

Display Friendly Code Numerical Code Hex Code Description
  &#8722; &#x2212; Minus Sign
+ + &#43; &#x2B; Plus Sign
± &plusmn; &#177; &#xB1; Plus or Minus Sign
× &times; &#215; &#xD7; Multiplication Sign
÷ &divide; &#247; &#xF7; Division Sign
% % &#37; &#x25; Percent Sign
  &#137; &#x2030; Per Million Sign
= = &#61; &#x3D; Equal Sign
  &#8800; &#x2260; Not Equal To Sign
  &#8776; &#x2248; Approximately Equal Sign
  &#8801; &#x2261; Identical To Sign
< &lt; &#60; &#x3C; Less Than Sign
> &gt; &#62; &#x3E; Greater Than Sign
  &#8804; &#x2264; Less Than or Equal To Sign
  &#8805; &#x2265; Greater Than or Equal To Sign
  &#8734; &#x221E; Infinity Sign
  &#8539; &#x215B; One Eighth Fraction
¼ &frac14; &#188; &#xBC; One Quarter Fraction
  &#8540; &#x215C; Three Eighths Fraction
½ &frac12; &#189; &#xBD; One Half Fraction
  &#8541; &#x215D; Five Eighths Fraction
¾ &frac34; &#190; &#xBE; Three Quarters Fraction
  &#8542; &#x215E; Seven Eighths Fraction
  &#8747; &#x222B; Integral Sign
  &#8706; &#x2202; Partial Differential Sign
  &#8710; &#x2206; Increment Sign
  &#8719; &#x220F; N-ary Product Sign
  &#8721; &#x2211; N-ary Sum Sign
  &#8730; &#x221A; Square Root Sign
  &#8735; &#x221F; Right Angle Sign
  &#8745; &#x2229; Intersection Sign
  &#8729; &#x2219; Bullet Operator
ƒ   &#131; &#x83; Function Sign
  &#8260; &#x2044; Fraction Slash
Feb 092010
 

EnCrypt an RDP file password

Enter the following into a batch file.

:: Usage:
:: LTD2.cmd password
::
:: Variables:
:: “hashtool”   – location of the hash tool
:: “outputfile” – destination and name for the .rdp file
:: “comp”       – computer name (can be FQDN or NetBIOS)
:: “domain”     – name of authenticating domain
::                  (if stand-alone enter computer name)
:: “usr”        – Username
@echo Off

If “%1″==”” Goto EOF

set pwd=%1
Set hashtool=”C:\Software\CryptRDP5\cryptRDP5.exe”
set outputfile=”%C:\Software\CryptRDP5\computerA.rdp”
set comp=thecomputername
set domain=thedomainname
set usr=theusername

for /f “tokens=*” %%a in (‘%hashtool% %pwd%’) do set pwdhash=%%a
:CreateRDP
If EXIST %outputfile% del %outputfile%
Echo screen mode id:i:2>> %outputfile%
Echo desktopwidth:i:1024>> %outputfile%
Echo desktopheight:i:768>> %outputfile%
Echo session bpp:i:24>> %outputfile%
Echo winposstr:s:0,1,32,68,800,572>> %outputfile%
Echo full address:s:%comp%>> %outputfile%
Echo compression:i:1>> %outputfile%
Echo keyboardhook:i:2>> %outputfile%
Echo audiomode:i:2>> %outputfile%
Echo redirectdrives:i:0>> %outputfile%
Echo redirectprinters:i:0>> %outputfile%
Echo redirectcomports:i:0>> %outputfile%
Echo redirectsmartcards:i:1>> %outputfile%
Echo displayconnectionbar:i:1>> %outputfile%
Echo autoreconnection enabled:i:1>> %outputfile%
Echo authentication level:i:0>> %outputfile%
Echo username:s:%usr%>> %outputfile%
Echo domain:s:%domain%>> %outputfile%
Echo alternate shell:s:>> %outputfile%
Echo shell working directory:s:>> %outputfile%
Echo password 51:b:%pwdhash%>> %outputfile%
Echo disable wallpaper:i:1>> %outputfile%
Echo disable full window drag:i:0>> %outputfile%
Echo disable menu anims:i:0>> %outputfile%
Echo disable themes:i:0>> %outputfile%
Echo disable cursor setting:i:0>> %outputfile%
Echo bitmapcachepersistenable:i:1>> %outputfile%

:EOFHope you find it useful!