A Windows XP help forum. PCbanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PCbanter forum » Microsoft Windows XP » Windows XP Help and Support
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Change Path of the installed Program



 
 
Thread Tools Display Modes
  #1  
Old March 16th 05, 10:53 AM
rupart
external usenet poster
 
Posts: n/a
Default Change Path of the installed Program

Hi,
I installed a program and it's in start menu. When i right click it it's
target is in C:\Documents and Settings\TEMP\Webber.exe. How do i change to
C:\Documents and Settings\LIVE\Webber.exe? I dont want to change manually by
right clicking and change the path but how can i do using script or
whatsoever?I have so many users to change

TIA
Ads
  #2  
Old March 16th 05, 02:09 PM
Mark L. Ferguson
external usenet poster
 
Posts: n/a
Default Change Path of the installed Program

start/run, type %allusersprofile%

The ..\Start Menu\Programs folder can contain one shortcut to the correct path, that is seen on all desktops

--

Mark L. Ferguson (NOT an MS-MVP)
FAQ for MS Antispyware version 1.0.509
http://www.geocities.com/marfer_mvp/FAQ_MSantispy.htm
marfers notes for windows xp http://www.geocities.com/marfer_mvp/chatNotes.htm
..
"rupart" wrote in message ...
Hi,
I installed a program and it's in start menu. When i right click it it's
target is in C:\Documents and Settings\TEMP\Webber.exe. How do i change to
C:\Documents and Settings\LIVE\Webber.exe? I dont want to change manually by
right clicking and change the path but how can i do using script or
whatsoever?I have so many users to change

TIA



  #3  
Old March 16th 05, 02:09 PM
Mark L. Ferguson
external usenet poster
 
Posts: n/a
Default REPOST: Change Path of the installed Program

start/run, type %allusersprofile%

The ..\Start Menu\Programs folder can contain one shortcut to the correct path, that is seen on all desktops

--

Mark L. Ferguson (NOT an MS-MVP)
FAQ for MS Antispyware version 1.0.509
http://www.geocities.com/marfer_mvp/FAQ_MSantispy.htm
marfers notes for windows xp http://www.geocities.com/marfer_mvp/chatNotes.htm
..
"rupart" wrote in message ...
Hi,
I installed a program and it's in start menu. When i right click it it's
target is in C:\Documents and Settings\TEMP\Webber.exe. How do i change to
C:\Documents and Settings\LIVE\Webber.exe? I dont want to change manually by
right clicking and change the path but how can i do using script or
whatsoever?I have so many users to change

TIA

  #4  
Old March 16th 05, 06:01 PM
Royce
external usenet poster
 
Posts: n/a
Default Change Path of the installed Program

just curious, but it matter that much that the folder is named temp instead
of live

"rupart" wrote:

Hi,
I installed a program and it's in start menu. When i right click it it's
target is in C:\Documents and Settings\TEMP\Webber.exe. How do i change to
C:\Documents and Settings\LIVE\Webber.exe? I dont want to change manually by
right clicking and change the path but how can i do using script or
whatsoever?I have so many users to change

TIA

  #5  
Old March 16th 05, 06:49 PM
Royce
external usenet poster
 
Posts: n/a
Default Change Path of the installed Program

heres a simple batch file that makes a directory C:\Documents and Settings\LIVE
then move the webber.exe from the C:\Documents and Settings\temp directory
to the new directory (C:\Documents and Settings\LIVE) it then deletes the old
directory (C:\Documents and Settings\temp)
************************************************** *********
SO MAKE SURE THERE IS NO OTHER FILES IN THE TEMP DIRCTORY BESIDES THE
WEBBER.EXE OR THEY WILL BE DELETED!!!
************************************************** *********
@echo off
cd /d c:\
cd docume~1
mkdir LIVE
move /y c:\docume~1\temp\webber.exe c:\docume~1\live
rmdir /s /q c:\docume~1\temp
exit
************************************************** *********




"rupart" wrote:

Hi,
I installed a program and it's in start menu. When i right click it it's
target is in C:\Documents and Settings\TEMP\Webber.exe. How do i change to
C:\Documents and Settings\LIVE\Webber.exe? I dont want to change manually by
right clicking and change the path but how can i do using script or
whatsoever?I have so many users to change

