| Author |
starting taskbar properties from the prompt
|
|
| Matt Slavicek 2004-08-27, 3:56 pm |
| I want to start up taskbar properties from a command prompt. I was able to
find a solution using VB script:
Dim objShell
Set objShell = CreateObject("Shell.Application")
objShell.TrayProperties
but I would like something simplier. Does it exist?
| |
| Homer J. Simpson 2004-08-27, 3:56 pm |
| "Matt Slavicek" <matts@autechdev.com> wrote in message
news:OgrGFeDjEHA.1348@tk2msftngp13.phx.gbl...
>I want to start up taskbar properties from a command prompt. I was able to
>find a solution using VB script:
>
> Dim objShell
> Set objShell = CreateObject("Shell.Application")
> objShell.TrayProperties
>
> but I would like something simplier. Does it exist?
"Simplier" than 3 lines?? :-/
What's the world coming to...
| |
| Ronny Ong 2004-08-27, 3:56 pm |
| rundll32 shell32.dll,Options_RunDLL 1
This works on XP, not sure about other operating systems. Would help if you
mention your OS when asking things like this.
"Matt Slavicek" <matts@autechdev.com> wrote in message
news:OgrGFeDjEHA.1348@tk2msftngp13.phx.gbl...
>I want to start up taskbar properties from a command prompt. I was able to
>find a solution using VB script:
>
> Dim objShell
> Set objShell = CreateObject("Shell.Application")
> objShell.TrayProperties
>
> but I would like something simplier. Does it exist?
|
|
|
|