|
I need users to be able to copy a folder on a network share to another folder on the same share. They need to copy security too. They cannot use their normal logged in account as it doesn't have enough permissions (the folder is a "template" folder and...
Started by 20th Century Boy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
So you can just use UNC path as Zypher suggested... .
Robocopy I guess will handle it too.
I would use the UNC runas supports specifying UNC path as a program argument.
Network shares are not brought over as part of runas even with the /env switch.
|
|
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 /NETONLY with DOMAIN\user. Then we type in the password...
Started by Cade Roux on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
ImpersonationContext = null; // #endregion } }
This code is part of an RunAs class that we use = process; info.Verb = "runas"; info.UserName = username; info.Domain = domain; info.LoadUserProfile://msmvps.com/blogs/martinzugec/archive/....
|
|
We currently run IE6. Our helpdesk people routinely start admin sessions of Windows Explorer by
Right-clicking the IE6 shortcut on the quicklaunch bar, Selecting "Run as...", Entering admin account details Browsing to C:\ Bingo - admin session to the ...
Started by christianlinnell on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Runas works the....
Some good answers be the IE6 executable.
On windows xp you can also write: runas /user:machine\administrator "explorer.exe /separate
where you still use RUNAS, but you need to know the actual path to executable.
|
Ask your Facebook Friends
|
In Windows 7 there is an option to enable a run as context menu by holding down the shift key when opening the start menu. When I select the run as option a credentials dialog is shown, but it doesn't allow me to specify a domain like I can when I am ...
Started by Whoiskb on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
Example:
DOMAIN/username
I think this trick works for all MS Windows....
Simply prefix the domain name followed by a / then your username in user box .
Maybe I'm totally off here but something in the back of my head tells me that username@domain should work .
|
|
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 domain user a local administrator, ....
In Windows XP it works like this:
runas /user might help.
The ownership on explorer.exe Other than that I'm stumped.
|
|
Hi folks,
My development pc at the office is NOT on the Active Directory. It's a normal install, no domain. Everything works fine.
When i wish to connect to a share drive, I need to map the drive with my company credentials
eg. CompanyDomain\UserName ...
Started by Pure.Krome on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
When you RunAs a local application.
Works fine because the fileserver is a member of the domain .
|
|
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... .
|
|
I know in Vista you could get away with having multiple shell entries named "runas" so long as they were sequentially-numbered; i.e.: runas(2), runas(3), etc.
However, when trying to merge this reg entry from Vista the runas(2) is ignored:
[HKEY_CLASSES...
Started by Zoinkity on
, 5 posts
by 3 people.
Answer Snippets (Read the full thread at msfn):
I also know that you can only add 1 RunAs entry, that why I use NirCmd:
http.
Only runas runs elevated.
I am not getting any entries named runas(2) to run elevated.
I tried this on Vista SP2.
|
|
Hello, I am trying to automate the storing of a credential to several people's profiles on several servers so they can use it with scripts they will be running that have the "runas" command with the /savecred switch. I am using the "cmdkey" command to...
Started by rsmith37 on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at microsoft):
|
|
Runas with the /savecred switch does not accept a credential stored by the cmdkey com Hello,
I am trying to automate the storing of a credential to several people's profiles on several servers so they can use it with scripts they will be running that ...
Started by Guest on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at windowspages):
|