MSFN Forum: Quick Launch Icons - MSFN Forum

Jump to content


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

Quick Launch Icons Rate Topic: -----

#1 User is offline   manvindar 

  • Newbie
  • Group: Members
  • Posts: 22
  • Joined: 21-December 10
  • OS:XP Pro x86
  • Country: Country Flag

Posted 21 December 2010 - 09:32 AM

HI......................
I am making an unattended Windows XP sp3 installation but i have some problems
When i install my unattended OS ,the quick launch icons are not there in the taskbar.........
i want the registry key where the quick launch icon settings are present

secondly....
at first start after installation the start menu pops up.......
i dont want this pop up as i have included Vistart ,,,so how to disable it??????


#2 User is offline   Sp0iLedBrAt 

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

Posted 21 December 2010 - 04:01 PM

http://www.msfn.org/...__1#entry931139
http://www.msfn.org/...__1#entry918274
http://www.msfn.org/...__1#entry812922
These are just for Quick launch, so use Search and you will find your answers.

Cheers

#3 User is offline   manvindar 

  • Newbie
  • Group: Members
  • Posts: 22
  • Joined: 21-December 10
  • OS:XP Pro x86
  • Country: Country Flag

Posted 22 December 2010 - 01:06 AM

View PostSp0iLedBrAt, on 21 December 2010 - 04:01 PM, said:

http://www.msfn.org/...__1#entry931139
http://www.msfn.org/...__1#entry918274
http://www.msfn.org/...__1#entry812922
These are just for Quick launch, so use Search and you will find your answers.

Cheers



thx.... i will try these...............

and what about start menu pop up??

#4 User is offline   -X- 

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

Posted 22 December 2010 - 02:42 AM

Windows Registry Editor Version 5.00

; Disable Start Menu Popping Up on First Boot
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"StartMenuInit"=dword:00000002


#5 User is offline   manvindar 

  • Newbie
  • Group: Members
  • Posts: 22
  • Joined: 21-December 10
  • OS:XP Pro x86
  • Country: Country Flag

Posted 22 December 2010 - 03:59 AM

View Post-X-, on 22 December 2010 - 02:42 AM, said:

Windows Registry Editor Version 5.00

; Disable Start Menu Popping Up on First Boot
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"StartMenuInit"=dword:00000002



thx i will try it..................................

#6 User is offline   manvindar 

  • Newbie
  • Group: Members
  • Posts: 22
  • Joined: 21-December 10
  • OS:XP Pro x86
  • Country: Country Flag

Posted 24 December 2010 - 03:52 AM

View Postmanvindar, on 22 December 2010 - 03:59 AM, said:

View Post-X-, on 22 December 2010 - 02:42 AM, said:

Windows Registry Editor Version 5.00

; Disable Start Menu Popping Up on First Boot
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"StartMenuInit"=dword:00000002



thx i will try it..................................


well it didnt worked.............

the start menu still pops up........................

why the DWORD value should be '2' ??

#7 User is offline   sanjeev18 

  • Great Helper
  • Pip
  • Group: Members
  • Posts: 71
  • Joined: 11-October 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 24 December 2010 - 04:29 AM

i think you will need this

Windows Registry Editor Version 5.00

; Disable Start Menu Popping Up on First Boot
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"StartMenuInit"=dword:00000002
"StartButtonBalloonTip"=dword:00000002

This post has been edited by sanjeev18: 24 December 2010 - 04:36 AM


#8 User is offline   Sp0iLedBrAt 

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

Posted 24 December 2010 - 04:30 AM

Don't give up just yet; check if you copied the Reg command right. In this line

Quote

...Explorer\Advanced...
there mustn't be any spaces.

#9 User is offline   manvindar 

  • Newbie
  • Group: Members
  • Posts: 22
  • Joined: 21-December 10
  • OS:XP Pro x86
  • Country: Country Flag

Posted 25 December 2010 - 07:40 AM

View PostSp0iLedBrAt, on 24 December 2010 - 04:30 AM, said:

Don't give up just yet; check if you copied the Reg command right. In this line

Quote

...Explorer\Advanced...
there mustn't be any spaces.


well i checked it.......it didnt worked either......

can i get one clarification.....
at which phase of setup this registry settings should be invoked......
during components registration or on 1st start.......

#10 User is offline   -X- 

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

Posted 25 December 2010 - 08:01 AM

Run it from GuiRunOnce. That's before the first log on. You could do it from registering components (T-13) if you like.

Try it on your live system to see how it works. Change the 2 to a 1 and log off and then on again.

EDIT: OK I see where the problem may lie. I tried it on my live system and it didn't work unless I used CURRENT_USER. So use....

Quote

Windows Registry Editor Version 5.00

