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...
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")...
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 .
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...
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...
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\...
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\\...
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...
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...
$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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.