Просто нашел лучшее решение:
1.) Измените командную строку на:
C:\Programme\Opera\opera.exe -newpage file://localhost/C:/redirect.html
2.) Создайте файл redirect.html с кодом для перенаправления:
<html>
<head>
<title>Startup</title>
<script>
function redirect()
{
window.location.href = 'http://localhost/startup.php';
}
setTimeout('redirect()',60000);
</script>
</head>
<body>
<p>Loading...</p>
</body>
</html>