Jump to content

juniq

Active Members
  • Posts

    24
  • Joined

  • Last visited

Everything posted by juniq

  1. wtf? Nobody answered those questions so I did atleast reply to them. If you have a problem with my replies then kick me, stupid script kiddie!
  2. java is using different parameters than a C++ or VisualBasic program. you'll need to hack into the RAM directly.
  3. doesnt work! errors over errors. unknown function names and so on. finish a project before you upload it thanks !
  4. the destination pc is running Windows 10 64bit. I can't rename the file with FileMove it will stop after the 22nd character. no matter what I put in there.
  5. no it's 22. if I rename it manually of course I can put a much longer file name in it. But NOT via FileMove function. In Windows 7 it works perfectly. What's the matter? It must be windows 10. I can't use commandline because I wanna keep my variables in autoit
  6. Hey I've written a script which adds an entry to the context menu to rename mp3 files by their id3 tags and several parameters like date and calendar week n stuff. All works fine in windows 7 (my machine). But my customers pc runs win10 (i hate it) and it looks like it can't rename a file to a name longer than 22 characters. that sucks... Any tip for me? I use FileMove to rename the file. And the destination file is grabbed by $cmdline.. tried to use RunDos but it doesn't accept autoit variables in destination filename. help please is there any way to hack this 22 character length limit in win 10?
  7. Hey I'm writing on a script which places a link in the context menu so you can choose several mp3 files and rename them using id3 tag udf and year / time stuff variables. My problem: I'm renaming the files through "FileMove", But HOW can I get the current directory of the chosen files only? I can't use stringsplit cz there are more than 1 delimiter "\". and I can't trim the string because the stringlength changes every time. How can I get ONLY the directory where the files from $cmdline chosen are?
  8. then delete the old one.
  9. hello I'm a total noob in webprogramming and I found a code snippet which seems to post to a website it looks like this: Func Post($data)     $sPD = $data $oHTTP = ObjCreate("winhttp.winhttprequest.5.1") $oHTTP.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded") $oHTTP.Open("POST", "www.myserver.com/log", False) $oHTTP.Send($sPD) EndFunc so what can I do to receive data or display it in a html page? or is it server side communication and I need to put a "log.php" file there? cz in the snippet it's "/log" and not "log.php" so what shall I write in the html script to receive or display this data sent by the autoit script? I know it's more like a webprogramming question but I hope somebody will help me anyways PLEASE
  10. hello I'm a total noob in webprogramming and I found a code snippet which seems to post to a website it looks like this: Func Post($data) $sPD = $data $oHTTP = ObjCreate("winhttp.winhttprequest.5.1") $oHTTP.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded") $oHTTP.Open("POST", "www.myserver.com/log", False) $oHTTP.Send($sPD) EndFunc so what can I do to receive data or display it in a html page? or is it server side communication and I need to put a "log.php" file there? cz in the snippet it's "/log" and not "log.php" so what shall I write in the html script to receive or display this data sent by the autoit script? I know it's more like a webprogramming question but I hope somebody will help me anyways PLEASE
×
×
  • Create New...