Lansweeper wrote:
You can replace lansweeper\administrator by another user (this is just an example)
You can also create your own vbs script that prompts for username and password and starts "runas.exe" with the correct parameters.
Ok, come up with this...:
username = inputbox("Please enter a username.")
if username = "" then
msgbox("You need to enter a username")
else
cmd = "runas.exe /profile /env /user:DOMAIN\"& username &" {actionpath}lsremote {computer}"
set win32 = createobject("Wscript.Shell")
win32.run cmd
end if
I get a box that appears for second then closes..
Any help is greatly recived.
dave