RE: FireFox Watch....

2006-03-07 Thread Mulley, Nikhil



Exactly , I am 
doing it from past 2 days on my machine , but failing on remote 
machines.
 
And I am not sure 
which version of Firefox is being used by the user,( I do not want to hard code 
the Firefox Version number to search for in the script )
So , being 
Little  lazy abt it 
 
Any way Thanks 
for responding :)
 
Nikhil.

  -Original Message-From: Dutrieux Yves 
  [mailto:[EMAIL PROTECTED]Sent: Monday, October 18, 2004 3:58 
  PMTo: Mulley, Nikhil; [EMAIL PROTECTED]Cc: 
  perl-win32-admin@listserv.ActiveState.com; 
  Perl-Win32-Users@listserv.ActiveState.comSubject: RE: FireFox 
  Watch
  Look below registry key 
  HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\ 
  to find the correct folder where Firefox is installed 
  (and the plugins too)
  And list all the file in the plugin, directory to 
  know what plugins are installed.
   
  Yves
  
  
  
  De : 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] De la part 
  de Mulley, NikhilEnvoyé : lundi 18 octobre 2004 
  12:08À : Perl-Win32-Users@listserv.ActiveState.com; 
  [EMAIL PROTECTED]; 
  perl-win32-admin@listserv.ActiveState.comObjet : FireFox 
  Watch
  
  Hi All,
   
   
  I am in a Windows Network 
  Environment, and  ( I am a Domain Admin if ),I see lot of people in My 
  Environment moving to Firefox Browser ( Ofcourse I know that I was the first 
  person to install it in my machine and in my network , I use Firefox since it 
  was at its 0.7 Version ;) )
   
  I want to have a script that 
  watches the Firefox installations on the user side like What are the new 
  plugins that have been loaded newly at the userside and what are the 
  componenets that have been added to the Firefox,What are the searchplugins 
  that have been installed at the user side,
  Totally I need a Complete 
  Firefox Browser Watcher ( SearchPlugin , Component , Extensions , Theme 
  Watcher ) , That too to scan remotely
   
  Any Ideas 
  ,,,
   
  A Quick response would be 
  highly appreciated.
   
  --Nikhil.
___
Perl-Win32-Admin mailing list
Perl-Win32-Admin@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


RE: How do I compare and get difference of two arrays

2005-02-25 Thread Mulley, Nikhil
I think , you can use grep for that basically,

here is direct from DOC.
>From the documentation
~~
grep EXPR,LIST
This is similar in spirit to, but not the same as, grep(1) and its relatives. 
In particular, it is not limited to using regular expressions. 
Evaluates the BLOCK or EXPR for each element of LIST (locally setting $_ to 
each element) and returns the list value consisting of those elements for which 
the expression evaluated to true. In scalar context, returns the number of 
times the expression was true.
@foo = grep(!/^#/, @bar); # weed out commentsor equivalently,   
@foo = grep {!/^#/} @bar; # weed out commentsNote that $_ is an alias to the 
list value, so it can be used to modify the elements of the LIST. While this is 
useful and supported, it can cause bizarre results if the elements of LIST are 
not variables. Similarly, grep returns aliases into the original list, much as 
a for loop's index variable aliases the list elements. That is, modifying an 
element of a list returned by grep (for example, in a foreach, map or another 
grep) actually modifies the element in the original list. This is usually 
something to be avoided when writing clear code.

So, for your situation.
@new_array = grep (!/@array_1/, @array_2);

@new_array may contain the diff output. Can you try this. and please mail me 
back , what are you getting ..





-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mungamuru, Sasi 
Kiran Kumar
Sent: Friday, February 25, 2005 1:44 PM
To: perl-win32-users@listserv.ActiveState.com
Subject: How do I compare and get difference of two arrays


Hi all,

How Do I compare and get difference of two arrays as my both arrays 
carries scalar values and my output should be stored to another array.
Can you please help me out.

Thanks in advance,
~Sasi

___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


RE: Template to remove local admin privileges on a windows NT comps.

2005-02-24 Thread Mulley, Nikhil



refer to 
Win32::NetAdmin Module..
 
-Nikhil

  -Original Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]On Behalf Of 
  Mungamuru, Sasi Kiran KumarSent: Thursday, February 24, 2005 
  4:32 PMTo: 
  perl-win32-users@listserv.ActiveState.comSubject: Template to 
  remove local admin privileges on a windows NT comps.
  Good Evening all,
      
      
  Could you please pass out 
  a template in perl for to remove local admin privileges for existing users in 
  windows NT environment.
   
  Thanks,
  ~Sasi
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Remote Systems Outlook PST Mappings..

2004-12-29 Thread Mulley, Nikhil
Hi , 

Happy Holidays :)
 I am working in Windows Active Directory Domain , I wanted to know what 
