iceberg 1 Posted April 29, 2007 hi, not sure if i shd be asking this questions in this forums...apologies. I can use @TempDir to determine the current's users temp folder. but how can i do this in vbs....there dont seem to be a easy way out for this. thanks alot. mouse not found....scroll any mouse to continue. Share this post Link to post Share on other sites
xcal 3 Posted April 29, 2007 The number 1 Google return for vbs was "Vacation Bible School." So, if I were you, I'd ask a nun or something. (You realize this is an autoit forum, right?) How To Ask Questions The Smart Way Share this post Link to post Share on other sites
The Kandie Man 5 Posted April 29, 2007 Try using the system environment variable %Temp%. "So man has sown the wind and reaped the world. Perhaps in the next few hours there will no remembrance of the past and no hope for the future that might have been." & _"All the works of man will be consumed in the great fire after which he was created." & _"And if there is a future for man, insensitive as he is, proud and defiant in his pursuit of power, let him resolve to live it lovingly, for he knows well how to do so." & _"Then he may say once more, 'Truly the light is sweet, and what a pleasant thing it is for the eyes to see the sun.'" - The Day the Earth Caught Fire Share this post Link to post Share on other sites
iceberg 1 Posted April 29, 2007 (edited) alright...i get it, xcal. Edited April 29, 2007 by iceberg mouse not found....scroll any mouse to continue. Share this post Link to post Share on other sites
MHz 80 Posted April 29, 2007 Dim fso, tempfile Set fso = CreateObject("Scripting.FileSystemObject") Function CreateTempFile Dim tfolder, tname, tfile Const TemporaryFolder = 2 Set tfolder = fso.GetSpecialFolder(TemporaryFolder) tname = fso.GetTempName Set tfile = tfolder.CreateTextFile(tname) Set CreateTempFile = tfile End Function Set tempfile = CreateTempFile tempfile.WriteLine "Hello World" tempfile.Close TemporaryFolder is a VBS Constant similar to @TempDir, but you need to use .GetSpecialFolder() with the constant. Share this post Link to post Share on other sites
iceberg 1 Posted April 30, 2007 thank you so much Mhz!!! appreciate it alot! anyway, looking at the complexity and coding, I really VALUE autoit even more now! thanks once again! mouse not found....scroll any mouse to continue. Share this post Link to post Share on other sites