PsExec и WindDirStat в удаленной системе - как запустить - PullRequest
0 голосов
/ 24 апреля 2018

Я хотел бы иметь возможность запускать WinDirStat на удаленной машине, на которую у меня есть права администратора, но она не работает.

Вот что я сделал: Запустите CMD от имени администратора: psexe.exe -i -s cmd.exe

Из новой подсказки: psexec.exe \\host -u username winddirstate.exe

Я набираю свой PW, и он не запускается

Оба работают под управлением Windows 7 Enterprise.

1 Ответ

0 голосов
/ 03 июля 2018

Usage: psexec [\\computer[,computer2[,...] | @file]][-u user [-p psswd][-n s][-r servicename][-h][-l][-s|-e][-x][-i [session]][-c [-f|-v]][-w directory][-d][-<priority>][-a n,n,...] cmd [arguments] -a Separate processors on which the application can run with commas where 1 is the lowest numbered CPU. For example, to run the application on CPU 2 and CPU 4, enter: "-a 2,4" -c Copy the specified program to the remote system for execution. If you omit this option the application must be in the system path on the remote system. -d Don't wait for process to terminate (non-interactive). -e Does not load the specified account's profile. -f Copy the specified program even if the file already exists on the remote system. -i Run the program so that it interacts with the desktop of the specified session on the remote system. If no session is specified the process runs in the console session. -h If the target system is Vista or higher, has the process run with the account's elevated token, if available. -l Run process as limited user (strips the Administrators group and allows only privileges assigned to the Users group). On Windows Vista the process runs with Low Integrity. -n Specifies timeout in seconds connecting to remote computers. -p Specifies optional password for user name. If you omit this you will be prompted to enter a hidden password. -r Specifies the name of the remote service to create or interact. with. -s Run the remote process in the System account. -u Specifies optional user name for login to remote computer. -v Copy the specified file only if it has a higher version number or is newer on than the one on the remote system. -w Set the working directory of the process (relative to remote computer). -x Display the UI on the Winlogon secure desktop (local system only). -arm Specifies the remote computer is of ARM architecture. -priority Specifies -low, -belownormal, -abovenormal, -high or -realtime to run the process at a different priority. Use -background to run at low memory and I/O priority on Vista. computer Direct PsExec to run the application on the remote computer or computers specified. If you omit the computer name PsExec runs the application on the local system, and if you specify a wildcard (\\*), PsExec runs the command on all computers in the current domain. @file PsExec will execute the command on each of the computers listed in the file. cmd Name of application to execute. arguments Arguments to pass (note that file paths must be absolute paths on the target system). -accepteula This flag suppresses the display of the license dialog. -nobanner Do not display the startup banner and copyright message.

Сначала вы находитесь в том же каталоге Psexec или задаете путь PSexec в пути к среде, затем введите эту команду

psexec.exe \ host -u имя пользователя -p пароль -s cmd / C C: \ full_remote_path_of_ \ windirstat.exe

ИЛИ

поместите один файл bat внутри вашей удаленной машины, например C: \ abc \ run.bat, и поместите в него этот код

  • эхо выключено
  • C: \ full_path_of_ \ windirstat.exe
  • эхо "Успех"

и запустите команду из вашего местного

Команда

ниже запустит этот файл bat, присутствующий на пульте

psexec.exe \ host -u имя пользователя -p пароль -s cmd / C "C: \ remote \ run.bat"

OR

нет необходимости помещать файл run.bat на удаленную машину, ставить только на локальный компьютер, а затем давать приведенную ниже команду

psexec.exe \ host -u имя пользователя -p пароль -s -i -c -f "C: \ local \ run.bat"

OR

psexec.exe \ host -u имя пользователя -p пароль -s -i -c -v "C: \ local \ run.bat"

          -s ----->as a Administrator
          -i ----->Interactive
          -c ----->copy run.bat to remote
          -f -----> if run.bat already exist on remote Computer
          -v -----> if higher version on local and lower version on remote then it  
                     will copy otherwise not

ИМЯ ИСПОЛЬЗОВАНИЯ ФАЙЛА

Если вы хотите работать на многих удаленных компьютерах, и имя пользователя и пароль всех удаленных компьютеров одинаковы, поэтому поместите один файл, например, host.txt, и постройте все ip построчно, в строке нет места для запуска, затем введите команду ниже будет работать серийно

PsExec.exe @C: \ full_path \ host.txt -c -s -u имя пользователя -p пароль run.bat

** Параллельный запуск на всех удаленных машинах **

если вы хотите работать параллельно, укажите еще один параметр -d, тогда он не будет ждать завершения процесса, пока он не завершится, и вы можете использовать цикл for и поместить в него команду PSexec

Сохранить результат в каком-либо файле ТРИ варианта

                             **First Variation**

Ниже скопирует файл iname.bat в удаленной системе и выполнит его, а затем сохранит результат в success.txt в каталоге локального компьютера, в котором мы запускаем PSexec

PsExec.exe \ remote_ip -u имя пользователя -p пароль -c -f "iname.bat"> success.txt

                             **Second Variation**

ниже запустит test.bat присутствует на удаленной машине и сделает Success.txt на локальной машине

PsExec.exe \ remote_ip -u -u username -p passowrd cmd / C "C: \ abhi \ test.bat"> success.txt

                             **Third  Variation**

это запустит test.bat присутствует на удаленной машине и сделает Success.txt на удаленной машине PsExec.exe \ remote_ip -u -u имя пользователя -p пароль -i cmd / C "C: \ abhi \ test.bat> C: \ abhi \ success.txt"

...