Starting Ghosts #86
-
This may be a simple question but how would I get Ghosts to start up and run as a specific user by itself without someone logging in to the machine and having ghosts start via a logon script? The most awesome option that I would want would be for it to start up without any external actions happening but I don't know what would have to go into it to actually make that happen? Any help or pointers/information would be greatly appreciated! Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
We typically do this as part of a powershell startup script that logs on a particular user, this is the function that starts the exe: function Start-Ghosts() {
Set-Location -Path c:\step\ghosts
Start-Process ghosts.exe -WindowStyle Hidden
} We are working on a tool that we'll likely eventually OSS that has different agents log into different machines. This requires a management machine to send login commands, of course. |
Beta Was this translation helpful? Give feedback.
We typically do this as part of a powershell startup script that logs on a particular user, this is the function that starts the exe:
We are working on a tool that we'll likely eventually OSS that has different agents log into different machines. This requires a management machine to send login commands, of course.