runas is a Windows command which allows a user to run a specific program under the credentials of another user.
0
votes
0answers
17 views
Using “runas” to execute acceptance tests from CruiseControl.net
We're developing a web-based intranet app that uses Active Directory to authenticate users. User's don't login to the app. We simply get their AD credentials from the web browser.
We've written a ...
1
vote
0answers
64 views
C# - Run process as administrator from a non-admin application
From an application that is not being run as administrator, I have the following code:
ProcessStartInfo proc = new ProcessStartInfo();
proc.WindowStyle = ProcessWindowStyle.Normal;
proc.FileName = ...
0
votes
0answers
15 views
Network Adapter resource and properties disabled
We are working on Non Local admin environment and the Network Adapter resources was disable for editing, either to unbind or clicked into the properties to install/uninstall:
This are the network ...
0
votes
0answers
31 views
Open firefox as another user [closed]
I'm trying to make a command that opens firefox completely as another windows 7 user (with the other user's cookies, history etc.).
I've tried "runas /u:OtherUser firefox" but it opens firefox with ...
0
votes
1answer
70 views
RunAs username from variable
I am writing a script to run IE as a different user. At the beginning script displays Input, and I would like to use value from input as a username.
Option explicit
Dim Input, europe
Input = ...
1
vote
2answers
171 views
How to complete the RUNAS command in one line [closed]
This SO question suggests a command which looks as if it should work but doesn't:
http://stackoverflow.com/a/12456756/1333582
The command would be:
echo PaSsWoRd | runas /user:Administrator cmd
...
1
vote
1answer
63 views
Launching programs as another user on Mac OS X
In a Mac OS X with more than one users , is there any API or piece of code that Run a process as another user in Objective C?
1
vote
1answer
227 views
Powershell: Discover default network credentials when launched from runas /netonly
I am looking for a way to capture the network credentials of the current session into a variable that I can pass later...
The point is to execute commands on a foreign domain that I have account ...
1
vote
1answer
72 views
elevated diskpart output
I need to run diskpart in my python3 script under Windows 7 and capture its output. I run the script in elevated mode; it runs but I can't capture the output and thus can't determine if it was ...
0
votes
0answers
31 views
Run two instances of installer, one as admin the other as user
This question is close to my own:
How to Launch an Exe at User Level from a Higher Level
My installer runs elevated ( manifest file- "requireAdministrator" ).
I want to launch another instance ...
0
votes
3answers
212 views
runing console app as always as administrator
i have a console application that was developed to be called by a erp software.
They call my app inside the erp and when they do it, i always get errors related to the insufficient permission to do ...
0
votes
1answer
132 views
What happened to the “Run as different user” for Office 2013, Word, Excel no longer show it?
When I shift + right click the shortcut for Word 2013, the "Run as different user" is not available. It works for non Office 2013 shortcuts.
How can I re-enable this for Office 2013 products?
2
votes
1answer
81 views
How can a program (.NET) tell if it is being run as a different user?
Is there a way to detect from my .NET program whether it is being run as the desktop user normally or being run as a different user using the "run as a different user" menu option/runas command?
1
vote
1answer
61 views
Run windows application for another user
I'd like to run a windows application in the context of another user. I have an administrator and several user accounts in one machine and I would like to have the administrator start certain ...
2
votes
1answer
624 views
Batch file: run command in a cmd.exe launched as a different user using batch file
Hi Folks I am a newbie to batch files and I am facing a challenge. I have to do following steps using a batch file automatically. Steps 1 and 3 I am able to figure out, however for step 2 i need your ...
0
votes
3answers
4k views
Batch Script to Run as Administrator
I'm writing a client/server checking program but it needs to run as Administrator.
I want this to run silently on my network and users, and I don't want the "Run as" Administrator" prompt.
Is there ...
0
votes
1answer
65 views
cannot make sqlcmd work after runas
I followed a few examples here, but I still can not get my sqlcmd work after runas.
I can make it work with two steps:
Step one: Use runas to login into a new login and open a command prompt:
...
0
votes
0answers
116 views
Installing certificate with admin to other user's Personal location
I'm trying to install PFX certificate on some user's account while logged as the admin.
When doing certutil -p Pass123 -v -f -importPFX trustme.pfx I'm able to add the certificate to the admin's ...
0
votes
1answer
255 views
how to debug vbscript ShellExecute
I have a small vbs script:
Set UAC = CreateObject("Shell.Application")
UAC.ShellExecute "C:\bin\addtopath.bat", chr(34) & "C:\bin" & chr(34), "", "runas", 1
C:\bin\addtopath.bat exists and ...
-1
votes
1answer
359 views
How to get rid of run as administration requirement in Windows 7 for Visual Studio [closed]
How to get rid of run as administration requirement in Windows 7 for Visual Studio and command prompt? There was one setting on user console or something (one of my ex-colleague showed me in the ...
3
votes
2answers
365 views
Run as Current logged User
I have two executables. My first is running under administrative privileges. I want to start another process with current logged in user. I don't know password of the current logged in user. How do I ...
0
votes
0answers
74 views
ShellExecuteEx + runas. Need control over created process creation flags and desktop name
All
Is there any way to pass creation flags(for example, to create process as SUSPENDED) and desktop name to ShellExecuteEx() API called with "runas" verb to run elevated process?
Thanks in advance,
...
0
votes
0answers
220 views
PowerShell RunAs Syntax
I am trying to Invoke-Item using the RunAs command from within the script file to load Postgresql. I can't figure out the syntax to get it to work. This is the line.
RunAs /env /user:myserver\$dbUser ...
0
votes
1answer
154 views
runas does not allow complex arguments?
I have an app that I'm trying to run elevated on windows 7 and windows xp thin clients but I cant seem to get the runas.exe cmd line correct. I know I need the backslash escape character in there so ...
1
vote
2answers
529 views
Using runas command to remotely logging into SQL Server
I am stuck at this point using the runas command. I am trying to log into a remote SQL Server instance using Windows Authentication on that server. I am using this command -
runas /netonly ...
1
vote
1answer
284 views
Impersonate remote user in vb.net to access MS SQL Server
I'm trying to impersonate a domain user over vpn. I am able to run management studio from the command prompt using the RUNAS command. However, I can't do the same with my vb application (.net 4.5, ...
0
votes
1answer
329 views
connect compmgmnt.msc to remote host using c#
how can i use compmgmnt.msc to remote host using c#.
i found this...
execute this command in "cmd.exe" it is working and ask you for The password:
/user:administrator \"mmc.exe compmgmt.msc ...
0
votes
1answer
116 views
Run administrative process in Windows7 (C#)
I need to (on user demand) run an admin process several times from my app.
I would like for users to enter admin credentials only once - so I would have to somehow store the credentials.
However I ...
0
votes
1answer
921 views
Batch File⦠running as administrator [closed]
I successfully created a batch file to flush my DNSā¦
I have added a pause, I noticed in the title bar of the console window⦠It's not running as administrator.
I've already tried a couple of ...
0
votes
0answers
151 views
How to find that 'runas' execution finished?
I use ruby 1.9.3p194 (2012-04-20) [i386-mingw32] on Windows7. Recently I upgraded from Windows XP where I didn't have to run commands as administrator so I wasn't facing such issue.
To do mySQL ...
1
vote
0answers
109 views
Removing the 'Run As' popup in Win XP while launching an desktop app from IE
We have developed an activex which launches a Desktop application from the Web application.
It works fine with Windows 7.
But in Windows XP whenever we try to launch the desktop application from web ...
1
vote
1answer
769 views
Implementing runas in C#
How can I implement
runas /noprofile /netonly /user:@
using C#.
System.Diagnostics.ProcessStartInfo have fields like user, domain, password, verb (where we can use runas) but how to set netonly. ...
0
votes
1answer
237 views
Win7 Runas Administrator rights but user can kill that process
I use win7 Pro 32bit. I have a c:\record.bat file. This bat file run ffmpeg.exe with some parameters to capture desktop screen and save to video .mp4 files.
When I logon with Administrator account, ...
0
votes
0answers
37 views
RunAsDate app for Windows Mobile 5?
There is a handy app called RunaAsDate for Windows O/S, but I couldn't find such an app for Windows Mobile 5. I need it to extend the trial version of an app called SprintDB Pro 4, because it seems ...
1
vote
1answer
86 views
Windows running desktops simultaneously [closed]
I have the following problem. There's an application which's goal is to:
Create new user on a Windows machine.
Logon that user.
Start an application on the logged user's desktop.
Then if there ...
9
votes
2answers
1k views
Elipse: “Run as” does not display the list elements (such as “Run as android application”)
this moring I've updated my Ubuntu version and now I can't run my application from eclipse.
The problem is that the list that appears when I click on "Run As" is empty and I can't run anything.
How ...
1
vote
2answers
623 views
How can I read my db files on my device, without using a computer
I am just starting out developing on android and currently only code directly on my devices (both galaxy nexus and nexus 7) using the amazing app AIDE.
Looking on here there are lots of answers for ...
0
votes
1answer
268 views
C++ Windows - fill password field of system(“run as”)
I know there are many other ways to do this but I want to know how to fill in the password question of the windows the run as command automatically.
system("runas /user:\"benedikt\" \"xy.exe\"");
...
0
votes
0answers
12 views
Is the profile of the user loaded when running a service as another user?
Basically I want to new if there is any difference between using WinAPI functions like CreateProcessWithLogonW from a Windows service compared to just changing the user that runs the service. Will the ...
3
votes
1answer
1k views
Set ProcessStartInfo.EnvironmentVariables when Verb=“runas”
I am developing a C# application.
I need to create and pass variables to a new process and I am doing it using ProcessStartInfo.EnvironmentVariables.
The new process must run elevated so I am using ...
0
votes
0answers
295 views
Runas not allowing complicated commands
I've been working on this SVN post-commit hook batch file for awhile now, and I've encountered yet another problem. This is all done on a Windows 2003 server machine.
I'm trying to execute this line ...
0
votes
2answers
2k views
start batch file from within vb.net as admin
In my application, I need to run a batch file as admin for it to function.
I'm using this so far but I cant remember how to use the runas feature which allows it to run with admin rights.
...
1
vote
2answers
2k views
Run file as admin using vb.net [duplicate]
Possible Duplicate:
start batch file from within vb.net as admin
I have created an application. I need to start a program using vb.net as administrator.
I know you can use runas and I did ...
0
votes
1answer
3k views
run cmd.exe as administrator in a script
I have a script that I need to run as Administrator just as I would right click on cmd.exe and click Run As Administrator.
Currently this is what I have:
Call WSHShell.Run("cmd.exe /K netdom ...
1
vote
1answer
4k views
Windows CMD Batch File Run A Command as Administrator
I have a batch file where I want to run some commands, but not all of them as administrator. I do not want to run the command prompt as administrator or run the entire batch job as administrator. An ...
0
votes
1answer
3k views
Defining connection string using windows authentication across domains to access SQL server
I have problems defining the connection string in a windows service application. The SQL server and windows service are on different domains, and thats the problem. However, i know this is possible, ...
0
votes
3answers
1k views
C#: Start process as the “real” administrator with hard coded privileges
I need to install different setups silently with administrator privileges.
I have to hard code the privileges because the users don“t know username and password to install the setups themselfes.
I ...
0
votes
3answers
939 views
Auto Launch application after Installation in default user (not in SYSTEM user)
I have created a Simple Windows Application, and its Installer too (Setup project).
Since I want to AutoLaunch the Application after Installation, I added this script in Installer.cs
public override ...
2
votes
1answer
149 views
How to span child process with administrative privileges from parent process with administrate privileges in C#?
How to spawn child process with administrative privileges without using verb=runas?
The parent process has administrative privileges. And I would like to put output (not just plain text, but ...
0
votes
1answer
154 views
How can I write to a program after executing it in a .bat file?
I need to build a bat file to run the Runas command.
Here is my command
Runas /user:Administrator "psexec \\\\***.***.***.*** -accepteula -i -u **** -p **** \"C:\\Program Files\\****\\setup.bat\""
...


