Jump to content
The Uniform Server Community

USB Installation AutoRun and Drive Letter Changing


page2pagepro
 Share

Recommended Posts

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 normal

Step 2: Change references to %drive-letter%:/ to simply a backslash in 'main' config files

Step 3: Create Start.bat file in UniServer Folder on USB drive with following lines:

@echo off

pushd %~dp0

start %~dp0Start.exe

popd

Step 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=1

Step 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

Link to comment
Share on other sites

  • 1 year later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...