Archive: Slashes


Slashes
I am trying to create a shortcut that needs to include a double-backslash and a forward-slash. Unfortunately, NSIS converts everything to a single backslash.

Here is the code:
CreateShortCut "$DESKTOP\Test.lnk" '"C:\Program Files\Microsoft Office\Office\Msaccess.exe" "C:\TEST\TESTPROG.MDB" /WRKGRP "\\server\common\Test\testdata\Test.MDW" /user "username"'

Again, the double-backslash is converted to a single-backslash and the forward-slashes are converted to backslashes. How can I get this to work? I have spent half the day reading FAQs, forum posts, and NSIS docs. It can't be that difficult, can it?


http://nsis.sourceforge.net/support/...&tx_faq_faq=11


Thanks! That took care of it.