Click here to Skip to main content
15,929,587 members
Home / Discussions / System Admin
   

System Admin

 
GeneralRe: Accessing the unshared network resources Pin
arpitscd25-Jun-07 3:19
arpitscd25-Jun-07 3:19 
GeneralRe: Accessing the unshared network resources Pin
originSH25-Jun-07 3:26
originSH25-Jun-07 3:26 
AnswerRe: Accessing the unshared network resources Pin
originSH25-Jun-07 2:05
originSH25-Jun-07 2:05 
GeneralRe: Accessing the unshared network resources Pin
arpitscd25-Jun-07 3:10
arpitscd25-Jun-07 3:10 
GeneralRe: Accessing the unshared network resources Pin
Dave Kreskowiak25-Jun-07 4:50
mveDave Kreskowiak25-Jun-07 4:50 
GeneralRe: Accessing the unshared network resources Pin
Vasudevan Deepak Kumar25-Jun-07 5:13
Vasudevan Deepak Kumar25-Jun-07 5:13 
QuestionAdding Runas to Folder Context Menu Pin
vimal_yet22-Jun-07 1:46
vimal_yet22-Jun-07 1:46 
AnswerRe: Adding Runas to Folder Context Menu Pin
Craster22-Jun-07 11:54
Craster22-Jun-07 11:54 
You can't really 'run' a folder as such, so it won't work in quite the same way. I'd say you'd need to do one of two things:

1) Write a context menu shell extension in your language of choice. Google for "context menu shell extension" and there should be loads of help.
2) This is a cowboy approach. Create a vbscript to do the job for you. Put this in it:

<br />
'grab the username<br />
sUsername = InputBox("Enter Username")<br />
'create a shell command object<br />
set oCmd = createobject("Wscript.Shell")<br />
'Build the runas string passing the folder name to explorer.exe<br />
sCmd = "runas /u:" & sUsername & " " & chr(34) & "explorer " & wscript.arguments(0) & chr(34)<br />
'Run the command<br />
oCmd.run sCmd<br />


Save it in your c:\documents and settings\%username%\sendto folder (show hidden files and folders to see this folder). Now when you right-click the folder, you should see your script under the 'Send To' context menu. If you select it, you'll get an inputbox prompt for the username, a dos prompt for the password, and it should open the folder using that user's credentials for you. It's a messy lash, but it works.
GeneralRe: Adding Runas to Folder Context Menu Pin
vimal_yet24-Jun-07 19:01
vimal_yet24-Jun-07 19:01 
Questioncan any gurus' help me with my lost password! Pin
melmal6921-Jun-07 23:00
melmal6921-Jun-07 23:00 
AnswerRe: can any gurus' help me with my lost password! Pin
Michael Dunn23-Jun-07 9:17
sitebuilderMichael Dunn23-Jun-07 9:17 
AnswerRe: can any gurus' help me with my lost password! Pin
Jeffrey Walton5-Jul-07 3:34
Jeffrey Walton5-Jul-07 3:34 
QuestionInsight into making some Vista Applications work Pin
Don Zocchi21-Jun-07 22:30
Don Zocchi21-Jun-07 22:30 
AnswerRe: Insight into making some Vista Applications work Pin
akseli14-Jul-07 3:52
akseli14-Jul-07 3:52 
QuestionVista End Task button almost never works. Pin
Don Zocchi21-Jun-07 22:28
Don Zocchi21-Jun-07 22:28 
AnswerRe: Vista End Task button almost never works. Pin
Michael Dunn23-Jun-07 9:19
sitebuilderMichael Dunn23-Jun-07 9:19 
QuestionUSB Removable Drive Detection in Win CE 5.0 Pin
cyberanee21-Jun-07 21:06
cyberanee21-Jun-07 21:06 
QuestionHow to retreive data lost by moving data between drives?? Pin
Kiran Satish21-Jun-07 5:34
Kiran Satish21-Jun-07 5:34 
AnswerRe: How to retreive data lost by moving data between drives?? Pin
Dave Kreskowiak21-Jun-07 7:44
mveDave Kreskowiak21-Jun-07 7:44 
QuestionHow do I kill an 'access denied' process? Pin
sharma sanjeev19-Jun-07 22:48
sharma sanjeev19-Jun-07 22:48 
AnswerRe: How do I kill an 'access denied' process? Pin
vimal_yet20-Jun-07 0:34
vimal_yet20-Jun-07 0:34 
GeneralRe: How do I kill an 'access denied' process? Pin
sharma sanjeev20-Jun-07 2:57
sharma sanjeev20-Jun-07 2:57 
AnswerRe: How do I kill an 'access denied' process? Pin
Craster20-Jun-07 3:52
Craster20-Jun-07 3:52 
AnswerRe: How do I kill an 'access denied' process? Pin
Dave Kreskowiak20-Jun-07 5:13
mveDave Kreskowiak20-Jun-07 5:13 
GeneralRe: How do I kill an 'access denied' process? Pin
quacks_a_lot28-Jun-07 16:44
quacks_a_lot28-Jun-07 16:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.