Disable XLSTART for scheduled Auto-Run Macros

kozelibe

New Member
Joined
Jan 31, 2007
Messages
23
Hello,

Does anyone know how to disable the items in XLSTART from launching only when the excel launches to run a scheduled auto-run macro?

Thanks,
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
If you can run VBSCRIPT on your machine then you can try the following :

1 Open Notepad and put the codebelow in it :

Code:
Createobject ("Excel.Application").Workbooks.Open("C:\Test.xls").Application.Visible=True

Where C:\Test.xls is the FullName of the workbook you are trying to run with Task scheduler. Change this FullName as required.

2- Save the notepad file to disk and give a VBS extension

3- Schedule the VBS file instead of the workbook file.
 
Upvote 0

Forum statistics

Threads
1,224,602
Messages
6,179,843
Members
452,948
Latest member
UsmanAli786

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top