Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rickict

    ssi and cgi error

    hi i am trying to run a cgi script using SSI. i have cgi and SSI running fine (or so i think) on a windows xp apachi server . when i run the cgi script: <a href="../cgi-bin/hello.cgi">click</a><br /> all works fine. and prints "hello world". when i run the SSI command: <!--#echo...
  2. rickict

    auto program install

    hi im trying to right a script to auto install an application from start to finish. heres my code use Win32::GuiTest qw( FindWindowLike PushChildButton ); use strict; #start the app. system ("c:\\Documents and settings\\rick\\my documents\\Thunderbird Setup 1.0.6.exe")...
  3. rickict

    auto installing applications on network

    TrojanWarBlade i have just discovered that you can get perl to press buttons by using the win32::guitest module .there is probably others as well. goto: http://www.piotrkaluski.com/files/automation/gui/gui_test_tut/ to find a nice tutorial on it .
  4. rickict

    auto installing applications on network

    thanks fishiface that gives me some ideas to start working with. rick
  5. rickict

    auto installing applications on network

    im sure ive seen the idea of scripts that predefine the installation's choices as to what packaged to install and where. are there not ways to install OS's like windows with a predefined script so every pc just needs to have the setup.exe ran and left to install. surely if that is possible the...
  6. rickict

    auto installing applications on network

    hi i was just woundering if it was possible to use perl to install applications automaticlly over a network? i manager over 130 win98/winxp pc's on a network. and everytime someone gets some new software, i have to go round and stand at every pc click the "setup" executable (which i would have...
  7. rickict

    xcopy and passwords

    hi im trying to do a mass xcopy of shares off a server to a client using xcopy. this is a small example of my .bat file: xcopy /S \\cachepilot\aada01\ D:\backup\aada01\ xcopy /S \\cachepilot\aald01\ D:\backup\aald01\ xcopy /S \\cachepilot\abag01\ D:\backup\abag01\ xcopy /S \\cachepilot\abal01\...
  8. rickict

    split function

    perfect, thanks very much for your help. this is the final result. works great. #!/usr/bin/perl open FH, 'net.log'; @shares = <FH>; open (FILE,'>backup.bat'); select FILE; foreach $junk (@shares) { if ($junk =~ m/^([^ ]+) +Disk/) { print "xcopy /S \\\\rnb-pc-server\\$1\\...
  9. rickict

    split function

    this is the output from my home but my work has over a thousand shares on one server( i didn't set this up) the headers and the bit a the bottom i can remove easily by hand. it just the "type" "used as" and "comments" fields that i need to remove...
  10. rickict

    split function

    can anyone help im after a quick solution to a problem at work. i wont bore you with details but i need to get the names of all the shares on a server into a file so i can add them to a .bat file with the xcopy function. with my little knowledge i managed to send the out put of the windows...
  11. rickict

    backgrounds in cgi?

    $htmlForm = <<EOS; <html> i changed it to use the full localhost url as below. if your saying that there is no reason why this should not work then thats fine, i can look at other areas. as for CSS, im getting there!! but is there not compatability problems with some browsers? that are...
  12. rickict

    backgrounds in cgi?

    hi kevin i've rewritten to include a path and placed the image in a folder but still it doesn't work. before i had the image in the same folder as the cgi script. you said about how the server is set up? im using apache with winXP default setup. as i mentioned the BACKGROUND= tag worked fine in...
  13. rickict

    backgrounds in cgi?

    im just learning html and cgi. i've got a very simple and unfinished test script that i'm writing to learn things . the problem i have at the moment is i cant seem to get a background picture to work with the script although it works with any standard html.? this is the full script . any other...
  14. rickict

    matching the contents of files?

    thanks Maurice that does what i needed to do perfectly. i popped in a couple of comma's and got it to output to a .csv file . perfect.. thanks again.
  15. rickict

    matching the contents of files?

    thanks ive never used Access but im sure its a better solution. any help would be great. thanks for the tip on the book ill get that too.
  16. rickict

    matching the contents of files?

    hi i have a program that outputs the the installed programs on a computer to a .txt file in the following format. filename = station3.txt Adobe Acrobat 5.0 Ahead Nero OEM AVG Anti-Virus 7.0 Bounce Clicker 4 ControlIt Counter for Windows DataLogger Dazzle ETC... i have over a hundred of these...
  17. rickict

    perl quantifier prob

    great, thanks very much trojanwarblade.......rick
  18. rickict

    perl quantifier prob

    im learning about regular expressions and quantifing and im doing an exercise to validate an email address. i can't seem to quantifie an exact amount of letters using [a-z]{3} to say exactly three letters. the script below just doesn't seem to see the email as FALSE and prints the TRUE response...

Part and Inventory Search

Back
Top