MSFN Forum: Quick Launch not appearing as it should - MSFN Forum

Jump to content



Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Quick Launch not appearing as it should Rate Topic: -----

#1 User is offline   Strider 

  • Newbie
  • Group: Members
  • Posts: 18
  • Joined: 28-January 11
  • OS:none specified

Posted 17 February 2011 - 05:10 AM

What I am trying to do:

1) Have Quick Launch enabled by default
2) Have the same quick launch icons (by default) for everyone

What I've done:

1) Created a $OEM$ folder in "E:\DeploymentShare\Operating Systems\Windows XP Professional SP3 (VL) 2" so it's on the same level as I386
2) Within this folder created CMDLINES.txt which simply contains "settings.bat" (including the speach marks)
3) I know for a fact settings.bat hasn't run as there are several registry tweaks in there that work fine when ran manually, so before checking if my tweaks are correct I'd like to get my batch file to actually run when it should

Here is settings.bat:

:: ---------------------------------------------------------------
:: settings.bat        [WDS Deployment; set Windows environment]
:: ...............................................................

:: ...............................................................
:: ---------------------------------------------------------------

@echo off
::
:: --------------------------
::  Amend Registry Variables
:: --------------------------
echo.
echo Amending Registry

reg import machine_profile.reg
reg import user_profile.reg
reg import default_profile.reg

echo.
echo Rgistry settings applied
::


:: -------------------------------
::  Change Def Background
:: -------------------------------

ren "C:\WINDOWS\Web\Wallpaper\bliss.bmp" "bliss_old.bmp"
copy /y "bliss.bmp" "C:\WINDOWS\Web\Wallpaper"




:: --------------------------------------------------------
:: copy shortcuts to desktop --> "%ALLUSERSPROFILE%\Desktop\"
:: --------------------------------------------------------
:: --------------------------------------------------------------------------------------------------------------
:: copy shortcuts to quick launch --> "%ALLUSERSPROFILE%\Application Data::\Microsoft\Internet Explorer\Quick Launch"
:: --------------------------------------------------------------------------------------------------------------
::
:: ---------------------------
:: copy OFFICE 2003/2007/2010 shortcuts to current user profile
:: ----------------------------
::copy "Microsoft Office Excel 2003.lnk" "%USERPROFILE%\Desktop\"
::copy "Microsoft Office Excel 2007.lnk" "%USERPROFILE%\Desktop\"


copy "Microsoft PowerPoint 2010.lnk" "%USERPROFILE%\Desktop\"
copy "Microsoft Word 2010.lnk" "%USERPROFILE%\Desktop\"
copy "Microsoft Excel 2010.lnk" "%USERPROFILE%\Desktop\"
copy "Microsoft Outlook 2010.lnk" "%USERPROFILE%\Desktop\"

copy "Microsoft PowerPoint 2010.lnk" "%USERPROFILE%\Application Data\Microsoft\Internet Explorer\Quick Launch"
copy "Microsoft Word 2010.lnk" "%USERPROFILE%\Application Data\Microsoft\Internet Explorer\Quick Launch"
copy "Microsoft Excel 2010.lnk" "%USERPROFILE%\Application Data\Microsoft\Internet Explorer\Quick Launch"
copy "Microsoft Outlook 2010.lnk" "%USERPROFILE%\Application Data\Microsoft\Internet Explorer\Quick Launch"


::----------------------------
:: Copy to default profile
::----------------------------



::copy "Microsoft PowerPoint 2010.lnk" "C:\Documents and Settings\Default User\Desktop"
::copy "Microsoft Word 2010.lnk" "C:\Documents and Settings\Default User\Desktop"
::copy "Microsoft Excel 2010.lnk" "C:\Documents and Settings\Default User\Desktop"
::copy "Microsoft Outlook 2010.lnk" "C:\Documents and Settings\Default User\Desktop"


