myselfidem Posted January 28, 2011 Posted January 28, 2011 (edited) I see a program freelaunchbar32.exe and freelaunchbar64.msi ( inside the zip folder) working fine with Windows 7 (freeware)!Free Launch Bar Silent install:C:\freelaunchbar32.exe /S /D=C:\"Program Files"\FreeLaunchBar Edited January 28, 2011 by myselfidem
myselfidem Posted January 29, 2011 Posted January 29, 2011 (edited) Hi all! I've added inside the script a new value.That's mean if the Langbar is on the Taskbar or not the Quick Launch is installed and moved to the left! ;Reading the Status of the Langbar (value "4" Langbar is on the Taskbar)$Langbar = RegRead("HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar", "ShowStatus")Select;Case $Langbar = value "4" The Langbar is on the Taskbar and must be disabledCase $Langbar = "4"EndSelectThe Langbar will be enabled on the next reboot, even if this one were not on the Taskbar first!Include languages: en-US, fr-FR, se-SE, da-DK, nl-NL, nb-NODownlaod for testing:7QuickLaunch.exeWorks really fine for me (fr-FR)! *Edit: Added some changes inside the script! Edited January 30, 2011 by myselfidem
wazer Posted January 29, 2011 Author Posted January 29, 2011 (edited) Hi all! I've added inside the script a new value.lol my selfidem you have so much time lol .....try add this line and make it function with it, i dont have the time atm,It will check for the taskbarsizemove if its locked then it will remove lock and the script can continue else if already unlocked it continue this is what we need so everyone can run it without the need to remove lock first.Add this code to the top of the script $Taskbarsizemove = RegRead("HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarSizeMove")If $Taskbarsizemove = 0 Then Do ProcessClose("explorer.exe") Until Not ProcessExists("explorer.exe") sleep ( 1000 ) RegWrite("HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarSizeMove", "REG_DWORD", "1") sleep ( 1000 ) If Not ProcessWait("explorer.exe", 5) Then Run(@WindowsDir & "\explorer.exe")EndIfand remember to remove thisREGWRITE("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced","TaskbarSizeMove","REG_DWORD","0") in the script first Edited January 29, 2011 by wazer
myselfidem Posted January 29, 2011 Posted January 29, 2011 (edited) Many thanks wazer! I've made some changes inside the script. ;Reading the Status of the Langbar (value "4" Langbar is on the Taskbar)$Langbar = RegRead("HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar", "ShowStatus")Select ;Case $Langbar = "4" The Langbar is on the Taskbar and must be disabledCase $Langbar = "4"_DisableLangbar()EndSelectMaybe it's missing something or it is not correct?Working fine on my computer (with Langbar or without) but with silent install doesn't works. It's needed to reboot and launch the script and it's OK; 7QuickLaunch is installed! Weird!I will try your suggestion and add the value you've given me!Yes I've some time but I really want to find a workaround for 7QuickLaunch!!!I give you a report. Thanks again. Edited January 29, 2011 by myselfidem
myselfidem Posted January 31, 2011 Posted January 31, 2011 (edited) Hello wazer! Finally I think I've really found a "workaround" for the "Langbar" (set on the Taskbar or not)!If the Langbar is on the Taskbar or not, 7QuickLaunch.exe will install the "Quick Launch" on the left and keep the values the user have choosen!Download for testing (include much languages):7QuickLaunch.exeTested on my computer (Windows 7 French version) and with silent installation and works really fine! *Edit: File updated Edited February 1, 2011 by myselfidem
wazer Posted January 31, 2011 Author Posted January 31, 2011 Hello wazer! Finally I think I've really found a "workaround" for the "Langbar" (set on the Taskbar or not)!If the Langbar is on the Taskbar or not, 7QuickLaunch.exe will install the "Quick Launch" on the left and keep the values the user have choosen!Download for testing (include much languages):7QuickLaunch.zipTested on my computer (Windows 7 French version) and with silent installation and works really fine! Try to add your solutions to this newest one i have made. This one works for me and others even under unattended installation, it has to take this long before it works correctly.Iv added german support aswell, and cleaned up abit.
myselfidem Posted January 31, 2011 Posted January 31, 2011 (edited) Many thanks wazer! The challenge is when a user add a reg file to disable or close the Langbar after the installation is done; or if he wants keep the Langbar on the Taskbar!With my script this two circumstances are taken into account and in all these two conditions the "Quick Launch" is installed on the left and the values choosen by the user are kept.Thanks to try it!I will wait your new version with these new lines you can see inside my script if you want add these and if you see it's working fine.Regards Edited January 31, 2011 by myselfidem
maxXPsoft Posted February 1, 2011 Posted February 1, 2011 don't know why but running both myselfidem and wazer of your latest I now get a Desktop toolbar alsowazer script creates 2 Quicklaunch also but myselfidem does notI am running 64 bit and make sure toolbar is locked before trying which is default
myselfidem Posted February 1, 2011 Posted February 1, 2011 (edited) @maxXPsoft!ThanksI think it's needed to improve the script for 64-bits because Windows is more faster.Maybe at this lines I can add a sleep delay to see if the Langbar is on the Taskbar or not:$FloatingLangBar = ControlGetPos("[CLASS:Shell_TrayWnd]", "", "[CLASS:CiceroUIWndFrame]") If @error = 0 Then_DisableLangbar() ElseRegWrite("HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar", "ShowStatus", "REG_DWORD", "3")EndIfI will take a look and try with my Windows 64-bits version!Regards@wazerI think it's better to use WinActive at this line inside the script and I think you will have only one Quick Launch and not two:Func _TaskToolbarWin7($toolbardir) MouseClick("right", 0, @DesktopHeight) Send("{DOWN}{RIGHT}{UP}{ENTER}") WinActive($title)Regards Edited February 1, 2011 by myselfidem
myselfidem Posted February 1, 2011 Posted February 1, 2011 (edited) I've made some changes inside the script (language: de-DE added) and tested with Virtual Machine with Windows 64-bits. Works fine for me!Works fine with Windows 32-bits with Langbar on the Taskbar or not (Tested)!Works really fine for me also with Windows 7 64-bits!Yes, when I use 7QuickLaunch made by wazer I've also 2 Quick Launch.Changes inside the new script: $TRAY = ControlGetPos("[CLASS:Shell_TrayWnd]", "", "[CLASS:CiceroUIWndFrame]") If @error = 0 Then ;Langbar is on the Taskbar and will be disabled_DisableLangbar() Else ; Langbar is closedRegWrite("HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar", "ShowStatus", "REG_DWORD", "3")Sleep(100)EndIfDownload for testing: 7QuickLaunch.exe Edited February 1, 2011 by myselfidem
maxXPsoft Posted February 2, 2011 Posted February 2, 2011 Fresh install but I did use one of the older which still worked on my UA. Had done some new things and wanted to testthenmyselfidem using your new I still get the Desktop toolbar. I have small icons would that make a difference? something not computing
myselfidem Posted February 2, 2011 Posted February 2, 2011 (edited) Fresh install but I did use one of the older which still worked on my UA. Had done some new things and wanted to testthenmyselfidem using your new I still get the Desktop toolbar. I have small icons would that make a difference? something not computingI'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: ;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 closedSleep(100)RegWrite("HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar", "ShowStatus", "REG_DWORD", "3")Sleep(100)EndIfWorks really fine for me with Langbar on the Taskbar or not; with silent install also (French language)With Lanbgar ImageWithout Langbar Image *Edit: Changes made inside the folder 7QuickLaunch.zip Edited February 2, 2011 by myselfidem
myselfidem Posted February 2, 2011 Posted February 2, 2011 (edited) Hi all! I've created a new 7QuickLaunch.zip with a new value!Works fine for me.Changes: $TRAY = ControlGetPos("[CLASS:Shell_TrayWnd]", "", "[CLASS:CiceroUIWndFrame; TEXT:TF_FloatingLangBar_WndTitle]") If Not @error Then ; Langbar is on the TaskbarCaLL("_DisableLangbar")EndIfDownload for testing:7QuickLaunch.zipRegards 7QucikLaunch without Langbar Image*Edit: tested with Windows 7 32-bits and 64-bits. Working fine! Edited February 2, 2011 by myselfidem
wazer Posted February 3, 2011 Author Posted February 3, 2011 Hi all! 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 . The one with \ advanced space . If you know what im talking about . ill look at your add on when i got the time, right now theres to much hazzle for me sorry.
myselfidem Posted February 3, 2011 Posted February 3, 2011 (edited) 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 . The one with \ advanced space . If you know what im talking about . ill look at your add on when i got the time, right now theres to much hazzle for me sorry.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 Edited February 3, 2011 by myselfidem
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now