If you have on DB machine path C:\backup\
You may use that.

run {
allocate channel ch1 type disk;
backup
format='C:\backup\%t.%d.%s%p'
database;
release channel ch1;
}

If you created network drive H (-> C on Rec. Cat. machine)
you may use that:

run {
allocate channel ch1 type disk;
set maxcorrupt for datafile 1,2,3,4,5,6,7,8,9,10,11 to 0;
backup
incremental level=0
check logical
format='H:\backup\%t.%d.%s%p'
database;
}

Where 1,2,3, ... 11 - numbers of datafiles.
you may get them from v$datafile view


Originally posted by Diggers12
Can you give me the RMAN commands I should run so I know I have the correct ones.

thanks.