Hi all, My company need to create an automation script for a fucki.. Software that doesn't allow easy scripting... They now use a Wintask one. Now, my goal...
Florent Gilain
florent.gilain@...
Feb 2, 2005 2:56 pm
26490
gotit to work - thanks for the help tells me how many drives , gives the drive letter and i put the letter into a install script.... works great "Terwelp,...
Hi, I just started with auto-it and I love it. Can someone tell me how I can put the first cd or dvd-rom letter into a script. e.g. at the end of the script I...
$var = DriveGetDrive( "CDROM" ) If NOT @error Then $CDDVDDrive = $var[1] MsgBox(4096, "", "The first CD/DVD drive is " & $CDDVDDrive) EndIf _____ From:...
I don't want to display a message box but I want to integrate the drive letter that was found by the script into CDTray ( "xxx", "open" ) as where xxx is the...
Thanks to your script I found the solution myself: $var = DriveGetDrive( "CDROM" ) If NOT @error Then $CDDVDDrive = $var[1] CDTray ( $CDDVDDrive, "open" ) ...
Having trouble with RunWait command, using the 1/30/2005 version of AutoIt3 and running Win2K Pro sp4. The following code... $sBasePath = FileSelectFolder (...
Here's some more details: What would add to this script- $MyVar = InputBox ( 'Text Box', 'Enter your text in the box.' ) In order for it send the text I enter...
Here are two examples for sending to an untitled Notepad window. The 2nd method is better if you know the control ID. For more info and special codes that can...
I am looking for a script to delete files older than an entered date in a specified folder. I have seen the script in message 23233, but it is "not very...
Here it is... ;====================================== ; SCRIPT TO AUTOMATICALLY CLEAN UP ; DIRECTORIES SPECIFIED IN THE INI FILE ; RUN ONCE A DAY WITH WINDOWS...
I'm using the 1/30/2005 version of AutoIt3 and running Win2K Pro, sp4. CODE ======================================== MsgBox(4096, "Move data", $sSourcePath &...
This script has a lot more than you need if you just want to process one directory. You could use FileSelectFolder() to select the folder you're interested...
Hello all, I'm new to AutoIt, and I want to create a script to copy a bunch of files using the FileCopy() command. For each file being copied, I want a message...
Here is a simple script for pasting when in the area you are pasteing doesn't allow pasteing. ; Prompt the user to run the script - use a Yes/No prompt $answer...
Hi Chris, 1. Here's a way to not have to worry about the sleep interval: HotKeySet("{F2}", "_Send") ; Change the hot keys as desired. While 1 $MyVar =...
Hi All, why reinvent the wheel? DECAY 1.20 by Johan Lindh. Command-line utility for Windows NT/2K. Moves or deletes files and directories based on their age. ...
sounds great - you did not mention where it can be obtained??? Thanks! ... From: "Lüth, Carsten" [mailto:c.lueth@...] Sent: Friday, February 04, 2005...
decay is superb and is available from: http://www.linkdata.se/software.html jack Untabling his hands, he lapped them stomachways ... From: "Lüth, Carsten"...
Thanks for the input. i liked your first script alot better then mine and it really improved it alot. i liked the loop part and the hot hey part. i like to...
I have a script that is a rewrite of a unix script. It pops up a Input box every couple of hours that I write what I am doing in. This is written to a text...
My problem was that I declared the at command as @SystemDir & "at.exe". When I did this the Run would fail with a bad path error. Here is the solution to my...