Custom Query (3927 matches)
Results (394 - 396 of 3927)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #695 | No Bug | FileMove returns an error code of 0 for failure AND for success | ||
| Description |
A successful FileMove returns an error code of 0 (failure) |
|||
| #696 | No Bug | Autoit Vista 64bit | ||
| Description |
Running Vista Ent 64bit. Newest autoit and SciTE. Also tryed older version. I get error code -2147024809 running this type of code. $val = RunWait(@ComSpec & ' /c dsmod user "CN=Student User,OU=Students,OU=MPES,OU=ES,DC=CCS,DC=K12,DC=int" -office roe',"") msgBox(0,"",$val) If i run this under Vista 32bit or Windows xp sp3 (not 64bit). code works fine. I have ran into the code above if a string had "white space" in front or at the end of my string. This is not the case. |
|||
| #697 | No Bug | Process Close Randomly Not Working | ||
| Description |
I run my scripts on over 600 PCs and have been running this portion of the script every other night for 9 months and have only seen an issue in v3.2.13.11. On ~1/15 pcs when this portion of the script is ran the process is not actually closed. Here's the portion of the script. ProcessClose("Gw.exe")
Here's the entire file. If FileExists("C:\Program Files\Guild Wars\Gw.exe") Then
run("C:\Program Files\Guild Wars\Gw.exe")
sleep(5000)
EndIf
if ProcessExists("Gw.exe") = 0 Then
DirCopy("Y:\Guild Wars", "C:\Program Files\Guild Wars", 1)
RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\ArenaNet\Guild Wars", "Path", "REG_SZ", "C:\Program Files\Guild Wars\Gw.exe")
RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\ArenaNet\Guild Wars", "SRC", "REG_SZ", "C:\Program Files\Guild Wars\Gw.exe")
Else
sleep(60000)
ProcessClose("Gw.exe")
EndIf
|
|||
