‎2011-09-16
09:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
WF Files how to rename them with a script?
So has anyone run into a issue where you had a issue with the collector and ended up getting WF files? You NUG file gets the extension of .WF at the end and envision can not process them. So does anyone have a script that will rename or remove the WF extension so the files cna be processed? Bob
3 Replies
‎2011-09-16
10:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
one thing I can do but is very manual is a batch file that you place in each folder and run this is what the Batch command is: ren *.WF *. Very basic but I want to be able to have it that you run it and it will automatically look in all folders and run that command instead of me looking in each folder. Bob
‎2011-09-27
11:23 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
GUI alternative to windows batch command: http://www.snapfiles.com/get/exchanger.html
‎2011-12-15
05:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
I run a sheduled task every day with this script:
for /r %%x in (*.nug.WF) do ren "%%x" *.nug
