page2pagepro Posted February 5, 2010 Report Share Posted February 5, 2010 G'day! I how found that hard-coding Drive letter in config files (httpd.conf, ssl.conf, my.ini, php.ini, etc.) can lead to issues when you migrate a USB-key installation to another PC. I work on projects on multiple PC's and wanted the system to recognize what relative path it was on, then adjust according. My solution is as follows (If anyone has alternative and/or better solution, please share):This is for Windows 9X, 2K and XP (Vista not verified) Step 1: Install like normalStep 2: Change references to %drive-letter%:/ to simply a backslash in 'main' config filesStep 3: Create Start.bat file in UniServer Folder on USB drive with following lines: @echo off pushd %~dp0 start %~dp0Start.exe popdStep 4: Create autorun.inf in root of USB drive with following lines: [autorun] open=UniServer\Start.bat icon=UniServer\Start.exe action=Start Uniform Server LABEL=UniServer UseAutoPlay=1Step 5: Done! Explanation: The reason we create the autorun.inf is to allow a custom auto-run. The reason we use the batch file in lieu of the executable is that I've experienced that accessing the Start.exe directly from the autorun.inf is unsuccessful. I believe it may have to do with the way the CWD (current working directory) info is relayed to the executable from the autorun file. The batch file switches to current directory and 'pops' it back to normal. I realise this is kinda a hack, but I can dynamically change drive letter of the USB-key on any PC and with I insert the key, the autorun.inf works without a hiccup. Thank you for your time!-page2pagepro.com Quote Link to comment Share on other sites More sharing options...
BobS Posted April 19, 2011 Report Share Posted April 19, 2011 Where you have "F:\UniServer", for example, just change that to "\UniServer". Clearer? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.