Hi, Originally sent to the bounce address. Andrew. From: Denning John W [mailto:John.W.Denning@irs.gov] Sent: 02 April 2009 18:40 To: blind-sysadmins-bounces@lists.hodgsonfamily.org Subject: Web Run As shortcut I need to make a shortcut, or a command line I can put in a bat file to open a web page using Run As to run I.E. What is the syntax of such a Run As command line? I've looked at several Run As references, but can't seem to find something so simple. John Denning -JD- System Administrator ISA Group 4, Configuration Mgt & Refresh Support TOD 6:00-14:30 A+ MCP MCSA MCSE ITIL 770-455-2033 404-788-2780 cell
have you tried the following line in your file: --- start http://www.yoursite.com --- Hope this helps, /David -----Original Message----- From: blind-sysadmins-bounces@lists.hodgsonfamily.org [mailto:blind-sysadmins-bounces@lists.hodgsonfamily.org] On Behalf Of Andrew Hodgson Sent: Thursday, April 02, 2009 11:45 AM To: Blind sysadmins list Subject: [Blind-sysadmins] FW: Web Run As shortcut Hi, Originally sent to the bounce address. Andrew. From: Denning John W [mailto:John.W.Denning@irs.gov] Sent: 02 April 2009 18:40 To: blind-sysadmins-bounces@lists.hodgsonfamily.org Subject: Web Run As shortcut I need to make a shortcut, or a command line I can put in a bat file to open a web page using Run As to run I.E. What is the syntax of such a Run As command line? I've looked at several Run As references, but can't seem to find something so simple. John Denning -JD- System Administrator ISA Group 4, Configuration Mgt & Refresh Support TOD 6:00-14:30 A+ MCP MCSA MCSE ITIL 770-455-2033 404-788-2780 cell _______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
From the start menu/run you could use:
iexplore http://www.google.com/
From both the start menu/run and the command prompt/bat file, you could use:
"C:\Program Files\Internet Explorer\iexplore.exe" http://www.google.com/ Using "start http://www.google.com/" might start the default browser that might not be IE, but I am not sure about this. Octavian ----- Original Message ----- From: "Andrew Hodgson" <andrew@hodgsonfamily.org> To: "Blind sysadmins list" <blind-sysadmins@lists.hodgsonfamily.org> Sent: Thursday, April 02, 2009 9:45 PM Subject: [Blind-sysadmins] FW: Web Run As shortcut
Hi,
Originally sent to the bounce address.
Andrew.
From: Denning John W [mailto:John.W.Denning@irs.gov] Sent: 02 April 2009 18:40 To: blind-sysadmins-bounces@lists.hodgsonfamily.org Subject: Web Run As shortcut
I need to make a shortcut, or a command line I can put in a bat file to open a web page using Run As to run I.E. What is the syntax of such a Run As command line? I've looked at several Run As references, but can't seem to find something so simple.
John Denning -JD- System Administrator ISA Group 4, Configuration Mgt & Refresh Support TOD 6:00-14:30 A+ MCP MCSA MCSE ITIL 770-455-2033 404-788-2780 cell
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
yes, it would use the default browser. thanks for clarifying my message. /David -----Original Message----- From: blind-sysadmins-bounces@lists.hodgsonfamily.org [mailto:blind-sysadmins-bounces@lists.hodgsonfamily.org] On Behalf Of Octavian Râsnita Sent: Thursday, April 02, 2009 1:13 PM To: Blind sysadmins list Subject: Re: [Blind-sysadmins] FW: Web Run As shortcut
From the start menu/run you could use:
iexplore http://www.google.com/
From both the start menu/run and the command prompt/bat file, you could use:
"C:\Program Files\Internet Explorer\iexplore.exe" http://www.google.com/ Using "start http://www.google.com/" might start the default browser that might not be IE, but I am not sure about this. Octavian ----- Original Message ----- From: "Andrew Hodgson" <andrew@hodgsonfamily.org> To: "Blind sysadmins list" <blind-sysadmins@lists.hodgsonfamily.org> Sent: Thursday, April 02, 2009 9:45 PM Subject: [Blind-sysadmins] FW: Web Run As shortcut
Hi,
Originally sent to the bounce address.
Andrew.
From: Denning John W [mailto:John.W.Denning@irs.gov] Sent: 02 April 2009 18:40 To: blind-sysadmins-bounces@lists.hodgsonfamily.org Subject: Web Run As shortcut
I need to make a shortcut, or a command line I can put in a bat file to open a web page using Run As to run I.E. What is the syntax of such a Run As command line? I've looked at several Run As references, but can't seem to find something so simple.
John Denning -JD- System Administrator ISA Group 4, Configuration Mgt & Refresh Support TOD 6:00-14:30 A+ MCP MCSA MCSE ITIL 770-455-2033 404-788-2780 cell
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
I found it, it is: @echo off C:\WINDOWS\system32\runas.exe /user:domain\user "C:\Program Files\Internet Explorer\iexplore.exe (Amd the full URL) My hang up was I was thinking it was iexplorer that needed started and runas was a switch. It's more the other way round, start runas and the user and site are the arguments. I do love command line, but get lost easily. -JD- ISA Group - 4 404-788-2780 mobile 770-455-2033 desk -----Original Message----- From: blind-sysadmins-bounces@lists.hodgsonfamily.org [mailto:blind-sysadmins-bounces@lists.hodgsonfamily.org] On Behalf Of Octavian Râsnita Sent: Thursday, April 02, 2009 4:13 PM To: Blind sysadmins list Subject: Re: [Blind-sysadmins] FW: Web Run As shortcut
From the start menu/run you could use:
iexplore http://www.google.com/
From both the start menu/run and the command prompt/bat file, you could use:
"C:\Program Files\Internet Explorer\iexplore.exe" http://www.google.com/ Using "start http://www.google.com/" might start the default browser that might not be IE, but I am not sure about this. Octavian ----- Original Message ----- From: "Andrew Hodgson" <andrew@hodgsonfamily.org> To: "Blind sysadmins list" <blind-sysadmins@lists.hodgsonfamily.org> Sent: Thursday, April 02, 2009 9:45 PM Subject: [Blind-sysadmins] FW: Web Run As shortcut
Hi,
Originally sent to the bounce address.
Andrew.
From: Denning John W [mailto:John.W.Denning@irs.gov] Sent: 02 April 2009 18:40 To: blind-sysadmins-bounces@lists.hodgsonfamily.org Subject: Web Run As shortcut
I need to make a shortcut, or a command line I can put in a bat file to open a web page using Run As to run I.E. What is the syntax of such a Run As command line? I've looked at several Run As references, but can't seem to find something so simple.
John Denning -JD- System Administrator ISA Group 4, Configuration Mgt & Refresh Support TOD 6:00-14:30 A+ MCP MCSA MCSE ITIL 770-455-2033 404-788-2780 cell
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
I found it, it is: @echo off C:\WINDOWS\system32\runas.exe /user:domain\user "C:\Program Files\Internet Explorer\iexplore.exe (Amd the full URL) My hang up was I was thinking it was iexplorer that needed started and runas was a switch. It's more the other way round, start runas and the user and site are the arguments. I do love command line, but get lost easily. -JD- ISA Group - 4 404-788-2780 mobile 770-455-2033 desk -----Original Message----- From: blind-sysadmins-bounces@lists.hodgsonfamily.org [mailto:blind-sysadmins-bounces@lists.hodgsonfamily.org] On Behalf Of Octavian Râsnita Sent: Thursday, April 02, 2009 4:13 PM To: Blind sysadmins list Subject: Re: [Blind-sysadmins] FW: Web Run As shortcut
From the start menu/run you could use:
iexplore http://www.google.com/
From both the start menu/run and the command prompt/bat file, you could use:
"C:\Program Files\Internet Explorer\iexplore.exe" http://www.google.com/ Using "start http://www.google.com/" might start the default browser that might not be IE, but I am not sure about this. Octavian ----- Original Message ----- From: "Andrew Hodgson" <andrew@hodgsonfamily.org> To: "Blind sysadmins list" <blind-sysadmins@lists.hodgsonfamily.org> Sent: Thursday, April 02, 2009 9:45 PM Subject: [Blind-sysadmins] FW: Web Run As shortcut
Hi,
Originally sent to the bounce address.
Andrew.
From: Denning John W [mailto:John.W.Denning@irs.gov] Sent: 02 April 2009 18:40 To: blind-sysadmins-bounces@lists.hodgsonfamily.org Subject: Web Run As shortcut
I need to make a shortcut, or a command line I can put in a bat file to open a web page using Run As to run I.E. What is the syntax of such a Run As command line? I've looked at several Run As references, but can't seem to find something so simple.
John Denning -JD- System Administrator ISA Group 4, Configuration Mgt & Refresh Support TOD 6:00-14:30 A+ MCP MCSA MCSE ITIL 770-455-2033 404-788-2780 cell
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
All, I wish to find some accessible diagnostics tools which report on the following informaiton: 1. Memory utilistation of applications on a on going bases. This includes processes and services. 2. CPU utilisation monitoring of applications same as above. Basically, I have aplications which are taking long periods of times to respond for no reason. So I would like to get tools to identify the cause of th eproblem. Sean ----- Original Message ----- From: "Andrew Hodgson" <andrew@hodgsonfamily.org> To: "Blind sysadmins list" <blind-sysadmins@lists.hodgsonfamily.org> Sent: Friday, April 03, 2009 5:45 AM Subject: [Blind-sysadmins] FW: Web Run As shortcut
Hi,
Originally sent to the bounce address.
Andrew.
From: Denning John W [mailto:John.W.Denning@irs.gov] Sent: 02 April 2009 18:40 To: blind-sysadmins-bounces@lists.hodgsonfamily.org Subject: Web Run As shortcut
I need to make a shortcut, or a command line I can put in a bat file to open a web page using Run As to run I.E. What is the syntax of such a Run As command line? I've looked at several Run As references, but can't seem to find something so simple.
John Denning -JD- System Administrator ISA Group 4, Configuration Mgt & Refresh Support TOD 6:00-14:30 A+ MCP MCSA MCSE ITIL 770-455-2033 404-788-2780 cell
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
You can use the Task Manager for that. Press Control+Shift+Escape. If you want to check more detailed which parts of the program are slow or other things like this, there should be tools for doing this for all the programming languages. -- Octavian ----- Original Message ----- From: "Sean Murphy" <mhysnm1964@gmail.com> To: "Blind sysadmins list" <blind-sysadmins@lists.hodgsonfamily.org> Sent: Thursday, April 02, 2009 11:30 PM Subject: Re: [Blind-sysadmins] FW: Web Run As shortcut
All,
I wish to find some accessible diagnostics tools which report on the following informaiton:
1. Memory utilistation of applications on a on going bases. This includes processes and services.
2. CPU utilisation monitoring of applications same as above.
Basically, I have aplications which are taking long periods of times to respond for no reason. So I would like to get tools to identify the cause of th eproblem.
Sean
----- Original Message ----- From: "Andrew Hodgson" <andrew@hodgsonfamily.org> To: "Blind sysadmins list" <blind-sysadmins@lists.hodgsonfamily.org> Sent: Friday, April 03, 2009 5:45 AM Subject: [Blind-sysadmins] FW: Web Run As shortcut
Hi,
Originally sent to the bounce address.
Andrew.
From: Denning John W [mailto:John.W.Denning@irs.gov] Sent: 02 April 2009 18:40 To: blind-sysadmins-bounces@lists.hodgsonfamily.org Subject: Web Run As shortcut
I need to make a shortcut, or a command line I can put in a bat file to open a web page using Run As to run I.E. What is the syntax of such a Run As command line? I've looked at several Run As references, but can't seem to find something so simple.
John Denning -JD- System Administrator ISA Group 4, Configuration Mgt & Refresh Support TOD 6:00-14:30 A+ MCP MCSA MCSE ITIL 770-455-2033 404-788-2780 cell
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
Hi, Yes, I am sure programming tools have these tools. But I don't have them and cannot afford $1000 for a programming suite which I am not going to use. Any ohter resources out there? Sean ----- Original Message ----- From: "Octavian Rasnita" <orasnita@gmail.com> To: "Blind sysadmins list" <blind-sysadmins@lists.hodgsonfamily.org> Sent: Friday, April 03, 2009 5:37 PM Subject: Re: [Blind-sysadmins] FW: Web Run As shortcut
You can use the Task Manager for that. Press Control+Shift+Escape.
If you want to check more detailed which parts of the program are slow or other things like this, there should be tools for doing this for all the programming languages.
-- Octavian
----- Original Message ----- From: "Sean Murphy" <mhysnm1964@gmail.com> To: "Blind sysadmins list" <blind-sysadmins@lists.hodgsonfamily.org> Sent: Thursday, April 02, 2009 11:30 PM Subject: Re: [Blind-sysadmins] FW: Web Run As shortcut
All,
I wish to find some accessible diagnostics tools which report on the following informaiton:
1. Memory utilistation of applications on a on going bases. This includes processes and services.
2. CPU utilisation monitoring of applications same as above.
Basically, I have aplications which are taking long periods of times to respond for no reason. So I would like to get tools to identify the cause of th eproblem.
Sean
----- Original Message ----- From: "Andrew Hodgson" <andrew@hodgsonfamily.org> To: "Blind sysadmins list" <blind-sysadmins@lists.hodgsonfamily.org> Sent: Friday, April 03, 2009 5:45 AM Subject: [Blind-sysadmins] FW: Web Run As shortcut
Hi,
Originally sent to the bounce address.
Andrew.
From: Denning John W [mailto:John.W.Denning@irs.gov] Sent: 02 April 2009 18:40 To: blind-sysadmins-bounces@lists.hodgsonfamily.org Subject: Web Run As shortcut
I need to make a shortcut, or a command line I can put in a bat file to open a web page using Run As to run I.E. What is the syntax of such a Run As command line? I've looked at several Run As references, but can't seem to find something so simple.
John Denning -JD- System Administrator ISA Group 4, Configuration Mgt & Refresh Support TOD 6:00-14:30 A+ MCP MCSA MCSE ITIL 770-455-2033 404-788-2780 cell
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
If the program is made in perl, there are tools that can be downloaded and installed for free. I gave an general answer because I don't know what language is that program made with. -- Octavian ----- Original Message ----- From: "Sean Murphy" <mhysnm1964@gmail.com> To: "Blind sysadmins list" <blind-sysadmins@lists.hodgsonfamily.org> Sent: Friday, April 03, 2009 1:01 PM Subject: [Blind-sysadmins] Performance tools.
Hi,
Yes, I am sure programming tools have these tools. But I don't have them and cannot afford $1000 for a programming suite which I am not going to use.
Any ohter resources out there?
Sean ----- Original Message ----- From: "Octavian Rasnita" <orasnita@gmail.com> To: "Blind sysadmins list" <blind-sysadmins@lists.hodgsonfamily.org> Sent: Friday, April 03, 2009 5:37 PM Subject: Re: [Blind-sysadmins] FW: Web Run As shortcut
You can use the Task Manager for that. Press Control+Shift+Escape.
If you want to check more detailed which parts of the program are slow or other things like this, there should be tools for doing this for all the programming languages.
-- Octavian
----- Original Message ----- From: "Sean Murphy" <mhysnm1964@gmail.com> To: "Blind sysadmins list" <blind-sysadmins@lists.hodgsonfamily.org> Sent: Thursday, April 02, 2009 11:30 PM Subject: Re: [Blind-sysadmins] FW: Web Run As shortcut
All,
I wish to find some accessible diagnostics tools which report on the following informaiton:
1. Memory utilistation of applications on a on going bases. This includes processes and services.
2. CPU utilisation monitoring of applications same as above.
Basically, I have aplications which are taking long periods of times to respond for no reason. So I would like to get tools to identify the cause of th eproblem.
Sean
----- Original Message ----- From: "Andrew Hodgson" <andrew@hodgsonfamily.org> To: "Blind sysadmins list" <blind-sysadmins@lists.hodgsonfamily.org> Sent: Friday, April 03, 2009 5:45 AM Subject: [Blind-sysadmins] FW: Web Run As shortcut
Hi,
Originally sent to the bounce address.
Andrew.
From: Denning John W [mailto:John.W.Denning@irs.gov] Sent: 02 April 2009 18:40 To: blind-sysadmins-bounces@lists.hodgsonfamily.org Subject: Web Run As shortcut
I need to make a shortcut, or a command line I can put in a bat file to open a web page using Run As to run I.E. What is the syntax of such a Run As command line? I've looked at several Run As references, but can't seem to find something so simple.
John Denning -JD- System Administrator ISA Group 4, Configuration Mgt & Refresh Support TOD 6:00-14:30 A+ MCP MCSA MCSE ITIL 770-455-2033 404-788-2780 cell
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
Would Process Monitor as described at http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx be a start? I've used it in the past to see what exactly the system is doing with slow applications, and left a couple of developers with somewhat red faces. George. -----Original Message----- From: blind-sysadmins-bounces@lists.hodgsonfamily.org [mailto:blind-sysadmins-bounces@lists.hodgsonfamily.org] On Behalf Of Sean Murphy Sent: 02 April 2009 21:30 To: Blind sysadmins list Subject: Re: [Blind-sysadmins] FW: Web Run As shortcut All, I wish to find some accessible diagnostics tools which report on the following informaiton: 1. Memory utilistation of applications on a on going bases. This includes processes and services. 2. CPU utilisation monitoring of applications same as above. Basically, I have aplications which are taking long periods of times to respond for no reason. So I would like to get tools to identify the cause of th eproblem. Sean
Would Process Monitor as described at http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx be a start? I've used it in the past to see what exactly the system is doing with slow applications, and left a couple of developers with somewhat red faces. George. -----Original Message----- From: blind-sysadmins-bounces@lists.hodgsonfamily.org [mailto:blind-sysadmins-bounces@lists.hodgsonfamily.org] On Behalf Of Sean Murphy Sent: 02 April 2009 21:30 To: Blind sysadmins list Subject: Re: [Blind-sysadmins] FW: Web Run As shortcut All, I wish to find some accessible diagnostics tools which report on the following informaiton: 1. Memory utilistation of applications on a on going bases. This includes processes and services. 2. CPU utilisation monitoring of applications same as above. Basically, I have aplications which are taking long periods of times to respond for no reason. So I would like to get tools to identify the cause of th eproblem. Sean
George, thanks for that I shall check it out. Sean ----- Original Message ----- From: "George Bell" <george@techno-vision.co.uk> To: "Blind sysadmins list" <blind-sysadmins@lists.hodgsonfamily.org> Sent: Sunday, April 05, 2009 12:12 AM Subject: [Blind-sysadmins] System Monitoring Tools: Was "Web Run As shortcut"
Would Process Monitor as described at http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx be a start?
I've used it in the past to see what exactly the system is doing with slow applications, and left a couple of developers with somewhat red faces.
George.
-----Original Message----- From: blind-sysadmins-bounces@lists.hodgsonfamily.org [mailto:blind-sysadmins-bounces@lists.hodgsonfamily.org] On Behalf Of Sean Murphy Sent: 02 April 2009 21:30 To: Blind sysadmins list Subject: Re: [Blind-sysadmins] FW: Web Run As shortcut
All,
I wish to find some accessible diagnostics tools which report on the following informaiton:
1. Memory utilistation of applications on a on going bases. This includes processes and services.
2. CPU utilisation monitoring of applications same as above.
Basically, I have aplications which are taking long periods of times to respond for no reason. So I would like to get tools to identify the cause of th eproblem.
Sean
_______________________________________________ Blind-sysadmins mailing list Blind-sysadmins@lists.hodgsonfamily.org http://lists.hodgsonfamily.org/mailman/listinfo/blind-sysadmins
participants (7)
-
Andrew Hodgson
-
David Edick
-
Denning John W
-
George Bell
-
Octavian Rasnita
-
Octavian Râsnita
-
Sean Murphy