Jump to content

LyonR

Members
  • Posts

    3
  • Joined

  • Last visited

LyonR's Achievements

  1. It's for passing password to a CLI program. The "funny" thing are that echo Test^=Test are working but echo 'Test^=Test' are not. So if my user are using " in the password I use 'Password' and if they use = I use "Password", and then I hobe that they are not using "= Thank guy's for pointing me in the right direction.
  2. Hi Rudi Your right, if I parse 'Test=Test' on a command line the = disappears
  3. Can any explaine why this happens ? ;WHen I use single quates ' the = sign disapears Local $a = " 'Test=Test' " Local $b = ' "Test=Test" ' MsgBox( 0, "Test", $a ) ; OK MsgBox( 0, "Test", $b) ; OK Run("TestCQl.cmd" & $a ) ;Missing = Run("TestCQl.cmd" & $b ) ; OK ;Just at simpel file there writes output to a Dos Console ;TestCQL.cmd ;@echo off ;echo %1 %2 %3 %4 %5 %6 %7 %8 BG Lyon
×
×
  • Create New...