English 中文(简体)
一、导 言
原标题:PSEXEC INPUT REDIRECTION
  • 时间:2011-11-21 15:04:11
  •  标签:
  • psexec

我正在使用Psexec管理一个遥远的批量。 我向皮涅茨转达了意见,并将其转至遥远的批量档案中,该卷宗寻求档案名称作为其投入。 然而,在改用时,档案名称成为“@#&”的垃圾;* 系指实际档案名称不传到用户所发的批量档案中。 任何人都能够说明原因。

pause
cd c:
set /P INPUT=Type input: %=%
echo Your input was: %INPUT%
copy %INPUT% \remotemachineipC$ && c:psexec \machineip cmd /k "c:atchfile.bat arg1 < %INPUT% & del %INPUT%"  -e -c -f -i
pause
问题回答
pause
cd c:
set /P INPUT=Type input: %=%
echo Your input was: %INPUT%

copy %INPUT% \remotemachineipC$ && c:psexec \machineip cmd /k c:atchfile.bat %INPUT% & del %INPUT%  -c -f -i
pause

偏远的批量档案,从当地机器的上述批量档案指挥部获取信息。 用户进入的百分辨率(低指挥)由用户进入的百分辨率(上文代码内容中之四分之二)所取代, s升指挥将被执行。 因此,用户在上述批量档案中传递的信息将成功地转至下批量(连续)档案,并将成功落实。

SQLCMD  -Sservername -d(databasename) -iC:LINKEDSERVER.sql -v filename="%1"

例如,如果我把INPUT%作为c:inputfile.xls,则该比例将调整至QCMD的指挥,以代替%1,以便按部执行。

SQLCMD  -Sservername -d(databasename) -iC:LINKEDSERVER.sql -v filename="c:inputfile.xls"




相关问题
Psexec "run as (remote) admin"

I wrote some c# code that uses PSexe. I want it to run a remote exe on a machine connected to my LAN. That exe creates a new local user. When I run that exe locally on the remote machine (after right ...

Psexec or WMI - new session every time?

Does someone know if if I run PSEXEC (or WMI) N times in the same program - does it open N new sessions? Or does it use the same session over and over again?

视窗服务使用时,有122条双胞胎。

我写了“世界妇女论坛”服务,作为“C# 公用事业”的包裹,我们用SysInternals psexec公用事业在遥远的系统中从事工作。 在C#中,有一条指挥线,即:

Using PSExec from within CruiseControl .NET

I m trying to call a PSExec task from CC.NET and running into some difficulties. Here s the CC project <project name="Test"> <tasks> <exec> <executable>C:...

Help needed to get Process ID for PsExec.exe in C#?

I am using the below code to invoke PsExec.exe which invokes my console application in two servers, I am not able to grab the ProcessId of the invoked processes (my console apps). process....

热门标签