; Disable Start Menu Popping Up on First Boot
; Disable Click here to start balloon tip on first boot
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"StartMenuInit"=dword:00000002
"StartButtonBalloonTip"=dword:00000002


Though I do use LOCAL_MACHINE on my Windows setup and it works.


EDIT 2: I also noticed that StartMenuInit only works on the standard start menu. StartButtonBalloonTip only works on the classic start menu. In other words they don't both op up at the same time time no matter what. Come to think of it, it makes perfect sense! Why would you need both?

This post has been edited by -X-: 25 December 2010 - 08:30 AM


#11 User is offline   manvindar 

  • Newbie
  • Group: Members
  • Posts: 22
  • Joined: 21-December 10
  • OS:XP Pro x86
  • Country: Country Flag

Posted 26 December 2010 - 12:41 PM

View Post-X-, on 25 December 2010 - 08:01 AM, said:

Run it from GuiRunOnce. That's before the first log on. You could do it from registering components (T-13) if you like.

Try it on your live system to see how it works. Change the 2 to a 1 and log off and then on again.

EDIT: OK I see where the problem may lie. I tried it on my live system and it didn't work unless I used CURRENT_USER. So use....

Quote

Windows Registry Editor Version 5.00

; Disable Start Menu Popping Up on First Boot
; Disable Click here to start balloon tip on first boot
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"StartMenuInit"=dword:00000002
"StartButtonBalloonTip"=dword:00000002


Though I do use LOCAL_MACHINE on my Windows setup and it works.


EDIT 2: I also noticed that StartMenuInit only works on the standard start menu. StartButtonBalloonTip only works on the classic start menu. In other words they don't both op up at the same time time no matter what. Come to think of it, it makes perfect sense! Why would you need both?



i tried it two times but still it does not work :wacko:

This post has been edited by manvindar: 27 December 2010 - 04:55 AM


#12 User is offline   sanjeev18 

  • Great Helper
  • Pip
  • Group: Members
  • Posts: 71
  • Joined: 11-October 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 27 December 2010 - 03:44 AM

i think you are doing wrong process in my unattended windows my startmenu doesn't pop ups
i am using RunOnceEx.js in GuiRunOnce is seem lik this:

[GuiRunOnce]
wucdcreator="wscript.exe %systemroot%\system32\RunOnceEx.js"

in that i had added retweak at second last .... my program run when useraccount has been created

#13 User is offline   manvindar 

  • Newbie
  • Group: Members
  • Posts: 22
  • Joined: 21-December 10
  • OS:XP Pro x86
  • Country: Country Flag

Posted 27 December 2010 - 04:59 AM

View Postsanjeev18, on 27 December 2010 - 03:44 AM, said:

i think you are doing wrong process in my unattended windows my startmenu doesn't pop ups
i am using RunOnceEx.js in GuiRunOnce is seem lik this:

[GuiRunOnce]
wucdcreator="wscript.exe %systemroot%\system32\RunOnceEx.js"

in that i had added retweak at second last .... my program run when useraccount has been created


can u send ur runonceex.js file :blink:

#14 User is offline   sanjeev18 

  • Great Helper
  • Pip
  • Group: Members
  • Posts: 71
  • Joined: 11-October 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 27 December 2010 - 08:42 PM

yes why not here is it.... but be careful in modifying it .... You can do several mistake .....
Download Windows Unattended CD creator To make it in right way... From here

Attached File(s)


This post has been edited by sanjeev18: 27 December 2010 - 08:43 PM


#15 User is offline   manvindar 

  • Newbie
  • Group: Members
  • Posts: 22
  • Joined: 21-December 10
  • OS:XP Pro x86
  • Country: Country Flag

Posted 15 January 2011 - 11:29 AM

View Postmanvindar, on 26 December 2010 - 12:41 PM, said:

View Post-X-, on 25 December 2010 - 08:01 AM, said:

Run it from GuiRunOnce. That's before the first log on. You could do it from registering components (T-13) if you like.

Try it on your live system to see how it works. Change the 2 to a 1 and log off and then on again.

EDIT: OK I see where the problem may lie. I tried it on my live system and it didn't work unless I used CURRENT_USER. So use....

Quote

Windows Registry Editor Version 5.00

; Disable Start Menu Popping Up on First Boot
; Disable Click here to start balloon tip on first boot
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"StartMenuInit"=dword:00000002
"StartButtonBalloonTip"=dword:00000002


Though I do use LOCAL_MACHINE on my Windows setup and it works.


EDIT 2: I also noticed that StartMenuInit only works on the standard start menu. StartButtonBalloonTip only works on the classic start menu. In other words they don't both op up at the same time time no matter what. Come to think of it, it makes perfect sense! Why would you need both?



i tried it two times but still it does not work :wacko:

Yea it worked afterr changing to current user

I forgot to tell :)

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 - 2013 msfn.org
Privacy Policy