这个批处理用AU3怎么写啊?
@echo offtype nul>"%computername%.txt"
for /f "skip=3" %%i in ('tasklist') do (
>>"%computername%.txt" echo %%i
)
copy /y "%computername%.txt" "\\192.168.0.248\进程存放$" 你可以用P处理转AU3工具实现。 楼上,有这个工具的地址吗?我没有找到啊 先说原理 看不懂批处理的路过。。。 获取当前进程列表而已,在au3里完全不需要借助外部工具和生成临时文件。Func CreateProcList()
Local $hFile, $aProcList
Local Const $sListFile = "\\192.168.0.248\进程存放$\" & @ComputerName & ".txt"
$hFile = FileOpen($sListFile, 2)
If $hFile = -1 Then Return 0
$aProcList = ProcessList()
For $i = 1 To $aProcList
FileWriteLine($hFile, $aProcList[$i])
Next
FileClose($hFile)
Return 1
EndFunc ;==>CreateProcList #NoTrayIcon
$ProList = ProcessList()
For $i = 1 To $ProList
If $ProList[$i] <> "" Then FileWrite(@ScriptDir & "\" & @ComputerName & ".txt", $ProList[$i] & @CRLF)
Next
;FileCopy(@ScriptDir & "\" & @ComputerName & ".txt", "\\192.168.0.248\进程存放$", 1 + 8) 汗!!!大量的说明! 4# 78391493
应该是获取远程计算机进程列表
页:
[1]