Jump to content

Change Installation Parameters?


iwod

Recommended Posts

Does slient install support changes of Installation shortcut, or destination?

If not any way go around it? ( I could manually move my short cut in start menum but then uninstall of a program would left the links in there....... )

Link to comment
Share on other sites


For your 1st question, it alll depends on the installation package the program is bundled in (ie: installsheild, nsis, windows installer, etc), but most dont give an option to choose where you place your downloads...

As to your second, this is the easiest way that I know of to make sure your shortcuts are where you want them. I do this in my cleanup.cmd... move, copy and delete all of my start menu, desktop and quicklaunch shortcuts and folders all at once. Heres a snippet from my cleanup.cmd:

@echo off
cmdow @ /HID
shutdown.exe -r -f -t 60 -m "Windows XP will now restart in 1 minute..."

set AUStart=%AllUsersProfile%\Start Menu\Programs
set UserStart=%UserProfile%\Start Menu\Programs
set UserQL=%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch
set AUDesk=%AllUsersProfile%\Desktop
set UserDesk=%UserProfile%\Desktop

REM ::::::::::::::::::::
REM :::: User Admin ::::
REM ::::::::::::::::::::

REM :: Remove ASP User ::
net user aspnet /delete


REM ::::::::::::::::::::
REM :::: Start Menu ::::
REM ::::::::::::::::::::

REM :: Make New Folders ::
MD "%AUStart%\Entertainment"
MD "%AUStart%\Internet"
MD "%AUStart%\Multimedia"
MD "%AUStart%\Utilities"
MD "%AUStart%\Utilities\Windows System Tools"

REM :: Move Folders ::
MOVE /Y "%AUStart%\Administrative Tools" "%AUStart%\Utilities\Administrative Tools"
MOVE /Y "%AUStart%\Accessories\System Tools\*" "%AUStart%\Utilities\Windows System Tools"
MOVE /Y "%UserStart%\Multimedia" "%AUStart%"

REM :: Move Shortcuts ::
MOVE /Y "%AUStart%\Adobe Photoshop CS.lnk" "%AUStart%\Multimedia"
MOVE /Y "%AUStart%\Adobe ImageReady CS.lnk" "%AUStart%\Multimedia"
MOVE /Y "%AUStart%\Executive Software Diskeeper.lnk" "%AUStart%\Utilities"
MOVE /Y "%AUStart%\Adobe Reader 7.0.lnk" "%AUStart%\Accessories"
MOVE /Y "%AUStart%\Accessories\Communications\Remote Desktop Connection.lnk" "%AUStart%\Internet"
MOVE /Y "%AUStart%\Accessories\Communications\Wireless Network Setup Wizard.lnk" "%AUStart%\Utilities\Windows System Tools"
MOVE /Y "%AUStart%\Accessories\Entertainment\Sound Recorder.lnk" "%AUStart%\Accessories"
MOVE /Y "%AUStart%\Accessories\Entertainment\Volume Control.lnk" "%AUStart%\Utilities"
MOVE /Y "%AUStart%\AccountLogon\AccountLogon.lnk" "%AUStart%\Accessories"

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...