'Opening a gif full screen in a Batch Script [closed]

I have a batch script and I need it to open a gif file and display full screen. I have done research and all I can find is how to open the gif, but not resize it correctly. The code I find wants to save it as a 500x500 for example, but not display it.

The path is c:\temp\move.gif

I have the above line in the code so it just opens the gif.....

I have tried using

START /MAX "" "C:\Windows\System32\CMD.exe
pause

But it didnt work either



Solution 1:[1]

Check out Irfanview. Here are some examples of command line usage. To simply open something full screen, you should be able to do this:

i_view32.exe c:\temp\move.gif /fs

All command line parameters can be found here.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 THE JOATMON