[jawsscripts] Re: Control Alt Delete script
- From: Doug Lee <doug.lee@xxxxxxxxxxxxxxxx>
- To: jawsscripts@xxxxxxxxxxxxx
- Date: Tue, 26 Feb 2008 15:34:42 -0500
I may be wrong, but I don't think you can simulate that key, for
security reasons. I think Windows requires that combination to be
typed directly from the keyboard by the user.
You're probably doing this on your home computer, so my next comment
won't matter...
but if you're doing this at a workplace, be aware that it is usually
unwise, and often actually illegal, to script the typing of a login
password, again for security reasons.
On Wed, Feb 27, 2008 at 08:02:38AM +1300, Michael Lloyd wrote:
Hi all
I am trying to get this supposably simple script to work.
What I want it to do is pass through Alt control delete when at the
Windows Logon screen. This is so it is easier to press one simple key
like F12 instead of a multiple key command for a guy who's fingers are
falling off. (yes, don't go there).
Everything else works apart from the alt control delete bit. Have put
below script in Default.jss. Can't do alt control delete from a script
in notepad either.
Any thoughts.
Mike
Script ReplaceAltControlDelete ()
;keystroke F12
;alternative for control alt delete on Windows Logon page
var
string sRN
let sRN = GetWindowName (GetRealWindow (GetFocus ()))
If StringContains (sRN, "Windows Logon") then
SayString ("yip") ;Which it does.
{ALT+Control+Delete}
;Below lines work fine
;Pause ()
;TypeString ("What ever the password is")
;EnterKey (true)
Else
;When evrywhere else but the windows logon screen
SayCurrentScriptKeyLabel ()
TypeCurrentScriptKey ()
EndIf
EndScript
__________?
View the list's information and change your settings at
http://www.freelists.org/list/jawsscripts
--
Doug Lee, Senior Accessibility Programmer
SSB BART Group
mailto:doug.lee@xxxxxxxxxxxxxxxx http://www.ssbbartgroup.com
"While they were saying among themselves it cannot be done,
it was done." --Helen Keller
__________
View the list's information and change your settings at
http://www.freelists.org/list/jawsscripts
- Follow-Ups:
- [jawsscripts] Re: Control Alt Delete script
- From: TJ McElroy
Other related posts:
- » [jawsscripts] Control Alt Delete script
- » [jawsscripts] Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- » [jawsscripts] Re: Control Alt Delete script
- [jawsscripts] Re: Control Alt Delete script
- From: TJ McElroy