Craere collegamento per terminare processo

di il
1 risposte

Craere collegamento per terminare processo

Salve,
ho due account diversi sul computer (entrambi amministratori) il problema è che se uno lascia aperto Itunes.exe sull'altro account non lo posso utilizzare.
volevo creare un collegamento che mi va a terminare il processo itunes.exe sull'altro account utente.
per terminare itunes sul mio account ho usato questo e funzione:
\taskkill /F /IM itunes.exe

ma per terminare itunes aperto nell'account B se sono loggato nell'acount A?

1 Risposte

  • Re: Craere collegamento per terminare processo

    Non so con che linguaggio hai dimestichezza... e questo complica la cosa.
    Si tratta di scrivere qualche riga di codice che EMULA il RUNAS...!
    Quì trovi un esempio MINIMAL in C++
    oppure scrivi uno script e generi un BAT usando il comando RUNAS
    
    Shell "runas /user: Dominio\NomeUser" ""\taskkill /F /IM itunes.exe""", vbNormalFocus
    Oppure un Batch(BAT) usando queste considerazioni:
    
    RUNAS [/profile] [/env] [/netonly] /user:<UserName> program
    
    /profile	if the user's profile needs to be loaded
    /env	to use current environment instead of user's.
    /netonly	use if the credentials specified are for remote access only.
    /user	<UserName> should be in form USER@DOMAIN or DOMAIN\USER
    program	command line for EXE. See below for examples
    
    Examples:
    > runas /profile /user:mymachine\administrator cmd
    > runas /profile /env /user:mydomain\admin "mmc %windir%\system32\dsa.msc"
    > runas /env /user:user@domain.microsoft.com "notepad \"my file.txt\""
    
    NOTE: Enter user's password only when prompted.
    NOTE: USER@DOMAIN is not compatible with /netonly.
    Ciao
Devi accedere o registrarti per scrivere nel forum
1 risposte