Script for VMware cloud server

pasupuleti2 created the topic: Script for VMware cloud server At Present we are using Windows 2012 server as Our VMware server for which we are using Powershell , Python Scripts…

Read more »

Script for Breaks the build

pasupuleti2 created the topic: Script for Breaks the build Rajesh, Our current tests are taking 2 hours for one project. when building unit tests they should not accessing databases, filesystems,…

Read more »

Write a script to find all users who have not set

rajeshatbuzz created the topic: Write a script to find all users who have not set #!/usr/bin/ruby require “P4” p4 = P4.new p4.parse_forms p4.connect p4.run_users.each do |u| user = p4.fetch_user( u[…

Read more »

Regarding Power shell script

shanu2010 created the topic: regarding Power shell script Hi Frnds, we are changing the IIS server passwords every 90 days once.I need to automate the password change policy for 90…

Read more »

How to Set the Preferrence for AOL Through Wise Script

installanywhereExpert created the topic: How to Set the Preferrence for AOL Through Wise Script The setting preference is stored under HKEY_CURRENT_USER\Software\America Online\AOL Instant Messenger (TM)\CurrentVersion\Users If you want to apply…

Read more »

Inno Setup script example

msiexpert created the topic: Inno Setup script example I have been working on an inno script this past week, which now appears to be working correctly. I thought I would…

Read more »
shell-script-parameters

Understand Shell Script Parameters – Reference

A parameter is an entity that stores values. It can be a name, a number or some special characters. Bash shell provides two kind of parameters. Positional Parameter and Special…

Read more »
read-xml-file-using-shell-script

How to read XML file by using shell script ?

This was like the first time where I had to write something that will be able to read something out of a XML file using a shell script. Usually I…

Read more »

How to use ant Script to Reset BuildNumber?

To use this code, you need to have the file build.number containging: major.number=1 minor.number=0 hotfix.number=0 revision.number=0 continuous.number=0 Then the following 3 targets:   <taskdef resource=”net/sf/antcontrib/antlib.xml”/> <taskdef name=”unset” classname=”ise.antelope.tasks.Unset”/>     <target name=”initBuildNum” description=”Get…

Read more »
a-script-to-find-all-users-who-have-not-set-passwords

A script to find all users who have not set passwords

Write a script to find all users who have not set passwords. #!/usr/bin/ruby require “P4” p4 = P4.new p4.parse_forms p4.connect p4.run_users.each do |u| user = p4.fetch_user( u[ “User” ] )…

Read more »
script-to-list-the-clients-in-descending-access-date-order

Script to list the clients in descending access date order

  Write a script to list the clients in descending access date order (for deleting obsolete clients).   #!/usr/bin/ruby require “P4” p4 = P4.new p4.tagged p4.connect clients = p4.run_clients.sort {|a,b|…

Read more »