::copy "Microsoft Excel 2010.lnk" "C:\Documents and Settings\Default User\Application Data\Microsoft\Internet Explorer\Quick Launch"
::copy "Microsoft PowerPoint 2010.lnk" "C:\Documents and Settings\Default User\Application Data\Microsoft\Internet Explorer\Quick ::Launch"
::copy "Microsoft Word 2010.lnk" "C:\Documents and Settings\Default User\Application Data\Microsoft\Internet Explorer\Quick Launch"


::
::
:: ------------------------------
:: copy SAP & Explorer shortcuts
:: ------------------------------

copy "SAP Logon.lnk" "%USERPROFILE%\Desktop\"
copy "Windows Explorer.lnk" "%USERPROFILE%\Desktop\"



::copy "SAP Logon.lnk" "C:\Documents and Settings\Default User\Application Data\Microsoft\Internet Explorer\Quick Launch"
::copy "Windows Explorer.lnk" "C:\Documents and Settings\Default User\Application Data\Microsoft\Internet Explorer\Quick Launch"



::
::
:: -------------------------
:: copy  Wallpaper
:: -------------------------
copy "CORPUK_Desktop.bmp" "%WINDIR%\Web\Wallpaper\"
::
::
:: -------------------------
:: copy Sysprep.inf  (to fix new computer name after running sysprep)
:: -------------------------
copy /Y "Sysprep.inf" "c:\Sysprep\"
::
::
:: -------------------------
:: some shortcut cleaning up
:: -------------------------
del "%USERPROFILE%\Desktop\Adobe Reader 9.lnk"
del "%USERPROFILE%\Desktop\PDFCreator.lnk"
del "%USERPROFILE%\Desktop\QuickTime Player.lnk"
::



pause

exit



Thanks!


#2 User is offline   Sp0iLedBrAt 

  • MSFN Addict
  • Group: Supreme Sponsor
  • Posts: 1,587
  • Joined: 19-March 09
  • OS:XP Pro x86
  • Country: Country Flag

Posted 17 February 2011 - 06:18 AM

These two links http://www.msfn.org/...e-quick-launch/ http://www.msfn.org/...unch-reg-tweak/ contain the reg tweak on how to enable the Quick Launch toolbar.

If in doubt, search for Kelsenellenelvian's Quicklaunch Enabler add-on for nLite, which contains an .inf file that has always worked for me. It will give you a few ideas.

Cheers

#3 User is offline   Strider 

  • Newbie
  • Group: Members
  • Posts: 18
  • Joined: 28-January 11
  • OS:none specified

Posted 17 February 2011 - 07:34 AM

The key is getting CMDLines to work - can you tell me why mine didn't run properly?

#4 User is online   -X- 

  • Member
  • Group: Patrons
  • Posts: 1,667
  • Joined: 08-January 04
  • OS:XP Pro x86
  • Country: Country Flag

Posted 17 February 2011 - 03:05 PM

Within this folder created CMDLINES.txt which simply contains "settings.bat" (including the speach marks)

Are you also adding [Commands] to the first line?


Are you using a winnt.sif with

[Unattended]
OemPreinstall = Yes

as mentioned here?


What are the paths to the .reg and .lnk files?

#5 User is offline   jinjou 

  • Newbie
  • Group: Members
  • Posts: 18
  • Joined: 12-July 10
  • OS:2000
  • Country: Country Flag

Posted 17 February 2011 - 04:42 PM

View PostStrider, on 17 February 2011 - 07:34 AM, said:

The key is getting CMDLines to work - can you tell me why mine didn't run properly?

You don't say where settings.bat is located, and that appears to be what this question's answer would depend on.

You should either include the fully qualified path to settings.bat in CMDLINES.txt, wherever you choose to locate settings.bat, or put settings.bat in the same location as CMDLINES.txt.

I've only tested this with W2K using the full path alternative in CMDLINES.txt, and then placed settings.bat some place on the %SystemDrive% using the $OEM$ folder arrangement mechanism.

I should think this will work with XP as well.

BTW, I'd be suprised to learn that environmental variables work, they haven't for me, so I'd recommend explicit, literal paths.

This post has been edited by jinjou: 17 February 2011 - 04:47 PM


