Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista Security > Running a batch file

Reply
Thread Tools Display Modes

Running a batch file

 
 
Timbo
Guest
Posts: n/a

 
      09-25-2009

Please, please can some one help me...

I am trying to run a batch file in vista as an administrator. I know I can
use the RUNAS command, but this prompts me for a password. (and what
password is a mystery to me as it's a non domain machine and there isn't a
user called administrator, but that's besides the point). What I am
looking to do is to replicate the behaviour of Right Clicking on the batch
file and clicking 'Run as administrator', then the security box comes up -
this is fine, that is EXACTLY what I want to happen. The user already has
adminitrator privilages and I understand that I'll never get around the
security box coming up - I don't mind this, but I can't seem to find a way
of replicating this.

Any ideas will be greatfully received.

Thanks

Tim


 
Reply With Quote
 
 
 
 
Peter Foldes
Guest
Posts: n/a

 
      09-25-2009
Timbo

You are using OE to post here. Is that the machine in question or is it a Vista Home
which cannot accomplish what you are asking

--
Peter

Please Reply to Newsgroup for the benefit of others
Requests for assistance by email can not and will not be acknowledged.

"Timbo" <> wrote in message news:...
> Please, please can some one help me...
>
> I am trying to run a batch file in vista as an administrator. I know I can use
> the RUNAS command, but this prompts me for a password. (and what password is a
> mystery to me as it's a non domain machine and there isn't a user called
> administrator, but that's besides the point). What I am looking to do is to
> replicate the behaviour of Right Clicking on the batch file and clicking 'Run as
> administrator', then the security box comes up - this is fine, that is EXACTLY
> what I want to happen. The user already has adminitrator privilages and I
> understand that I'll never get around the security box coming up - I don't mind
> this, but I can't seem to find a way of replicating this.
>
> Any ideas will be greatfully received.
>
> Thanks
>
> Tim
>


 
Reply With Quote
 
Bruce Chambers
Guest
Posts: n/a

 
      09-25-2009
Timbo wrote:
> Please, please can some one help me...
>
> I am trying to run a batch file in vista as an administrator. I know I can
> use the RUNAS command, but this prompts me for a password. (and what
> password is a mystery to me ....



It's the username/password for whatever account with local
administrative privileges that you wish to use to run the batch file.


>.... as it's a non domain machine....



Not relevant.


> and there isn't a
> user called administrator,


Of course, there is. However, by default in Vista, the Built-in
Administrator account is disabled.


> .... but that's besides the point). What I am
> looking to do is to replicate the behaviour of Right Clicking on the batch
> file and clicking 'Run as administrator', then the security box comes up -
> this is fine, that is EXACTLY what I want to happen. The user already has
> adminitrator privilages and I understand that I'll never get around the
> security box coming up - I don't mind this, but I can't seem to find a way
> of replicating this.
>


I believe (haven't had to do this for a long time, and don't have a
Vista machine handy to test it) that in order to use Runas.exe in the
batch file, you'd have to specify the user account, and then it will
prompt for a password as necessary.

RUNAS USAGE:

RUNAS [ [/noprofile | /profile] [/env] [/savecred | /netonly] ]
/user:<UserName> program

RUNAS [ [/noprofile | /profile] [/env] [/savecred] ]
/smartcard [/user:<UserName>] program

RUNAS /trustlevel:<TrustLevel> program

/noprofile specifies that the user's profile should not be
loaded.
This causes the application to load more quickly, but
can cause some applications to malfunction.
/profile specifies that the user's profile should be loaded.
This is the default.
/env to use current environment instead of user's.
/netonly use if the credentials specified are for remote
access only.
/savecred to use credentials previously saved by the user.
This option is not available on Windows 7 Home or
Windows 7
Starter Editions
and will be ignored.
/smartcard use if the credentials are to be supplied from a
smartcard.
/user <UserName> should be in form USER@DOMAIN or
DOMAIN\USER
/showtrustlevels displays the trust levels that can be used as
arguments
to /trustlevel.
/trustlevel <Level> should be one of levels enumerated
in /showtrustlevels.
program command line for EXE. See below for examples

Examples:
> runas /noprofile /user:mymachine\administrator cmd
> runas /profile /env /user:mydomain\admin "mmc %windir%\system32\dsa.msc"
> runas /env /user: "notepad \"my file.txt\""


NOTE: Enter user's password only when prompted.
NOTE: /profile is not compatible with /netonly.
NOTE: /savecred is not compatible with /smartcard.


--

Bruce Chambers

Help us help you:
http://www.catb.org/~esr/faqs/smart-questions.html

http://support.microsoft.com/default.aspx/kb/555375

They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety. ~Benjamin Franklin

Many people would rather die than think; in fact, most do. ~Bertrand Russell

The philosopher has never killed any priests, whereas the priest has
killed a great many philosophers.
~ Denis Diderot
 
Reply With Quote
 
Dave-UK
Guest
Posts: n/a

 
      09-25-2009

"Timbo" <> wrote in message news:...
> Please, please can some one help me...
>
> I am trying to run a batch file in vista as an administrator. I know I can
> use the RUNAS command, but this prompts me for a password. (and what
> password is a mystery to me as it's a non domain machine and there isn't a
> user called administrator, but that's besides the point). What I am
> looking to do is to replicate the behaviour of Right Clicking on the batch
> file and clicking 'Run as administrator', then the security box comes up -
> this is fine, that is EXACTLY what I want to happen. The user already has
> adminitrator privilages and I understand that I'll never get around the
> security box coming up - I don't mind this, but I can't seem to find a way
> of replicating this.
>
> Any ideas will be greatfully received.
>
> Thanks
>
> Tim
>
>


Try creating a shortcut to the batch file.
Right-click the shortcut and select Properties.
On the Shortcut tab select Advanced.
Tick 'Run as Administrator' , Ok and Apply.
Run the shortcut.



 
Reply With Quote
 
Bob
Guest
Posts: n/a

 
      09-25-2009
http://www.msfn.org/board/lofiversio...hp/t97318.html


"Timbo" <> wrote in message
news:...
> Please, please can some one help me...
>
> I am trying to run a batch file in vista as an administrator. I know I
> can use the RUNAS command, but this prompts me for a password. (and what
> password is a mystery to me as it's a non domain machine and there isn't a
> user called administrator, but that's besides the point). What I am
> looking to do is to replicate the behaviour of Right Clicking on the batch
> file and clicking 'Run as administrator', then the security box comes up -
> this is fine, that is EXACTLY what I want to happen. The user already has
> adminitrator privilages and I understand that I'll never get around the
> security box coming up - I don't mind this, but I can't seem to find a way
> of replicating this.
>
> Any ideas will be greatfully received.
>
> Thanks
>
> Tim
>


 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
I am running a batch file for creating new users in the Active Dir Ikram Windows Server 3 09-02-2009 01:15 PM
Error Message 80070005 installing WMP Godenjoyer Windows Media Player 7 08-08-2009 09:18 PM
The Perfect Roaming Profiles Steve Audus, Chaucer BEC, Sheffield UK Windows Server 2 07-28-2008 11:45 AM
Strange File IO information Joe Pacelli Windows Server 0 11-03-2005 04:48 PM
Backup failures Steve Reichgut Windows Small Business Server 4 04-21-2004 02:11 AM



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 51 52 53 54 55 56 57 58 59