TIA

  #6  
Old March 16th 05, 07:33 PM
Royce
external usenet poster
 
Posts: n/a
Default Change Path of the installed Program

forgot this line in the batch file (add this line before the last line: [exit])
copy /y c:\docume~1\live\webber.exe %allusers%\startm~1\webber.exe


"Royce" wrote:

heres a simple batch file that makes a directory C:\Documents and Settings\LIVE
then move the webber.exe from the C:\Documents and Settings\temp directory
to the new directory (C:\Documents and Settings\LIVE) it then deletes the old
directory (C:\Documents and Settings\temp)
************************************************** *********
SO MAKE SURE THERE IS NO OTHER FILES IN THE TEMP DIRCTORY BESIDES THE
WEBBER.EXE OR THEY WILL BE DELETED!!!
************************************************** *********
@echo off
cd /d c:\
cd docume~1
mkdir LIVE
move /y c:\docume~1\temp\webber.exe c:\docume~1\live
rmdir /s /q c:\docume~1\temp
exit
************************************************** *********




"rupart" wrote:

Hi,
I installed a program and it's in start menu. When i right click it it's
target is in C:\Documents and Settings\TEMP\Webber.exe. How do i change to
C:\Documents and Settings\LIVE\Webber.exe? I dont want to change manually by
right clicking and change the path but how can i do using script or
whatsoever?I have so many users to change

TIA

  #7  
Old March 16th 05, 07:57 PM
Royce
external usenet poster
 
Posts: n/a
Default REPOST: Change Path of the installed Program

hmmmmm...... this looks like your first reply and i have noticed this with
you in other post. whats up with you? is there a reason for this?

"Mark L. Ferguson" wrote:

start/run, type %allusersprofile%

The ..\Start Menu\Programs folder can contain one shortcut to the correct path, that is seen on all desktops

--

Mark L. Ferguson (NOT an MS-MVP)
FAQ for MS Antispyware version 1.0.509
http://www.geocities.com/marfer_mvp/FAQ_MSantispy.htm
marfers notes for windows xp http://www.geocities.com/marfer_mvp/chatNotes.htm
..
"rupart" wrote in message ...
Hi,
I installed a program and it's in start menu. When i right click it it's
target is in C:\Documents and Settings\TEMP\Webber.exe. How do i change to
C:\Documents and Settings\LIVE\Webber.exe? I dont want to change manually by
right clicking and change the path but how can i do using script or
whatsoever?I have so many users to change

TIA


  #8  
Old March 17th 05, 04:33 AM
rupart
external usenet poster
 
Posts: n/a
Default Change Path of the installed Program

guys,
maybe i dint clarify why i need that... ok, this is more to the binary
executable where in TEMp, there will be all the beta testing files. Once it's
moved to PRODUCTION, we have to make sure the users point to LIVE folder and
this is not on single pc but all the users in diff pcs...

Well, i hope you guys get what i mean :-D

"Royce" wrote:

just curious, but it matter that much that the folder is named temp instead
of live

"rupart" wrote:

Hi,
I installed a program and it's in start menu. When i right click it it's
target is in C:\Documents and Settings\TEMP\Webber.exe. How do i change to
C:\Documents and Settings\LIVE\Webber.exe? I dont want to change manually by
right clicking and change the path but how can i do using script or
whatsoever?I have so many users to change

TIA

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
set path, change path - path grayed out John Smith General XP issues or comments 1 February 12th 05 01:56 PM
Easy way to find what date program installed James Windows XP Help and Support 4 October 30th 04 09:51 AM
Is a program installed or not? Dave Neve General XP issues or comments 4 October 26th 04 12:19 AM
KB823718 continuously installs Steve R Security and Administration with Windows XP 2 August 24th 04 03:42 PM
Removing a Running Program dukiesma1001 Performance and Maintainance of XP 5 August 3rd 04 08:43 PM






All times are GMT +1. The time now is 04:06 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PCbanter.
The comments are property of their posters.