#6 User is offline   Strider 

  • Newbie
  • Group: Members
  • Posts: 18
  • Joined: 28-January 11
  • OS:none specified

Posted 18 February 2011 - 05:03 AM

Ok well some good news and some bad (mostly good :thumbup )

Finally my CMDLines is definately running (I put a Pause in there to check), yes I had forgotten to put [COMMANDS] in there :blushing:

The other good news is that I've found a way of getting the correct shortcuts in there (using $Docs in the $OEM$ folder).

However QuickLaunch itself still isn't showing by default :(

CMDLines:

[COMMANDS]
"Settings_CMDLines.bat"


CMDLines.bat:

reg import QuickL.reg
pause


QuickL.reg:
Windows Registry Editor Version 5.00


; -------------------------------------------------
; Show Quick Launch (Changed 18/02/2011 - Chris)
; -------------------------------------------------



;enable quick-launch bar near start-menu
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Streams\Desktop]
"Default Taskbar"=hex:0c,00,00,00,08,00,00,00,02,00,00,00,00,00,00,00,b0,e2,2b,\
  d8,64,57,d0,11,a9,6e,00,c0,4f,d7,05,a2,22,00,1c,00,0a,01,00,00,1a,00,00,00,\
  01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,4c,00,00,00,01,14,02,00,00,\
  00,00,00,c0,00,00,00,00,00,00,46,83,00,00,00,10,00,00,00,a0,b0,48,5e,89,8d,\
  bd,01,00,d8,9e,e4,2a,8d,bd,01,00,45,fe,5e,89,8d,bd,01,00,00,00,00,00,00,00,\
  00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,13,01,14,00,1f,0f,e0,4f,\
  d0,20,ea,3a,69,10,a2,d8,08,00,2b,30,30,9d,19,00,23,44,3a,5c,00,00,00,00,00,\
  00,00,00,00,00,00,00,00,00,00,00,00,cd,97,15,00,31,00,00,00,00,00,af,24,5c,\
  b9,10,80,57,69,6e,6e,74,00,00,20,00,31,00,00,00,00,00,af,24,a3,b9,10,00,50,\
  72,6f,66,69,6c,65,73,00,50,52,4f,46,49,4c,45,53,00,19,00,31,00,00,00,00,00,\
  c1,24,08,92,10,00,69,65,35,30,30,2e,30,30,30,00,00,28,00,31,00,00,00,00,00,\
  c1,24,08,92,10,00,41,70,70,6c,69,63,61,74,69,6f,6e,20,44,61,74,61,00,41,50,\
  50,4c,49,43,7e,31,00,21,00,31,00,00,00,00,00,c5,22,9d,91,10,00,4d,69,63,72,\
  6f,73,6f,66,74,00,4d,49,43,52,4f,53,7e,31,00,29,00,31,00,00,00,00,00,d3,22,\
  32,a6,10,00,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,00,49,4e,54,\
  45,52,4e,7e,31,00,24,00,31,00,00,00,00,00,db,22,76,ba,10,00,51,75,69,63,6b,\
  20,4c,61,75,6e,63,68,00,51,55,49,43,4b,4c,7e,31,00,00,00,8d,00,00,00,1c,00,\
  00,00,01,00,00,00,1c,00,00,00,36,00,00,00,0d,f0,ad,ba,8c,00,00,00,1a,00,00,\
  00,03,00,00,00,e7,18,2d,23,10,00,00,00,49,45,35,30,30,5f,58,31,43,00,43,3a,\
  5c,57,49,4e,4e,54,5c,50,72,6f,66,69,6c,65,73,5c,49,45,35,30,30,2e,30,30,30,\
  5c,41,70,70,6c,69,63,61,74,69,6f,6e,20,44,61,74,61,5c,4d,69,63,72,6f,73,6f,\
  66,74,5c,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,5c,51,75,69,63,\
  6b,20,4c,61,75,6e,63,68,00,00,10,00,00,00,05,00,00,a0,1a,00,00,00,a3,00,00,\
  00,00,00,00,00,08,00,00,00,02,00,00,00,cc,00,00,00,01,00,00,00,03,00,00,00,\
  4a,00,00,00,01,00,00,00,40,00,32,00,e6,01,00,00,c4,24,15,9f,20,00,4c,61,75,\
  6e,63,68,20,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,20,42,72,6f,\
  77,73,65,72,2e,6c,6e,6b,00,4c,41,55,4e,43,48,7e,32,2e,4c,4e,4b,00,00,00,40,\
  00,00,00,02,00,00,00,36,00,32,00,48,02,00,00,c4,24,15,9f,20,00,4c,61,75,6e,\
  63,68,20,4f,75,74,6c,6f,6f,6b,20,45,78,70,72,65,73,73,2e,6c,6e,6b,00,4c,41,\
  55,4e,43,48,7e,31,2e,4c,4e,4b,00,00,00,36,00,00,00,00,00,00,00,2c,00,32,00,\
  51,00,00,00,ec,22,46,39,20,00,53,68,6f,77,20,44,65,73,6b,74,6f,70,2e,73,63,\
  66,00,53,48,4f,57,44,45,7e,31,2e,53,43,46,00,00,00,52,00,00,00,e0,00,00,00,\
  00,00,00,00,16,00,00,00,00,00,00,00,00,00,00,00,16,00,00,00,00,00,00,00,01,\
  00,00,00,01,00,00,00,aa,4f,28,68,48,6a,d0,11,8c,78,00,c0,4f,d9,18,b4,37,02,\
  00,00,e0,00,00,00,00,00,00,00,16,00,00,00,00,00,00,00,00,00,00,00,16,00,00,\
  00,00,00,00,00,01,00,00,00
