Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

scheduled task - adding logon ID and Password to command line

Status
Not open for further replies.

funkmonsteruk

IS-IT--Management
Feb 8, 2002
210
GB
I've set up my PC to run a couple of Business Objects reports as scheduled tasks. However i'm having trouble adding my logon ID and password to the command line, any suggestions
 
Create a new shortcut with this command line in the 'Target'

"C:\Program Files\Business Objects\BusinessObjects 5.0\BUSOBJ.EXE" -user USER -pass PASSWORD -nologo "C:\Program Files\Business Objects\BusinessObjects 5.0\UserDocs\ReportName.rep"

The path to your BUSOBJ.EXE file may be different of course, you may need to adjust.
Change USER to your user ID, and PASSWORD to the password for that user.
the -nologo makes the splash screen not appear.
Change ReportName.rep to your report name.


Then, the 'Start in' line should be:
"C:\Program Files\Business Objects\BusinessObjects 5.0\UserDocs"
(or whatever the appropriate path is)

Hope that works for you! You can easily use this code to put in the scheduled task. I just suggested an icon for testing.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top