Removing Thinkvanta​ge toolbox from task bar

Just got an E320 which is great but seems Im not alone in wanting to hide the thinkvantage toolbox widget in my task bar and I am struggling!
There seems to be a bug as i have right clicked task bar, selected toolbars and deselected it but this only seems to work temporarily ie as soon as I reboot the laptop it reappears.
I have also tried going into the settings of the toolbox itself and deselecting the radio button that says "show icon in taskbar' but again this only works until the next time I reboot.
can anyone help?
Thx
Solved!
Go to Solution.

Try seeing if Toolbox is up to date.
Worse comes to worst, uninstall it.
W520: i7-2720QM, Q2000M at 1080/688/1376, 21GB RAM, 500GB + 750GB HDD, FHD screen
X61T: L7500, 3GB RAM, 500GB HDD, XGA screen, Ultrabase
Y3P: 5Y70, 8GB RAM, 256GB SSD, QHD+ screen

Similar Messages

  • Removal does not work from task bar, how can I get it to work?

    I have the latest version of firefox. clicking on the star and then remove does nothing.

    '''Try the Firefox Safe Mode''' to see how it works there. The Safe Mode is a troubleshooting mode, which disables most add-ons.''
    ''(If you're not using it, switch to the Default theme.)''
    * You can open the Firefox 4.0+ Safe Mode by holding the '''Shift''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Don't select anything right now, just use "'Start in Safe Mode"''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shift key) to open it again.''
    '''''If it is good in the Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one.
    Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

  • Firefox 4 is not appearing in Task bar or some times it is Disappearing from task bar when i am minimising the window. so, i had to go to Task manager and find the icon.Its becoming big messy if tabs are not found , to switch programmes.

    firefox icon is missing from "Task bar"when i am minimising the window

    I am unwilling to attempt navigation away from these sites. The pop-ups that occur on the attempt to leave a site or to close the browser are exit traps offering incentive to stay.
    Once upon a time, when the internet was less dangerous, I would be willing to close the exit pop-ups. Now, after twice being infected with malware trying to close the pop-ups, I now force close whichever browser I am using.
    Recently, I clicked on the red X to close one pop-up, and it installed a trojan that I had to pay to be removed. When I clicked on 'Leave' in another exit pop, it didn't exit and it turned out I was giving permission to run a script file. Now that criminals have learned these exit pop-ups can be used to force a click action, the sites using them have become dangerous.
    If I force the browser to close using Task manager, Please tell me how to stop FireFox from sending me directly back to the same site because it mistakenly believes it crashed when it did not. I forced it to close because I was on a site that had taken control of my browser and was not allowing me to leave the site.
    No other browser sends me back to the potentially dangerous sites. I prefer Firefox, but the new version must have a setting that allows me to get safely away from a problem site?

  • Bridge will not launch from task bar or from application.  No response at all

    bridge will not launch from task bar or from application.  No response at all
    It was installed from the cloud 2 days ago, it is up to date as is Photoshop also the CC cloud version up to date
    it was working yesterday
    Photoshop opened with no problem.
    Get no response at all...nuttin

    In the PSE 12 folder, double click on the Setup.exe
    If you get this, just click on Ignore

  • After updating waterfox 12.0 to 15.0, but while launching from task bar its giving error not compatable version 15.0 min/max version 12.0

    after updating waterfox 12.0 to 15.0, and i opend the app and pin it to the task bar (windows 7 64bit enterprise edition) but while launching from task bar its giving error not compatable version 15.0 min version 12.0 ,max version 12.0

    Such an error is caused by some files that weren't updated successfully, so you are left with a mixture of files from different Firefox versions.<br />
    There is usually some security software involved that protects .ini files against modification (update).
    You will still have to do a clean reinstall and delete the Firefox program folder before reinstalling a new copy of Firefox.
    *C:\Program Files (x86)\Mozilla Firefox\

  • Removing the minimize button from Title bar...

    Hi,
    I have created an desktop application using swing. I dont need minimized button on title bar of the main window. I searched a lot but could not find a solution. Can I get some useful links.
    What can I do ?
    Thanks

    Actually I want if the application is minimized, its state should not changed to iconified but it simple because hidden. And using the tray icon's option if application is open, it simple make the application visible. I did not want the following case which is happening right now.
    Case:
    1. I Minimized the application
    2. My application state becomes the iconified and it becomes hidden (As I have implemented the windowlistener)
    3. I used trayicon's Open option (it simply visible the application)
    4. Application becomes visible, but it is in iconified state. Because previously its state has been changed due to minimized button.I want whenever the Open option of tray icon is used, application must be visible in Maximized state. That why I also did on action listener of Open option
                            application.setState(NORMAL);
                            application.setExtendedState(MAXIMIZED_BOTH);
                            application.setVisible(true);That's why I planned to removed the minimize button from Title bar. But if it not possible then how can I avoid changing state of application when minimized button is used.
    thanks
    Jawahar Nayak

  • Unpin from Task bar AFTER program is deleted

    I have a situation where I am trying to use PowerShell to Unpin a shortcut from the task bar after the program has been deleted. The shortcut has been renamed (from the idiotic name Autodesk used to start with) and thus it is orphaned after uninstall because
    Windows doesn't manage these things gracefully. The code I am using uses the common approach of digging into the shortcut to extract the Verbs array, and then assigned the Unpin verb to $Verb and then does a $Verb.DoIt(). But of course the the target no longer
    exists, so there is no Verbs object to dig a Verb out of. 
    I have found the various related posts, and there are issues
    1: Deleting the reg key and losing all pinned items is a no go. I am removing one piece of software, and I want to remove that shortcut and no others.
    2: I know I can do this manually, but my whole goal is automation, and the fact that I CAN do it manually suggests there should be a way to do it with PowerShell.
    3: I have tried getting the Verb from the shortcut as well, but it seems like the shortcut really is just a passthrough to the Target, so no target, no Verb from the shortcut.
    4: I have also tried just deleting the shortcut file from User\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar, but that leaves an even more orphaned shortcut on the task bar, that not only doesn't have a target, it doesn't
    even have an icon, just a white "page".
    So, how does one get to whatever Verbs are being accessed when doing this manually? Is there some way to apply a generic Verb?
    Gordon

    Okay so after some digging i found a way for you to do it but the best way i have found is using the actual user rights. I tested this out as a login script that ran before the user even saw their desktop.
    The task bar has a registry key that has to be cleared and when explorer is started the key gets created based on the items listed in the directory the shortcuts are stored. If you have any issues let me know.
    #Remove the chached settings in the registry. This will comeback once explorer is restarted
    get-item -path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband -ErrorAction SilentlyContinue |
    remove-itemproperty -name Favorites, FavoritesRemovedChanges, FavoritesChanges, FavoritesResolve, FavoritesVersion -ErrorAction SilentlyContinue |
    Out-Null
    #Remove ShortCut From Current User:
    Remove-Item -Path "C:\Users\$($Env:UserName)\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar\Pandora.lnk" -Force -ErrorAction SilentlyContinue | Out-Null
    #Restart Explorer
    Stop-Process -Name "explorer" -Force | Out-Null
    #once explorer stops it should restart itself

  • Unpinning Items from Task bar

    Does anyone know of a Script that I can run as at Logon or whatever that will unpin the following Items from the Task bar:
    Internet Explorer
    File explorer
    Media player.
    I have googled or in Microsoft's case Binged till my fingers hurt. 

    I found it,  there was a script on here that did what I wanted:
    'Credit goes to Eric G. for writing this script.
    'More info at http://frontslash.wordpress.com/2010/03/01/removing-internet-explorer-and-windows-media-player-from-taskbar/#comment-178
    Option Explicit
    Const CSIDL_COMMON_PROGRAMS = &H17
    Const CSIDL_PROGRAMS = &H2
    Const CSIDL_STARTMENU = &HB
    Dim objShell, objFSO
    Dim objCurrentUserStartFolder
    Dim strCurrentUserStartFolderPath
    Dim objAllUsersProgramsFolder
    Dim strAllUsersProgramsPath
    Dim objFolder
    Dim objFolderItem
    Dim colVerbs
    Dim objVerb
    Set objShell = CreateObject("Shell.Application")
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objCurrentUserStartFolder = objShell.NameSpace (CSIDL_STARTMENU)
    strCurrentUserStartFolderPath = objCurrentUserStartFolder.Self.Path
    Set objAllUsersProgramsFolder = objShell.NameSpace(CSIDL_COMMON_PROGRAMS)
    strAllUsersProgramsPath = objAllUsersProgramsFolder.Self.Path
    'Internet Explorer
    If objFSO.FileExists(strCurrentUserStartFolderPath & "\Programs\Internet Explorer.lnk") Then
    Set objFolder = objShell.Namespace(strCurrentUserStartFolderPath & "\Programs")
    Set objFolderItem = objFolder.ParseName("Internet Explorer.lnk")
    Set colVerbs = objFolderItem.Verbs
    For Each objVerb in colVerbs
    If Replace(objVerb.name, "&", "") = "Unpin from Taskbar" Then objVerb.DoIt
    Next
    End If
    'Windows Explorer
    If objFSO.FileExists(strCurrentUserStartFolderPath & "\Programs\Accessories\Windows Explorer.lnk") Then
    Set objFolder = objShell.Namespace(strCurrentUserStartFolderPath & "\Programs\Accessories")
    Set objFolderItem = objFolder.ParseName("Windows Explorer.lnk")
    Set colVerbs = objFolderItem.Verbs
    For Each objVerb in colVerbs
    If Replace(objVerb.name, "&", "") = "Unpin from Taskbar" Then objVerb.DoIt
    Next
    End If
    'Windows Media Player
    If objFSO.FileExists(strAllUsersProgramsPath & "\Windows Media Player.lnk") Then
    Set objFolder = objShell.Namespace(strAllUsersProgramsPath)
    Set objFolderItem = objFolder.ParseName("Windows Media Player.lnk")
    Set colVerbs = objFolderItem.Verbs
    For Each objVerb in colVerbs
    If Replace(objVerb.name, "&", "") = "Unpin from Taskbar" Then objVerb.DoIt
    Next
    End If

  • Cannot open PE 10 from task bar

    When I try to open Photoshop Elements 10 from the task bar nothing happens. I have to go to the file location and open it from there. Also, when I try to uninstall the program I'm told to close the Welcome Screen. Problem is, the Welcome Screen is not open.

      The two applications are obviously not properly integrated. You may need to raise a support case.
    https://www.adobe.com/support/contact/
     

  • Download Bash script running from Task-bar folder

    Hi, Not sure why but when Im trying to open my Downloads file from the task bar its openning up on my desktop as "Downloads-Bash script! how do i stop this please. Its the same if I open from Finder.
    Thank you all in anticipation of a resolve.

    Enter the following command in a Terminal window by copying or dragging (don’t type):
    xattr -c ~/Downloads
    Press return. You can then quit Terminal. Try the action again. If the same thing happens, relaunch the Finder by selecting
     ▹ Force Quit ▹ Finder
    and pressing return or clicking Relaunch.

  • Firefox 8.0 occasionally disappears from task bar when minimized but keeps running

    Running Firefox 8.0 on Windows XP, have 12 tabs open. Occasionally, when I minimize Firefox, it disappears from the task bar. I know that Firefox is still running because one of the open tabs is a radio station stream on Silverlight. The only way to get Firefox back is to click a link in an email then Firefox will open in a new tab (it is my default browser)

    I am guessing it is because you minimise Firefox to the Windows Xp task bar but have ot either locked that or set it to be on top so it may disappear from view.
    When the task bar is visible left click any space area on the taskbar the popup will have options including
    * '''''lock task bar''''' if you tick that the task bar stays the same size
    * '''''properties''''' if you click on that you get other options for customising the task bar
    * also see http://en.wikipedia.org/wiki/Taskbar

  • Since replacing hard drive, "restore previous session" button doesn't work, can only do it through history tab. Also will not start up from task bar icon.

    Hi, been using Firefox for some years, had to replace hard drive recently and re loaded Firefox. Since then, the restore previous session button doesn't work, but I can do it from the History tab. Also Firefox itself won't start from the task bar or desktop, only the start menu.
    Using Windows XP

    This function may not be available for mobile yet. You can put your suggestions to the [[Suggestion Box]]. Thanks!

  • Satellite A - Battery/Power Indicator Missing from Task Bar

    My battery/power indicator is missing from the task bar. When I attempt to turn it on, it's grayed out and I don't have the option to select it. I've checked the hidden icons functions, etc. When I searched on google, there were several fixes - but all are way out of my area of expertise.
    Please help!

    Hi
    Maybe you have installed an software which affected this Windows option.
    It could be also a damage registry entry
    Maybe you could clean the OS using CCleaner and repair the registry
    Im not quite sure if it will help you but its worth a try

  • Move thinkvanta​ge toolbox from taskbar to system tray

    Hello all,
    I've read the posts about removing the Thinkvantage toolbox icon from the taskbar, but what I want requires another step. I'd still like to have an icon always viewable to remind me to check on the statuses it provides, but this one is too big - twice the size of my normal taskbar icons. I'd like it to be a system tray icon, which would make so much more sense. Is there any way to make this happen? It's a long shot I know! If there's no known way, perhaps Lenovo can consider this a feature request.
    Thanks!

    your virus & or firewall maybe blocking it from connecting to the warranty server.
    is the warranty the only missing system info?
    Thinkpad R61 7733-1GU
    Thinkpad X61T 7762-54U
    Thinkpad X60T 6363-4GU
    Did a member help you today? Thank them with a Kudo!
    If a post answers your question, please mark it as an "Accepted Solution"!
    Regards,
    GMAC

  • When I open firefox 4.0 from task bar it opens 10 blank pages all at once real fast.

    When I click the Firexfox 4.0 icon from my task bar it suddenly opens 10 blank pages all at once so every time I open it I have to close 9 pages to get back to one.
    Very frustrating and a big time waster.

    Check the Home page setting.
    * [[How to set the home page]] - Firefox supports multiple home pages separated by '|' symbols
    This can also be a problem with the files [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    Delete [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.
    You will have to redo App Tabs and Tab Groups after deleting sessionstore.js.
    See:
    * http://kb.mozillazine.org/Session_Restore

Maybe you are looking for

  • How do I get rid of sticky pages fm previous searches?

    It seems that since the switch to Yahoo browser I'm having problems. Cannot get rid of a sticky web page from each of several sites I've searched, no matter what. There's no "x" in the URL box, and using the red & white x sends me back to my desktop.

  • Storage space question

    I am recieving messages that my storage space is maxed out.  I bought an external hard drive and connected that to the My Mac, and copied the files. What should I do next?

  • HT1926 itunes cannot find itunes64.msi - help - cannot update or re-install

    I first had trouble updating itunes. The installer couldn't find itunes64.msi. I uninstalled itunes and downloaded a new version. I still get the same message. Please help. Thank you [email protected]

  • Validate the delivery note i tcode MIGO

    Hi Experts, In MIGO Tcode  ---> Delivery Note is taking the same number at  any number of times  for the same Purchase Order . But Excise Invoice if u enter the same it will rise the error message . like that  i want to validate the Delivery Note , I

  • Indesign CC crashing when relinking

    I have been using Indesign CC for a month or two now and for some reason it just started crashing when I try and relink a file in a publication I'm working on. It has worked fine up until this point. Any suggestions? I have already tried reinstalling