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 » The Basics
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Restore "classic" search for all users



 
 
Thread Tools Display Modes
  #1  
Old December 3rd 09, 12:21 AM posted to microsoft.public.windowsxp.basics
JClark
external usenet poster
 
Posts: 92
Default Restore "classic" search for all users

Hello,
Windows XP Pro, SP3
I have a new install and want to change the unpleasant standard
Windows XP search assistant to the classic one. I have done this in
the past by creating an entry "Use Search Asst" REG_SZ (String Value)
in the following registry key:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Explorer\CabinetState

and setting the value to "no"

But my new system has 5 user profiles. Will I have to change this
setting for each user profile?

Is there a way to change to classic search assistant for all users?

Many thanks.

Jack
Ads
  #2  
Old December 3rd 09, 02:44 PM posted to microsoft.public.windowsxp.basics
John John - MVP[_2_]
external usenet poster
 
Posts: 1,637
Default Restore "classic" search for all users



JClark wrote:
Hello,
Windows XP Pro, SP3
I have a new install and want to change the unpleasant standard
Windows XP search assistant to the classic one. I have done this in
the past by creating an entry "Use Search Asst" REG_SZ (String Value)
in the following registry key:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Explorer\CabinetState

and setting the value to "no"

But my new system has 5 user profiles. Will I have to change this
setting for each user profile?

Is there a way to change to classic search assistant for all users?

Many thanks.


Anything in the HKU or HKCU key is per user so you need to change the
setting for all the users. I don't know of a setting that disables the
Search Assistant system wide, unless someone else knows such a setting
you will have to change the registry setting for all the users.

You can easily change this for the other users by having them merge a
..reg file to the registry or you can have it done automatically for them
by placing a small batch file in their startup folder or in the All
Users startup folder.

If you want to use a batch file then just create a .reg file to change
the setting:

================================================== ====
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Explorer\CabinetState]
"Use Search Asst"="no"

================================================== ====

and save it as SearchOff.reg location of your choice, here I selected C:\.

Then this simple batch file or a shortcut to it in the All Users Startup
folder will do the job:


================================================== ====
if exist "%userprofile%"\searchoff goto :eof
regedit /s c:\searchoff.reg
cd."%userprofile%"\SearchOff

================================================== ====

The routine will create a zero byte marker file (SearchOff) in the
user's profile folder, if you see the file it means that the fix was
applied for the user. You could also send a marker file to a folder
where with one look you could easily see who has logged on and had the
fix applied by adding this line to the batch file:

cd.c:\FolderName\"%username% SearchOff"


John


  #3  
Old December 3rd 09, 10:07 PM posted to microsoft.public.windowsxp.basics
JClark
external usenet poster
 
Posts: 92
Default Restore "classic" search for all users

On Thu, 03 Dec 2009 10:44:26 -0400, John John - MVP
wrote:

use a batch file then just create a .reg file

John,
Love that batch file idea. I've copied your post to refer to as I
create it.

Many thanks.

And apologies again for the double post mistake.

Jack
  #4  
Old December 3rd 09, 10:07 PM posted to microsoft.public.windowsxp.basics
JClark
external usenet poster
 
Posts: 92
Default Restore "classic" search for all users

On Thu, 03 Dec 2009 10:44:26 -0400, John John - MVP
wrote:

use a batch file then just create a .reg file

John,
Love that batch file idea. I've copied your post to refer to as I
create it.

Many thanks.

And apologies again for the double post mistake.

Jack
  #5  
Old December 3rd 09, 10:41 PM posted to microsoft.public.windowsxp.basics
John John - MVP[_2_]
external usenet poster
 
Posts: 1,637
Default Restore "classic" search for all users

JClark wrote:
On Thu, 03 Dec 2009 10:44:26 -0400, John John - MVP
wrote:

use a batch file then just create a .reg file

John,
Love that batch file idea. I've copied your post to refer to as I
create it.

Many thanks.

And apologies again for the double post mistake.


You're welcome and don't worry about the multipost... no one died over
it ;-)

John
  #6  
Old December 3rd 09, 10:41 PM posted to microsoft.public.windowsxp.basics
John John - MVP[_2_]
external usenet poster
 
Posts: 1,637
Default Restore "classic" search for all users

JClark wrote:
On Thu, 03 Dec 2009 10:44:26 -0400, John John - MVP
wrote:

use a batch file then just create a .reg file

John,
Love that batch file idea. I've copied your post to refer to as I
create it.

Many thanks.

And apologies again for the double post mistake.


You're welcome and don't worry about the multipost... no one died over
it ;-)

John
  #7  
Old December 3rd 09, 11:51 PM posted to microsoft.public.windowsxp.basics
VanguardLH[_2_]
external usenet poster
 
Posts: 10,881
Default Restore "classic" search for all users

