> I have added
> 
> [Shell]
>      ; Use classic start menu
>      DefaultStartPanelOff=Yes
>      ; Use classic visual style
>      DefaultThemesOff=Yes
> 
> to activate classic look and feel in Win XP. Works perfectly, but how 
> can I tell unattended to automatically activate the quickstart icons?

The only possibility I know is this AutoIT script!

German Version:
; Turn on the QuickLaunch toolbar in Windows XP.
;

Run ("rundll32.exe shell32.dll,Options_RunDLL 1", "", @SW_HIDE)
WinWaitActive ( "Eigenschaften von Taskleiste und Startmenü")
WinShow ( "Eigenschaften von Taskleiste und Startmenü", "", @SW_HIDE)
WinActivate ( "Eigenschaften von Taskleiste und Startmenü")
$var = ControlCommand ( "Eigenschaften von Taskleiste und Startmenü", "",
"Button5", "IsChecked", "")
If $var = 1 Then
    WinClose ("Eigenschaften von Taskleiste und Startmenü")
Else
    ControlCommand ( "Eigenschaften von Taskleiste und Startmenü", "",
"Button5", "Check", "")
    ControlCommand ( "Eigenschaften von Taskleiste und Startmenü", "",
"Button11", "Check", "")
EndIf 

English Version:
; Turn on the QuickLaunch toolbar in Windows XP.
;

Run ("rundll32.exe shell32.dll,Options_RunDLL 1", "", @SW_HIDE)
WinWaitActive ( "Taskbar and Start Menu Properties")
WinShow ( "Taskbar and Start Menu Properties", "", @SW_HIDE)
WinActivate ( "Taskbar and Start Menu Properties")
$var = ControlCommand ( "Taskbar and Start Menu Properties", "", "Button5",
"IsChecked", "")
If $var = 1 Then
    WinClose ("Taskbar and Start Menu Properties")
Else
    ControlCommand ( "Taskbar and Start Menu Properties", "", "Button5",
"Check", "")
    ControlCommand ( "Taskbar and Start Menu Properties", "", "Button11",
"Check", "")
EndIf



Copy the files under scripts\%WINLANG%\ and use this batch file:

: Make the QuickLaunch toolbar visible in Windows XP.
todo.pl "AutoIt3 %Z%\scripts\%WINLANG%\quicklaunch.au3" 


For deleting or generating shortcuts in the quicklaunchbar you have to use
this directory:
"%AppData%\Microsoft\Internet Explorer\Quick Launch"


Regards, Moritz



-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
_______________________________________________
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info

Reply via email to