Jump to content

RunAs not opening shortcut


Recommended Posts

I'm trying to allow users to access files on a server without authenticating. The RunAs command looks like it should work, but nothing ever opens up. I added a MsgBox to confirm that it wasn't getting stuck somehow and it runs fine, but does not open the shortcut. Does anyone have any ideas on what I'm doing wrong?

; Username, domain and password.

$sUserName = "XXXXX"

$sPassword = "XXXXX"

$sDomain = "XXXXX.local"

; Run command

RunAs($sUserName, $sDomain, $sPassword, 0, @ComSpec & " /c " & "\\server\utility\shortcut.lnk", "\\server\PMW220\App", @SW_HIDE)

; Confirmation test message.

MsgBox(0, "Done", "Done.")

Link to comment
Share on other sites

Thanks sleepydvdr.

I did try using a .exe with the same name in the same folder like this:

RunAs($sUserName, $sDomain, $sPassword, 0, @ComSpec & " /c " & "\\server\utility\shortcut.exe", "\\server\PMW220\App", @SW_HIDE)

This is a compiled script that opens the shortcut and it works, but doesn't open when I try to run it with RunAs.

Link to comment
Share on other sites

I've used a trick I have used before that makes accessing network shares easier: DriveMapAdd. Then change the location of the executable to the drive letter you mapped it to. If you don't want to keep it mapped all the time, you can un-map it when the program is closed.

#include <ByteMe.au3>

Link to comment
Share on other sites

Hopefully the username and password in your script isn't an admin password because that's going to present a security risk for the server you're accessing.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Any domain user has access to that share so no admin needed.

I have two domains and am slowly moving everything from the old to the new.

I'll probably have to map a network drive in order for it to work properly.

Link to comment
Share on other sites

  • Developers

Thanks sleepydvdr.

I did try using a .exe with the same name in the same folder like this:

RunAs($sUserName, $sDomain, $sPassword, 0, @ComSpec & " /c " & "\\server\utility\shortcut.exe", "\\server\PMW220\App", @SW_HIDE)

This is a compiled script that opens the shortcut and it works, but doesn't open when I try to run it with RunAs.

What happens when you do a runas on the cmd prompt and start CMD under these credentials and then try to run the script as indicated?

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...