Hello all,
This is my first post in this forum. I'm relatively new to VBA and coding in general. I found a great Command Line function over at VBA Express
I made a few changes, because I have no need for the Input Box (I'm working on an automation project and would like to limit the amount of user interaction.)
This is what I did to change the Test Subroutine:
Public Sub TestCommandLine()
Const lngCancelled_c As Long = 0
Dim strCmd As String
strCmd = "runas /user:<username>@DOMAIN " & Chr(34) & "C:\Windows\System32\calc.exe" & Chr(34)
' strCmd = VBA.InputBox("Enter DOS Command:", "Enter Command", "dir")
' If VBA.LenB(strCmd) = lngCancelled_c Then
' Exit Sub
' End If
CommandLine strCmd, True
End Sub
When this code runs, the command prompt stays up, requesting a password. Ideally, what I would like to do is keep the username, domain, and passwords as variables in a spreadsheet, and pass these through to cmd as part of this function.
Is there any way to continue to interact with the command window using the Command Line function?
I feel like I may be barking up the wrong tree.
Full disclosure: running the calculator is not my end goal here. Initially I plan to use this function for RegAsm.exe to register an application as a COM object. That being said, it would be incredibly useful to be able to use the command prompt and continue to interact with it via excel VBA script (even outside of trying to get around the Windows UAC stuff.)
So...
Is there a way to change the CommandLine function to get what I want? Should I do something completely different? Or is it just not possible to do what I want to do in the first place?
Thanks in advance!
Bookmarks