Visual SVN, hudson build trigger - hudson

I have visualSVN server installed on windows server 2008. I want to use the post commit hook command line to call this code that I got on the Hudson web site:
set REPOS="$1"
set REV="$2"
set UUID=`svnlook uuid $REPOS`
/usr/bin/wget \
--header "Content-Type:text/plain;charset=UTF-8" \
--post-data "`svnlook changed --revision $REV $REPOS`" \
--output-document "-" \
http://server/hudson/subversion/${UUID}/notifyCommit?rev=$REV
I replace server with my real server name but the script doesn't work. I have no idea where it is getting the $1 and $2 from since it says copy and paste into the post commit hook I figured that means it doesn't need to be changed. I keep getting these errors:
Error: post-commit hook failed (exit code 1) with output:
Error: The system cannot find the path specified.
Error: '--header' is not recognized as an internal or external command,
Error: operable program or batch file.
Error: '--post-data' is not recognized as an internal or external command,
Error: operable program or batch file.
Error: '--output-document' is not recognized as an internal or external command,
Error: operable program or batch file.
Error: 'http:' is not recognized as an internal or external command,
Error: operable program or batch file.
Question
Does anyone know why I keep getting these errors and how I can fix it?
Here is the link to the hudson documentation:
http://wiki.hudson-ci.org/display/HUDSON/Subversion+Plugin

Your question (and the error messages) indicate that this script is executing on Windows, but the script listed is a Unix shell script. Try the corresponding suite of scripts for Windows.

Related

'ENVIRONMENT' is not recognized as an internal or external command, operable program or batch file

I'm trying to use the quickstart and I keep getting this error when I run npm start.
'ENVIRONMENT' is not recognized as an internal or external command,
operable program or batch file.
Can someone help me I'm doing the authentication quickstart.
This question has been asked before and is a duplicate of Beginner Working Through Authentication (Node.js example).
There are some options listed as comments as well as a general answer for Windows users.

Why is my xampp shell not finding mysql as a valid command?

I'm trying to use wpcli on xampp on windows, and following this tutorial -> https://lmilosis.wordpress.com/2020/01/26/19/
My issue arises entering this command
wp core config --dbname=wpcli_testing --dbuser=root --dbpass= --dbhost=localhost --dbprefix=wp_
Which results in ->
'"mysql --no-defaults --execute="' is not recognized as an internal or external command,
operable program or batch file.
I have added exactly the following to the end of my system environment variable ;C:\xampp\mysql\bin;C:\xampp\php, but this has not helped the issue.

Zabbix remote command on windows

