It is currently April 16th, 2024, 1:24 pm

How to remove Windows Taskbar

Post reviews, recommendations and questions about other software.
Fearconor
Posts: 2
Joined: August 9th, 2010, 9:16 pm

How to remove Windows Taskbar

Post by Fearconor »

I just started using my first rainmeter skin (i just copyed/paste i didnt create) and I am unsure how to hide/remove the windows task bar at the bottom. Just wondered if anyone could tell me how to do it.

Also i would need a new skin that can be the start button.... anyone got any good ones they know about that will go with this rainmeter
You do not have the required permissions to view the files attached to this post.
User avatar
JpsCrazy
Posts: 667
Joined: April 18th, 2010, 2:16 pm
Location: NY, USA

Re: How to remove Windows Taskbar

Post by JpsCrazy »

There are skins that can open the start menu, but as of now Rainmeter cannot replace the taskbar. You can indeed remove it - just google how to - but Rainmeter cannot handle minimized windows and etc.
Fearconor
Posts: 2
Joined: August 9th, 2010, 9:16 pm

Re: How to remove Windows Taskbar

Post by Fearconor »

Thanks for the help
User avatar
karmat
Posts: 329
Joined: July 7th, 2009, 11:10 pm
Location: Canada

Re: How to remove Windows Taskbar

Post by karmat »

You can autohide the taskbar by right-clicking the taskbar, go to Properties, put a check in the Auto-hide the Taskbar box, click okay.

There is a StartMenuOpener rainmeter skin at http://chrisringeisen.deviantart.com/art/Windows-Start-Menu-Skin-174094238?q=favby%3Akarmat111%2F10209366&qo=5 (you can change the button to whatever you want).
Geez93
Posts: 2
Joined: August 12th, 2010, 11:22 am

Re: How to remove Windows Taskbar

Post by Geez93 »

Hey did you manage to remove the windows taskbar?
Autohide is anoying!
And which theme do you use?
User avatar
tru
Posts: 169
Joined: January 12th, 2010, 4:24 am
Location: A Salty Piece of Land...

Re: How to remove Windows Taskbar

Post by tru »

have you tried Taskbar Eliminator ?? http://www.aviassin.com/taskbareliminator
Geez93
Posts: 2
Joined: August 12th, 2010, 11:22 am

Re: How to remove Windows Taskbar

Post by Geez93 »

Yeah i tried that, but it only auto hid my taskbar and when i went down with my mouse it poped up again...
User avatar
tru
Posts: 169
Joined: January 12th, 2010, 4:24 am
Location: A Salty Piece of Land...

Re: How to remove Windows Taskbar

Post by tru »

Geez93 wrote:Yeah i tried that, but it only auto hid my taskbar and when i went down with my mouse it poped up again...
Hmmm, I haven't used it in a while but it appears to of gone wonky with me too. Sowy 'bout that...
vdl68
Posts: 2
Joined: September 7th, 2010, 10:52 am

Re: How to remove Windows Taskbar

Post by vdl68 »

Stardock ObjectDock does really hide the taskbar and it really work great! ;)
codybear
Posts: 7
Joined: February 1st, 2010, 9:39 pm

Re: How to remove Windows Taskbar

Post by codybear »

I use AutoHotkey and have this in my constantly running script:

Code: Select all

;Win + T = Hide/Unhide Taskbar
#t::
if toggle := !toggle 
    {
    WinHide ahk_class Shell_TrayWnd
    WinHide, Start ahk_class Button 
    }
    else
    {
    WinShow ahk_class Shell_TrayWnd
    WinShow, Start ahk_class Button 
    }
return
Instructions: Press Windows Key & T and it will toggle the taskbar on and off (works for xp and vista/win7...not sure about the other earlier Window OSes.