is(are)  the Personal Folders mapped remotely on a machine when a user logs in
Usually it could be found in control panel ->Inbox 
What I want is to get the information from the remote Windows System that what 
are the personal folders mapped and what are the other mails mapped like entire 
Mail-Profile and send it to me as mail
.

Thanks,
Nikhil.

 °v°
/(_)\
  ^ ^

___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


to remove a particular element from array

2004-12-24 Thread Mulley, Nikhil



Hi ,Greetings to 
all :)
 
I have some 30 elements in an 
array , all Machine names of my domain , After generating the Array , If I want 
to remove one machine -- which I know its machine name , how do I remove one 
element from the array , with one single statement.
 
Thanks,
Nikhil.

 °v°
/(_)\
  ^ 
^
 
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


RE: black box

2004-12-15 Thread Mulley, Nikhil



may be its 
because you are executing script in Windows Explore and double clicking the 
script , 
its better to 
open a command prompt and from the command prompt , run the script or drag the 
file icon into the Command Prompt and eecute the script , If you do not want to 
go the path of the directory of Script

  -Original Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]On Behalf Of 
  Lasher, BrianSent: Thursday, December 16, 2004 1:08 
  AMTo: [EMAIL PROTECTED]Subject: 
  black box
  
  Is there any way to keep the 
  “black command-prompt looking box” from popping up when executing perl script 
  on win 32 platform?
   
  -brian
   
  Brian Lasher
  Catalog DSP Product Engineering
  Best Practices and Yield Enhancement 
  Team
  [EMAIL PROTECTED]
  281-274-2913(W)
  281-684-4699(C)
  713-664-6240(H)
  281-274-2279(F)
   
___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


RE: FireFox Watch....

2004-10-18 Thread Mulley, Nikhil



Exactly , I am 
doing it from past 2 days on my machine , but failing on remote 
machines.
 
And I am not sure 
which version of Firefox is being used by the user,( I do not want to hard code 
the Firefox Version number to search for in the script )
So , being 
Little  lazy abt it 
 
Any way Thanks 
for responding :)
 
Nikhil.

  -Original Message-From: Dutrieux Yves 
  [mailto:[EMAIL PROTECTED]Sent: Monday, October 18, 2004 3:58 
  PMTo: Mulley, Nikhil; [EMAIL PROTECTED]Cc: 
  [EMAIL PROTECTED]; 
  [EMAIL PROTECTED]Subject: RE: FireFox 
  Watch
  Look below registry key 
  HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\ 
  to find the correct folder where Firefox is installed 
  (and the plugins too)
  And list all the file in the plugin, directory to 
  know what plugins are installed.
   
  Yves
  
  
  
  De : 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] De la part 
  de Mulley, NikhilEnvoyé : lundi 18 octobre 2004 
  12:08À : [EMAIL PROTECTED]; 
  [EMAIL PROTECTED]; 
  [EMAIL PROTECTED]Objet : FireFox 
  Watch
  
  Hi All,
   
   
  I am in a Windows Network 
  Environment, and  ( I am a Domain Admin if ),I see lot of people in My 
  Environment moving to Firefox Browser ( Ofcourse I know that I was the first 
  person to install it in my machine and in my network , I use Firefox since it 
  was at its 0.7 Version ;) )
   
  I want to have a script that 
  watches the Firefox installations on the user side like What are the new 
  plugins that have been loaded newly at the userside and what are the 
  componenets that have been added to the Firefox,What are the searchplugins 
  that have been installed at the user side,
  Totally I need a Complete 
  Firefox Browser Watcher ( SearchPlugin , Component , Extensions , Theme 
  Watcher ) , That too to scan remotely
   
  Any Ideas 
  ,,,
   
  A Quick response would be 
  highly appreciated.
   
  --Nikhil.
___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


FireFox Watch....

2004-10-18 Thread Mulley, Nikhil



Hi All,
 
 
I am in a Windows Network 
Environment, and  ( I am a Domain Admin if ),I see lot of people in My 
Environment moving to Firefox Browser ( Ofcourse I know that I was the first 
person to install it in my machine and in my network , I use Firefox since it 
was at its 0.7 Version ;) )
 
I want to have a script that 
watches the Firefox installations on the user side like What are the new plugins 
that have been loaded newly at the userside and what are the componenets that 
have been added to the Firefox,What are the searchplugins that have been 
installed at the user side,
Totally I need a Complete 
Firefox Browser Watcher ( SearchPlugin , Component , Extensions , Theme Watcher 
) , That too to scan remotely
 
Any Ideas 
,,,
 
A Quick response would be 
highly appreciated.
 
--Nikhil.
___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs