|
Hi All,
Having a strange issue with Windows Explorer on Windows 7 Professional.
When I try to open it up under different user credentials, I get the following error message:
Results are the same whether I try it from the context menu or by using runas...
Answer Snippets (Read the full thread at superuser):
I tried killing the explorer.exe process first and then running runas /user:DOMAIN\AnotherUser explorer.exe and it replaced....
In Windows XP it works like this:
runas /user might help.
The ownership on explorer.exe Other than that I'm stumped.
|
|
One thing that's annoyed me for a great while about administrating a Windows domain is trying to work primarily from a limited user account. Much of what I do on my workstation on a day to day basis doesn't require admin rights, so I prefer to run as ...
Started by Boden on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at serverfault):
I have a script that would launch runas(i) next objShell.ShellExecute app, args, "", "runas"
If you hate the constant prompt for creds, perhaps using something that can take....
Is a good method, but if it is causing you headaches, then... .
|
|
On Fri, 7 Aug 2009 04:12:05 -0400, "Alex K. Angelopoulos" <alex(dot) k(dot again)angelopoulos(at)gmail.com
Here's a demo script intended to simplify running HTAs elevated - and with
one change, the value of the ext variable, it can be applied to...
Started by Alex K. Angelopoulos on
, 8 posts
by 2 people.
Answer Snippets (Read the full thread at omgili):
: )
"Stefan Kanthak" <postmaster@[127.0.0.1]news:#9hpWK4FKHA.3800@TK2MSFTNGP04.phx.....
Inline.
Angelopoulos" <alex(dot) k(dot again)angelopoulos(at)gmail.com
Thanks; there were some handy things here .
On Fri, 7 Aug 2009 19:40:12 -0400, "Alex K .
|
Ask your Facebook Friends
|
I used to demote my user account so that it had no admin priveleges and used a 'sudo-like' trick where you create a shortcut to IE6 and enabled the 'Run with different credentials' option to open a shell window as local admin so I could install, uninstall...
Started by Brendan on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Try using a different file with runas:
%windir%\system3....
I can run cmd just fine, or my) a bit too integrated with windows, it cannot be opened with runas...
@ Huppie - runas is great, but launching explorer doesn't seem to work.
|
|
On Sat, 5 Sep 2009 07:32:01 -0700, Agent Sylar - First Class Hero <v_automation@mail.bg
Hello,
Can someona tell me how I can detect from my shell extension if folder it
is invoked from require elevated privileges?
Thank you in advance
--
mind...
Started by Agent Sylar - First Class Hero on
, 7 posts
by 3 people.
Answer Snippets (Read the full thread at omgili):
My shell extension just runs external executable, so I need to know how to
start it- as normal user, Dee Earley <dee.earley@icode.co....
Somehow if folder from where my shell extension is called
require admin privileges for writting.
|
|
On Tue, 21 Jul 2009 09:46:04 +0200, "Pappa Georgo" <pappgyorgy@digicart.hu
Hi
How Do I elevate my shell extension to run with admin rights?
The story:
I use the dllregshex.dll context menu extension to register my own dll's
in my developer...
Started by Pappa Georgo on
, 5 posts
by 3 people.
Answer Snippets (Read the full thread at omgili):
For example:
ShellExecute(hwnd, _T("runas"), ....
Execute the command using the "runas" verb.
Instead of having a shell extension, you that is launched by the extension.
Can - short of somehow getting Explorer to run
elevated.
|
|
I having trouble with an application not prompting for administrator privileges (thank you Blizzard's WOW installer) and I'm looking for an OS X equivalent of Windows' RunAs .
I am familiar with SUDO, but don't want to use it as it is often a pain to ...
Started by James McMahon on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
A shell for sudo , but will accomplish your goal of not having to dig around in application bundles to (POSIX path of (choose file)) do shell script "open \"" & filePath & "\"" with administrator privileges.
|
|
I'm trying to install TortoiseSVN (Ver: 1.6.1.16129) on wimdows PC's where the user is not an administrator.
The installer is an msi file and by default, there is no "Run As" option for it.
I've tried both: msiexec /a "{PATH}\TortoiseSVN-1.6.1.16129-win...
Started by John on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This might help..
Now run your msi from the command shell.
You get an elevated command shell.
|
|
On Linux, we can use
sudo bash
to run a shell as the superuser
On Windows 7, we can use
START -> (in search box, type) cmd -> Right click on search result and choose Run as Administrator
to run a command prompt as an admin. Is there also a command...
Started by Jian Lin on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
If you're on a domain, you....
The runas command is the closest thing to what you're looking for:
runas /user:username cmd.exe
The format is runas , the username you want to run as, other options, and then the program you want to run.
|
|
Thank you Robert Pendell! I wrote this shell script. Any suggestions
for optimization?
#!/bin/bash
if [ $# -eq 1 ]
then
echo "Usage: elev program arg1 arg2 ..."
exit 1
fi
prog="$1"
shift
exec cygstart --action=runas `which "$prog"` "$...
Started by DavidArnstein@panix.com on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at omgili):
The runas action is only valid quoting styles:
exec cygstart --action....
..."
exit 1
fi
prog="$1"
shift
exec cygstart --action=runas `which "$prog"` "$@"
On that note the platform os so that you
don't use that action setting on them.
|