Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (259 - 261 of 3893)

Ticket Resolution Summary Owner Reporter
#597 No Bug Documentation @TempDir needs updating Emiel Wieldraaijer
Description

Macro Reference - Directory @TempDir -> path to the temporary files folder <-

This information is not complete because the @TempDir retrieves %TEMP% and not %TMP% which is also used for temporary files.

#731 Fixed GUIWrapper Add required Constants *.au3 to your scripts changes #AutoItWrapper_Run_After Jos Emiel Wieldraaijer
Description

Hi All,

[code] #NoTrayIcon #RequireAdmin #Region ; Directives created by AutoIt3Wrapper_GUI #AutoIt3Wrapper_UseUpx=n #AutoIt3Wrapper_Add_Constants=n #AutoIt3Wrapper_AU3Check_Stop_OnWarning=y #AutoIt3Wrapper_Run_After=upx.exe --best --compress-resources=0 "%out%" #Tidy_Parameters=/rel #AutoIt3Wrapper_Run_Obfuscator=y #EndRegion ; Directives created by AutoIt3Wrapper_GUI

Msgbox (0, "test", "test") code

Value #AutoIt3Wrapper_Run_After=upx.exe --best --compress-resources=0 "%out%"

is changed into

#AutoIt3Wrapper_Run_After=upx.exe --best --compress-resources|0 "%out%"

When the option "Add required Constants *.au3 to your scripts" is selected and the script is compiled.

Best regards,

Emiel

#803 Rejected ProcessGetStats documentation Improvement Emiel Wieldraaijer
Description

Hi,

i want to retrieve some information about the processes running on my computer but i the help file regarding ProcessGetStats did not tell me much..so i decided to figure it out myself..

Here is my example code for the help file

#include <Process.au3>

Dim $Priority[6]

$Priority[0] = "Idle/Low" 
$Priority[1] = "Below Normal"
$Priority[2] = "Normal"
$Priority[3] = "Above Normal"
$Priority[4] = "High"
$Priority[5] = "Realtime"

$List = ProcessList()

$TotalProcesses = $List[0][0]

Msgbox (0, "Total processes detected: ", $TotalProcesses)

; Skip the first detection because it represents the none active systemprocesses PID = 0
for $i = 2 to $List[0][0]
	$MemoryStats = ProcessGetStats ($List[$i][1], 0)
	; Check if a process is an array because not all processes return information
	If IsArray($MemoryStats) Then
		Msgbox (0, "ProcessStats : ", "ProcessName = " & $List[$i][0] & " - MemoryUsage = "  & Round($MemoryStats[0]/1024) & " KB - PID = " & $List[$i][1] & " - Priority = " & $Priority[(_ProcessGetPriority ($List[$i][1]))] ,0)
	Else 
		$TotalProcesses = $TotalProcesses -1 
	EndIf
Next

Msgbox (0, "Total processes returning information: ", $TotalProcesses)
Note: See TracQuery for help on using queries.