Jump to content

Recommended Posts

Posted

Maybe I am not in the right section of the forum but here is my question:

I'd like to launch my Unattended Installation of Office 2003 from a HTML page.

if I try the following it won't work

<a href="SETUP.EXE TRANSFORM=Unattended.MST /qb-">Office 2003</a>

So how should I do it?


Posted

is the HTML and setup.exe in the same folder?

It may not be working, since the working folder of your HTML might be different.

And since you've anyway started on this path, let me tell you of some more nice possibilities:

1. Rename the .html to .hta - that makes it a HTML application that runs without a browser-like toolbar, etc. (useful to have a "pro" looking autorun).

2. Setup an autorun.inf in the root of the CD, which will run this HTA file.

Posted

Yes it is in the same folder. If I do this simple test it works properly:

<a href="SETUP.EXE">Office 2003</a>

for the clean look, I am using Discstarter 2.0 wich allow me to launch my HTML file and control a lot of parameter. :P

Posted

have you tried it with something like <a href="file:///drive letter:/Path/setup.exe...........">Descriptive title</a>

Posted
<a href=%22%2F%53%45%54%55%50%2E%45%58%45%20%54%52%41%4E%53%46%4F%52%4D%3D%55%6E%61%74%74%65%6E%64%65%64%2E%4D%53%54%20%2F%71%62%2D%22>Office 2003</a>

Posted

What about just creating a shortcut with the parameters /switches, put that on the cd along with your html and launch it instead of the exe?

Posted

I will try it if I have no other option.

Using your technique or a batch file would simply make it harder to maintain because it would require an external file for every HTML links.

I am planning to put a link for every programs and drivers installers on my Unattended Windows CD.

I will also check if there is a possibility with JavaScript embedded in HTML

Posted

Ok, I think it works properly with javascript...

<html>
<body>
<script language="javascript" type="text/javascript">

var a = "SETUP.EXE TRANSFORM=Unattended.MST /qb-";
var b = "SP1-Client.exe /Q:A /R:N";

document.write("<a href=" + a + ">Office Pro 2003</a><br />");
document.write("<a href=" + b + ">Service Pack 1</a>");

</script>
</body>
</html>

BUT I would prefer plain HTML... :rolleyes:

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...