"TaskbarWinXP"=hex:0c,00,00,00,08,00,00,00,02,00,00,00,00,00,00,00,b0,e2,2b,\
  d8,64,57,d0,11,a9,6e,00,c0,4f,d7,05,a2,22,00,1c,00,0a,01,00,00,1a,00,00,00,\
  01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,4c,00,00,00,01,14,02,00,00,\
  00,00,00,c0,00,00,00,00,00,00,46,83,00,00,00,10,00,00,00,a0,b0,48,5e,89,8d,\
  bd,01,00,d8,9e,e4,2a,8d,bd,01,00,45,fe,5e,89,8d,bd,01,00,00,00,00,00,00,00,\
  00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,13,01,14,00,1f,0f,e0,4f,\
  d0,20,ea,3a,69,10,a2,d8,08,00,2b,30,30,9d,19,00,23,44,3a,5c,00,00,00,00,00,\
  00,00,00,00,00,00,00,00,00,00,00,00,cd,97,15,00,31,00,00,00,00,00,af,24,5c,\
  b9,10,80,57,69,6e,6e,74,00,00,20,00,31,00,00,00,00,00,af,24,a3,b9,10,00,50,\
  72,6f,66,69,6c,65,73,00,50,52,4f,46,49,4c,45,53,00,19,00,31,00,00,00,00,00,\
  c1,24,08,92,10,00,69,65,35,30,30,2e,30,30,30,00,00,28,00,31,00,00,00,00,00,\
  c1,24,08,92,10,00,41,70,70,6c,69,63,61,74,69,6f,6e,20,44,61,74,61,00,41,50,\
  50,4c,49,43,7e,31,00,21,00,31,00,00,00,00,00,c5,22,9d,91,10,00,4d,69,63,72,\
  6f,73,6f,66,74,00,4d,49,43,52,4f,53,7e,31,00,29,00,31,00,00,00,00,00,d3,22,\
  32,a6,10,00,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,00,49,4e,54,\
  45,52,4e,7e,31,00,24,00,31,00,00,00,00,00,db,22,76,ba,10,00,51,75,69,63,6b,\
  20,4c,61,75,6e,63,68,00,51,55,49,43,4b,4c,7e,31,00,00,00,8d,00,00,00,1c,00,\
  00,00,01,00,00,00,1c,00,00,00,36,00,00,00,0d,f0,ad,ba,8c,00,00,00,1a,00,00,\
  00,03,00,00,00,e7,18,2d,23,10,00,00,00,49,45,35,30,30,5f,58,31,43,00,43,3a,\
  5c,57,49,4e,4e,54,5c,50,72,6f,66,69,6c,65,73,5c,49,45,35,30,30,2e,30,30,30,\
  5c,41,70,70,6c,69,63,61,74,69,6f,6e,20,44,61,74,61,5c,4d,69,63,72,6f,73,6f,\
  66,74,5c,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,5c,51,75,69,63,\
  6b,20,4c,61,75,6e,63,68,00,00,10,00,00,00,05,00,00,a0,1a,00,00,00,a3,00,00,\
  00,00,00,00,00,08,00,00,00,02,00,00,00,cc,00,00,00,01,00,00,00,03,00,00,00,\
  4a,00,00,00,01,00,00,00,40,00,32,00,e6,01,00,00,c4,24,15,9f,20,00,4c,61,75,\
  6e,63,68,20,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,20,42,72,6f,\
  77,73,65,72,2e,6c,6e,6b,00,4c,41,55,4e,43,48,7e,32,2e,4c,4e,4b,00,00,00,40,\
  00,00,00,02,00,00,00,36,00,32,00,48,02,00,00,c4,24,15,9f,20,00,4c,61,75,6e,\
  63,68,20,4f,75,74,6c,6f,6f,6b,20,45,78,70,72,65,73,73,2e,6c,6e,6b,00,4c,41,\
  55,4e,43,48,7e,31,2e,4c,4e,4b,00,00,00,36,00,00,00,00,00,00,00,2c,00,32,00,\
  51,00,00,00,ec,22,46,39,20,00,53,68,6f,77,20,44,65,73,6b,74,6f,70,2e,73,63,\
  66,00,53,48,4f,57,44,45,7e,31,2e,53,43,46,00,00,00,52,00,00,00,e0,00,00,00,\
  00,00,00,00,16,00,00,00,00,00,00,00,00,00,00,00,16,00,00,00,00,00,00,00,01,\
  00,00,00,01,00,00,00,aa,4f,28,68,48,6a,d0,11,8c,78,00,c0,4f,d9,18,b4,37,02,\
  00,00,e0,00,00,00,00,00,00,00,16,00,00,00,00,00,00,00,00,00,00,00,16,00,00,\
  00,00,00,00,00,01,00,00,00



