Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Need help configuring Active Perl on Windows Vista.: Perl Scripting on Windows Post 302388381 by Vabiosis on Wednesday 20th of January 2010 07:52:13 AM
Old 01-20-2010
Java Need help configuring Active Perl on Windows Vista.: Perl Scripting on Windows

Hi All,

Need help configuring Active Perl on Windows Vista.
I am trying to install Active Perl on Windows Vista.

The version of Active Perl i am trying to install is : ActivePerl 5.10.1 Build 1006

After installing it through cmd, When i try to run perl -v to check the version, i get the following error :
Code:
  Microsoft Windows [Version 6.0.6001]
Copyright (c) 2006 Microsoft Corporation.  All rights reserved.

C:\Users\vabiosis>perl -v
'perl' is not recognized as an internal or external command,
operable program or batch file.

.....


Kindly help if i am doing something wrong...

Thanks & Regards,

Vabiosis

Last edited by Vabiosis; 01-20-2010 at 09:02 AM.. Reason: Active Perl, Windows, Unix
 

We Also Found This Discussion For You

1. Shell Programming and Scripting

How to find 1 day old file on Windows for Active Perl

How to find 1 day old file on Windows for Active Perl? Is there anyone know the method? If UNIX or LINUX, we can use the "find ...". How to we do for Windows? (4 Replies)
Discussion started by: lcfoo
4 Replies
SYMLINK(3)								 1								SYMLINK(3)

symlink - Creates a symbolic link

SYNOPSIS
bool symlink (string $target, string $link) DESCRIPTION
symlink(3) creates a symbolic link to the existing $target with the specified name $link. PARAMETERS
o $target - Target of the link. o $link - The link name. RETURN VALUES
Returns TRUE on success or FALSE on failure. CHANGELOG
+--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 5.3.0 | | | | | | | This function is now available on Windows plat- | | | forms (Vista, Server 2008 or greater). | | | | +--------+---------------------------------------------------+ EXAMPLES
Example #1 Create a symbolic link <?php $target = 'uploads.php'; $link = 'uploads'; symlink($target, $link); echo readlink($link); ?> NOTES
Note Windows users should note that this function will only work if the system you run PHP from is Windows Vista/Windows Server 2008 or newer. Windows versions prior to that do not support symbolic links. SEE ALSO
link(3), readlink(3), linkinfo(3). PHP Documentation Group SYMLINK(3)
All times are GMT -4. The time now is 05:11 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy