Quick Launch Classic 7 Tool 1.0.5 Autoit - compiled + source.
#101
Posted 01 February 2011 - 08:53 PM
then
myselfidem using your new I still get the Desktop toolbar. I have small icons would that make a difference? something not computing
#102
Posted 02 February 2011 - 03:58 AM
maxXPsoft, on 01 February 2011 - 08:53 PM, said:
then
myselfidem using your new I still get the Desktop toolbar. I have small icons would that make a difference? something not computing
I've also small icons and I think it wouldn't that make a difference!
I think the diffrence it's to have the Langbar on the Taskbar or not and write the script correctly!
I've made a new 7QuickLaunch with some changes and works fine for me on my computer or with silent install.
Tested also with OS 64-bits! Langbar on the Taskbar or not!
Changes:
Quote
;Adding Reg Entries.
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarSizeMove", "REG_DWORD", "0")
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarSmallIcons", "REG_DWORD", "1")
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarGlomLevel", "REG_DWORD", "2")
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer", "EnableAutoTray", "REG_DWORD", "0")
RegWrite("HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer", "TaskbarNoPinnedList", "REG_DWORD", "1")
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects2", "Settings", "REG_BINARY", "28000000ffffffff02000000030000003e0000004e000000feffffffce030000920600001c040000")
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar", "ShowStatus", "REG_DWORD", "3")
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar", "Transparency", "REG_DWORD", "255")
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar", "Label", "REG_DWORD", "1")
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar", "ExtraIconsOnMinimized", "REG_DWORD", "0")
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\CTF\MSUTB", "AutoAdjustDeskBand", "REG_DWORD", "0")
;Unlock Taskbar
_ToggleTaskbarLock()
$TRAY = ControlGetPos("[CLASS:Shell_TrayWnd]", "", "[CLASS:CiceroUIWndFrame; TEXT:TF_FloatingLangBar_WndTitle]")
If @error = 0 Then ;Langbar is on the Taskbar and will be disabled
_DisableLangbar()
Else ;Langbar is closed
Sleep(100)
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar", "ShowStatus", "REG_DWORD", "3")
Sleep(100)
EndIf
Works really fine for me with Langbar on the Taskbar or not; with silent install also (French language)
With Lanbgar Image
Without Langbar Image
*Edit: Changes made inside the folder 7QuickLaunch.zip
This post has been edited by myselfidem: 02 February 2011 - 11:34 AM
#103
Posted 02 February 2011 - 11:38 AM
I've created a new 7QuickLaunch.zip with a new value!
Works fine for me.
Changes:
Quote
If Not @error Then ; Langbar is on the Taskbar
CaLL("_DisableLangbar")
EndIf
Download for testing:
7QuickLaunch.zip
Regards
7QucikLaunch without Langbar Image
*Edit: tested with Windows 7 32-bits and 64-bits. Working fine!
This post has been edited by myselfidem: 02 February 2011 - 04:33 PM
#104
Posted 02 February 2011 - 08:36 PM
myselfidem, on 02 February 2011 - 11:38 AM, said:
I've created a new 7QuickLaunch.zip with a new value!
I know you want to have this working for all, but start with only having on ql txt file, i can see your using alot of old ones i made previous
#105
Posted 03 February 2011 - 01:00 AM
wazer, on 02 February 2011 - 08:36 PM, said:
Thanks wazer!
I will try to make the flie lighter and delete the lines with the \ advanced space
*Edit: here is the 7QuickLaunch.au3 lighter:
7QuickLaunch.zip
This post has been edited by myselfidem: 03 February 2011 - 02:08 AM
#106
Posted 03 February 2011 - 05:29 AM
myselfidem, on 03 February 2011 - 01:00 AM, said:
Found out why I kept getting Desktop Toolbar cause I had this tweak applied
HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics MinWidth = 40 which forces all windows to appear as icons down there. Just delete and reboot for it to return to normal
myselfidem
#107
Posted 03 February 2011 - 05:32 AM
maxXPsoft, on 03 February 2011 - 05:29 AM, said:
myselfidem, on 03 February 2011 - 01:00 AM, said:
Found out why I kept getting Desktop Toolbar cause I had this tweak applied
HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics MinWidth = 40 which forces all windows to appear as icons down there. Just delete and reboot for it to return to normal
myselfidem
Very nice maxXPsoft!
I understand now why you were talking about small icons (windows to appear as icons)!!!
Works also fine for me with silent install or on my computer 32-bits or 64-bits with Langbar on the Taskbar or not (with all languages) ! Tested
Regards
This post has been edited by myselfidem: 03 February 2011 - 05:47 AM
#108
Posted 05 February 2011 - 06:24 AM
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer", "EnableAutoTray", "REG_DWORD", "0")
I like it on to combine those things I don't need all the time so I modified this script
;Adding Reg Entries. I replaced the RegWrite and added
$AutoTray = RegRead("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer", "EnableAutoTray")
Bottom of script I added
;AutoTray
Select
;Case $AutoTray = "0" EnableAutoTray is not enabled
Case $AutoTray = "0"
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer", "EnableAutoTray", "REG_DWORD", "0")
Case $AutoTray = "1"
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer", "EnableAutoTray", "REG_DWORD", "1")
EndSelect
Or would it be better to just leave that RegWrite out of it?
This post has been edited by maxXPsoft: 05 February 2011 - 06:26 AM
#109
Posted 05 February 2011 - 07:54 AM
Thanks!
I think it would be better lo leave this RegWrite out of it, because it's not really needed and I've tried on my computer with the value:
"EnableAutoTray"=dword:00000001
7QuickLaunch.exe works also fine without this reg key inside the script!
*Edit:
7QuickLaunch.au3 and 7QuickLaunch-FR.au3 updated (reg "EnableAutoTray" deleted)!
Download link:
7QuickLaunch
This post has been edited by myselfidem: 05 February 2011 - 10:50 AM
#110
Posted 05 February 2011 - 10:52 AM
myselfidem, on 05 February 2011 - 07:54 AM, said:
Thanks!
I think it would be better lo leave this RegWrite out of it, because it's not really needed and I've tried on my computer with the value:
"EnableAutoTray"=dword:00000001
7QuickLaunch.exe works also fine without this reg key inside the script!
*Edit:
7QuickLaunch.au3 and 7QuickLaunch-FR.au3 updated (reg "EnableAutoTray" deleted)!
Download link:
7QuickLaunch
Had some time to spare, i tryed both your modifications, both does not work here,i tested on pure english and danish version. Just gives documents attached to the taskbar.
#111
Posted 05 February 2011 - 11:00 AM
wazer, on 05 February 2011 - 10:52 AM, said:
myselfidem, on 05 February 2011 - 07:54 AM, said:
Thanks!
I think it would be better lo leave this RegWrite out of it, because it's not really needed and I've tried on my computer with the value:
"EnableAutoTray"=dword:00000001
7QuickLaunch.exe works also fine without this reg key inside the script!
*Edit:
7QuickLaunch.au3 and 7QuickLaunch-FR.au3 updated (reg "EnableAutoTray" deleted)!
Download link:
7QuickLaunch
Had some time to spare, i tryed both your modifications, both does not work here,i tested on pure english and danish version. Just gives documents attached to the taskbar.
Weird!
Works fine for me with French language and also tested on a computer of a friend (French version)!
With Langbar on the Taskbar or without the Langbar!
Maybe we can just keep this value inside the script:
;Selecting Preferred UI language
$Lang = RegRead("HKEY_CURRENT_USER\Control Panel\Desktop\MuiCached", "MachinePreferredUILanguages")
*Edit: You can modify the script like this:
Quote
MouseClick("right", 0, @DesktopHeight)
Send("{DOWN}{RIGHT}{UP}{ENTER}")
WinActive($title)
sleep(1000)
ControlSetText($title, "", "Edit1", $path)
sleep(1000)
ControlClick($title, "", "Button1")
EndFunc ;==>_TaskToolbarWin7
Works also fine for me!
This post has been edited by myselfidem: 05 February 2011 - 12:13 PM
#112
Posted 05 February 2011 - 10:04 PM
Course i can't try any other language because primary is en-us here
wazer is your toolbar locked before you try these? Or there may be some other odd settings you have that interfere like I had.
#113
Posted 06 February 2011 - 10:16 AM
maxXPsoft, on 05 February 2011 - 10:04 PM, said:
Course i can't try any other language because primary is en-us here
wazer is your toolbar locked before you try these? Or there may be some other odd settings you have that interfere like I had.
I did test with locked and unlocked, same thing
#114
Posted 06 February 2011 - 11:10 AM
#115
Posted 06 February 2011 - 11:15 AM
First it's needed to have the Taskbar locked!
*Edit: I see that you are looking for a new value to add at first for 7QuickLaunch.au3:
mutilply param
This post has been edited by myselfidem: 06 February 2011 - 12:47 PM
#116
Posted 06 February 2011 - 01:53 PM
myselfidem, on 06 February 2011 - 11:15 AM, said:
First it's needed to have the Taskbar locked!
*Edit: I see that you are looking for a new value to add at first for 7QuickLaunch.au3:
mutilply param
Yes i didnt know how to do it. But here it goes..
Put this on top of the script.
;Switchless commands
If $CMDLINE[0] Then
For $i = 1 To $CMDLINE[0]
Switch $CMDLINE[$i]
Case '/?'
MsgBox(0x40000, 'Help', 'Switchless Commands: /NOPIN /TGL /TSI /AUTOTRAY')
Exit
Case '/NOPIN'
RegWrite("HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer", "TaskbarNoPinnedList", "REG_DWORD", "1")
Case '/TGL'
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarGlomLevel", "REG_DWORD", "2")
Case '/TSI'
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarSmallIcons", "REG_DWORD", "1")
Case '/AUTOTRAY'
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer", "EnableAutoTray", "REG_DWORD", "0")
EndSwitch
Next
EndIf
Then we can start add all those params so people can modified like they want.
#117
Posted 06 February 2011 - 06:13 PM
Iv have tested this many times now, i implented a check to see if quick launch folder was already there and if so then it should remove it, and continue where it left,
This should fix all those "double" quicklaunch bars attached to the taskbar hopefully
This also applys for the taskbar if locked or not locked, it dosnt matter anymore with my new modification. Ill test some more and you will get it soon.
Other things
stepped down the how fast the mouse is moving around.
corrected it to be more precisely when grabbing the different stuff with the mouse.
added show desktop action via mouse so there should be nothing in background that could nag the tool while its running anymore.
added msgbox in start that to inform the user they should not touch anything for the next 30seconds, the box closes it self after 10 seconds so they dont have to touch anything.... "Just like a warning dialog, for new users that want to try this tool out".
added hotkey to exit the program if something went wrong. The key is F1
added params so people can decide wich reg imports they want to have, example below.
Switchless params, Run "7quicklaunch.exe /?" without quotes to get information about params.
example
Usage 7quicklaunch.exe /NOPIN /TGL /TSI /AUTOTRAY /LBS3 /EXPLORER
Info /NOPIN Removes The pinned list on windows 7 taskbar. /TGL Makes Taskbar buttons = Never combine /TSI Makes Small icons on windows 7 taskbar. /AUTOTRAY Disable AUTOTRAY on windows 7 taskbar. /LBS3 Langbar Showstatus value 3? - dont know what it does. /EXPLORER Will end explorer and start it again with all options saved, This is usefull so you dont have to restart windows at all to take effect of changes.
This post has been edited by wazer: 06 February 2011 - 07:27 PM
#118
Posted 07 February 2011 - 02:03 AM
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar", "ShowStatus", "REG_DWORD", "3")
This post has been edited by myselfidem: 07 February 2011 - 02:03 AM
#119
Posted 07 February 2011 - 03:06 AM
myselfidem, on 07 February 2011 - 02:03 AM, said:
RegWrite("HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar", "ShowStatus", "REG_DWORD", "3")
Yellowwww
Are you willing to test all the params and check with quick launch already attached to your taskbar and run it and your taskbar is unlocked aswell please test!
I personal use all the switches and put them into an installer. i recommend SFXMaker.
7quicklaunch.exe /NOPIN /TGL /TSI /AUTOTRAY /LBS3 /EXPLORER
If theres more reg values we should implent name it and ill add it and we can make this final soon i guess yayyy
GO GO GO.
This post has been edited by wazer: 07 February 2011 - 03:12 AM
#120
Posted 07 February 2011 - 03:31 AM
I think we can add a new reg for the WindwMetrics like maxXPsoft was talking about this issue!!
With this reg value the 7QuickLaunch.exe doesn't work!
[HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics] "MinWidth"="40"
It's needded to delete this value and add at the end of the script to restore this one!
*Edit: I need to test with silent install!
Tested with the reg file WindowMetrics "MinWidth"="40" and the 7QuickLaunch works fine!!! I don't understand where was the trouble!
Maybe it was about another reg value?
This post has been edited by myselfidem: 07 February 2011 - 04:00 AM



Help
Back to top









