Windows Vista Forums
Vista Forums Home Join Vista Forums Donate Vista Tutorials Tags

Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
Register at Vista forums...the world biggest Windows Vista resource Join Vista Forums Now

Go Back   Vista Forums > Vista Newsgroups > Vista security

UAC dialog box

Closed Thread
 
Thread Tools Display Modes
Old 01-26-2008   #1 (permalink)
Toad
Guest


 

UAC dialog box


A long winded question.

In Windows XP and 2000, one can write an application that performs a
ShellExecute with the "runas" verb to launch the Run As dialog box. I
have extended this to then automate the dialog by clicking the run as
another use radio button, filling in the user name and the password,
etc. as dictated by command line options.

In Vista, the Run As dialog looks completely different and I suspect MS
has secured the dialog so that it cannot be automated via SendMessage
calls (let alone that it doesn't look like a traditional dialog). Does
anyone know if this is true, or can the Vista RunAs dialog be automated
as in XP and W2K ?

The reason I ask is that I would like to control the which user is
selected instead of having to click down the list in the Vista dialog...

Toad

--

Old 01-27-2008   #2 (permalink)
Jesper
Guest


 

RE: UAC dialog box

Sorry, you can't do that. The dialog is on the secure desktop and you cannot
send Window Messages to it from a user mode application. It is actually there
specifically to prevent user mode applications from sending Window Messages
to it. The ability to send those messages to a sensitive application is known
as a "Shatter Attack" and was the cause of many security bulletins and
updates in the Windows XP era.

If you had a service on the secure desktop already you might be able to
control it. I haven't actually tried that. That would not be a vulnerability
because you already have trusted code on the box in that case.
---
Your question may already be answered in Windows Vista Security:
http://www.amazon.com/gp/product/047...otectyourwi-20


"Toad" wrote:
Quote:

>
> A long winded question.
>
> In Windows XP and 2000, one can write an application that performs a
> ShellExecute with the "runas" verb to launch the Run As dialog box. I
> have extended this to then automate the dialog by clicking the run as
> another use radio button, filling in the user name and the password,
> etc. as dictated by command line options.
>
> In Vista, the Run As dialog looks completely different and I suspect MS
> has secured the dialog so that it cannot be automated via SendMessage
> calls (let alone that it doesn't look like a traditional dialog). Does
> anyone know if this is true, or can the Vista RunAs dialog be automated
> as in XP and W2K ?
>
> The reason I ask is that I would like to control the which user is
> selected instead of having to click down the list in the Vista dialog...
>
> Toad
>
> --
>
>
Old 01-27-2008   #3 (permalink)
Steve Easton
Guest


 

Re: UAC dialog box

With Vista you need to use a manifest to either tell Vista to run as invoker,
highestavailable or AsAdministrator.

Preferably an embedded manifest at that, here's a sample:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<ms_asmv2:trustInfo xmlns:ms_asmv2="urn:schemas-microsoft-com:asm.v2">
<ms_asmv2:security>
<ms_asmv2:requestedPrivileges>
<ms_asmv2:requestedExecutionLevel level="asInvoker">
</ms_asmv2:requestedExecutionLevel>
</ms_asmv2:requestedPrivileges>
</ms_asmv2:security>
</ms_asmv2:trustInfo>
</assembly>

Here's some links:
Understanding and Configuring User Account Control in Windows Vista
http://technet2.microsoft.com/Window....mspx?mfr=true

The Windows Vista and Windows Server 2008 Developer Story: Windows Vista Application Development Requirements
for User Account Control (UAC)
http://msdn2.microsoft.com/en-us/lib...#wvduac_topic6

--

Steve Easton


"Toad" <toad@xxxxxx> wrote in message news:5OSmj.81543$L%6.19300@xxxxxx
Quote:

>
> A long winded question.
>
> In Windows XP and 2000, one can write an application that performs a
> ShellExecute with the "runas" verb to launch the Run As dialog box. I
> have extended this to then automate the dialog by clicking the run as
> another use radio button, filling in the user name and the password,
> etc. as dictated by command line options.
>
> In Vista, the Run As dialog looks completely different and I suspect MS
> has secured the dialog so that it cannot be automated via SendMessage
> calls (let alone that it doesn't look like a traditional dialog). Does
> anyone know if this is true, or can the Vista RunAs dialog be automated
> as in XP and W2K ?
>
> The reason I ask is that I would like to control the which user is
> selected instead of having to click down the list in the Vista dialog...
>
> Toad
>
> --
>

Closed Thread

Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Dialog Box too big George W. Barrowcliff Vista General 0 1 Week Ago 01:38 PM
Dialog box will not close Kristian Thorsen Vista General 0 02-03-2008 07:36 AM
Run As... dialog missing Dietmar Vista General 2 09-07-2007 01:32 AM
Copying Dialog appears over Confirm File Replace dialog theclyde Vista General 1 06-12-2007 06:16 PM
WTF is the dialog about the dialog? Bernie Vista General 19 07-28-2006 08:19 PM








Vistax64.com is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media 2005-2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50