JClark wrote:

John John wrote:

use a batch file then just create a .reg file


Love that batch file idea. I've copied your post to refer to as I
create it.


If you don't want it obvious in the normal startup locations (Startup folder
and HKCU/HKLM Run keys) then make it a login script. For example, run
"control.exe userpasswords2", Advanced tab, Advanced button, double-click a
username to see the advanced properties, Profile tab, and enter the name of
the .bat or .cmd file as the login script. This is how you do it for local
security policies. In a domain, you get to push policies which include
login scripts. Presumably you wouldn't bother saving the login script on
the user's own host but use an UNC to point at a network resource to find
the script file.

Also, rather than use a .bat file that then loads load a .reg file (via
"regedit.exe /s regfile"), you could eliminate the need for the .reg file
altogether and just have the batch file do the registry changes. Have the
batch file use reg.exe to make direct changes to registry (run "reg.exe /?"
for help).
  #8  
Old December 3rd 09, 11:51 PM posted to microsoft.public.windowsxp.basics
VanguardLH[_2_]
external usenet poster
 
Posts: 10,881
Default Restore "classic" search for all users

JClark wrote:

John John wrote:

use a batch file then just create a .reg file


Love that batch file idea. I've copied your post to refer to as I
create it.


If you don't want it obvious in the normal startup locations (Startup folder
and HKCU/HKLM Run keys) then make it a login script. For example, run
"control.exe userpasswords2", Advanced tab, Advanced button, double-click a
username to see the advanced properties, Profile tab, and enter the name of
the .bat or .cmd file as the login script. This is how you do it for local
security policies. In a domain, you get to push policies which include
login scripts. Presumably you wouldn't bother saving the login script on
the user's own host but use an UNC to point at a network resource to find
the script file.

Also, rather than use a .bat file that then loads load a .reg file (via
"regedit.exe /s regfile"), you could eliminate the need for the .reg file
altogether and just have the batch file do the registry changes. Have the
batch file use reg.exe to make direct changes to registry (run "reg.exe /?"
for help).
  #9  
Old January 3rd 10, 04:04 PM posted to microsoft.public.windowsxp.basics
JClark
external usenet poster
 
Posts: 92
Default Restore "classic" search for all users

On Thu, 3 Dec 2009 17:51:28 -0600, VanguardLH wrote:

JClark wrote:

John John wrote:

use a batch file then just create a .reg file


Love that batch file idea. I've copied your post to refer to as I
create it.


If you don't want it obvious in the normal startup locations (Startup folder
and HKCU/HKLM Run keys) then make it a login script. For example, run
"control.exe userpasswords2", Advanced tab, Advanced button, double-click a
username to see the advanced properties, Profile tab, and enter the name of
the .bat or .cmd file as the login script. This is how you do it for local
security policies. In a domain, you get to push policies which include
login scripts. Presumably you wouldn't bother saving the login script on
the user's own host but use an UNC to point at a network resource to find
the script file.

Also, rather than use a .bat file that then loads load a .reg file (via
"regedit.exe /s regfile"), you could eliminate the need for the .reg file
altogether and just have the batch file do the registry changes. Have the
batch file use reg.exe to make direct changes to registry (run "reg.exe /?"
for help).

Thank you, Vanguard. I will peruse your post and try to learn from it.
Since I had so few persons to do it for, it made more sense just to
configure each profile.
Jack
  #10  
Old January 3rd 10, 04:04 PM posted to microsoft.public.windowsxp.basics
JClark
external usenet poster
 
Posts: 92
Default Restore "classic" search for all users

On Thu, 3 Dec 2009 17:51:28 -0600, VanguardLH wrote:

JClark wrote:

John John wrote:

use a batch file then just create a .reg file


Love that batch file idea. I've copied your post to refer to as I
create it.


If you don't want it obvious in the normal startup locations (Startup folder
and HKCU/HKLM Run keys) then make it a login script. For example, run
"control.exe userpasswords2", Advanced tab, Advanced button, double-click a
username to see the advanced properties, Profile tab, and enter the name of
the .bat or .cmd file as the login script. This is how you do it for local
security policies. In a domain, you get to push policies which include
login scripts. Presumably you wouldn't bother saving the login script on
the user's own host but use an UNC to point at a network resource to find
the script file.

Also, rather than use a .bat file that then loads load a .reg file (via
"regedit.exe /s regfile"), you could eliminate the need for the .reg file
altogether and just have the batch file do the registry changes. Have the
batch file use reg.exe to make direct changes to registry (run "reg.exe /?"
for help).

Thank you, Vanguard. I will peruse your post and try to learn from it.
Since I had so few persons to do it for, it made more sense just to
configure each profile.
Jack
 




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






All times are GMT +1. The time now is 01:58 AM.


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