I copied the reg tweak from the topic linked to above. For what it's worth it says the reg tweak "completed succesfully".

FYI I am running Server 2008 R2 and installing XP SP3 unattended

#7 User is online   -X- 

  • Member
  • Group: Patrons
  • Posts: 1,667
  • Joined: 08-January 04
  • OS:XP Pro x86
  • Country: Country Flag

Posted 18 February 2011 - 07:38 AM

Do this...

Set the Quick Launch on one of the systems you are setting up the way you want it (position, etc).

Log off and then back on again.

Export [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Streams\Desktop]
"TaskbarWinXP"=
You don't need "Default Taskbar"=

Use that reg file in your unattended.

Let us know how it goes.

#8 User is offline   Strider 

  • Newbie
  • Group: Members
  • Posts: 18
  • Joined: 28-January 11
  • OS:none specified

Posted 21 February 2011 - 02:36 AM

What does Default Taskbar do?

#9 User is online   -X- 

  • Member
  • Group: Patrons
  • Posts: 1,667
  • Joined: 08-January 04
  • OS:XP Pro x86
  • Country: Country Flag

Posted 21 February 2011 - 03:45 AM

Don't know. It might not do anything.

#10 User is offline   Strider 

  • Newbie
  • Group: Members
  • Posts: 18
  • Joined: 28-January 11
  • OS:none specified

Posted 23 February 2011 - 02:34 AM

Yep that works, thanks!

I did some experimenting and found that "default taskbar" does something very strange with the control panel (icons are all over the place)

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy