Jump to content

RunAs DirCreate


 Share

Recommended Posts

Hello!

I'm trying to create a folder on a server using:

$Folder = InputBox("Test", "Please enter folder name", "")
$dir = DirCreate("\\server-02\c$\" & $Folder)

I want to run this command with some sort of "runas" and use different credentials with the following variables:

$sUserName = "jsmith"
$sPassword = "comp"

Any idea?

Thanks in advance!

Link to comment
Share on other sites

  • Developers

Something like this? :

$Folder = InputBox("Test", "Please enter folder name", "")
RunAs($sUserName, $sDomain, $sPassword, 0, @ComSpec & ' /c MKdir "\\server-02\c$\' & $Folder & '"',"",@SW_HIDE)
Edited by 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...