G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.general (More info?)

Hi, I'm trying to set up a macro that will record my screen everyday
at a specific time. I want the recorded file saved but I can't figure
out how to get a macro to give each file a unique filename. Is there a
way to make a macro save files with unique names (perhaps using some
wildcard in the filename that could specify date or something)?
Thanks.
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.general (More info?)

I basically just need someway to save a file with a unique identifier
(I'm using screen recording software). Or if that is not possible,
set up some way that the file that is created everyday is renamed with
a unique identifier. Say screen.mpeg is automatically renamed to
(date).mpeg
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.general (More info?)

"Malicho" <malicho1-1@yahoo.com> wrote in message
news:1126040570.031864.184070@z14g2000cwz.googlegroups.com...
> Hi, I'm trying to set up a macro that will record my screen everyday
> at a specific time. I want the recorded file saved but I can't figure
> out how to get a macro to give each file a unique filename. Is there a
> way to make a macro save files with unique names (perhaps using some
> wildcard in the filename that could specify date or something)?
> Thanks.
>

When you say "macro", do you mean a macro under Word,
or Excel, or a batch file under a Command Prompt? If it's
Word or Excel then posting in a corresponding newsgroup
would give you the quickest result.
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.general (More info?)

"Malicho" <malicho1-1@yahoo.com> wrote in message
news:1126043346.934387.78080@g44g2000cwa.googlegroups.com...
> I basically just need someway to save a file with a unique identifier
> (I'm using screen recording software). Or if that is not possible,
> set up some way that the file that is created everyday is renamed with
> a unique identifier. Say screen.mpeg is automatically renamed to
> (date).mpeg

You could invoke a batch file with the following lines inside:

@echo off
echo Renaming screen.mpeg to %date:/=-%.mpeg
ren "c:\My Pictures\screen.mpeg" "%date:/=-%.mpeg"
ping localhost -n 6 > nul