Need Help on Moving Files

(imported topic written by SystemAdmin)

Hi all,

can someone help me please. I need to convert this batch file to a fixlet message…

==============================================

@echo off

cls

cd\

md NSFarchive

cd\NSFarchive

move /-y “C:\Program Files\IBM\Lotus\Notes\Data\archive*.*” “C:\NSFarchive”

move /-y “C:\Notes\Data\archive*.*” “C:\NSFarchive”

move /-y “C:\Program Files\lotus\notes\data\archive*.*” “C:\NSFarchive”

echo “Moving Done”

=================================================

(imported comment written by NoahSalzman)

Check out the examples on this page: http://support.bigfix.com/bes/misc/customactions.html

(imported comment written by SystemAdmin)

Sir,

How is this applicable when moving a multiple files to another folder?

(imported comment written by NoahSalzman)

That web page shows examples of basic Action Script syntax, which is what you need to run “DOS commands” as a BigFix action. The simplest modification to your script would be to throw a “run” or “waithidden” in front of the lines – specifically: cd, md, and copy – and then call it a day. :slight_smile:

(imported comment written by SystemAdmin)

Im Done with this. Thnxx…