Tagged Questions
The runas tag has no wiki summary.
9
votes
5answers
4k views
How to set “Run this program as an administrator” programatically
I'm having a problem with good ol' bdeadmin.exe in Vista. First, let's get the predictable responses out of the way:
"You should not require your application to be elevated."
This one does. C'est la ...
7
votes
2answers
277 views
NAnt: executing NCover as administrator account - runas returns directly without waiting
My NAnt build runs as a non-admin as part of CruiseControl. But we have an NCover task which needs to run as an Administrator. For this we are thinking about using RunAs with an admin account.
The ...
6
votes
1answer
2k views
SQL Server Management Studio 2008 Runas user on different domain over VPN
I am currently trying to run SQL Server Management Studio 2008 as a user who is on a different domain. I noticed in other threads that running the following command from a batch script will do this ...
6
votes
4answers
5k views
How to build RUNAS /NETONLY functionality into a (C#/.NET/WinForms) program?
Our workstations are not members of the domain our SQL Server is on. (They're not actually on a domain at all - don't ask).
When we use SSMS or anything to connect to the SQL Server, we use RUNAS ...
5
votes
3answers
502 views
How do I 'runas' 'Network Service'?
Im trying to run a process as another account. I have the command...
runas "/user:WIN-CLR8YU96CL5\network service" "abwsx1.exe"
but then this asks for the password. However there is no password set ...
3
votes
1answer
64 views
“Runas” in ANT script
I have an application which needs to run with different user name.
I am trying to call "runas.exe" to call the batch file which calls my application.
When i tried this in command prompt it worked ...
3
votes
1answer
2k views
Win7 runas command: How to capture output of command that is run?
I'm trying (under Windows 7) to use the runas command to stop then restart a service. (Win7 requires admin privs to do this; thus the use of runas.)
Stopping the service works fine, but starting it ...
2
votes
1answer
224 views
Strange file-permissions if apps run as administrator
My program must be run as administrator and creates some files. If I run it manually by right-click on the icon and selecting "run as administrator" -- everything okay -- all users have access to ...
2
votes
1answer
289 views
Using @RunAs in my EJB Schedulers
I have many EJBs with my business methods. These methods use @RolesAllowed annotation to check if user can execute this method.
So I have an EJB Scheduler that calls these EJB methods. EJB schedulers ...
2
votes
2answers
356 views
Python subprocess.Popen as different user on Windows
What is the best manner of launching a subprocess as a different user in Python on Windows? Preferably XP and up, but if it works only on Vista and 7, I can live with that too.
2
votes
2answers
167 views
How can I force the “Run As” form to appear when someone tries to run my .net desktop application?
I need in to popup thr "Run As" form when user tries to run my application (C#.NET 4, on Win XP), that he could easily to log as other user. It may be in the application itself (in the C# code) or in ...
2
votes
2answers
516 views
WinAPI C - RunAsUser from REDMON_USER and REDMON_SESSIONID
I installed a PostScript printer driver and have setup REDMON (redmonnt.dll) for redirecting postscript output to my program. In my rather simple c program I capture the data from STDIN and I am able ...
2
votes
1answer
1k views
Runas Error: Unable to Acquire Password
I'm trying to start visual studio 2010 from command prompt using 'RUNAS' so that I can run it as a different user. I ran the following command:
runas /profile /user:myPCName/SomeUserName "C:\Program ...
2
votes
1answer
2k views
Getting “The RUNAS command is not supported.” when using runas on iexplore.exe
When attempting to run IE on Windows Server 2008 under different user accounts using the runas command I get the message "The RUNAS command is not supported." This command works fine for other ...
1
vote
3answers
49 views
What precisely does 'Run as administrator' do?
On Windows7, I have a command-line program that fails due to file write permission errors, and popping up annoying UAC dialogs every time I run command-line programs that are from 'unknown publisher'. ...
1
vote
1answer
60 views
Setting folder permissions using NSIS
I am attempting to set an open folder permission (i.e. Everyone has Full Access) using NSIS with RunAsW plugin that calls cscript.exe in an elevated user permissions.
As follows:
Function ReplaceEXE
...
1
vote
4answers
114 views
how to forbid process termination by regular user?
I cannot implement it as a windows service because my process has to interact with desktop and it's prohibited in Windows 7.
What is the simplest way to accomplish this? Starting under another ...
1
vote
3answers
166 views
Eclipse keep deploying to device in debug mode
After deploying to my device once for debugging, every time I try and "Run As" in regular mode it still attached the debugger. I have deleted the application from the device and it still does this. ...
1
vote
2answers
249 views
Running multiple apps as Admin
I've need to add a function to my C# WPF application to fix up certain registry entries.
This would be done by calling regsvr32.exe /s mylib.dll. Now, this should be easy to do from what I see using ...
1
vote
1answer
145 views
Registry Startup Entry with runas argument?
Is it possible to add a startup entry in the windows registry with a runas argument? So when it launches, it runs with the user specified?
1
vote
3answers
1k views
runas command in windows 7
I'm trying to run a batch file as admin. I found that I can use runas command which corresponds sudo command in Linux I think.
I tried
runas /noprofile /user:computername\adminuser "blah.bat ...
1
vote
2answers
195 views
RanAs - LocalNetwork, LocalService, LocalSystem
How can I run some exe, bat,cmd application under this buildin accounts, is it possible?
1
vote
4answers
5k views
Using Run As to run multiple instance of IE 8 doesn't seem to work
In the past, I've used the runas commandline to launch another instance if IE on a secondary account for testing, since our in-house web-app application uses windows authentication to identify a user. ...
1
vote
3answers
7k views
Run new process as different user in vb.net
I'm currently using a homegrown method to run a process as a different user in Vista, and I can't escape the feeling that's it hack-ish and less than ideal (in addition to the fact that it craps out ...
0
votes
0answers
9 views
How to manually run application as “IIS APPPOOL\MyAppPool” user [migrated]
I tried:
runas /noprofile /user:"IIS APPPOOL\MyAppPool" cmd.exe
But it asks me for a password.
And my admin password is not working there.
I get:
RUNAS ERROR: Unable to acquire user password
0
votes
1answer
62 views
How do you request administrator permissions using NSIS?
I am quite new with NSIS.
I am trying to request administrator permissions in order to run the installer, as it messes around a bit with registries.
My problem with "RequestExecutionLevel" and ...
0
votes
2answers
79 views
What is the equivalent Main method for Java in c#
in
Java, you can write:
public static void Main(String[] args) { }
and than "right click" => "run as" => "Java application" and it will run the current Main Method.
Any chance to have that in ...
0
votes
0answers
122 views
Runas C++ ,Run this program as Administrator into active directory
I am making a program in c++, the program that i need have the following characters
-Copy from a UNC path to a local path
-Run a Registry key
this is my code :
#include <cstdlib>
#include ...
0
votes
1answer
147 views
Windows runs as admin resets PATH.
I've been experiencing a frustrating issue with Windows Run as Administrator. I have a program A which needs to be run as administrator. I also have a program B which is used to manage dependencies of ...
0
votes
0answers
39 views
ErrorOk dialog while cancelling setup at runas admin dialog
I migrated my project into Installshield12 from Developer7, which was developed in Installscipt MSI.
The main cause to migrate the product is "To set Runas Admin Option to my product to install for ...
0
votes
1answer
122 views
RunAs Guest without being asked for password
I develop a simple custom browser, as part of installation procedure I will put image executable hijack (debugger) from registry on it.
So it would run as Guest (assuming it's not renamed). However, ...
0
votes
1answer
104 views
Problems using RunAs in TestComplete7
I have a problem with running RunAs mode in TestComplete7.
I use:
var p = TestedApps.MyApp.RunAs("domain", "user", "password");
but without success.
I get this error:
...
0
votes
1answer
120 views
How to validate whether runas command succeeded or not?
I am trying to launch an application with a specific user using runas command. I want to know whether the command is success or not. In manual scenario after entering the password, if I use echo ...
0
votes
1answer
336 views
ShellExecuteEx + runas + file access permissions
My app started new process by ShellExecuteEx with "runas" verb in order to get administrator privilegies. New process creates some files in the user folder, but files can't be readed by built-in ...
0
votes
2answers
1k views
Run explorer.exe as Administrator user within windows 7
I have windows 7 operating system and I have Administrator user credentials stored(known in advance).
I know we can run a program or .exe using "Runas" verb and launch a process but my question is ...
0
votes
1answer
516 views
How can I run IE with different users and specify a url?
I'm trying to create a console application to replace a batch file. The batch file prompted for a user and ran the following code...
RUNAS /user:USA\%usr% "C:\Program Files\Internet ...
0
votes
2answers
534 views
Pass Password to runas from Python
I need to run a file as another user without it prompting for a password, from my script. How is this done?
0
votes
2answers
505 views
Running Services.msc as a different User C#
I have a requirement to create a simple windows forms application that allows an admin user to manage the Services on remote servers. We don't want to give the admins the usernames and passwords to ...
0
votes
1answer
219 views
Windows Installer/RunAs shortcut
I have an application on a server in our domain; it's written in C# and uses the Word API. (The app runs through a list of medical reports, each a separate Word document, extracts information which ...
0
votes
1answer
526 views
Jboss5, unauthenticated calls to secured EJB via @RunAs
I'm attempting to call methods on a secured EJB from an unauthenticated source (a Message Driven Bean hooked up to a queue). The MDB has an EJB injected into it via @EJB, which is fine, but the ...
0
votes
1answer
475 views
CreateProcessWithLogonW and mmc.exe
I wrote a program, that should work like RunAs. It works fine, but i have one problem with it. If i want to run for example compmgmt.msc, then i should run mmc.exe and compmgmt.msc as it's parameter. ...
0
votes
3answers
313 views
How do I start an out of process COM server as another (more privileged) user
I would like to create a COM object that runs in an out of process COM server as another user. How do I do that?
I have control over the COM server source code and my COM client is the only one that ...
0
votes
1answer
358 views
SysTray Icon not visible after restart for a program running as administrator
I have a simplest form of an application, in which I am showing a SysTray Icon and adding the application in Startup items. Application is developed in C#. I want tray icon to be shown even after ...
0
votes
2answers
2k views
C#: Load roaming profile and execute program as user
In an application I need to execute other programs with another user's credentials. Currently I use System.Diagnostics.Process.Start to execute the program:
public static Process Start(
string ...
-2
votes
1answer
170 views
Delphi Shellexcute and windows run as option
My computer is a part of company domain,
I want to use the ShellApi's shellexcute function to run windows files with a given username and password (run as like), is it possible to include them in the ...