Search found 807 matches

by mauriziog
27 Oct 2012 5:46
Forum: Job Definition
Topic: Updatedef Utility
Replies: 2
Views: 4527

To update many jobs, use the xml file. If you have version 6.4 or following: - save the draft in xml - open it with a test editor - do the updates - open the modified files in controlM desktop and check if all is as required - write and upload modified tables If you has a version 6.3 or 6.2: - use t...
by mauriziog
27 Oct 2012 5:39
Forum: Control-M Control Module
Topic: transfer folder with its file
Replies: 2
Views: 8033

Is in advanced\open systems\recursive
(directory will be transferred with all his subdirectories)

All files contaned will be trasferred.
by mauriziog
26 Oct 2012 6:34
Forum: Scripts
Topic: Sysout Format - Want to get rid of excessive prompt message.
Replies: 8
Views: 25444

to complete the "command echo" topic in batch:
even when the echo in on, the commad is not show if there is the "@" as first char...

so if you write

Code: Select all

@echo Ciao
in the output is:
-----------
Ciao
-----------

and there isnt the "echo off" ....
:D
by mauriziog
26 Oct 2012 6:30
Forum: Scripts
Topic: Sysout Format - Want to get rid of excessive prompt message.
Replies: 8
Views: 25444

Is NOT as you say: "@echo off" stops olny the echo of commads, exactly as ctmwincfg does; so if have in the script echo "Have a good day" The output is: ---------------- echo "Have a good day" "Have a good day " ---------------- If you have in the script: @echo off echo "Have a good day" the output ...
by mauriziog
26 Oct 2012 6:16
Forum: Job Definition
Topic: Zip folder using WinZip through control-M
Replies: 4
Views: 9641

You can also use the 7zip.exe utility, is free and works well in batch.
http://www.7-zip.org/
by mauriziog
26 Oct 2012 6:10
Forum: Job Definition
Topic: STEPS > DO SET-VAR > QR control
Replies: 3
Views: 4918

Force a job with ctmloadset or DO SHOUT to PROGRAM.
Were program is a script that run the ctmloadset utility...
by mauriziog
26 Oct 2012 5:52
Forum: Control-M Agents
Topic: OSCOMPSTAT 32
Replies: 3
Views: 12884

There is a user right problem.
Seems that the user that run the process cannot write a file in the temp directory:have you check "log on as user" in the agent configuration?
by mauriziog
26 Oct 2012 5:46
Forum: Control-M Agents
Topic: Control-M/Agent
Replies: 5
Views: 15592

The server is the "mind" who decide the schedulation and send orders, agents act, are the "arms" of control-M scheduler.
by mauriziog
26 Oct 2012 5:43
Forum: Control-M Agents
Topic: Agents going Unavailable dropping
Replies: 2
Views: 10520

If you think that are the serv-to-agent port the problem: change it only for the agent that has the problem, put for example 7016. Configure the port on the agent, reboot it and configure the same port also on server controlM: "configuration for a single agent". On some AIX there is in fact a servic...
by mauriziog
26 Oct 2012 5:29
Forum: Control-M Control Module
Topic: AFT wildcard * and ? get error message
Replies: 2
Views: 10823

When you put in the origina path a wildcard like "*", ftp protocol assume that there may be more than one file. So in the detination you must put only a directory name not a single file name. If you want to rename the file to the destination, put only the directory name and than use the "advanced" t...
by mauriziog
26 Oct 2012 5:13
Forum: Scripts
Topic: Sysout Format - Want to get rid of excessive prompt message.
Replies: 8
Views: 25444

Put @echo off at the beginning of the script.
by mauriziog
26 Oct 2012 5:11
Forum: Scripts
Topic: Need Suggestion for rebooting servers via job
Replies: 6
Views: 9843

you can do a second job (ping server) on another agent (server agent for example) and use:
- a command Job "ping ServerName"
- in panel set of the same command job use the "%%PRECMD=sleep 300"
by mauriziog
26 Oct 2012 2:52
Forum: Control-M Enterprise Manager
Topic: Hide/Encrypt DB Passwords in Scripts
Replies: 4
Views: 5765

at the beginin of the script write:

@echo off
or

set +x
by mauriziog
26 Oct 2012 2:50
Forum: Control-M Enterprise Manager
Topic: Control-M v7.0 GAS desired state Down but not Down
Replies: 3
Views: 4106

I think now it is blocked.
- desided state down
- kill the process on the server machine
- when ok: desired state up
by mauriziog
26 Oct 2012 12:08
Forum: Job Definition
Topic: Set tab variables
Replies: 2
Views: 4118

PRECMD and POSTCMD hasnt return codes, so if the command run did not execute well, the job terminate ok.
Consider this and if the PRECMD is important, add a control with shout to alert and similar.