[jawsscripts] Re: Control Alt Delete script
- From: "Bryan Garaventa" <bgaraventa11@xxxxxxxxxxxxxx>
- To: <jawsscripts@xxxxxxxxxxxxx>
- Date: Wed, 27 Feb 2008 14:10:02 -0800
I mentioned entering
control userpasswords2
in the Windows Run prompt yesterday. This would have done the trick.
----- Original Message -----
From: "Trent, Mike" <Mike.Trent@xxxxxxxxxxxxxxxx>
To: <jawsscripts@xxxxxxxxxxxxx>
Sent: Wednesday, February 27, 2008 12:01 PM
Subject: [jawsscripts] Re: Control Alt Delete script
Let me see if I can help.
On Most installations of XP-pro, after startup, you have to press this
key combo before you can enter a user name and password. Windows-NT
could require this as well.
It may be disabled somehow on your machine. I don't know how that would
be done but I do know it can be done.
HTH.
-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Reed Poynter
Sent: Wednesday, February 27, 2008 2:38 PM
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] Re: Control Alt Delete script
No, it isn't clear at all. The statement does not answer my question.
-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Don Mauck
Sent: 2008/02/27 11:13
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] Re: Control Alt Delete script
The Control Alt Delete is only used in the pro version not the home
version.
Is that clear enough?
Oracle
Don Mauck | Accessibility Evangelist
Cross Applications Unlimited
7700 Technology Way
Denver CO 80237
Phone (303) 334-4184
Email don.mauck@xxxxxxxxxx
-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Reed Poynter
Sent: Wednesday, February 27, 2008 10:41 AM
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] Re: Control Alt Delete script
Hey Geoff,
How does "it's an xp pro thing not home." answer my questions?
I am using XP Pro.
Reed
-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Geoff Chapman
Sent: 2008/02/26 16:54
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] Re: Control Alt Delete script
it's an xp pro thing not home.
----- Original Message -----
From: "Reed Poynter" <Reed.Poynter@xxxxxxxxx>
To: <jawsscripts@xxxxxxxxxxxxx>
Sent: Wednesday, February 27, 2008 11:48 AM
Subject: [jawsscripts] Re: Control Alt Delete script
Hi Michael,
I'm lost here. What is Alt+Control+delete supposed to do when at the
Windows Logon Screen?
When I type it, it doesn't do anything.
What are you trying to achieve with this script?
Reed
-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Michael Lloyd
Sent: 2008/02/26 11:03
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] Control Alt Delete script
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
__________
View the list's information and change your settings at
http://www.freelists.org/list/jawsscripts
__________
View the list's information and change your settings at
http://www.freelists.org/list/jawsscripts
__________
View the list's information and change your settings at
http://www.freelists.org/list/jawsscripts
__________
View the list's information and change your settings at
http://www.freelists.org/list/jawsscripts
__________
View the list's information and change your settings at
http://www.freelists.org/list/jawsscripts
__________
View the list's information and change your settings at
http://www.freelists.org/list/jawsscripts
__________
View the list's information and change your settings at
http://www.freelists.org/list/jawsscripts
- References:
- [jawsscripts] Re: Control Alt Delete script
- From: Trent, Mike
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
Hi Michael,I'm lost here. What is Alt+Control+delete supposed to do when at the Windows Logon Screen?
When I type it, it doesn't do anything. What are you trying to achieve with this script? Reed -----Original Message-----From: jawsscripts-bounce@xxxxxxxxxxxxx [mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Michael Lloyd
Sent: 2008/02/26 11:03 To: jawsscripts@xxxxxxxxxxxxx Subject: [jawsscripts] Control Alt Delete script 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
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
(yes, don't go there). Everything else works apart from the alt control delete bit. Have put
script in Default.jss. Can't do alt control delete from a script in
either. Any thoughts. Mike Script ReplaceAltControlDelete () ;keystroke F12 ;alternative for control alt delete on Windows Logon page var string sRNlet sRN = GetWindowName (GetRealWindow (GetFocus ())) If StringContains (sRN, "Windows Logon") then SayString ("yip") ;Which it
{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
__________View the list's information and change your settings at http://www.freelists.org/list/jawsscripts
- [jawsscripts] Re: Control Alt Delete script
- From: Trent, Mike