logon script and power point

G

Guest

for some reason when trying to run a pps using a logon script bat file, the
pps file does not open in slideshow view, but opens in powerpoint
presentation. here is the part of the script which i am trying to run for new
starters so when they logon it is a welcome screen and information

REM **** Create Tag folder if not already there****
If exist x:newstarter\ goto end
mkdir x:newstarter\

rem **** copy to local drive and open as slideshow ******
xcopy "H:\exchange\test.pps" "x:newstarter\" /i /y
start POWERPNT.EXE "x:\my documents\newstarter\test.pps" /max
:end
 
S

Steve Rindsberg

Firemaster said:
for some reason when trying to run a pps using a logon script bat file, the
pps file does not open in slideshow view, but opens in powerpoint
presentation. here is the part of the script which i am trying to run for new
starters so when they logon it is a welcome screen and information

REM **** Create Tag folder if not already there****
If exist x:newstarter\ goto end
mkdir x:newstarter\

rem **** copy to local drive and open as slideshow ******
xcopy "H:\exchange\test.pps" "x:newstarter\" /i /y
start POWERPNT.EXE "x:\my documents\newstarter\test.pps" /max
:end

Try just:

start "x:\my documents\newstarter\test.pps"

or

start POWERPNT.EXE /s "x:\my documents\newstarter\test.pps"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top