I'm operating zabbix on windows servers.
I'm trying simple script execute via remote on zabbix,
So I modified target computer's zabbix_agentd.conf, EnableRemoteCommands 0 to 1.
And I ran successfully some windows command (like dir, run batch,tasklist) using zabbix_get command on zabbix server.
But the problem is what execute scripts on the Map is not functional.
The result is strange, and 2 patterns.
1.system.run['dir c:\dev\']
'system.run['dir' is not recognized as an internal or external command,
operable program or batch file.
2.system.run[chcp 437 & dir] : referenced zabbix japan forum.
'system.run[chcp' is not recognized as an internal or external command,
operable program or batch file.
Volume in drive C is *********
Volume Serial Number is *******
Directory of C:\Windows\system32
File Not Found
Result1 is cannot executed the 'dir' but Result2 is executed but failed result seems like permission denine.
What's wrong with me? :(

Resgen command is not working in post build event of project

This command is not working in post build event of project:
resgen "$(ProjectDir)SpectrumLite_en-US.txt" "$(ProjectDir)"
Error message in output window is:
'resgen' is not recognized as an internal or external command,
operable program or batch file.
That command successfully run on Visual Studio command prompt but neither in cmd nor post build event.

How to fix exit code issue while using WinSCP for SFTP from within SSIS package?

I am using SSIS 2005 to do some SFTPtasks using WinSCP. I googled about the error but couldn't make it work. I got this error:
[Execute Process Task] Error: In Executing "C:\Program Files\WinSCP\WinSCP.exe" "-script=C:\Documents and Settings\nian_z\Desktop\temp\SSISMovingSOA\removeSOA8.txt" at "C:\Program Files\WinSCP", The process exit code was "1" while the expected was "0".
Here is my WinSCP script that I use:
option batch abort
option confirm off
#open sftp://user:password#server:22
#cd /m/vo/Cont/fileftp
get OrderOutbound*
close
exit
For above script, I even tried leaving only one statement at a time, but still got error.
Here is the setup of the execute process task.
This is not an answer but an attempt to help you find a solution to your problem.
Try this:
Try the following steps to find out if your script is actually working outside of SSIS or not.
Click Windows Start and click Run...
Type cmd to open Command Prompt.
On the command prompt window, type the following command at the prompt to switch to the WinSCP installation directory. I have the WinSCP installed in the following directory. Change the path according to your environment settings.
cd "C:\Program Files (x86)\WinSCP"
If your WinSCP script file removeSOA8.txt is located in the path C:\Documents and Settings\userid\Desktop\temp\SSISMovingSOA\ with spaces, then type the following command by enclosing the script path in double quotes to run the script and also use the /log option to capture all the status messages.
WinSCP.exe "/script=C:\Documents and Settings\userid\Desktop\temp\SSISMovingSOA\removeSOA8.txt" /log=C:\temp\WinSCP_log.txt
After the script executes, your will find that a log file named WinSCP_log.txt will be created in the path C:\temp. Read through the file to identify if there are any error messages.
Attempt to run FTP in SSIS:
I tried downloading a file from FTP using WinSCP with the following script:
option batch abort
option confirm off
open ftp://myuserid:mypassword#ftp.myftpsite.com:21 -passive=on
cd /root/somefolder/
option transfer binary
get SomeFileOnFTP.txt c:\temp\
close
exit
Here are the settings how I have configured the Execute Process Task within the SSIS package.
The process ran successfully in BIDS.
Hope that gives you an idea.
If you are running the script from SQL Server job agent then mostly you will get this exit error.
Scenario: In my case I faced when i m trying to download a file from sFTP server.
Solution :
Step 1 - Create a batch file
#echo off
CD "C:\Program Files (x86)\WinSCP"
winscp.com /ini=nul /script=C:\path\download_script_pm.txt
Exit
Note: When calling using SQL Server Job agent make sure to NULL out the “ini” configuration else it will throw up this error
Step2 – create a txt file (winscp script)
option echo on
option batch on
option confirm off
open sftp://user:password#sftp.xxxx.com/ -hostkey="ssh-edXXXX-xx-xx-xx-xx-xx-xx-xx-xx-xx-xx-xx-xx-xx-xx-xx-xx"
option confirm off
get -filemask=">=1D" /sftp_Path/File_Name_.csv
C:\local_path_for_downloaded_file\"
exit
Note: make sure to use hostkey. To obtain host key you need to do the following :
1. Open winscp app tool and login to the server
Click Session -> Generate Session / URL code option
Check SSH Host key and copy the finger print value and use in the winscp hostkey value
Earlier I was getting the same error but now is working fine for me.
SSIS Execute Process Task :
Executable - C:\SSIS\SSIS_2008_Projects\HRIS_RepomanFusion_Load\WinSCP\WinSCP.com
Arguments - "/script=wscpBatchTest.txt" /log=C:\SSIS\SSIS_2008_Projects\FTP_Load\WinSCP\WinSCP_log.txt
Working Directory - C:\SSIS\SSIS_2008_Projects\HRIS_RepomanFusion_Load\WinSCP
Here is the WinSCP script that I use: wscpBatchTest.txt
option batch
option confirm off
open sftp://username:password#ftp.test.com
option transfer binary
cd /home/SAFAA
get employeedetails.csv C:\SSIS\SSIS_2008_Projects\SAFAA\InputDirectory\
close
exit